Skip to content

Instantly share code, notes, and snippets.

@zpodlovics
Created August 28, 2018 17:33
Show Gist options
  • Save zpodlovics/96b4b4ff169e477d16328abe28138c94 to your computer and use it in GitHub Desktop.
Save zpodlovics/96b4b4ff169e477d16328abe28138c94 to your computer and use it in GitHub Desktop.
fable2-flamegraph.svg
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="886" onload="init(evt)" viewBox="0 0 1200 886" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="886.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="869" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="869" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (25 samples, 0.14%)</title><rect x="511.0" y="373" width="1.6" height="15.0" fill="rgb(214,167,54)" rx="2" ry="2" />
<text text-anchor="" x="513.98" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="820.7" y="325" width="0.5" height="15.0" fill="rgb(218,132,38)" rx="2" ry="2" />
<text text-anchor="" x="823.72" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (2 samples, 0.01%)</title><rect x="411.6" y="357" width="0.2" height="15.0" fill="rgb(232,19,39)" rx="2" ry="2" />
<text text-anchor="" x="414.62" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="293" width="0.1" height="15.0" fill="rgb(211,167,35)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="10.3" y="757" width="0.3" height="15.0" fill="rgb(207,139,1)" rx="2" ry="2" />
<text text-anchor="" x="13.32" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl3RunINS1_25InstructionSelectionPhaseEPNS1_7LinkageEEEvT0_ (2 samples, 0.01%)</title><rect x="1179.9" y="677" width="0.1" height="15.0" fill="rgb(228,176,13)" rx="2" ry="2" />
<text text-anchor="" x="1182.88" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (17 samples, 0.09%)</title><rect x="824.8" y="437" width="1.1" height="15.0" fill="rgb(211,174,52)" rx="2" ry="2" />
<text text-anchor="" x="827.78" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1151.6" y="725" width="0.1" height="15.0" fill="rgb(206,113,11)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (65 samples, 0.35%)</title><rect x="1185.0" y="597" width="4.2" height="15.0" fill="rgb(211,87,33)" rx="2" ry="2" />
<text text-anchor="" x="1187.97" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1181.3" y="709" width="0.4" height="15.0" fill="rgb(222,105,25)" rx="2" ry="2" />
<text text-anchor="" x="1184.30" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer26MoveEntriesToRememberedSetEi (356 samples, 1.94%)</title><rect x="1153.7" y="741" width="23.0" height="15.0" fill="rgb(251,171,36)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1151.6" y="757" width="0.1" height="15.0" fill="rgb(247,98,6)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1104.1" y="325" width="0.1" height="15.0" fill="rgb(220,51,9)" rx="2" ry="2" />
<text text-anchor="" x="1107.11" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap8ScavengeEv (66 samples, 0.36%)</title><rect x="832.8" y="373" width="4.3" height="15.0" fill="rgb(248,90,42)" rx="2" ry="2" />
<text text-anchor="" x="835.84" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Scavenger7ProcessEPNS0_14OneshotBarrierE (3 samples, 0.02%)</title><rect x="1179.1" y="725" width="0.2" height="15.0" fill="rgb(225,61,32)" rx="2" ry="2" />
<text text-anchor="" x="1182.11" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="554.3" y="277" width="0.2" height="15.0" fill="rgb(205,129,47)" rx="2" ry="2" />
<text text-anchor="" x="557.28" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="833.9" y="293" width="0.2" height="15.0" fill="rgb(229,144,28)" rx="2" ry="2" />
<text text-anchor="" x="836.87" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1043.5" y="341" width="0.1" height="15.0" fill="rgb(209,28,31)" rx="2" ry="2" />
<text text-anchor="" x="1046.47" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="759.8" y="357" width="0.2" height="15.0" fill="rgb(216,208,39)" rx="2" ry="2" />
<text text-anchor="" x="762.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12BinarySearchILNS0_10SearchModeE1ENS0_15DescriptorArrayEEEiPT0_PNS0_4NameEiPi (3 samples, 0.02%)</title><rect x="887.1" y="421" width="0.2" height="15.0" fill="rgb(205,12,13)" rx="2" ry="2" />
<text text-anchor="" x="890.09" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="726.0" y="309" width="0.1" height="15.0" fill="rgb(224,161,15)" rx="2" ry="2" />
<text text-anchor="" x="729.00" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="938.5" y="389" width="0.2" height="15.0" fill="rgb(235,135,15)" rx="2" ry="2" />
<text text-anchor="" x="941.51" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator12NextInternalILb0EEEvPNS0_3MapEPNS0_10JSReceiverE (94 samples, 0.51%)</title><rect x="871.7" y="437" width="6.0" height="15.0" fill="rgb(210,149,2)" rx="2" ry="2" />
<text text-anchor="" x="874.69" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.06%)</title><rect x="393.3" y="405" width="0.7" height="15.0" fill="rgb(251,21,52)" rx="2" ry="2" />
<text text-anchor="" x="396.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (58 samples, 0.32%)</title><rect x="1185.4" y="581" width="3.8" height="15.0" fill="rgb(242,73,48)" rx="2" ry="2" />
<text text-anchor="" x="1188.43" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.05%)</title><rect x="393.3" y="357" width="0.7" height="15.0" fill="rgb(229,81,33)" rx="2" ry="2" />
<text text-anchor="" x="396.32" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8GCTracer15BackgroundScopeD1Ev (4 samples, 0.02%)</title><rect x="1178.3" y="741" width="0.2" height="15.0" fill="rgb(209,120,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.27" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (19 samples, 0.10%)</title><rect x="586.3" y="245" width="1.2" height="15.0" fill="rgb(207,27,8)" rx="2" ry="2" />
<text text-anchor="" x="589.31" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (18 samples, 0.10%)</title><rect x="183.3" y="373" width="1.2" height="15.0" fill="rgb(248,56,16)" rx="2" ry="2" />
<text text-anchor="" x="186.33" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1024.6" y="309" width="0.1" height="15.0" fill="rgb(220,64,53)" rx="2" ry="2" />
<text text-anchor="" x="1027.60" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="464.4" y="245" width="0.2" height="15.0" fill="rgb(236,196,21)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map20UnusedPropertyFieldsEv (18 samples, 0.10%)</title><rect x="1055.3" y="389" width="1.2" height="15.0" fill="rgb(226,88,4)" rx="2" ry="2" />
<text text-anchor="" x="1058.33" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1150.7" y="661" width="0.3" height="15.0" fill="rgb(226,155,13)" rx="2" ry="2" />
<text text-anchor="" x="1153.69" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (4 samples, 0.02%)</title><rect x="1150.7" y="725" width="0.3" height="15.0" fill="rgb(231,107,39)" rx="2" ry="2" />
<text text-anchor="" x="1153.69" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="554.4" y="245" width="0.1" height="15.0" fill="rgb(234,228,3)" rx="2" ry="2" />
<text text-anchor="" x="557.41" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="41.8" y="405" width="0.4" height="15.0" fill="rgb(222,26,26)" rx="2" ry="2" />
<text text-anchor="" x="44.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="759.8" y="277" width="0.2" height="15.0" fill="rgb(245,95,6)" rx="2" ry="2" />
<text text-anchor="" x="762.83" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="617.3" y="325" width="0.1" height="15.0" fill="rgb(217,112,21)" rx="2" ry="2" />
<text text-anchor="" x="620.30" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (83 samples, 0.45%)</title><rect x="832.1" y="421" width="5.4" height="15.0" fill="rgb(253,54,50)" rx="2" ry="2" />
<text text-anchor="" x="835.13" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeSetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (142 samples, 0.78%)</title><rect x="573.5" y="389" width="9.1" height="15.0" fill="rgb(232,139,20)" rx="2" ry="2" />
<text text-anchor="" x="576.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="41.8" y="373" width="0.4" height="15.0" fill="rgb(242,190,18)" rx="2" ry="2" />
<text text-anchor="" x="44.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator15UpdateProtectorEv.part.349 (49 samples, 0.27%)</title><rect x="964.6" y="405" width="3.2" height="15.0" fill="rgb(219,206,26)" rx="2" ry="2" />
<text text-anchor="" x="967.61" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="693.9" y="293" width="0.3" height="15.0" fill="rgb(212,12,45)" rx="2" ry="2" />
<text text-anchor="" x="696.91" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal16LargeObjectSpace8FindPageEm (3 samples, 0.02%)</title><rect x="832.5" y="341" width="0.2" height="15.0" fill="rgb(228,49,8)" rx="2" ry="2" />
<text text-anchor="" x="835.51" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1150.7" y="629" width="0.3" height="15.0" fill="rgb(242,106,25)" rx="2" ry="2" />
<text text-anchor="" x="1153.69" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal26Runtime_AllocateInNewSpaceEiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="821.2" y="437" width="0.2" height="15.0" fill="rgb(242,88,11)" rx="2" ry="2" />
<text text-anchor="" x="824.24" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="871.5" y="389" width="0.2" height="15.0" fill="rgb(215,89,32)" rx="2" ry="2" />
<text text-anchor="" x="874.50" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (67 samples, 0.37%)</title><rect x="808.9" y="373" width="4.3" height="15.0" fill="rgb(209,127,19)" rx="2" ry="2" />
<text text-anchor="" x="811.87" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (7 samples, 0.04%)</title><rect x="1179.9" y="709" width="0.4" height="15.0" fill="rgb(209,120,48)" rx="2" ry="2" />
<text text-anchor="" x="1182.88" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="629" width="1138.6" height="15.0" fill="rgb(224,198,17)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (2 samples, 0.01%)</title><rect x="582.6" y="373" width="0.2" height="15.0" fill="rgb(237,218,32)" rx="2" ry="2" />
<text text-anchor="" x="585.63" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_CompileOptimized_ConcurrentEiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="582.6" y="405" width="0.2" height="15.0" fill="rgb(231,124,48)" rx="2" ry="2" />
<text text-anchor="" x="585.63" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal2V818GetCurrentPlatformEv (2 samples, 0.01%)</title><rect x="587.7" y="421" width="0.2" height="15.0" fill="rgb(250,117,18)" rx="2" ry="2" />
<text text-anchor="" x="590.73" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="796.2" y="325" width="0.1" height="15.0" fill="rgb(235,81,50)" rx="2" ry="2" />
<text text-anchor="" x="799.17" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.02%)</title><rect x="1152.3" y="805" width="0.2" height="15.0" fill="rgb(254,15,23)" rx="2" ry="2" />
<text text-anchor="" x="1155.31" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,186 samples, 93.85%)</title><rect x="42.2" y="469" width="1107.4" height="15.0" fill="rgb(213,176,28)" rx="2" ry="2" />
<text text-anchor="" x="45.22" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (44 samples, 0.24%)</title><rect x="827.6" y="437" width="2.9" height="15.0" fill="rgb(212,144,2)" rx="2" ry="2" />
<text text-anchor="" x="830.62" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1016.2" y="245" width="0.1" height="15.0" fill="rgb(233,168,18)" rx="2" ry="2" />
<text text-anchor="" x="1019.15" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (11 samples, 0.06%)</title><rect x="817.2" y="421" width="0.8" height="15.0" fill="rgb(213,16,15)" rx="2" ry="2" />
<text text-anchor="" x="820.24" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="568.2" y="309" width="0.3" height="15.0" fill="rgb(227,106,32)" rx="2" ry="2" />
<text text-anchor="" x="571.20" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="820.8" y="277" width="0.4" height="15.0" fill="rgb(249,5,5)" rx="2" ry="2" />
<text text-anchor="" x="823.79" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (21 samples, 0.11%)</title><rect x="586.2" y="261" width="1.3" height="15.0" fill="rgb(246,180,42)" rx="2" ry="2" />
<text text-anchor="" x="589.18" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (103 samples, 0.56%)</title><rect x="726.1" y="389" width="6.7" height="15.0" fill="rgb(243,217,10)" rx="2" ry="2" />
<text text-anchor="" x="729.13" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14ScavengingTask13RunInParallelEv (8 samples, 0.04%)</title><rect x="1178.8" y="741" width="0.5" height="15.0" fill="rgb(218,4,15)" rx="2" ry="2" />
<text text-anchor="" x="1181.79" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="964.4" y="277" width="0.2" height="15.0" fill="rgb(227,213,47)" rx="2" ry="2" />
<text text-anchor="" x="967.41" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,669 samples, 96.48%)</title><rect x="12.2" y="517" width="1138.5" height="15.0" fill="rgb(222,6,13)" rx="2" ry="2" />
<text text-anchor="" x="15.19" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (90 samples, 0.49%)</title><rect x="1183.4" y="677" width="5.8" height="15.0" fill="rgb(248,155,53)" rx="2" ry="2" />
<text text-anchor="" x="1186.36" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl21ComputeScheduledGraphEv (2 samples, 0.01%)</title><rect x="1180.0" y="693" width="0.1" height="15.0" fill="rgb(253,135,54)" rx="2" ry="2" />
<text text-anchor="" x="1183.01" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (143 samples, 0.78%)</title><rect x="523.2" y="389" width="9.2" height="15.0" fill="rgb(250,123,30)" rx="2" ry="2" />
<text text-anchor="" x="526.23" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (5 samples, 0.03%)</title><rect x="413.0" y="389" width="0.3" height="15.0" fill="rgb(237,229,15)" rx="2" ry="2" />
<text text-anchor="" x="415.98" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (80 samples, 0.44%)</title><rect x="832.3" y="405" width="5.1" height="15.0" fill="rgb(233,201,47)" rx="2" ry="2" />
<text text-anchor="" x="835.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10HeapObject20synchronized_set_mapEPNS0_3MapE (93 samples, 0.51%)</title><rect x="1016.3" y="373" width="6.0" height="15.0" fill="rgb(207,146,39)" rx="2" ry="2" />
<text text-anchor="" x="1019.35" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8GCTracer5StartENS0_16GarbageCollectorENS0_23GarbageCollectionReasonEPKc (2 samples, 0.01%)</title><rect x="1051.5" y="293" width="0.2" height="15.0" fill="rgb(250,134,54)" rx="2" ry="2" />
<text text-anchor="" x="1054.53" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="693" width="1138.6" height="15.0" fill="rgb(232,112,50)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14CancelableTaskC1EPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="585.1" y="405" width="0.3" height="15.0" fill="rgb(254,42,37)" rx="2" ry="2" />
<text text-anchor="" x="588.15" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (36 samples, 0.20%)</title><rect x="585.4" y="405" width="2.3" height="15.0" fill="rgb(224,20,11)" rx="2" ry="2" />
<text text-anchor="" x="588.41" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="693.8" y="389" width="0.4" height="15.0" fill="rgb(205,98,52)" rx="2" ry="2" />
<text text-anchor="" x="696.79" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="587.0" y="197" width="0.5" height="15.0" fill="rgb(249,127,26)" rx="2" ry="2" />
<text text-anchor="" x="589.95" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (17,716 samples, 96.74%)</title><rect x="10.0" y="805" width="1141.5" height="15.0" fill="rgb(238,70,52)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel.kallsyms]]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator21LookupInRegularHolderILb0EEENS1_5StateEPNS0_3MapEPNS0_10JSReceiverE (19 samples, 0.10%)</title><rect x="879.5" y="437" width="1.2" height="15.0" fill="rgb(252,7,10)" rx="2" ry="2" />
<text text-anchor="" x="882.49" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal3Map24TransitionToDataPropertyENS0_6HandleIS1_EENS2_INS0_4NameEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS0_17PropertyConstnessENS6_14StoreFromKeyedE (8 samples, 0.04%)</title><rect x="829.9" y="373" width="0.6" height="15.0" fill="rgb(234,17,27)" rx="2" ry="2" />
<text text-anchor="" x="832.94" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory24CopyPropertyArrayAndGrowENS0_6HandleINS0_13PropertyArrayEEEiNS0_13PretenureFlagE (308 samples, 1.68%)</title><rect x="1031.8" y="373" width="19.9" height="15.0" fill="rgb(231,32,41)" rx="2" ry="2" />
<text text-anchor="" x="1034.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="411.6" y="389" width="0.2" height="15.0" fill="rgb(214,195,41)" rx="2" ry="2" />
<text text-anchor="" x="414.56" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (3,400 samples, 18.57%)</title><rect x="907.5" y="437" width="219.0" height="15.0" fill="rgb(243,207,25)" rx="2" ry="2" />
<text text-anchor="" x="910.45" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal8JSObject33De..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19RootScavengeVisitor16VisitRootPointerENS0_4RootEPKcPPNS0_6ObjectE (3 samples, 0.02%)</title><rect x="835.2" y="341" width="0.2" height="15.0" fill="rgb(215,84,25)" rx="2" ry="2" />
<text text-anchor="" x="838.22" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (270 samples, 1.47%)</title><rect x="760.1" y="421" width="17.4" height="15.0" fill="rgb(223,71,23)" rx="2" ry="2" />
<text text-anchor="" x="763.09" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4nodeL16BackgroundRunnerEPv (572 samples, 3.12%)</title><rect x="1152.6" y="789" width="36.8" height="15.0" fill="rgb(237,85,24)" rx="2" ry="2" />
<text text-anchor="" x="1155.56" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (33 samples, 0.18%)</title><rect x="585.4" y="389" width="2.1" height="15.0" fill="rgb(244,180,27)" rx="2" ry="2" />
<text text-anchor="" x="588.41" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1016.1" y="373" width="0.2" height="15.0" fill="rgb(240,143,10)" rx="2" ry="2" />
<text text-anchor="" x="1019.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer19StoreBufferOverflowEPNS0_7IsolateE (15 samples, 0.08%)</title><rect x="820.2" y="437" width="1.0" height="15.0" fill="rgb(217,12,4)" rx="2" ry="2" />
<text text-anchor="" x="823.21" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10JSReceiver13SetPropertiesEPNS0_10HeapObjectE (84 samples, 0.46%)</title><rect x="1022.3" y="373" width="5.5" height="15.0" fill="rgb(210,89,22)" rx="2" ry="2" />
<text text-anchor="" x="1025.34" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="565" width="1138.6" height="15.0" fill="rgb(242,3,10)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="964.4" y="325" width="0.2" height="15.0" fill="rgb(221,103,11)" rx="2" ry="2" />
<text text-anchor="" x="967.41" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (9 samples, 0.05%)</title><rect x="496.6" y="389" width="0.6" height="15.0" fill="rgb(249,122,41)" rx="2" ry="2" />
<text text-anchor="" x="499.61" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="587.1" y="181" width="0.4" height="15.0" fill="rgb(233,51,45)" rx="2" ry="2" />
<text text-anchor="" x="590.08" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="481.5" y="341" width="0.2" height="15.0" fill="rgb(233,77,14)" rx="2" ry="2" />
<text text-anchor="" x="484.54" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler31EffectControlLinearizationPhase3RunEPNS1_12PipelineDataEPNS0_4ZoneE (3 samples, 0.02%)</title><rect x="1180.1" y="693" width="0.2" height="15.0" fill="rgb(250,22,26)" rx="2" ry="2" />
<text text-anchor="" x="1183.14" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (17 samples, 0.09%)</title><rect x="586.4" y="229" width="1.1" height="15.0" fill="rgb(233,7,29)" rx="2" ry="2" />
<text text-anchor="" x="589.44" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="726.0" y="293" width="0.1" height="15.0" fill="rgb(216,93,43)" rx="2" ry="2" />
<text text-anchor="" x="729.00" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="834.4" y="181" width="0.2" height="15.0" fill="rgb(229,145,1)" rx="2" ry="2" />
<text text-anchor="" x="837.38" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="871.5" y="437" width="0.2" height="15.0" fill="rgb(229,50,20)" rx="2" ry="2" />
<text text-anchor="" x="874.50" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="411.4" y="389" width="0.2" height="15.0" fill="rgb(206,128,48)" rx="2" ry="2" />
<text text-anchor="" x="414.43" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (96 samples, 0.52%)</title><rect x="1183.0" y="725" width="6.2" height="15.0" fill="rgb(223,201,20)" rx="2" ry="2" />
<text text-anchor="" x="1185.98" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler13CodeGenerator19AssembleInstructionEPNS1_11InstructionEPKNS1_16InstructionBlockE (2 samples, 0.01%)</title><rect x="1179.8" y="661" width="0.1" height="15.0" fill="rgb(250,11,41)" rx="2" ry="2" />
<text text-anchor="" x="1182.75" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (69 samples, 0.38%)</title><rect x="777.5" y="421" width="4.4" height="15.0" fill="rgb(215,229,48)" rx="2" ry="2" />
<text text-anchor="" x="780.49" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_121GetIdentityHashHelperEPNS0_7IsolateEPNS0_10JSReceiverE.isra.363 (47 samples, 0.26%)</title><rect x="1024.7" y="357" width="3.1" height="15.0" fill="rgb(228,138,30)" rx="2" ry="2" />
<text text-anchor="" x="1027.72" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (7 samples, 0.04%)</title><rect x="497.2" y="389" width="0.4" height="15.0" fill="rgb(213,60,14)" rx="2" ry="2" />
<text text-anchor="" x="500.19" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (2 samples, 0.01%)</title><rect x="832.1" y="405" width="0.2" height="15.0" fill="rgb(225,81,15)" rx="2" ry="2" />
<text text-anchor="" x="835.13" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer19StoreBufferOverflowEPNS0_7IsolateE (43 samples, 0.23%)</title><rect x="585.0" y="421" width="2.7" height="15.0" fill="rgb(246,143,34)" rx="2" ry="2" />
<text text-anchor="" x="587.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="568.2" y="277" width="0.3" height="15.0" fill="rgb(227,198,27)" rx="2" ry="2" />
<text text-anchor="" x="571.20" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="914.7" y="293" width="0.2" height="15.0" fill="rgb(250,186,54)" rx="2" ry="2" />
<text text-anchor="" x="917.73" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="914.7" y="389" width="0.2" height="15.0" fill="rgb(246,138,37)" rx="2" ry="2" />
<text text-anchor="" x="917.73" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8GCTracer15BackgroundScopeC2EPS1_NS2_7ScopeIdE (3 samples, 0.02%)</title><rect x="1178.1" y="741" width="0.2" height="15.0" fill="rgb(226,97,26)" rx="2" ry="2" />
<text text-anchor="" x="1181.08" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="617.3" y="293" width="0.1" height="15.0" fill="rgb(229,57,54)" rx="2" ry="2" />
<text text-anchor="" x="620.30" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15TransitionArray13SearchDetailsEiNS0_12PropertyKindENS0_18PropertyAttributesEPi (13 samples, 0.07%)</title><rect x="1121.2" y="357" width="0.8" height="15.0" fill="rgb(220,28,49)" rx="2" ry="2" />
<text text-anchor="" x="1124.18" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Bitmap5ClearEv (8 samples, 0.04%)</title><rect x="835.9" y="341" width="0.5" height="15.0" fill="rgb(245,187,48)" rx="2" ry="2" />
<text text-anchor="" x="838.93" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (25 samples, 0.14%)</title><rect x="585.9" y="277" width="1.6" height="15.0" fill="rgb(226,145,44)" rx="2" ry="2" />
<text text-anchor="" x="588.92" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (14 samples, 0.08%)</title><rect x="583.5" y="405" width="0.9" height="15.0" fill="rgb(207,136,10)" rx="2" ry="2" />
<text text-anchor="" x="586.54" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="820.8" y="309" width="0.4" height="15.0" fill="rgb(232,72,23)" rx="2" ry="2" />
<text text-anchor="" x="823.79" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1145.7" y="405" width="0.2" height="15.0" fill="rgb(253,70,26)" rx="2" ry="2" />
<text text-anchor="" x="1148.73" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (13 samples, 0.07%)</title><rect x="1043.6" y="341" width="0.8" height="15.0" fill="rgb(232,48,39)" rx="2" ry="2" />
<text text-anchor="" x="1046.60" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="437.6" y="293" width="0.1" height="15.0" fill="rgb(209,54,52)" rx="2" ry="2" />
<text text-anchor="" x="440.59" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler13CodeGenerator12AssembleCodeEv (2 samples, 0.01%)</title><rect x="1179.8" y="693" width="0.1" height="15.0" fill="rgb(224,146,34)" rx="2" ry="2" />
<text text-anchor="" x="1182.75" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (21 samples, 0.11%)</title><rect x="183.1" y="453" width="1.4" height="15.0" fill="rgb(224,44,41)" rx="2" ry="2" />
<text text-anchor="" x="186.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="1181.4" y="693" width="0.3" height="15.0" fill="rgb(208,95,51)" rx="2" ry="2" />
<text text-anchor="" x="1184.37" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (248 samples, 1.35%)</title><rect x="761.5" y="405" width="16.0" height="15.0" fill="rgb(243,42,53)" rx="2" ry="2" />
<text text-anchor="" x="764.51" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeSetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (156 samples, 0.85%)</title><rect x="572.6" y="405" width="10.0" height="15.0" fill="rgb(222,73,28)" rx="2" ry="2" />
<text text-anchor="" x="575.58" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="165" width="0.1" height="15.0" fill="rgb(248,155,19)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="229" width="0.1" height="15.0" fill="rgb(251,209,29)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (2 samples, 0.01%)</title><rect x="813.8" y="405" width="0.1" height="15.0" fill="rgb(227,20,10)" rx="2" ry="2" />
<text text-anchor="" x="816.76" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.9" y="629" width="0.3" height="15.0" fill="rgb(232,206,48)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="648.9" y="373" width="0.1" height="15.0" fill="rgb(247,23,31)" rx="2" ry="2" />
<text text-anchor="" x="651.87" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1051.2" y="229" width="0.1" height="15.0" fill="rgb(220,43,39)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.05%)</title><rect x="393.3" y="373" width="0.7" height="15.0" fill="rgb(243,29,14)" rx="2" ry="2" />
<text text-anchor="" x="396.32" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="85" width="0.1" height="15.0" fill="rgb(230,76,25)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15ItemParallelJob3RunESt10shared_ptrINS0_8CountersEE (3 samples, 0.02%)</title><rect x="1051.1" y="261" width="0.2" height="15.0" fill="rgb(228,210,53)" rx="2" ry="2" />
<text text-anchor="" x="1054.14" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="834.1" y="277" width="0.1" height="15.0" fill="rgb(219,38,24)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.04%)</title><rect x="393.5" y="325" width="0.5" height="15.0" fill="rgb(249,92,31)" rx="2" ry="2" />
<text text-anchor="" x="396.45" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (456 samples, 2.49%)</title><rect x="467.0" y="389" width="29.4" height="15.0" fill="rgb(220,191,22)" rx="2" ry="2" />
<text text-anchor="" x="469.97" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="938.5" y="373" width="0.2" height="15.0" fill="rgb(246,204,4)" rx="2" ry="2" />
<text text-anchor="" x="941.51" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (15 samples, 0.08%)</title><rect x="568.5" y="373" width="0.9" height="15.0" fill="rgb(207,103,11)" rx="2" ry="2" />
<text text-anchor="" x="571.46" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="481.5" y="293" width="0.2" height="15.0" fill="rgb(206,165,44)" rx="2" ry="2" />
<text text-anchor="" x="484.54" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1150.7" y="613" width="0.3" height="15.0" fill="rgb(209,139,6)" rx="2" ry="2" />
<text text-anchor="" x="1153.69" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1150.7" y="645" width="0.3" height="15.0" fill="rgb(227,110,9)" rx="2" ry="2" />
<text text-anchor="" x="1153.69" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.02%)</title><rect x="585.2" y="389" width="0.2" height="15.0" fill="rgb(224,220,9)" rx="2" ry="2" />
<text text-anchor="" x="588.21" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (96 samples, 0.52%)</title><rect x="1183.0" y="709" width="6.2" height="15.0" fill="rgb(240,152,50)" rx="2" ry="2" />
<text text-anchor="" x="1185.98" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (19 samples, 0.10%)</title><rect x="183.3" y="405" width="1.2" height="15.0" fill="rgb(251,73,22)" rx="2" ry="2" />
<text text-anchor="" x="186.27" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="645" width="1138.6" height="15.0" fill="rgb(220,62,11)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (2 samples, 0.01%)</title><rect x="1179.4" y="741" width="0.1" height="15.0" fill="rgb(225,205,34)" rx="2" ry="2" />
<text text-anchor="" x="1182.37" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (899 samples, 4.91%)</title><rect x="591.1" y="405" width="57.9" height="15.0" fill="rgb(221,45,30)" rx="2" ry="2" />
<text text-anchor="" x="594.08" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v8..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="11.4" y="725" width="0.7" height="15.0" fill="rgb(208,131,4)" rx="2" ry="2" />
<text text-anchor="" x="14.35" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_124UpdateDescriptorForValueENS0_6HandleINS0_3MapEEEiNS0_17PropertyConstnessENS2_INS0_6ObjectEEE (3 samples, 0.02%)</title><rect x="1069.1" y="389" width="0.1" height="15.0" fill="rgb(224,188,16)" rx="2" ry="2" />
<text text-anchor="" x="1072.06" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="871.6" y="325" width="0.1" height="15.0" fill="rgb(208,83,53)" rx="2" ry="2" />
<text text-anchor="" x="874.56" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (3 samples, 0.02%)</title><rect x="1151.3" y="789" width="0.2" height="15.0" fill="rgb(208,69,45)" rx="2" ry="2" />
<text text-anchor="" x="1154.34" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator15UpdateProtectorEv.part.349 (81 samples, 0.44%)</title><rect x="915.8" y="421" width="5.2" height="15.0" fill="rgb(230,196,48)" rx="2" ry="2" />
<text text-anchor="" x="918.83" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1016.1" y="261" width="0.2" height="15.0" fill="rgb(211,98,49)" rx="2" ry="2" />
<text text-anchor="" x="1019.09" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="437.6" y="341" width="0.1" height="15.0" fill="rgb(209,93,22)" rx="2" ry="2" />
<text text-anchor="" x="440.59" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10CancelableD2Ev (6 samples, 0.03%)</title><rect x="1153.1" y="757" width="0.4" height="15.0" fill="rgb(246,137,48)" rx="2" ry="2" />
<text text-anchor="" x="1156.08" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="694.1" y="245" width="0.1" height="15.0" fill="rgb(210,4,18)" rx="2" ry="2" />
<text text-anchor="" x="697.11" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (10 samples, 0.05%)</title><rect x="820.5" y="405" width="0.7" height="15.0" fill="rgb(241,143,33)" rx="2" ry="2" />
<text text-anchor="" x="823.53" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (33 samples, 0.18%)</title><rect x="828.3" y="421" width="2.2" height="15.0" fill="rgb(209,7,36)" rx="2" ry="2" />
<text text-anchor="" x="831.33" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="819.7" y="421" width="0.2" height="15.0" fill="rgb(250,148,7)" rx="2" ry="2" />
<text text-anchor="" x="822.69" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (54 samples, 0.29%)</title><rect x="492.9" y="373" width="3.5" height="15.0" fill="rgb(240,134,19)" rx="2" ry="2" />
<text text-anchor="" x="495.88" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15ItemParallelJob4Task11RunInternalEv (15 samples, 0.08%)</title><rect x="1178.7" y="757" width="1.0" height="15.0" fill="rgb(242,31,54)" rx="2" ry="2" />
<text text-anchor="" x="1181.72" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="510.8" y="341" width="0.2" height="15.0" fill="rgb(231,128,48)" rx="2" ry="2" />
<text text-anchor="" x="513.79" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.04%)</title><rect x="41.7" y="453" width="0.5" height="15.0" fill="rgb(249,124,15)" rx="2" ry="2" />
<text text-anchor="" x="44.70" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeSetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (59 samples, 0.32%)</title><rect x="813.2" y="421" width="3.8" height="15.0" fill="rgb(254,81,20)" rx="2" ry="2" />
<text text-anchor="" x="816.18" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="411.3" y="373" width="0.1" height="15.0" fill="rgb(215,119,19)" rx="2" ry="2" />
<text text-anchor="" x="414.30" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="834.1" y="197" width="0.1" height="15.0" fill="rgb(208,26,4)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (6 samples, 0.03%)</title><rect x="411.8" y="389" width="0.3" height="15.0" fill="rgb(216,19,5)" rx="2" ry="2" />
<text text-anchor="" x="414.75" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (2 samples, 0.01%)</title><rect x="734.0" y="405" width="0.1" height="15.0" fill="rgb(219,12,36)" rx="2" ry="2" />
<text text-anchor="" x="736.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.06%)</title><rect x="318.1" y="373" width="0.7" height="15.0" fill="rgb(224,140,10)" rx="2" ry="2" />
<text text-anchor="" x="321.13" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10JSReceiver13SetPropertiesEPNS0_10HeapObjectE (2 samples, 0.01%)</title><rect x="829.5" y="357" width="0.1" height="15.0" fill="rgb(217,111,35)" rx="2" ry="2" />
<text text-anchor="" x="832.49" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14PrepareJobImplEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="582.6" y="341" width="0.2" height="15.0" fill="rgb(215,35,43)" rx="2" ry="2" />
<text text-anchor="" x="585.63" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13PropertyArray3setEiPNS0_6ObjectE (52 samples, 0.28%)</title><rect x="1028.0" y="373" width="3.4" height="15.0" fill="rgb(232,129,25)" rx="2" ry="2" />
<text text-anchor="" x="1031.01" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="820.8" y="293" width="0.4" height="15.0" fill="rgb(206,17,22)" rx="2" ry="2" />
<text text-anchor="" x="823.79" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector18SelectInstructionsEv (2 samples, 0.01%)</title><rect x="1179.9" y="661" width="0.1" height="15.0" fill="rgb(227,52,41)" rx="2" ry="2" />
<text text-anchor="" x="1182.88" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (37 samples, 0.20%)</title><rect x="650.2" y="405" width="2.4" height="15.0" fill="rgb(244,72,21)" rx="2" ry="2" />
<text text-anchor="" x="653.23" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (77 samples, 0.42%)</title><rect x="617.4" y="389" width="5.0" height="15.0" fill="rgb(237,207,37)" rx="2" ry="2" />
<text text-anchor="" x="620.43" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.06%)</title><rect x="318.1" y="405" width="0.7" height="15.0" fill="rgb(237,166,44)" rx="2" ry="2" />
<text text-anchor="" x="321.13" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Isolate7IterateEPNS0_11RootVisitorEPNS0_14ThreadLocalTopE (7 samples, 0.04%)</title><rect x="835.5" y="357" width="0.4" height="15.0" fill="rgb(212,139,38)" rx="2" ry="2" />
<text text-anchor="" x="838.48" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (10 samples, 0.05%)</title><rect x="834.1" y="341" width="0.6" height="15.0" fill="rgb(229,119,11)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf (4 samples, 0.02%)</title><rect x="1189.7" y="821" width="0.3" height="15.0" fill="rgb(249,88,35)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="554.3" y="309" width="0.2" height="15.0" fill="rgb(226,70,49)" rx="2" ry="2" />
<text text-anchor="" x="557.28" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="693.8" y="357" width="0.4" height="15.0" fill="rgb(229,59,36)" rx="2" ry="2" />
<text text-anchor="" x="696.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="464.5" y="197" width="0.1" height="15.0" fill="rgb(222,117,23)" rx="2" ry="2" />
<text text-anchor="" x="467.46" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1024.6" y="261" width="0.1" height="15.0" fill="rgb(231,43,26)" rx="2" ry="2" />
<text text-anchor="" x="1027.60" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (574 samples, 3.13%)</title><rect x="532.4" y="405" width="37.0" height="15.0" fill="rgb(216,8,21)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal23OptimizedCompilationJob10PrepareJobEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="582.6" y="357" width="0.2" height="15.0" fill="rgb(206,114,42)" rx="2" ry="2" />
<text text-anchor="" x="585.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.06%)</title><rect x="318.1" y="389" width="0.7" height="15.0" fill="rgb(225,12,2)" rx="2" ry="2" />
<text text-anchor="" x="321.13" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8GCTracer5StartENS0_16GarbageCollectorENS0_23GarbageCollectionReasonEPKc (2 samples, 0.01%)</title><rect x="837.2" y="389" width="0.1" height="15.0" fill="rgb(235,116,39)" rx="2" ry="2" />
<text text-anchor="" x="840.22" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8NewSpace4FlipEv (3 samples, 0.02%)</title><rect x="836.4" y="357" width="0.2" height="15.0" fill="rgb(222,94,37)" rx="2" ry="2" />
<text text-anchor="" x="839.44" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.04%)</title><rect x="393.5" y="341" width="0.5" height="15.0" fill="rgb(213,212,44)" rx="2" ry="2" />
<text text-anchor="" x="396.45" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="393.6" y="309" width="0.4" height="15.0" fill="rgb(251,204,10)" rx="2" ry="2" />
<text text-anchor="" x="396.65" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="341" width="0.1" height="15.0" fill="rgb(208,216,38)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="568.2" y="293" width="0.3" height="15.0" fill="rgb(254,205,46)" rx="2" ry="2" />
<text text-anchor="" x="571.20" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="277" width="0.1" height="15.0" fill="rgb(227,23,36)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1151.6" y="741" width="0.1" height="15.0" fill="rgb(247,174,25)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="834.1" y="261" width="0.1" height="15.0" fill="rgb(246,29,20)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="709" width="0.3" height="15.0" fill="rgb(220,119,18)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (4 samples, 0.02%)</title><rect x="817.0" y="373" width="0.2" height="15.0" fill="rgb(246,171,12)" rx="2" ry="2" />
<text text-anchor="" x="819.99" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (7 samples, 0.04%)</title><rect x="1181.2" y="773" width="0.5" height="15.0" fill="rgb(217,72,28)" rx="2" ry="2" />
<text text-anchor="" x="1184.24" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="938.5" y="357" width="0.2" height="15.0" fill="rgb(206,199,23)" rx="2" ry="2" />
<text text-anchor="" x="941.51" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator31PrepareTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS5_14StoreFromKeyedE (11 samples, 0.06%)</title><rect x="829.7" y="389" width="0.8" height="15.0" fill="rgb(223,40,17)" rx="2" ry="2" />
<text text-anchor="" x="832.74" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="871.5" y="357" width="0.2" height="15.0" fill="rgb(215,12,14)" rx="2" ry="2" />
<text text-anchor="" x="874.50" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="914.7" y="309" width="0.2" height="15.0" fill="rgb(208,105,5)" rx="2" ry="2" />
<text text-anchor="" x="917.73" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1024.6" y="325" width="0.1" height="15.0" fill="rgb(251,195,40)" rx="2" ry="2" />
<text text-anchor="" x="1027.60" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (3 samples, 0.02%)</title><rect x="816.8" y="389" width="0.2" height="15.0" fill="rgb(249,122,6)" rx="2" ry="2" />
<text text-anchor="" x="819.79" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="10.3" y="709" width="0.3" height="15.0" fill="rgb(223,131,13)" rx="2" ry="2" />
<text text-anchor="" x="13.32" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator14WriteDataValueENS0_6HandleINS0_6ObjectEEEb (15 samples, 0.08%)</title><rect x="914.9" y="421" width="0.9" height="15.0" fill="rgb(205,110,10)" rx="2" ry="2" />
<text text-anchor="" x="917.86" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_vsnprintf (7 samples, 0.04%)</title><rect x="10.6" y="789" width="0.4" height="15.0" fill="rgb(225,212,26)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="481.5" y="373" width="0.2" height="15.0" fill="rgb(242,178,23)" rx="2" ry="2" />
<text text-anchor="" x="484.54" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="597" width="1138.6" height="15.0" fill="rgb(234,214,0)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1179.6" y="741" width="0.1" height="15.0" fill="rgb(213,162,29)" rx="2" ry="2" />
<text text-anchor="" x="1182.56" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="10.3" y="741" width="0.3" height="15.0" fill="rgb(247,0,44)" rx="2" ry="2" />
<text text-anchor="" x="13.32" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="181" width="0.1" height="15.0" fill="rgb(216,167,11)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator21LookupInRegularHolderILb0EEENS1_5StateEPNS0_3MapEPNS0_10JSReceiverE (302 samples, 1.65%)</title><rect x="887.3" y="421" width="19.4" height="15.0" fill="rgb(206,5,47)" rx="2" ry="2" />
<text text-anchor="" x="890.28" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="133" width="0.1" height="15.0" fill="rgb(225,122,37)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1024.6" y="277" width="0.1" height="15.0" fill="rgb(208,194,38)" rx="2" ry="2" />
<text text-anchor="" x="1027.60" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="554.3" y="261" width="0.2" height="15.0" fill="rgb(205,16,20)" rx="2" ry="2" />
<text text-anchor="" x="557.35" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (9 samples, 0.05%)</title><rect x="1179.8" y="725" width="0.5" height="15.0" fill="rgb(217,85,41)" rx="2" ry="2" />
<text text-anchor="" x="1182.75" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="902.0" y="389" width="0.2" height="15.0" fill="rgb(241,149,3)" rx="2" ry="2" />
<text text-anchor="" x="905.04" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_lock_wait (6 samples, 0.03%)</title><rect x="1180.9" y="773" width="0.3" height="15.0" fill="rgb(218,63,11)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="677" width="1138.6" height="15.0" fill="rgb(232,207,49)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="464.4" y="261" width="0.2" height="15.0" fill="rgb(209,37,31)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1051.2" y="133" width="0.1" height="15.0" fill="rgb(244,227,1)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1104.1" y="341" width="0.1" height="15.0" fill="rgb(211,98,47)" rx="2" ry="2" />
<text text-anchor="" x="1107.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="833.9" y="197" width="0.2" height="15.0" fill="rgb(217,144,15)" rx="2" ry="2" />
<text text-anchor="" x="836.93" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal22SerializerDeserializer7IterateEPNS0_7IsolateEPNS0_11RootVisitorE (9 samples, 0.05%)</title><rect x="834.8" y="357" width="0.6" height="15.0" fill="rgb(225,112,36)" rx="2" ry="2" />
<text text-anchor="" x="837.83" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8NewSpace12AddFreshPageEv (2 samples, 0.01%)</title><rect x="832.1" y="373" width="0.2" height="15.0" fill="rgb(238,162,32)" rx="2" ry="2" />
<text text-anchor="" x="835.13" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="833.9" y="213" width="0.2" height="15.0" fill="rgb(248,130,11)" rx="2" ry="2" />
<text text-anchor="" x="836.93" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9FieldType4castEPNS0_6ObjectE (5 samples, 0.03%)</title><rect x="1117.4" y="357" width="0.3" height="15.0" fill="rgb(240,20,30)" rx="2" ry="2" />
<text text-anchor="" x="1120.38" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="554.3" y="357" width="0.2" height="15.0" fill="rgb(216,57,53)" rx="2" ry="2" />
<text text-anchor="" x="557.28" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (47 samples, 0.26%)</title><rect x="810.2" y="357" width="3.0" height="15.0" fill="rgb(205,106,48)" rx="2" ry="2" />
<text text-anchor="" x="813.16" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="629" width="0.3" height="15.0" fill="rgb(220,140,11)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="871.5" y="373" width="0.2" height="15.0" fill="rgb(237,83,24)" rx="2" ry="2" />
<text text-anchor="" x="874.50" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.9" y="709" width="0.3" height="15.0" fill="rgb(224,142,16)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeSetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="584.8" y="405" width="0.2" height="15.0" fill="rgb(245,171,33)" rx="2" ry="2" />
<text text-anchor="" x="587.83" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="510.8" y="357" width="0.2" height="15.0" fill="rgb(242,115,15)" rx="2" ry="2" />
<text text-anchor="" x="513.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.9" y="693" width="0.3" height="15.0" fill="rgb(215,139,8)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="510.9" y="277" width="0.1" height="15.0" fill="rgb(251,0,29)" rx="2" ry="2" />
<text text-anchor="" x="513.85" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="554.3" y="293" width="0.2" height="15.0" fill="rgb(236,185,46)" rx="2" ry="2" />
<text text-anchor="" x="557.28" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.9" y="645" width="0.3" height="15.0" fill="rgb(252,14,8)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="834.3" y="229" width="0.3" height="15.0" fill="rgb(220,11,6)" rx="2" ry="2" />
<text text-anchor="" x="837.32" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (76 samples, 0.42%)</title><rect x="437.7" y="373" width="4.9" height="15.0" fill="rgb(222,51,1)" rx="2" ry="2" />
<text text-anchor="" x="440.72" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14CancelableTaskC1EPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="820.3" y="421" width="0.2" height="15.0" fill="rgb(220,78,20)" rx="2" ry="2" />
<text text-anchor="" x="823.34" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="481.5" y="261" width="0.2" height="15.0" fill="rgb(224,78,6)" rx="2" ry="2" />
<text text-anchor="" x="484.54" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="964.3" y="357" width="0.3" height="15.0" fill="rgb(219,61,34)" rx="2" ry="2" />
<text text-anchor="" x="967.28" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (11 samples, 0.06%)</title><rect x="1050.9" y="309" width="0.8" height="15.0" fill="rgb(252,138,31)" rx="2" ry="2" />
<text text-anchor="" x="1053.95" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="677" width="0.3" height="15.0" fill="rgb(206,20,2)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (547 samples, 2.99%)</title><rect x="534.2" y="389" width="35.2" height="15.0" fill="rgb(247,57,37)" rx="2" ry="2" />
<text text-anchor="" x="537.18" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (9 samples, 0.05%)</title><rect x="410.7" y="373" width="0.6" height="15.0" fill="rgb(246,158,11)" rx="2" ry="2" />
<text text-anchor="" x="413.72" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="796.2" y="373" width="0.1" height="15.0" fill="rgb(233,214,26)" rx="2" ry="2" />
<text text-anchor="" x="799.17" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="11.4" y="709" width="0.7" height="15.0" fill="rgb(224,102,27)" rx="2" ry="2" />
<text text-anchor="" x="14.35" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="1180.9" y="597" width="0.3" height="15.0" fill="rgb(217,46,6)" rx="2" ry="2" />
<text text-anchor="" x="1183.91" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8NewSpace16EnsureAllocationEiNS0_19AllocationAlignmentE (2 samples, 0.01%)</title><rect x="813.1" y="341" width="0.1" height="15.0" fill="rgb(231,189,37)" rx="2" ry="2" />
<text text-anchor="" x="816.05" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal38Runtime_CompileOptimized_NotConcurrentEiPPNS0_6ObjectEPNS0_7IsolateE (6 samples, 0.03%)</title><rect x="1135.2" y="453" width="0.4" height="15.0" fill="rgb(244,169,12)" rx="2" ry="2" />
<text text-anchor="" x="1138.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="796.2" y="389" width="0.1" height="15.0" fill="rgb(233,56,51)" rx="2" ry="2" />
<text text-anchor="" x="799.17" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="617.2" y="389" width="0.2" height="15.0" fill="rgb(241,110,19)" rx="2" ry="2" />
<text text-anchor="" x="620.17" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="197" width="0.1" height="15.0" fill="rgb(250,147,10)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1104.1" y="373" width="0.1" height="15.0" fill="rgb(215,215,49)" rx="2" ry="2" />
<text text-anchor="" x="1107.11" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="318.6" y="277" width="0.2" height="15.0" fill="rgb(210,33,35)" rx="2" ry="2" />
<text text-anchor="" x="321.64" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (401 samples, 2.19%)</title><rect x="734.1" y="405" width="25.9" height="15.0" fill="rgb(225,209,41)" rx="2" ry="2" />
<text text-anchor="" x="737.12" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="833.9" y="181" width="0.2" height="15.0" fill="rgb(230,151,47)" rx="2" ry="2" />
<text text-anchor="" x="836.93" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="694.1" y="213" width="0.1" height="15.0" fill="rgb(211,72,43)" rx="2" ry="2" />
<text text-anchor="" x="697.11" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="492.7" y="357" width="0.2" height="15.0" fill="rgb(220,15,3)" rx="2" ry="2" />
<text text-anchor="" x="495.75" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="10.1" y="757" width="0.1" height="15.0" fill="rgb(213,133,43)" rx="2" ry="2" />
<text text-anchor="" x="13.06" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="11.2" y="789" width="0.2" height="15.0" fill="rgb(211,168,8)" rx="2" ry="2" />
<text text-anchor="" x="14.22" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (17,674 samples, 96.51%)</title><rect x="12.1" y="789" width="1138.9" height="15.0" fill="rgb(247,101,5)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="587.4" y="165" width="0.1" height="15.0" fill="rgb(234,228,28)" rx="2" ry="2" />
<text text-anchor="" x="590.40" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1151.6" y="709" width="0.1" height="15.0" fill="rgb(243,195,31)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory15NewFillerObjectEibNS0_15AllocationSpaceE (84 samples, 0.46%)</title><rect x="832.1" y="437" width="5.4" height="15.0" fill="rgb(213,122,4)" rx="2" ry="2" />
<text text-anchor="" x="835.06" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9SemiSpace13FixPagesFlagsEll (3 samples, 0.02%)</title><rect x="836.4" y="341" width="0.2" height="15.0" fill="rgb(211,190,48)" rx="2" ry="2" />
<text text-anchor="" x="839.44" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (6 samples, 0.03%)</title><rect x="818.9" y="421" width="0.4" height="15.0" fill="rgb(205,213,8)" rx="2" ry="2" />
<text text-anchor="" x="821.92" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="617.2" y="341" width="0.2" height="15.0" fill="rgb(237,110,46)" rx="2" ry="2" />
<text text-anchor="" x="620.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1016.1" y="277" width="0.2" height="15.0" fill="rgb(232,130,11)" rx="2" ry="2" />
<text text-anchor="" x="1019.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node15LoadEnvironmentEPNS_11EnvironmentE (17,674 samples, 96.51%)</title><rect x="12.1" y="741" width="1138.9" height="15.0" fill="rgb(254,162,5)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4node15LoadEnvironmentEPNS_11EnvironmentE</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (14 samples, 0.08%)</title><rect x="317.9" y="437" width="0.9" height="15.0" fill="rgb(248,208,48)" rx="2" ry="2" />
<text text-anchor="" x="320.94" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="1178.4" y="725" width="0.1" height="15.0" fill="rgb(234,106,7)" rx="2" ry="2" />
<text text-anchor="" x="1181.40" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.04%)</title><rect x="41.7" y="437" width="0.5" height="15.0" fill="rgb(252,200,32)" rx="2" ry="2" />
<text text-anchor="" x="44.70" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (164 samples, 0.90%)</title><rect x="512.6" y="373" width="10.6" height="15.0" fill="rgb(251,47,2)" rx="2" ry="2" />
<text text-anchor="" x="515.59" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator29ApplyTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEE (39 samples, 0.21%)</title><rect x="921.0" y="421" width="2.6" height="15.0" fill="rgb(250,145,18)" rx="2" ry="2" />
<text text-anchor="" x="924.05" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="1181.2" y="757" width="0.5" height="15.0" fill="rgb(234,210,34)" rx="2" ry="2" />
<text text-anchor="" x="1184.24" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap31MonotonicallyIncreasingTimeInMsEv (2 samples, 0.01%)</title><rect x="1178.1" y="725" width="0.2" height="15.0" fill="rgb(218,93,10)" rx="2" ry="2" />
<text text-anchor="" x="1181.14" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15TransitionArray13SearchDetailsEiNS0_12PropertyKindENS0_18PropertyAttributesEPi (5 samples, 0.03%)</title><rect x="1117.7" y="373" width="0.3" height="15.0" fill="rgb(228,216,33)" rx="2" ry="2" />
<text text-anchor="" x="1120.70" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="693.8" y="309" width="0.4" height="15.0" fill="rgb(208,168,54)" rx="2" ry="2" />
<text text-anchor="" x="696.79" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1181.3" y="741" width="0.4" height="15.0" fill="rgb(216,50,10)" rx="2" ry="2" />
<text text-anchor="" x="1184.30" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="568.2" y="341" width="0.3" height="15.0" fill="rgb(252,130,46)" rx="2" ry="2" />
<text text-anchor="" x="571.20" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (76 samples, 0.42%)</title><rect x="832.3" y="389" width="4.9" height="15.0" fill="rgb(215,200,2)" rx="2" ry="2" />
<text text-anchor="" x="835.32" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (7 samples, 0.04%)</title><rect x="10.6" y="773" width="0.4" height="15.0" fill="rgb(230,143,46)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="796.2" y="309" width="0.1" height="15.0" fill="rgb(223,23,35)" rx="2" ry="2" />
<text text-anchor="" x="799.17" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="11.4" y="677" width="0.7" height="15.0" fill="rgb(227,126,50)" rx="2" ry="2" />
<text text-anchor="" x="14.35" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="725" width="0.3" height="15.0" fill="rgb(205,178,28)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (14 samples, 0.08%)</title><rect x="528.7" y="373" width="0.9" height="15.0" fill="rgb(219,33,23)" rx="2" ry="2" />
<text text-anchor="" x="531.70" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="41.6" y="469" width="0.6" height="15.0" fill="rgb(237,212,14)" rx="2" ry="2" />
<text text-anchor="" x="44.64" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="964.4" y="245" width="0.2" height="15.0" fill="rgb(251,145,19)" rx="2" ry="2" />
<text text-anchor="" x="967.41" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14CancelableTask3RunEv (421 samples, 2.30%)</title><rect x="1153.5" y="773" width="27.2" height="15.0" fill="rgb(232,169,47)" rx="2" ry="2" />
<text text-anchor="" x="1156.53" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1051.2" y="165" width="0.1" height="15.0" fill="rgb(234,14,52)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="938.6" y="309" width="0.1" height="15.0" fill="rgb(209,18,33)" rx="2" ry="2" />
<text text-anchor="" x="941.57" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="757" width="0.3" height="15.0" fill="rgb(210,219,43)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (5 samples, 0.03%)</title><rect x="1135.3" y="405" width="0.3" height="15.0" fill="rgb(228,19,44)" rx="2" ry="2" />
<text text-anchor="" x="1138.29" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="964.2" y="389" width="0.4" height="15.0" fill="rgb(220,222,6)" rx="2" ry="2" />
<text text-anchor="" x="967.22" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (19 samples, 0.10%)</title><rect x="465.1" y="389" width="1.2" height="15.0" fill="rgb(253,79,35)" rx="2" ry="2" />
<text text-anchor="" x="468.11" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="261" width="0.1" height="15.0" fill="rgb(219,53,14)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="41.8" y="389" width="0.4" height="15.0" fill="rgb(207,116,15)" rx="2" ry="2" />
<text text-anchor="" x="44.77" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (949 samples, 5.18%)</title><rect x="587.9" y="421" width="61.1" height="15.0" fill="rgb(228,62,36)" rx="2" ry="2" />
<text text-anchor="" x="590.85" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v8..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory15NewFillerObjectEibNS0_15AllocationSpaceE (2 samples, 0.01%)</title><rect x="821.2" y="421" width="0.2" height="15.0" fill="rgb(219,1,36)" rx="2" ry="2" />
<text text-anchor="" x="824.24" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal13StandardFrame20IterateCompiledFrameEPNS0_11RootVisitorE (2 samples, 0.01%)</title><rect x="835.7" y="341" width="0.2" height="15.0" fill="rgb(231,68,49)" rx="2" ry="2" />
<text text-anchor="" x="838.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (216 samples, 1.18%)</title><rect x="554.5" y="373" width="14.0" height="15.0" fill="rgb(212,191,40)" rx="2" ry="2" />
<text text-anchor="" x="557.54" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (2 samples, 0.01%)</title><rect x="821.2" y="405" width="0.2" height="15.0" fill="rgb(243,136,43)" rx="2" ry="2" />
<text text-anchor="" x="824.24" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (12 samples, 0.07%)</title><rect x="11.4" y="789" width="0.7" height="15.0" fill="rgb(233,70,4)" rx="2" ry="2" />
<text text-anchor="" x="14.35" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="411.3" y="389" width="0.1" height="15.0" fill="rgb(220,134,37)" rx="2" ry="2" />
<text text-anchor="" x="414.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (176 samples, 0.96%)</title><rect x="748.6" y="389" width="11.4" height="15.0" fill="rgb(223,217,25)" rx="2" ry="2" />
<text text-anchor="" x="751.62" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.9" y="677" width="0.3" height="15.0" fill="rgb(248,114,20)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1123.8" y="389" width="0.2" height="15.0" fill="rgb(236,113,26)" rx="2" ry="2" />
<text text-anchor="" x="1126.83" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="741" width="0.3" height="15.0" fill="rgb(206,214,1)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15TransitionArray13SearchDetailsEiNS0_12PropertyKindENS0_18PropertyAttributesEPi (2 samples, 0.01%)</title><rect x="830.3" y="341" width="0.2" height="15.0" fill="rgb(253,46,34)" rx="2" ry="2" />
<text text-anchor="" x="833.32" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="213" width="0.1" height="15.0" fill="rgb(235,5,30)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map21GetInObjectPropertiesEv (8 samples, 0.04%)</title><rect x="1053.8" y="373" width="0.5" height="15.0" fill="rgb(215,41,19)" rx="2" ry="2" />
<text text-anchor="" x="1056.78" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="871.6" y="293" width="0.1" height="15.0" fill="rgb(249,50,25)" rx="2" ry="2" />
<text text-anchor="" x="874.56" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="11.4" y="773" width="0.7" height="15.0" fill="rgb(212,180,15)" rx="2" ry="2" />
<text text-anchor="" x="14.35" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="549" width="1138.6" height="15.0" fill="rgb(231,33,11)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="833.9" y="309" width="0.2" height="15.0" fill="rgb(217,122,34)" rx="2" ry="2" />
<text text-anchor="" x="836.87" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="914.7" y="421" width="0.2" height="15.0" fill="rgb(240,97,36)" rx="2" ry="2" />
<text text-anchor="" x="917.73" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="117" width="0.1" height="15.0" fill="rgb(239,106,37)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1016.1" y="357" width="0.2" height="15.0" fill="rgb(221,139,17)" rx="2" ry="2" />
<text text-anchor="" x="1019.09" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1150.7" y="693" width="0.3" height="15.0" fill="rgb(205,6,33)" rx="2" ry="2" />
<text text-anchor="" x="1153.69" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (4 samples, 0.02%)</title><rect x="761.2" y="405" width="0.3" height="15.0" fill="rgb(235,157,29)" rx="2" ry="2" />
<text text-anchor="" x="764.25" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Scavenger12ScavengePageEPNS0_11MemoryChunkE (2 samples, 0.01%)</title><rect x="1179.0" y="725" width="0.1" height="15.0" fill="rgb(211,194,26)" rx="2" ry="2" />
<text text-anchor="" x="1181.98" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="568.2" y="325" width="0.3" height="15.0" fill="rgb(213,61,32)" rx="2" ry="2" />
<text text-anchor="" x="571.20" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="309" width="0.1" height="15.0" fill="rgb(244,90,8)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10HeapObject20synchronized_set_mapEPNS0_3MapE (8 samples, 0.04%)</title><rect x="981.6" y="389" width="0.5" height="15.0" fill="rgb(251,94,51)" rx="2" ry="2" />
<text text-anchor="" x="984.55" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator5StartILb0EEEvv (404 samples, 2.21%)</title><rect x="880.7" y="437" width="26.0" height="15.0" fill="rgb(235,36,33)" rx="2" ry="2" />
<text text-anchor="" x="883.71" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.04%)</title><rect x="820.7" y="357" width="0.5" height="15.0" fill="rgb(237,149,28)" rx="2" ry="2" />
<text text-anchor="" x="823.66" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1043.5" y="325" width="0.1" height="15.0" fill="rgb(221,69,10)" rx="2" ry="2" />
<text text-anchor="" x="1046.47" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="726.0" y="325" width="0.1" height="15.0" fill="rgb(224,108,17)" rx="2" ry="2" />
<text text-anchor="" x="729.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.05%)</title><rect x="820.5" y="389" width="0.7" height="15.0" fill="rgb(223,54,27)" rx="2" ry="2" />
<text text-anchor="" x="823.53" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (9 samples, 0.05%)</title><rect x="410.7" y="389" width="0.6" height="15.0" fill="rgb(205,100,39)" rx="2" ry="2" />
<text text-anchor="" x="413.72" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.02%)</title><rect x="820.0" y="421" width="0.2" height="15.0" fill="rgb(210,41,34)" rx="2" ry="2" />
<text text-anchor="" x="823.01" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9FieldType3AnyEv (7 samples, 0.04%)</title><rect x="1122.0" y="373" width="0.5" height="15.0" fill="rgb(250,61,3)" rx="2" ry="2" />
<text text-anchor="" x="1125.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal16LargeObjectSpace8FindPageEm (21 samples, 0.11%)</title><rect x="1176.7" y="741" width="1.3" height="15.0" fill="rgb(217,183,36)" rx="2" ry="2" />
<text text-anchor="" x="1179.66" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal3Map6UpdateENS0_6HandleIS1_EE (15 samples, 0.08%)</title><rect x="1122.9" y="389" width="0.9" height="15.0" fill="rgb(233,215,38)" rx="2" ry="2" />
<text text-anchor="" x="1125.86" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (10 samples, 0.05%)</title><rect x="533.0" y="389" width="0.7" height="15.0" fill="rgb(245,39,20)" rx="2" ry="2" />
<text text-anchor="" x="536.02" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="834.4" y="165" width="0.2" height="15.0" fill="rgb(213,32,50)" rx="2" ry="2" />
<text text-anchor="" x="837.45" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.02%)</title><rect x="1189.2" y="773" width="0.2" height="15.0" fill="rgb(206,226,24)" rx="2" ry="2" />
<text text-anchor="" x="1192.16" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="464.4" y="325" width="0.2" height="15.0" fill="rgb(243,15,6)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (4 samples, 0.02%)</title><rect x="1189.5" y="789" width="0.2" height="15.0" fill="rgb(241,132,28)" rx="2" ry="2" />
<text text-anchor="" x="1192.48" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="693.8" y="341" width="0.4" height="15.0" fill="rgb(244,199,5)" rx="2" ry="2" />
<text text-anchor="" x="696.79" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector10VisitBlockEPNS1_10BasicBlockE (2 samples, 0.01%)</title><rect x="1179.9" y="645" width="0.1" height="15.0" fill="rgb(205,184,37)" rx="2" ry="2" />
<text text-anchor="" x="1182.88" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="393.8" y="277" width="0.2" height="15.0" fill="rgb(229,59,39)" rx="2" ry="2" />
<text text-anchor="" x="396.78" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (15 samples, 0.08%)</title><rect x="796.4" y="389" width="1.0" height="15.0" fill="rgb(213,76,18)" rx="2" ry="2" />
<text text-anchor="" x="799.43" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.04%)</title><rect x="820.7" y="373" width="0.5" height="15.0" fill="rgb(253,50,38)" rx="2" ry="2" />
<text text-anchor="" x="823.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="726.0" y="373" width="0.1" height="15.0" fill="rgb(219,0,22)" rx="2" ry="2" />
<text text-anchor="" x="729.00" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="481.5" y="245" width="0.2" height="15.0" fill="rgb(237,153,4)" rx="2" ry="2" />
<text text-anchor="" x="484.54" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1150.7" y="677" width="0.3" height="15.0" fill="rgb(217,115,23)" rx="2" ry="2" />
<text text-anchor="" x="1153.69" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (3 samples, 0.02%)</title><rect x="833.9" y="325" width="0.2" height="15.0" fill="rgb(244,61,29)" rx="2" ry="2" />
<text text-anchor="" x="836.87" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="528.6" y="325" width="0.1" height="15.0" fill="rgb(238,115,35)" rx="2" ry="2" />
<text text-anchor="" x="531.57" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (15 samples, 0.08%)</title><rect x="183.5" y="357" width="1.0" height="15.0" fill="rgb(225,74,51)" rx="2" ry="2" />
<text text-anchor="" x="186.52" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="820.9" y="261" width="0.3" height="15.0" fill="rgb(207,8,23)" rx="2" ry="2" />
<text text-anchor="" x="823.85" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1016.1" y="293" width="0.2" height="15.0" fill="rgb(227,17,22)" rx="2" ry="2" />
<text text-anchor="" x="1019.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,669 samples, 96.48%)</title><rect x="12.2" y="485" width="1138.5" height="15.0" fill="rgb(249,83,2)" rx="2" ry="2" />
<text text-anchor="" x="15.19" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal14FeedbackVector7GetKindENS0_12FeedbackSlotE (58 samples, 0.32%)</title><rect x="1145.9" y="453" width="3.7" height="15.0" fill="rgb(250,137,6)" rx="2" ry="2" />
<text text-anchor="" x="1148.86" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal36Runtime_CompileForOnStackReplacementEiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="817.0" y="421" width="0.2" height="15.0" fill="rgb(210,52,18)" rx="2" ry="2" />
<text text-anchor="" x="819.99" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory16CopyArrayAndGrowINS0_13PropertyArrayEEENS0_6HandleIT_EES6_iNS0_13PretenureFlagE (7 samples, 0.04%)</title><rect x="1031.4" y="373" width="0.4" height="15.0" fill="rgb(232,111,23)" rx="2" ry="2" />
<text text-anchor="" x="1034.36" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1150.7" y="709" width="0.3" height="15.0" fill="rgb(249,215,20)" rx="2" ry="2" />
<text text-anchor="" x="1153.69" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (2 samples, 0.01%)</title><rect x="572.5" y="373" width="0.1" height="15.0" fill="rgb(207,129,11)" rx="2" ry="2" />
<text text-anchor="" x="575.45" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (473 samples, 2.58%)</title><rect x="782.7" y="405" width="30.5" height="15.0" fill="rgb(208,229,27)" rx="2" ry="2" />
<text text-anchor="" x="785.71" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="357" width="0.1" height="15.0" fill="rgb(226,96,3)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8NewSpace16EnsureAllocationEiNS0_19AllocationAlignmentE (2 samples, 0.01%)</title><rect x="832.1" y="389" width="0.2" height="15.0" fill="rgb(253,185,51)" rx="2" ry="2" />
<text text-anchor="" x="835.13" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor16SearchTransitionEPNS0_4NameENS0_12PropertyKindENS0_18PropertyAttributesE (22 samples, 0.12%)</title><rect x="1120.6" y="373" width="1.4" height="15.0" fill="rgb(236,170,35)" rx="2" ry="2" />
<text text-anchor="" x="1123.60" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="914.7" y="405" width="0.2" height="15.0" fill="rgb(241,133,49)" rx="2" ry="2" />
<text text-anchor="" x="917.73" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1024.6" y="293" width="0.1" height="15.0" fill="rgb(213,176,36)" rx="2" ry="2" />
<text text-anchor="" x="1027.60" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="318.7" y="261" width="0.1" height="15.0" fill="rgb(207,173,54)" rx="2" ry="2" />
<text text-anchor="" x="321.71" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (18 samples, 0.10%)</title><rect x="826.4" y="437" width="1.2" height="15.0" fill="rgb(218,165,45)" rx="2" ry="2" />
<text text-anchor="" x="829.39" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.9" y="725" width="0.3" height="15.0" fill="rgb(229,112,21)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="617.2" y="373" width="0.2" height="15.0" fill="rgb(217,88,26)" rx="2" ry="2" />
<text text-anchor="" x="620.24" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler22GetOptimizedCodeForOSRENS0_6HandleINS0_10JSFunctionEEENS0_9BailoutIdEPNS0_15JavaScriptFrameE (4 samples, 0.02%)</title><rect x="817.0" y="405" width="0.2" height="15.0" fill="rgb(241,204,53)" rx="2" ry="2" />
<text text-anchor="" x="819.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9FieldType3AnyEv (7 samples, 0.04%)</title><rect x="1116.9" y="357" width="0.5" height="15.0" fill="rgb(211,109,37)" rx="2" ry="2" />
<text text-anchor="" x="1119.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="834.1" y="293" width="0.1" height="15.0" fill="rgb(238,153,47)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map14GetBackPointerEv (16 samples, 0.09%)</title><rect x="1051.7" y="373" width="1.0" height="15.0" fill="rgb(244,222,17)" rx="2" ry="2" />
<text text-anchor="" x="1054.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="938.5" y="341" width="0.2" height="15.0" fill="rgb(232,210,20)" rx="2" ry="2" />
<text text-anchor="" x="941.51" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.04%)</title><rect x="41.7" y="421" width="0.5" height="15.0" fill="rgb(235,150,8)" rx="2" ry="2" />
<text text-anchor="" x="44.70" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (17 samples, 0.09%)</title><rect x="1149.6" y="469" width="1.1" height="15.0" fill="rgb(246,216,21)" rx="2" ry="2" />
<text text-anchor="" x="1152.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="437.6" y="357" width="0.1" height="15.0" fill="rgb(231,44,2)" rx="2" ry="2" />
<text text-anchor="" x="440.59" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1152.9" y="773" width="0.1" height="15.0" fill="rgb(212,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1155.89" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal27OptimizingCompileDispatcher11CompileTask11RunInternalEv (9 samples, 0.05%)</title><rect x="1179.8" y="757" width="0.5" height="15.0" fill="rgb(234,124,6)" rx="2" ry="2" />
<text text-anchor="" x="1182.75" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9ScavengerC1EPNS0_4HeapEbPNS0_8WorklistISt4pairIPNS0_10HeapObjectEiELi256EEESA_i (2 samples, 0.01%)</title><rect x="836.6" y="357" width="0.2" height="15.0" fill="rgb(239,130,17)" rx="2" ry="2" />
<text text-anchor="" x="839.64" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (19 samples, 0.10%)</title><rect x="183.3" y="421" width="1.2" height="15.0" fill="rgb(243,79,8)" rx="2" ry="2" />
<text text-anchor="" x="186.27" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="481.5" y="357" width="0.2" height="15.0" fill="rgb(211,183,50)" rx="2" ry="2" />
<text text-anchor="" x="484.54" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="568.3" y="229" width="0.2" height="15.0" fill="rgb(242,41,51)" rx="2" ry="2" />
<text text-anchor="" x="571.33" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject12MigrateToMapENS0_6HandleIS1_EENS2_INS0_3MapEEEi (28 samples, 0.15%)</title><rect x="1124.7" y="405" width="1.8" height="15.0" fill="rgb(229,194,6)" rx="2" ry="2" />
<text text-anchor="" x="1127.73" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1123.8" y="373" width="0.2" height="15.0" fill="rgb(243,112,50)" rx="2" ry="2" />
<text text-anchor="" x="1126.83" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="464.4" y="277" width="0.2" height="15.0" fill="rgb(233,13,12)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (4 samples, 0.02%)</title><rect x="817.0" y="357" width="0.2" height="15.0" fill="rgb(224,135,43)" rx="2" ry="2" />
<text text-anchor="" x="819.99" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="871.5" y="421" width="0.2" height="15.0" fill="rgb(212,28,6)" rx="2" ry="2" />
<text text-anchor="" x="874.50" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (29 samples, 0.16%)</title><rect x="585.7" y="373" width="1.8" height="15.0" fill="rgb(229,14,52)" rx="2" ry="2" />
<text text-anchor="" x="588.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (16 samples, 0.09%)</title><rect x="776.5" y="389" width="1.0" height="15.0" fill="rgb(232,49,7)" rx="2" ry="2" />
<text text-anchor="" x="779.46" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,669 samples, 96.48%)</title><rect x="12.2" y="501" width="1138.5" height="15.0" fill="rgb(249,127,31)" rx="2" ry="2" />
<text text-anchor="" x="15.19" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="437.6" y="373" width="0.1" height="15.0" fill="rgb(242,163,53)" rx="2" ry="2" />
<text text-anchor="" x="440.59" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.05%)</title><rect x="318.2" y="341" width="0.6" height="15.0" fill="rgb(206,27,53)" rx="2" ry="2" />
<text text-anchor="" x="321.19" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (1,301 samples, 7.10%)</title><rect x="649.0" y="421" width="83.8" height="15.0" fill="rgb(253,31,51)" rx="2" ry="2" />
<text text-anchor="" x="652.00" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1051.2" y="101" width="0.1" height="15.0" fill="rgb(244,86,14)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="393.2" y="421" width="0.8" height="15.0" fill="rgb(227,6,27)" rx="2" ry="2" />
<text text-anchor="" x="396.20" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1024.6" y="341" width="0.1" height="15.0" fill="rgb(228,38,14)" rx="2" ry="2" />
<text text-anchor="" x="1027.60" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="938.5" y="405" width="0.2" height="15.0" fill="rgb(239,44,7)" rx="2" ry="2" />
<text text-anchor="" x="941.51" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1051.2" y="85" width="0.1" height="15.0" fill="rgb(253,173,43)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="554.3" y="341" width="0.2" height="15.0" fill="rgb(254,85,14)" rx="2" ry="2" />
<text text-anchor="" x="557.28" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1016.2" y="213" width="0.1" height="15.0" fill="rgb(233,210,37)" rx="2" ry="2" />
<text text-anchor="" x="1019.22" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.04%)</title><rect x="820.7" y="341" width="0.5" height="15.0" fill="rgb(215,124,2)" rx="2" ry="2" />
<text text-anchor="" x="823.66" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (13 samples, 0.07%)</title><rect x="183.7" y="341" width="0.8" height="15.0" fill="rgb(216,54,48)" rx="2" ry="2" />
<text text-anchor="" x="186.65" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1151.6" y="693" width="0.1" height="15.0" fill="rgb(209,201,34)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl17AllocateRegistersEPKNS0_21RegisterConfigurationEPNS1_14CallDescriptorEb (2 samples, 0.01%)</title><rect x="817.0" y="325" width="0.1" height="15.0" fill="rgb(236,72,7)" rx="2" ry="2" />
<text text-anchor="" x="819.99" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal3Map24TransitionToDataPropertyENS0_6HandleIS1_EENS2_INS0_4NameEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS0_17PropertyConstnessENS6_14StoreFromKeyedE (12 samples, 0.07%)</title><rect x="1124.0" y="405" width="0.7" height="15.0" fill="rgb(205,148,9)" rx="2" ry="2" />
<text text-anchor="" x="1126.95" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="464.4" y="357" width="0.2" height="15.0" fill="rgb(225,179,5)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8NewSpace25ResetLinearAllocationAreaEv (8 samples, 0.04%)</title><rect x="835.9" y="357" width="0.5" height="15.0" fill="rgb(208,136,0)" rx="2" ry="2" />
<text text-anchor="" x="838.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="914.7" y="357" width="0.2" height="15.0" fill="rgb(248,95,24)" rx="2" ry="2" />
<text text-anchor="" x="917.73" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (54 samples, 0.29%)</title><rect x="1185.7" y="565" width="3.5" height="15.0" fill="rgb(210,213,3)" rx="2" ry="2" />
<text text-anchor="" x="1188.68" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="184.0" y="309" width="0.5" height="15.0" fill="rgb(217,152,47)" rx="2" ry="2" />
<text text-anchor="" x="187.04" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.9" y="757" width="0.3" height="15.0" fill="rgb(209,2,44)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="572.5" y="389" width="0.1" height="15.0" fill="rgb(217,194,4)" rx="2" ry="2" />
<text text-anchor="" x="575.45" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="464.5" y="229" width="0.1" height="15.0" fill="rgb(242,215,35)" rx="2" ry="2" />
<text text-anchor="" x="467.46" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="759.8" y="373" width="0.2" height="15.0" fill="rgb(217,194,32)" rx="2" ry="2" />
<text text-anchor="" x="762.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1151.6" y="789" width="0.1" height="15.0" fill="rgb(241,153,35)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal23OptimizedCompilationJob10ExecuteJobEv (9 samples, 0.05%)</title><rect x="1179.8" y="741" width="0.5" height="15.0" fill="rgb(208,212,7)" rx="2" ry="2" />
<text text-anchor="" x="1182.75" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1189.0" y="533" width="0.2" height="15.0" fill="rgb(211,188,36)" rx="2" ry="2" />
<text text-anchor="" x="1191.97" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="554.4" y="229" width="0.1" height="15.0" fill="rgb(217,138,44)" rx="2" ry="2" />
<text text-anchor="" x="557.41" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="759.8" y="293" width="0.2" height="15.0" fill="rgb(233,71,0)" rx="2" ry="2" />
<text text-anchor="" x="762.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (10 samples, 0.05%)</title><rect x="466.3" y="389" width="0.7" height="15.0" fill="rgb(241,189,11)" rx="2" ry="2" />
<text text-anchor="" x="469.33" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (18 samples, 0.10%)</title><rect x="821.4" y="437" width="1.1" height="15.0" fill="rgb(246,1,42)" rx="2" ry="2" />
<text text-anchor="" x="824.37" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (29 samples, 0.16%)</title><rect x="585.7" y="341" width="1.8" height="15.0" fill="rgb(240,118,0)" rx="2" ry="2" />
<text text-anchor="" x="588.66" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (5 samples, 0.03%)</title><rect x="733.7" y="405" width="0.3" height="15.0" fill="rgb(252,30,38)" rx="2" ry="2" />
<text text-anchor="" x="736.67" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="510.8" y="373" width="0.2" height="15.0" fill="rgb(211,82,2)" rx="2" ry="2" />
<text text-anchor="" x="513.79" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="826.1" y="437" width="0.3" height="15.0" fill="rgb(241,28,12)" rx="2" ry="2" />
<text text-anchor="" x="829.13" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="693.8" y="325" width="0.4" height="15.0" fill="rgb(211,159,42)" rx="2" ry="2" />
<text text-anchor="" x="696.79" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="101" width="0.1" height="15.0" fill="rgb(229,22,24)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___printf_fp_l (3 samples, 0.02%)</title><rect x="10.7" y="757" width="0.2" height="15.0" fill="rgb(248,192,18)" rx="2" ry="2" />
<text text-anchor="" x="13.71" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="528.5" y="357" width="0.2" height="15.0" fill="rgb(241,226,37)" rx="2" ry="2" />
<text text-anchor="" x="531.51" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator15UpdateProtectorEv.part.349 (27 samples, 0.15%)</title><rect x="877.7" y="437" width="1.8" height="15.0" fill="rgb(239,212,46)" rx="2" ry="2" />
<text text-anchor="" x="880.75" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="389" width="0.1" height="15.0" fill="rgb(221,93,3)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal16LargeObjectSpace8FindPageEm (216 samples, 1.18%)</title><rect x="1162.7" y="725" width="14.0" height="15.0" fill="rgb(206,135,19)" rx="2" ry="2" />
<text text-anchor="" x="1165.74" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="1180.9" y="581" width="0.3" height="15.0" fill="rgb(209,41,45)" rx="2" ry="2" />
<text text-anchor="" x="1183.91" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="825.9" y="437" width="0.2" height="15.0" fill="rgb(214,110,30)" rx="2" ry="2" />
<text text-anchor="" x="828.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="584.6" y="405" width="0.2" height="15.0" fill="rgb(254,187,2)" rx="2" ry="2" />
<text text-anchor="" x="587.57" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (83 samples, 0.45%)</title><rect x="1183.8" y="661" width="5.4" height="15.0" fill="rgb(228,1,44)" rx="2" ry="2" />
<text text-anchor="" x="1186.81" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="437.6" y="325" width="0.1" height="15.0" fill="rgb(235,94,43)" rx="2" ry="2" />
<text text-anchor="" x="440.59" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory24CopyPropertyArrayAndGrowENS0_6HandleINS0_13PropertyArrayEEEiNS0_13PretenureFlagE (8 samples, 0.04%)</title><rect x="982.8" y="389" width="0.5" height="15.0" fill="rgb(223,72,6)" rx="2" ry="2" />
<text text-anchor="" x="985.78" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (413 samples, 2.26%)</title><rect x="622.4" y="389" width="26.6" height="15.0" fill="rgb(232,136,32)" rx="2" ry="2" />
<text text-anchor="" x="625.39" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="411.6" y="373" width="0.2" height="15.0" fill="rgb(229,113,5)" rx="2" ry="2" />
<text text-anchor="" x="414.56" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (8 samples, 0.04%)</title><rect x="573.0" y="389" width="0.5" height="15.0" fill="rgb(225,100,39)" rx="2" ry="2" />
<text text-anchor="" x="575.97" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="325" width="0.1" height="15.0" fill="rgb(228,84,37)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (416 samples, 2.27%)</title><rect x="496.4" y="405" width="26.8" height="15.0" fill="rgb(232,197,52)" rx="2" ry="2" />
<text text-anchor="" x="499.36" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="37" width="0.1" height="15.0" fill="rgb(231,94,37)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="613" width="1138.6" height="15.0" fill="rgb(250,205,9)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (10 samples, 0.05%)</title><rect x="820.5" y="421" width="0.7" height="15.0" fill="rgb(249,127,32)" rx="2" ry="2" />
<text text-anchor="" x="823.53" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl12AssembleCodeEPNS1_7LinkageE (2 samples, 0.01%)</title><rect x="1179.8" y="709" width="0.1" height="15.0" fill="rgb(223,68,21)" rx="2" ry="2" />
<text text-anchor="" x="1182.75" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer4Task11RunInternalEv (391 samples, 2.14%)</title><rect x="1153.5" y="757" width="25.2" height="15.0" fill="rgb(207,26,48)" rx="2" ry="2" />
<text text-anchor="" x="1156.53" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="554.3" y="325" width="0.2" height="15.0" fill="rgb(247,124,38)" rx="2" ry="2" />
<text text-anchor="" x="557.28" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="11.4" y="693" width="0.7" height="15.0" fill="rgb(217,78,5)" rx="2" ry="2" />
<text text-anchor="" x="14.35" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1051.2" y="197" width="0.1" height="15.0" fill="rgb(220,116,45)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="796.2" y="357" width="0.1" height="15.0" fill="rgb(245,151,21)" rx="2" ry="2" />
<text text-anchor="" x="799.17" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="481.5" y="277" width="0.2" height="15.0" fill="rgb(212,118,23)" rx="2" ry="2" />
<text text-anchor="" x="484.54" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer4TaskD0Ev (7 samples, 0.04%)</title><rect x="1153.1" y="773" width="0.4" height="15.0" fill="rgb(237,127,15)" rx="2" ry="2" />
<text text-anchor="" x="1156.08" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1016.1" y="325" width="0.2" height="15.0" fill="rgb(242,149,18)" rx="2" ry="2" />
<text text-anchor="" x="1019.09" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (3 samples, 0.02%)</title><rect x="1051.1" y="245" width="0.2" height="15.0" fill="rgb(209,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1054.14" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (6 samples, 0.03%)</title><rect x="1051.1" y="293" width="0.4" height="15.0" fill="rgb(231,38,37)" rx="2" ry="2" />
<text text-anchor="" x="1054.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1104.1" y="309" width="0.1" height="15.0" fill="rgb(235,31,47)" rx="2" ry="2" />
<text text-anchor="" x="1107.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (29 samples, 0.16%)</title><rect x="585.7" y="309" width="1.8" height="15.0" fill="rgb(226,110,22)" rx="2" ry="2" />
<text text-anchor="" x="588.66" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="789" width="0.3" height="15.0" fill="rgb(214,147,27)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="837.0" y="357" width="0.1" height="15.0" fill="rgb(235,140,13)" rx="2" ry="2" />
<text text-anchor="" x="839.96" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (341 samples, 1.86%)</title><rect x="442.6" y="373" width="22.0" height="15.0" fill="rgb(246,18,5)" rx="2" ry="2" />
<text text-anchor="" x="445.62" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="796.2" y="277" width="0.1" height="15.0" fill="rgb(243,53,37)" rx="2" ry="2" />
<text text-anchor="" x="799.17" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (13 samples, 0.07%)</title><rect x="590.2" y="405" width="0.9" height="15.0" fill="rgb(214,55,24)" rx="2" ry="2" />
<text text-anchor="" x="593.24" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1151.6" y="677" width="0.1" height="15.0" fill="rgb(209,13,27)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="938.6" y="293" width="0.1" height="15.0" fill="rgb(221,19,21)" rx="2" ry="2" />
<text text-anchor="" x="941.57" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="796.2" y="293" width="0.1" height="15.0" fill="rgb(233,48,17)" rx="2" ry="2" />
<text text-anchor="" x="799.17" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1104.1" y="357" width="0.1" height="15.0" fill="rgb(233,176,52)" rx="2" ry="2" />
<text text-anchor="" x="1107.11" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="393.8" y="293" width="0.2" height="15.0" fill="rgb(254,92,8)" rx="2" ry="2" />
<text text-anchor="" x="396.78" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="759.8" y="325" width="0.2" height="15.0" fill="rgb(244,225,41)" rx="2" ry="2" />
<text text-anchor="" x="762.77" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Scavenger14ScavengeObjectEPPNS0_19HeapObjectReferenceEPNS0_10HeapObjectE.constprop.284 (2 samples, 0.01%)</title><rect x="835.7" y="325" width="0.2" height="15.0" fill="rgb(253,9,12)" rx="2" ry="2" />
<text text-anchor="" x="838.74" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler13CodeGenerator13AssembleBlockEPKNS1_16InstructionBlockE (2 samples, 0.01%)</title><rect x="1179.8" y="677" width="0.1" height="15.0" fill="rgb(230,144,52)" rx="2" ry="2" />
<text text-anchor="" x="1182.75" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="464.4" y="309" width="0.2" height="15.0" fill="rgb(216,187,26)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="834.3" y="213" width="0.3" height="15.0" fill="rgb(228,169,11)" rx="2" ry="2" />
<text text-anchor="" x="837.32" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (2 samples, 0.01%)</title><rect x="411.1" y="357" width="0.1" height="15.0" fill="rgb(224,104,50)" rx="2" ry="2" />
<text text-anchor="" x="414.11" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="492.7" y="309" width="0.2" height="15.0" fill="rgb(230,1,44)" rx="2" ry="2" />
<text text-anchor="" x="495.75" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="10.0" y="789" width="0.3" height="15.0" fill="rgb(217,149,34)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator14WriteDataValueENS0_6HandleINS0_6ObjectEEEb (2 samples, 0.01%)</title><rect x="828.5" y="389" width="0.1" height="15.0" fill="rgb(240,112,28)" rx="2" ry="2" />
<text text-anchor="" x="831.52" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="373" width="0.1" height="15.0" fill="rgb(225,204,37)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="10.3" y="693" width="0.3" height="15.0" fill="rgb(216,229,7)" rx="2" ry="2" />
<text text-anchor="" x="13.32" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal13FeedbackNexus17StateFromFeedbackEv (2 samples, 0.01%)</title><rect x="830.5" y="437" width="0.1" height="15.0" fill="rgb(236,93,51)" rx="2" ry="2" />
<text text-anchor="" x="833.45" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map20UnusedPropertyFieldsEv (17 samples, 0.09%)</title><rect x="1052.7" y="373" width="1.1" height="15.0" fill="rgb(228,21,5)" rx="2" ry="2" />
<text text-anchor="" x="1055.69" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (21 samples, 0.11%)</title><rect x="1135.6" y="453" width="1.4" height="15.0" fill="rgb(223,50,13)" rx="2" ry="2" />
<text text-anchor="" x="1138.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="871.5" y="341" width="0.2" height="15.0" fill="rgb(206,206,23)" rx="2" ry="2" />
<text text-anchor="" x="874.50" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (16 samples, 0.09%)</title><rect x="747.6" y="389" width="1.0" height="15.0" fill="rgb(208,211,20)" rx="2" ry="2" />
<text text-anchor="" x="750.59" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (6 samples, 0.03%)</title><rect x="413.3" y="389" width="0.4" height="15.0" fill="rgb(241,21,21)" rx="2" ry="2" />
<text text-anchor="" x="416.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory16AllocateRawArrayEiNS0_13PretenureFlagE (112 samples, 0.61%)</title><rect x="1044.4" y="341" width="7.3" height="15.0" fill="rgb(236,14,17)" rx="2" ry="2" />
<text text-anchor="" x="1047.44" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="964.2" y="373" width="0.4" height="15.0" fill="rgb(246,119,30)" rx="2" ry="2" />
<text text-anchor="" x="967.22" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1051.2" y="181" width="0.1" height="15.0" fill="rgb(212,218,6)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (2 samples, 0.01%)</title><rect x="834.1" y="325" width="0.1" height="15.0" fill="rgb(244,62,8)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.9" y="741" width="0.3" height="15.0" fill="rgb(238,149,31)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="693.9" y="277" width="0.3" height="15.0" fill="rgb(215,125,33)" rx="2" ry="2" />
<text text-anchor="" x="696.91" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="11.4" y="757" width="0.7" height="15.0" fill="rgb(207,21,4)" rx="2" ry="2" />
<text text-anchor="" x="14.35" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeSetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (48 samples, 0.26%)</title><rect x="813.9" y="405" width="3.1" height="15.0" fill="rgb(207,58,15)" rx="2" ry="2" />
<text text-anchor="" x="816.89" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="834.2" y="309" width="0.4" height="15.0" fill="rgb(222,90,16)" rx="2" ry="2" />
<text text-anchor="" x="837.19" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="617.2" y="357" width="0.2" height="15.0" fill="rgb(214,54,10)" rx="2" ry="2" />
<text text-anchor="" x="620.24" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (813 samples, 4.44%)</title><rect x="412.2" y="405" width="52.4" height="15.0" fill="rgb(217,48,32)" rx="2" ry="2" />
<text text-anchor="" x="415.20" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object15AddDataPropertyEPNS0_14LookupIteratorENS0_6HandleIS1_EENS0_18PropertyAttributesENS0_11ShouldThrowENS1_14StoreFromKeyedE (3,123 samples, 17.05%)</title><rect x="925.3" y="421" width="201.2" height="15.0" fill="rgb(232,94,40)" rx="2" ry="2" />
<text text-anchor="" x="928.30" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal6Object15Ad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="149" width="0.1" height="15.0" fill="rgb(243,165,14)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (144 samples, 0.79%)</title><rect x="523.2" y="405" width="9.2" height="15.0" fill="rgb(223,23,24)" rx="2" ry="2" />
<text text-anchor="" x="526.16" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="833.9" y="261" width="0.2" height="15.0" fill="rgb(237,133,19)" rx="2" ry="2" />
<text text-anchor="" x="836.87" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="833.9" y="229" width="0.2" height="15.0" fill="rgb(209,47,31)" rx="2" ry="2" />
<text text-anchor="" x="836.93" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator12NextInternalILb0EEEvPNS0_3MapEPNS0_10JSReceiverE (2 samples, 0.01%)</title><rect x="828.0" y="421" width="0.1" height="15.0" fill="rgb(234,8,15)" rx="2" ry="2" />
<text text-anchor="" x="831.00" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (493 samples, 2.69%)</title><rect x="464.6" y="405" width="31.8" height="15.0" fill="rgb(209,28,46)" rx="2" ry="2" />
<text text-anchor="" x="467.59" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_ (17,670 samples, 96.49%)</title><rect x="12.1" y="725" width="1138.6" height="15.0" fill="rgb(237,59,0)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="10.0" y="773" width="0.2" height="15.0" fill="rgb(240,180,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (47 samples, 0.26%)</title><rect x="569.4" y="389" width="3.1" height="15.0" fill="rgb(213,25,30)" rx="2" ry="2" />
<text text-anchor="" x="572.43" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (174 samples, 0.95%)</title><rect x="481.7" y="373" width="11.2" height="15.0" fill="rgb(235,146,54)" rx="2" ry="2" />
<text text-anchor="" x="484.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (5 samples, 0.03%)</title><rect x="1135.3" y="389" width="0.3" height="15.0" fill="rgb(250,63,51)" rx="2" ry="2" />
<text text-anchor="" x="1138.29" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="183.7" y="325" width="0.8" height="15.0" fill="rgb(244,43,42)" rx="2" ry="2" />
<text text-anchor="" x="186.72" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (35 samples, 0.19%)</title><rect x="822.5" y="437" width="2.3" height="15.0" fill="rgb(224,166,23)" rx="2" ry="2" />
<text text-anchor="" x="825.53" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (10 samples, 0.05%)</title><rect x="582.0" y="373" width="0.6" height="15.0" fill="rgb(249,154,38)" rx="2" ry="2" />
<text text-anchor="" x="584.99" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="914.7" y="341" width="0.2" height="15.0" fill="rgb(252,7,31)" rx="2" ry="2" />
<text text-anchor="" x="917.73" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal13FeedbackNexus17StateFromFeedbackEv (138 samples, 0.75%)</title><rect x="1137.0" y="453" width="8.9" height="15.0" fill="rgb(212,54,17)" rx="2" ry="2" />
<text text-anchor="" x="1139.97" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap22CanExpandOldGenerationEm (2 samples, 0.01%)</title><rect x="1050.9" y="293" width="0.2" height="15.0" fill="rgb(251,217,44)" rx="2" ry="2" />
<text text-anchor="" x="1053.95" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="581" width="1138.6" height="15.0" fill="rgb(246,161,31)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="834.1" y="229" width="0.1" height="15.0" fill="rgb(206,108,30)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="584.4" y="405" width="0.2" height="15.0" fill="rgb(233,98,29)" rx="2" ry="2" />
<text text-anchor="" x="587.44" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10HeapObject20synchronized_set_mapEPNS0_3MapE (2 samples, 0.01%)</title><rect x="829.4" y="357" width="0.1" height="15.0" fill="rgb(225,42,11)" rx="2" ry="2" />
<text text-anchor="" x="832.36" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.01%)</title><rect x="587.6" y="389" width="0.1" height="15.0" fill="rgb(241,95,39)" rx="2" ry="2" />
<text text-anchor="" x="590.60" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1145.7" y="421" width="0.2" height="15.0" fill="rgb(254,226,30)" rx="2" ry="2" />
<text text-anchor="" x="1148.73" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator29ApplyTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEE (1,383 samples, 7.55%)</title><rect x="967.8" y="405" width="89.1" height="15.0" fill="rgb(229,107,52)" rx="2" ry="2" />
<text text-anchor="" x="970.76" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="964.5" y="213" width="0.1" height="15.0" fill="rgb(211,91,19)" rx="2" ry="2" />
<text text-anchor="" x="967.48" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor10InitializeEv (23 samples, 0.13%)</title><rect x="1069.2" y="389" width="1.5" height="15.0" fill="rgb(234,192,44)" rx="2" ry="2" />
<text text-anchor="" x="1072.25" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="554.3" y="373" width="0.2" height="15.0" fill="rgb(253,9,44)" rx="2" ry="2" />
<text text-anchor="" x="557.28" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal13FeedbackNexus17StateFromFeedbackEv (135 samples, 0.74%)</title><rect x="1126.5" y="437" width="8.7" height="15.0" fill="rgb(239,147,22)" rx="2" ry="2" />
<text text-anchor="" x="1129.53" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="693.8" y="373" width="0.4" height="15.0" fill="rgb(232,218,34)" rx="2" ry="2" />
<text text-anchor="" x="696.79" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="796.2" y="341" width="0.1" height="15.0" fill="rgb(253,67,14)" rx="2" ry="2" />
<text text-anchor="" x="799.17" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (2 samples, 0.01%)</title><rect x="796.3" y="389" width="0.1" height="15.0" fill="rgb(226,192,1)" rx="2" ry="2" />
<text text-anchor="" x="799.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (6 samples, 0.03%)</title><rect x="411.8" y="373" width="0.3" height="15.0" fill="rgb(206,222,37)" rx="2" ry="2" />
<text text-anchor="" x="414.75" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (7,781 samples, 42.49%)</title><rect x="318.8" y="437" width="501.4" height="15.0" fill="rgb(205,98,52)" rx="2" ry="2" />
<text text-anchor="" x="321.84" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="834.2" y="293" width="0.4" height="15.0" fill="rgb(240,80,21)" rx="2" ry="2" />
<text text-anchor="" x="837.19" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="510.9" y="309" width="0.1" height="15.0" fill="rgb(242,163,12)" rx="2" ry="2" />
<text text-anchor="" x="513.85" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (112 samples, 0.61%)</title><rect x="1181.9" y="773" width="7.3" height="15.0" fill="rgb(214,214,1)" rx="2" ry="2" />
<text text-anchor="" x="1184.95" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="805" width="0.3" height="15.0" fill="rgb(221,124,11)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory16CopyArrayAndGrowINS0_13PropertyArrayEEENS0_6HandleIT_EES6_iNS0_13PretenureFlagE (305 samples, 1.67%)</title><rect x="1032.0" y="357" width="19.7" height="15.0" fill="rgb(250,110,28)" rx="2" ry="2" />
<text text-anchor="" x="1035.01" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (5 samples, 0.03%)</title><rect x="808.5" y="373" width="0.4" height="15.0" fill="rgb(250,38,13)" rx="2" ry="2" />
<text text-anchor="" x="811.54" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="568.3" y="245" width="0.2" height="15.0" fill="rgb(225,227,19)" rx="2" ry="2" />
<text text-anchor="" x="571.27" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="492.7" y="341" width="0.2" height="15.0" fill="rgb(254,83,21)" rx="2" ry="2" />
<text text-anchor="" x="495.75" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9FieldType4castEPNS0_6ObjectE (6 samples, 0.03%)</title><rect x="1122.5" y="373" width="0.4" height="15.0" fill="rgb(207,94,24)" rx="2" ry="2" />
<text text-anchor="" x="1125.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor10InitializeEv (40 samples, 0.22%)</title><rect x="1118.0" y="373" width="2.6" height="15.0" fill="rgb(247,202,35)" rx="2" ry="2" />
<text text-anchor="" x="1121.03" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.01%)</title><rect x="830.6" y="437" width="0.2" height="15.0" fill="rgb(236,119,52)" rx="2" ry="2" />
<text text-anchor="" x="833.65" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="834.1" y="245" width="0.1" height="15.0" fill="rgb(211,126,18)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="648.9" y="357" width="0.1" height="15.0" fill="rgb(233,106,47)" rx="2" ry="2" />
<text text-anchor="" x="651.87" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object15AddDataPropertyEPNS0_14LookupIteratorENS0_6HandleIS1_EENS0_18PropertyAttributesENS0_11ShouldThrowENS1_14StoreFromKeyedE (11 samples, 0.06%)</title><rect x="906.7" y="437" width="0.8" height="15.0" fill="rgb(250,219,33)" rx="2" ry="2" />
<text text-anchor="" x="909.74" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="492.7" y="325" width="0.2" height="15.0" fill="rgb(239,115,1)" rx="2" ry="2" />
<text text-anchor="" x="495.75" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="528.5" y="373" width="0.2" height="15.0" fill="rgb(235,202,29)" rx="2" ry="2" />
<text text-anchor="" x="531.51" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="318.1" y="421" width="0.7" height="15.0" fill="rgb(212,48,33)" rx="2" ry="2" />
<text text-anchor="" x="321.06" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (4 samples, 0.02%)</title><rect x="1151.0" y="789" width="0.3" height="15.0" fill="rgb(212,84,19)" rx="2" ry="2" />
<text text-anchor="" x="1154.02" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (396 samples, 2.16%)</title><rect x="497.6" y="389" width="25.6" height="15.0" fill="rgb(248,45,47)" rx="2" ry="2" />
<text text-anchor="" x="500.64" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="964.4" y="341" width="0.2" height="15.0" fill="rgb(227,188,18)" rx="2" ry="2" />
<text text-anchor="" x="967.41" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="833.9" y="245" width="0.2" height="15.0" fill="rgb(223,98,28)" rx="2" ry="2" />
<text text-anchor="" x="836.87" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="726.0" y="341" width="0.1" height="15.0" fill="rgb(219,84,25)" rx="2" ry="2" />
<text text-anchor="" x="729.00" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.05%)</title><rect x="393.3" y="389" width="0.7" height="15.0" fill="rgb(240,164,14)" rx="2" ry="2" />
<text text-anchor="" x="396.32" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (15 samples, 0.08%)</title><rect x="818.0" y="421" width="0.9" height="15.0" fill="rgb(252,150,6)" rx="2" ry="2" />
<text text-anchor="" x="820.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___munmap (2 samples, 0.01%)</title><rect x="1151.6" y="805" width="0.1" height="15.0" fill="rgb(254,91,21)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libstdc++.so.6.0.21] (4 samples, 0.02%)</title><rect x="10.3" y="789" width="0.3" height="15.0" fill="rgb(219,99,45)" rx="2" ry="2" />
<text text-anchor="" x="13.32" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="871.5" y="405" width="0.2" height="15.0" fill="rgb(228,223,52)" rx="2" ry="2" />
<text text-anchor="" x="874.50" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (485 samples, 2.65%)</title><rect x="781.9" y="421" width="31.3" height="15.0" fill="rgb(206,82,30)" rx="2" ry="2" />
<text text-anchor="" x="784.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="834.5" y="149" width="0.1" height="15.0" fill="rgb(232,15,30)" rx="2" ry="2" />
<text text-anchor="" x="837.51" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="819.6" y="421" width="0.1" height="15.0" fill="rgb(245,182,36)" rx="2" ry="2" />
<text text-anchor="" x="822.56" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor16SearchTransitionEPNS0_4NameENS0_12PropertyKindENS0_18PropertyAttributesE (2 samples, 0.01%)</title><rect x="830.3" y="357" width="0.2" height="15.0" fill="rgb(251,140,14)" rx="2" ry="2" />
<text text-anchor="" x="833.32" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="481.5" y="325" width="0.2" height="15.0" fill="rgb(238,140,46)" rx="2" ry="2" />
<text text-anchor="" x="484.54" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15ItemParallelJob3RunESt10shared_ptrINS0_8CountersEE (17 samples, 0.09%)</title><rect x="833.6" y="357" width="1.1" height="15.0" fill="rgb(238,59,33)" rx="2" ry="2" />
<text text-anchor="" x="836.61" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="617.3" y="277" width="0.1" height="15.0" fill="rgb(241,223,42)" rx="2" ry="2" />
<text text-anchor="" x="620.30" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>node (18,309 samples, 99.98%)</title><rect x="10.0" y="821" width="1179.7" height="15.0" fill="rgb(229,32,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >node</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1016.2" y="229" width="0.1" height="15.0" fill="rgb(210,83,13)" rx="2" ry="2" />
<text text-anchor="" x="1019.22" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="572.5" y="405" width="0.1" height="15.0" fill="rgb(240,162,6)" rx="2" ry="2" />
<text text-anchor="" x="575.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="833.9" y="277" width="0.2" height="15.0" fill="rgb(218,191,5)" rx="2" ry="2" />
<text text-anchor="" x="836.87" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="834.3" y="197" width="0.3" height="15.0" fill="rgb(228,170,44)" rx="2" ry="2" />
<text text-anchor="" x="837.32" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="10.1" y="741" width="0.1" height="15.0" fill="rgb(221,67,35)" rx="2" ry="2" />
<text text-anchor="" x="13.06" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="834.1" y="213" width="0.1" height="15.0" fill="rgb(217,100,24)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl11CreateGraphEv (2 samples, 0.01%)</title><rect x="582.6" y="325" width="0.2" height="15.0" fill="rgb(208,12,12)" rx="2" ry="2" />
<text text-anchor="" x="585.63" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19InstructionSelector9VisitNodeEPNS1_4NodeE (2 samples, 0.01%)</title><rect x="1179.9" y="629" width="0.1" height="15.0" fill="rgb(231,174,34)" rx="2" ry="2" />
<text text-anchor="" x="1182.88" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="834.2" y="277" width="0.4" height="15.0" fill="rgb(232,206,19)" rx="2" ry="2" />
<text text-anchor="" x="837.19" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="914.7" y="325" width="0.2" height="15.0" fill="rgb(248,103,14)" rx="2" ry="2" />
<text text-anchor="" x="917.73" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="617.3" y="309" width="0.1" height="15.0" fill="rgb(249,0,1)" rx="2" ry="2" />
<text text-anchor="" x="620.30" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1181.3" y="725" width="0.4" height="15.0" fill="rgb(223,108,33)" rx="2" ry="2" />
<text text-anchor="" x="1184.30" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="693" width="0.3" height="15.0" fill="rgb(216,124,3)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.9" y="661" width="0.3" height="15.0" fill="rgb(217,205,27)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1051.2" y="149" width="0.1" height="15.0" fill="rgb(231,215,17)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.02%)</title><rect x="1180.4" y="757" width="0.2" height="15.0" fill="rgb(219,74,3)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap8ScavengeEv (6 samples, 0.03%)</title><rect x="1051.1" y="277" width="0.4" height="15.0" fill="rgb(252,146,42)" rx="2" ry="2" />
<text text-anchor="" x="1054.14" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="834.1" y="309" width="0.1" height="15.0" fill="rgb(205,144,26)" rx="2" ry="2" />
<text text-anchor="" x="837.06" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (6 samples, 0.03%)</title><rect x="589.9" y="405" width="0.3" height="15.0" fill="rgb(237,60,26)" rx="2" ry="2" />
<text text-anchor="" x="592.85" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (9 samples, 0.05%)</title><rect x="582.8" y="405" width="0.6" height="15.0" fill="rgb(241,8,8)" rx="2" ry="2" />
<text text-anchor="" x="585.83" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.04%)</title><rect x="318.3" y="325" width="0.5" height="15.0" fill="rgb(224,44,34)" rx="2" ry="2" />
<text text-anchor="" x="321.32" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler9Scheduler15ComputeScheduleEPNS0_4ZoneEPNS1_5GraphENS_4base5FlagsINS2_4FlagEiEE (2 samples, 0.01%)</title><rect x="1180.0" y="677" width="0.1" height="15.0" fill="rgb(209,142,37)" rx="2" ry="2" />
<text text-anchor="" x="1183.01" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler9Scheduler15ComputeScheduleEPNS0_4ZoneEPNS1_5GraphENS_4base5FlagsINS2_4FlagEiEE (2 samples, 0.01%)</title><rect x="1180.2" y="677" width="0.1" height="15.0" fill="rgb(217,124,49)" rx="2" ry="2" />
<text text-anchor="" x="1183.21" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="760.0" y="421" width="0.1" height="15.0" fill="rgb(253,144,8)" rx="2" ry="2" />
<text text-anchor="" x="762.96" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="1188.6" y="549" width="0.6" height="15.0" fill="rgb(216,30,33)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (48 samples, 0.26%)</title><rect x="1047.9" y="309" width="3.0" height="15.0" fill="rgb(235,15,9)" rx="2" ry="2" />
<text text-anchor="" x="1050.86" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="437.6" y="309" width="0.1" height="15.0" fill="rgb(239,161,28)" rx="2" ry="2" />
<text text-anchor="" x="440.59" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (47 samples, 0.26%)</title><rect x="569.4" y="405" width="3.1" height="15.0" fill="rgb(227,173,49)" rx="2" ry="2" />
<text text-anchor="" x="572.43" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (82 samples, 0.45%)</title><rect x="1183.9" y="645" width="5.3" height="15.0" fill="rgb(252,31,5)" rx="2" ry="2" />
<text text-anchor="" x="1186.88" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="510.8" y="325" width="0.2" height="15.0" fill="rgb(232,117,9)" rx="2" ry="2" />
<text text-anchor="" x="513.79" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator5StartILb0EEEvv (3 samples, 0.02%)</title><rect x="828.1" y="421" width="0.2" height="15.0" fill="rgb(219,138,21)" rx="2" ry="2" />
<text text-anchor="" x="831.13" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="645" width="0.3" height="15.0" fill="rgb(208,134,22)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map21GetInObjectPropertiesEv (6 samples, 0.03%)</title><rect x="1056.5" y="389" width="0.4" height="15.0" fill="rgb(245,187,7)" rx="2" ry="2" />
<text text-anchor="" x="1059.49" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator29ApplyTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEE (16 samples, 0.09%)</title><rect x="828.7" y="389" width="1.0" height="15.0" fill="rgb(207,54,35)" rx="2" ry="2" />
<text text-anchor="" x="831.71" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="245" width="0.1" height="15.0" fill="rgb(224,142,29)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1016.1" y="309" width="0.2" height="15.0" fill="rgb(210,31,23)" rx="2" ry="2" />
<text text-anchor="" x="1019.09" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator31PrepareTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS5_14StoreFromKeyedE (1,041 samples, 5.68%)</title><rect x="1056.9" y="405" width="67.1" height="15.0" fill="rgb(211,100,29)" rx="2" ry="2" />
<text text-anchor="" x="1059.88" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1151.6" y="773" width="0.1" height="15.0" fill="rgb(240,27,38)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (577 samples, 3.15%)</title><rect x="1152.6" y="805" width="37.1" height="15.0" fill="rgb(253,36,18)" rx="2" ry="2" />
<text text-anchor="" x="1155.56" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sta..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (18,313 samples, 100%)</title><rect x="10.0" y="837" width="1180.0" height="15.0" fill="rgb(228,42,49)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19EscapeAnalysisPhase3RunEPNS1_12PipelineDataEPNS0_4ZoneE (2 samples, 0.01%)</title><rect x="1135.4" y="373" width="0.2" height="15.0" fill="rgb(251,216,36)" rx="2" ry="2" />
<text text-anchor="" x="1138.42" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (96 samples, 0.52%)</title><rect x="1183.0" y="741" width="6.2" height="15.0" fill="rgb(247,19,32)" rx="2" ry="2" />
<text text-anchor="" x="1185.98" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="759.8" y="341" width="0.2" height="15.0" fill="rgb(230,5,31)" rx="2" ry="2" />
<text text-anchor="" x="762.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (6 samples, 0.03%)</title><rect x="1135.2" y="421" width="0.4" height="15.0" fill="rgb(212,195,6)" rx="2" ry="2" />
<text text-anchor="" x="1138.23" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="902.0" y="405" width="0.2" height="15.0" fill="rgb(219,203,25)" rx="2" ry="2" />
<text text-anchor="" x="905.04" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject12MigrateToMapENS0_6HandleIS1_EENS2_INS0_3MapEEEi (1,102 samples, 6.02%)</title><rect x="983.3" y="389" width="71.0" height="15.0" fill="rgb(213,144,35)" rx="2" ry="2" />
<text text-anchor="" x="986.29" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="510.9" y="293" width="0.1" height="15.0" fill="rgb(239,146,3)" rx="2" ry="2" />
<text text-anchor="" x="513.85" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="964.4" y="309" width="0.2" height="15.0" fill="rgb(210,203,44)" rx="2" ry="2" />
<text text-anchor="" x="967.41" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (29 samples, 0.16%)</title><rect x="585.7" y="357" width="1.8" height="15.0" fill="rgb(232,110,23)" rx="2" ry="2" />
<text text-anchor="" x="588.66" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="10.3" y="677" width="0.3" height="15.0" fill="rgb(205,164,32)" rx="2" ry="2" />
<text text-anchor="" x="13.32" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15ItemParallelJob4Task11RunInternalEv (7 samples, 0.04%)</title><rect x="833.6" y="341" width="0.5" height="15.0" fill="rgb(250,153,3)" rx="2" ry="2" />
<text text-anchor="" x="836.61" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (26 samples, 0.14%)</title><rect x="585.9" y="293" width="1.6" height="15.0" fill="rgb(245,18,20)" rx="2" ry="2" />
<text text-anchor="" x="588.86" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator5StartILb0EEEvv (7 samples, 0.04%)</title><rect x="831.5" y="453" width="0.5" height="15.0" fill="rgb(241,145,45)" rx="2" ry="2" />
<text text-anchor="" x="834.55" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer26MoveEntriesToRememberedSetEi (5 samples, 0.03%)</title><rect x="832.4" y="357" width="0.3" height="15.0" fill="rgb(240,92,35)" rx="2" ry="2" />
<text text-anchor="" x="835.39" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="568.3" y="261" width="0.2" height="15.0" fill="rgb(238,124,14)" rx="2" ry="2" />
<text text-anchor="" x="571.27" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (19 samples, 0.10%)</title><rect x="183.3" y="389" width="1.2" height="15.0" fill="rgb(216,29,30)" rx="2" ry="2" />
<text text-anchor="" x="186.27" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14ScavengingTaskD0Ev (2 samples, 0.01%)</title><rect x="1180.7" y="773" width="0.1" height="15.0" fill="rgb(225,177,51)" rx="2" ry="2" />
<text text-anchor="" x="1183.66" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (421 samples, 2.30%)</title><rect x="732.8" y="421" width="27.2" height="15.0" fill="rgb(214,75,44)" rx="2" ry="2" />
<text text-anchor="" x="735.83" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (100 samples, 0.55%)</title><rect x="1182.7" y="757" width="6.5" height="15.0" fill="rgb(219,36,28)" rx="2" ry="2" />
<text text-anchor="" x="1185.72" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (13 samples, 0.07%)</title><rect x="1045.9" y="325" width="0.8" height="15.0" fill="rgb(241,17,47)" rx="2" ry="2" />
<text text-anchor="" x="1048.86" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (245 samples, 1.34%)</title><rect x="797.4" y="389" width="15.8" height="15.0" fill="rgb(216,28,23)" rx="2" ry="2" />
<text text-anchor="" x="800.40" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1145.7" y="437" width="0.2" height="15.0" fill="rgb(227,169,25)" rx="2" ry="2" />
<text text-anchor="" x="1148.73" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="871.6" y="309" width="0.1" height="15.0" fill="rgb(214,22,48)" rx="2" ry="2" />
<text text-anchor="" x="874.56" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node5StartEiPPc (17,674 samples, 96.51%)</title><rect x="12.1" y="773" width="1138.9" height="15.0" fill="rgb(215,37,35)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4node5StartEiPPc</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1051.2" y="213" width="0.1" height="15.0" fill="rgb(227,114,45)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12GraphReducer9ReduceTopEv (2 samples, 0.01%)</title><rect x="582.6" y="293" width="0.2" height="15.0" fill="rgb(245,15,45)" rx="2" ry="2" />
<text text-anchor="" x="585.63" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (2 samples, 0.01%)</title><rect x="1181.7" y="773" width="0.1" height="15.0" fill="rgb(216,36,15)" rx="2" ry="2" />
<text text-anchor="" x="1184.69" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="318.6" y="293" width="0.2" height="15.0" fill="rgb(245,158,47)" rx="2" ry="2" />
<text text-anchor="" x="321.58" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator12NextInternalILb0EEEvPNS0_3MapEPNS0_10JSReceiverE (12 samples, 0.07%)</title><rect x="830.8" y="453" width="0.7" height="15.0" fill="rgb(214,176,36)" rx="2" ry="2" />
<text text-anchor="" x="833.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="834.2" y="261" width="0.4" height="15.0" fill="rgb(248,51,2)" rx="2" ry="2" />
<text text-anchor="" x="837.19" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (71 samples, 0.39%)</title><rect x="1184.6" y="613" width="4.6" height="15.0" fill="rgb(218,31,17)" rx="2" ry="2" />
<text text-anchor="" x="1187.59" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (4 samples, 0.02%)</title><rect x="10.3" y="773" width="0.3" height="15.0" fill="rgb(250,182,6)" rx="2" ry="2" />
<text text-anchor="" x="13.32" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (495 samples, 2.70%)</title><rect x="694.2" y="389" width="31.9" height="15.0" fill="rgb(222,83,44)" rx="2" ry="2" />
<text text-anchor="" x="697.24" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map14GetBackPointerEv (16 samples, 0.09%)</title><rect x="1054.3" y="389" width="1.0" height="15.0" fill="rgb(239,72,38)" rx="2" ry="2" />
<text text-anchor="" x="1057.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (94 samples, 0.51%)</title><rect x="1183.1" y="693" width="6.1" height="15.0" fill="rgb(207,110,36)" rx="2" ry="2" />
<text text-anchor="" x="1186.11" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (14 samples, 0.08%)</title><rect x="586.6" y="213" width="0.9" height="15.0" fill="rgb(210,229,31)" rx="2" ry="2" />
<text text-anchor="" x="589.63" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12BinarySearchILNS0_10SearchModeE1ENS0_15DescriptorArrayEEEiPT0_PNS0_4NameEiPi (71 samples, 0.39%)</title><rect x="902.2" y="405" width="4.5" height="15.0" fill="rgb(224,79,24)" rx="2" ry="2" />
<text text-anchor="" x="905.17" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="964.4" y="293" width="0.2" height="15.0" fill="rgb(245,2,29)" rx="2" ry="2" />
<text text-anchor="" x="967.41" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="964.4" y="229" width="0.2" height="15.0" fill="rgb(239,75,47)" rx="2" ry="2" />
<text text-anchor="" x="967.41" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="964.4" y="261" width="0.2" height="15.0" fill="rgb(224,99,9)" rx="2" ry="2" />
<text text-anchor="" x="967.41" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="568.3" y="213" width="0.2" height="15.0" fill="rgb(248,117,28)" rx="2" ry="2" />
<text text-anchor="" x="571.33" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal3Map24TransitionToDataPropertyENS0_6HandleIS1_EENS2_INS0_4NameEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS0_17PropertyConstnessENS6_14StoreFromKeyedE (513 samples, 2.80%)</title><rect x="1089.8" y="389" width="33.1" height="15.0" fill="rgb(250,175,8)" rx="2" ry="2" />
<text text-anchor="" x="1092.80" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="902.0" y="357" width="0.2" height="15.0" fill="rgb(216,203,34)" rx="2" ry="2" />
<text text-anchor="" x="905.04" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="41.9" y="325" width="0.3" height="15.0" fill="rgb(237,65,17)" rx="2" ry="2" />
<text text-anchor="" x="44.90" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject12MigrateToMapENS0_6HandleIS1_EENS2_INS0_3MapEEEi (14 samples, 0.08%)</title><rect x="828.8" y="373" width="0.9" height="15.0" fill="rgb(227,62,5)" rx="2" ry="2" />
<text text-anchor="" x="831.78" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node5StartEPN2v87IsolateEPNS_11IsolateDataEiPKPKciS8_ (17,674 samples, 96.51%)</title><rect x="12.1" y="757" width="1138.9" height="15.0" fill="rgb(242,168,30)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4node5StartEPN2v87IsolateEPNS_11IsolateDataEiPKPKciS8_</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor16SearchTransitionEPNS0_4NameENS0_12PropertyKindENS0_18PropertyAttributesE (3 samples, 0.02%)</title><rect x="829.7" y="373" width="0.2" height="15.0" fill="rgb(236,69,8)" rx="2" ry="2" />
<text text-anchor="" x="832.74" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="914.7" y="373" width="0.2" height="15.0" fill="rgb(214,95,39)" rx="2" ry="2" />
<text text-anchor="" x="917.73" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="10.3" y="661" width="0.3" height="15.0" fill="rgb(216,99,1)" rx="2" ry="2" />
<text text-anchor="" x="13.32" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1152.9" y="757" width="0.1" height="15.0" fill="rgb(235,79,13)" rx="2" ry="2" />
<text text-anchor="" x="1155.89" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (1,233 samples, 6.73%)</title><rect x="653.4" y="405" width="79.4" height="15.0" fill="rgb(246,137,51)" rx="2" ry="2" />
<text text-anchor="" x="656.38" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (29 samples, 0.16%)</title><rect x="585.7" y="325" width="1.8" height="15.0" fill="rgb(224,49,11)" rx="2" ry="2" />
<text text-anchor="" x="588.66" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator21LookupInRegularHolderILb0EEENS1_5StateEPNS0_3MapEPNS0_10JSReceiverE (3 samples, 0.02%)</title><rect x="828.1" y="405" width="0.2" height="15.0" fill="rgb(248,64,49)" rx="2" ry="2" />
<text text-anchor="" x="831.13" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (27 samples, 0.15%)</title><rect x="410.4" y="405" width="1.7" height="15.0" fill="rgb(207,111,8)" rx="2" ry="2" />
<text text-anchor="" x="413.40" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="481.5" y="309" width="0.2" height="15.0" fill="rgb(218,108,10)" rx="2" ry="2" />
<text text-anchor="" x="484.54" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (10,030 samples, 54.77%)</title><rect x="184.5" y="453" width="646.3" height="15.0" fill="rgb(224,123,53)" rx="2" ry="2" />
<text text-anchor="" x="187.49" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1043.5" y="309" width="0.1" height="15.0" fill="rgb(209,166,13)" rx="2" ry="2" />
<text text-anchor="" x="1046.47" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal26Runtime_AllocateInNewSpaceEiPPNS0_6ObjectEPNS0_7IsolateE (85 samples, 0.46%)</title><rect x="832.0" y="453" width="5.5" height="15.0" fill="rgb(211,116,1)" rx="2" ry="2" />
<text text-anchor="" x="835.00" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (77 samples, 0.42%)</title><rect x="1046.7" y="325" width="5.0" height="15.0" fill="rgb(226,224,42)" rx="2" ry="2" />
<text text-anchor="" x="1049.70" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1104.1" y="293" width="0.1" height="15.0" fill="rgb(254,90,19)" rx="2" ry="2" />
<text text-anchor="" x="1107.11" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="464.4" y="341" width="0.2" height="15.0" fill="rgb(209,63,42)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="583.4" y="405" width="0.1" height="15.0" fill="rgb(226,84,54)" rx="2" ry="2" />
<text text-anchor="" x="586.41" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1179.4" y="725" width="0.1" height="15.0" fill="rgb(224,36,47)" rx="2" ry="2" />
<text text-anchor="" x="1182.37" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (5 samples, 0.03%)</title><rect x="781.6" y="389" width="0.3" height="15.0" fill="rgb(209,121,13)" rx="2" ry="2" />
<text text-anchor="" x="784.61" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="819.3" y="421" width="0.3" height="15.0" fill="rgb(234,170,31)" rx="2" ry="2" />
<text text-anchor="" x="822.30" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="464.5" y="213" width="0.1" height="15.0" fill="rgb(207,171,28)" rx="2" ry="2" />
<text text-anchor="" x="467.46" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="661" width="0.3" height="15.0" fill="rgb(213,86,47)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler16CompileOptimizedENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeE (6 samples, 0.03%)</title><rect x="1135.2" y="437" width="0.4" height="15.0" fill="rgb(217,41,14)" rx="2" ry="2" />
<text text-anchor="" x="1138.23" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.06%)</title><rect x="318.1" y="357" width="0.7" height="15.0" fill="rgb(211,85,16)" rx="2" ry="2" />
<text text-anchor="" x="321.13" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="938.6" y="277" width="0.1" height="15.0" fill="rgb(243,88,8)" rx="2" ry="2" />
<text text-anchor="" x="941.57" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (6 samples, 0.03%)</title><rect x="1151.9" y="805" width="0.3" height="15.0" fill="rgb(208,85,43)" rx="2" ry="2" />
<text text-anchor="" x="1154.85" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="318.5" y="309" width="0.3" height="15.0" fill="rgb(243,51,40)" rx="2" ry="2" />
<text text-anchor="" x="321.45" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (790 samples, 4.31%)</title><rect x="413.7" y="389" width="50.9" height="15.0" fill="rgb(235,182,7)" rx="2" ry="2" />
<text text-anchor="" x="416.69" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (4 samples, 0.02%)</title><rect x="817.0" y="389" width="0.2" height="15.0" fill="rgb(232,91,26)" rx="2" ry="2" />
<text text-anchor="" x="819.99" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="492.7" y="293" width="0.2" height="15.0" fill="rgb(223,49,41)" rx="2" ry="2" />
<text text-anchor="" x="495.75" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (20 samples, 0.11%)</title><rect x="183.2" y="437" width="1.3" height="15.0" fill="rgb(243,47,14)" rx="2" ry="2" />
<text text-anchor="" x="186.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl18SelectInstructionsEPNS1_7LinkageE (2 samples, 0.01%)</title><rect x="1179.9" y="693" width="0.1" height="15.0" fill="rgb(224,63,47)" rx="2" ry="2" />
<text text-anchor="" x="1182.88" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="464.4" y="293" width="0.2" height="15.0" fill="rgb(227,91,21)" rx="2" ry="2" />
<text text-anchor="" x="467.40" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="694.1" y="229" width="0.1" height="15.0" fill="rgb(213,193,42)" rx="2" ry="2" />
<text text-anchor="" x="697.11" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="693.9" y="261" width="0.3" height="15.0" fill="rgb(216,98,22)" rx="2" ry="2" />
<text text-anchor="" x="696.91" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (44 samples, 0.24%)</title><rect x="529.6" y="373" width="2.8" height="15.0" fill="rgb(246,212,48)" rx="2" ry="2" />
<text text-anchor="" x="532.60" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object15AddDataPropertyEPNS0_14LookupIteratorENS0_6HandleIS1_EENS0_18PropertyAttributesENS0_11ShouldThrowENS1_14StoreFromKeyedE (31 samples, 0.17%)</title><rect x="828.5" y="405" width="2.0" height="15.0" fill="rgb(235,197,33)" rx="2" ry="2" />
<text text-anchor="" x="831.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl18SelectInstructionsEPNS1_7LinkageE (2 samples, 0.01%)</title><rect x="817.0" y="341" width="0.1" height="15.0" fill="rgb(236,47,13)" rx="2" ry="2" />
<text text-anchor="" x="819.99" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (4 samples, 0.02%)</title><rect x="782.4" y="405" width="0.3" height="15.0" fill="rgb(239,226,27)" rx="2" ry="2" />
<text text-anchor="" x="785.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv (2 samples, 0.01%)</title><rect x="1153.2" y="741" width="0.1" height="15.0" fill="rgb(236,109,29)" rx="2" ry="2" />
<text text-anchor="" x="1156.21" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="1180.9" y="613" width="0.3" height="15.0" fill="rgb(253,155,43)" rx="2" ry="2" />
<text text-anchor="" x="1183.91" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1051.2" y="117" width="0.1" height="15.0" fill="rgb(231,10,54)" rx="2" ry="2" />
<text text-anchor="" x="1054.21" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2,964 samples, 16.19%)</title><rect x="394.0" y="421" width="191.0" height="15.0" fill="rgb(228,96,37)" rx="2" ry="2" />
<text text-anchor="" x="396.97" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="533" width="1138.6" height="15.0" fill="rgb(240,25,54)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="834.2" y="245" width="0.4" height="15.0" fill="rgb(208,24,29)" rx="2" ry="2" />
<text text-anchor="" x="837.19" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator14WriteDataValueENS0_6HandleINS0_6ObjectEEEb (402 samples, 2.20%)</title><rect x="938.7" y="405" width="25.9" height="15.0" fill="rgb(217,37,43)" rx="2" ry="2" />
<text text-anchor="" x="941.70" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="1180.9" y="565" width="0.3" height="15.0" fill="rgb(208,151,16)" rx="2" ry="2" />
<text text-anchor="" x="1183.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="773" width="0.3" height="15.0" fill="rgb(223,145,25)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (89 samples, 0.49%)</title><rect x="770.7" y="389" width="5.8" height="15.0" fill="rgb(247,67,45)" rx="2" ry="2" />
<text text-anchor="" x="773.72" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="726.0" y="357" width="0.1" height="15.0" fill="rgb(221,172,45)" rx="2" ry="2" />
<text text-anchor="" x="729.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_121GetIdentityHashHelperEPNS0_7IsolateEPNS0_10JSReceiverE.isra.363 (4 samples, 0.02%)</title><rect x="1027.8" y="373" width="0.2" height="15.0" fill="rgb(223,138,41)" rx="2" ry="2" />
<text text-anchor="" x="1030.75" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="41.8" y="357" width="0.4" height="15.0" fill="rgb(213,225,39)" rx="2" ry="2" />
<text text-anchor="" x="44.83" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor16SearchTransitionEPNS0_4NameENS0_12PropertyKindENS0_18PropertyAttributesE (296 samples, 1.62%)</title><rect x="1070.7" y="389" width="19.1" height="15.0" fill="rgb(229,79,10)" rx="2" ry="2" />
<text text-anchor="" x="1073.73" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="11.4" y="741" width="0.7" height="15.0" fill="rgb(210,25,27)" rx="2" ry="2" />
<text text-anchor="" x="14.35" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="41.9" y="341" width="0.3" height="15.0" fill="rgb(236,24,46)" rx="2" ry="2" />
<text text-anchor="" x="44.90" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (17,670 samples, 96.49%)</title><rect x="12.1" y="661" width="1138.6" height="15.0" fill="rgb(254,202,12)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-19450.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="53" width="0.1" height="15.0" fill="rgb(233,17,26)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="613" width="0.3" height="15.0" fill="rgb(235,5,21)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer29MoveAllEntriesToRememberedSetEv (5 samples, 0.03%)</title><rect x="832.4" y="373" width="0.3" height="15.0" fill="rgb(243,217,42)" rx="2" ry="2" />
<text text-anchor="" x="835.39" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (12 samples, 0.07%)</title><rect x="652.6" y="405" width="0.8" height="15.0" fill="rgb(221,170,18)" rx="2" ry="2" />
<text text-anchor="" x="655.61" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="10.3" y="725" width="0.3" height="15.0" fill="rgb(238,195,39)" rx="2" ry="2" />
<text text-anchor="" x="13.32" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (4,621 samples, 25.23%)</title><rect x="837.5" y="453" width="297.7" height="15.0" fill="rgb(225,101,39)" rx="2" ry="2" />
<text text-anchor="" x="840.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal35Runtime_DefineDataPrope..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10JSReceiver13SetPropertiesEPNS0_10HeapObjectE (11 samples, 0.06%)</title><rect x="982.1" y="389" width="0.7" height="15.0" fill="rgb(234,110,49)" rx="2" ry="2" />
<text text-anchor="" x="985.07" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (8 samples, 0.04%)</title><rect x="533.7" y="389" width="0.5" height="15.0" fill="rgb(206,157,46)" rx="2" ry="2" />
<text text-anchor="" x="536.66" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="938.6" y="325" width="0.1" height="15.0" fill="rgb(216,56,19)" rx="2" ry="2" />
<text text-anchor="" x="941.57" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="759.8" y="309" width="0.2" height="15.0" fill="rgb(222,219,23)" rx="2" ry="2" />
<text text-anchor="" x="762.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="902.0" y="373" width="0.2" height="15.0" fill="rgb(230,125,39)" rx="2" ry="2" />
<text text-anchor="" x="905.04" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler16CompileOptimizedENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeE (2 samples, 0.01%)</title><rect x="582.6" y="389" width="0.2" height="15.0" fill="rgb(241,92,1)" rx="2" ry="2" />
<text text-anchor="" x="585.63" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (7 samples, 0.04%)</title><rect x="834.2" y="325" width="0.4" height="15.0" fill="rgb(235,197,26)" rx="2" ry="2" />
<text text-anchor="" x="837.19" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_ (17,670 samples, 96.49%)</title><rect x="12.1" y="709" width="1138.6" height="15.0" fill="rgb(229,116,48)" rx="2" ry="2" />
<text text-anchor="" x="15.13" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="568.2" y="357" width="0.3" height="15.0" fill="rgb(217,137,5)" rx="2" ry="2" />
<text text-anchor="" x="571.20" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1024.6" y="357" width="0.1" height="15.0" fill="rgb(224,225,39)" rx="2" ry="2" />
<text text-anchor="" x="1027.60" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-19450.map] (2 samples, 0.01%)</title><rect x="410.6" y="69" width="0.1" height="15.0" fill="rgb(215,4,24)" rx="2" ry="2" />
<text text-anchor="" x="413.59" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="528.5" y="341" width="0.2" height="15.0" fill="rgb(222,68,2)" rx="2" ry="2" />
<text text-anchor="" x="531.51" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12GraphReducer10ReduceNodeEPNS1_4NodeE (2 samples, 0.01%)</title><rect x="582.6" y="309" width="0.2" height="15.0" fill="rgb(222,8,19)" rx="2" ry="2" />
<text text-anchor="" x="585.63" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory16AllocateRawArrayEiNS0_13PretenureFlagE (2 samples, 0.01%)</title><rect x="1031.9" y="357" width="0.1" height="15.0" fill="rgb(208,181,5)" rx="2" ry="2" />
<text text-anchor="" x="1034.88" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14ScavengingTask13RunInParallelEv (2 samples, 0.01%)</title><rect x="833.6" y="325" width="0.1" height="15.0" fill="rgb(240,58,47)" rx="2" ry="2" />
<text text-anchor="" x="836.61" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (64 samples, 0.35%)</title><rect x="777.8" y="405" width="4.1" height="15.0" fill="rgb(254,113,25)" rx="2" ry="2" />
<text text-anchor="" x="780.81" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.01%)</title><rect x="1178.6" y="741" width="0.1" height="15.0" fill="rgb(219,147,53)" rx="2" ry="2" />
<text text-anchor="" x="1181.59" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="821.0" y="245" width="0.2" height="15.0" fill="rgb(253,89,18)" rx="2" ry="2" />
<text text-anchor="" x="824.04" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator31PrepareTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS5_14StoreFromKeyedE (27 samples, 0.15%)</title><rect x="923.6" y="421" width="1.7" height="15.0" fill="rgb(213,123,21)" rx="2" ry="2" />
<text text-anchor="" x="926.56" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1016.1" y="341" width="0.2" height="15.0" fill="rgb(248,190,6)" rx="2" ry="2" />
<text text-anchor="" x="1019.09" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (77 samples, 0.42%)</title><rect x="1184.2" y="629" width="5.0" height="15.0" fill="rgb(249,92,47)" rx="2" ry="2" />
<text text-anchor="" x="1187.20" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1151.3" y="773" width="0.2" height="15.0" fill="rgb(245,47,38)" rx="2" ry="2" />
<text text-anchor="" x="1154.34" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_124UpdateDescriptorForValueENS0_6HandleINS0_3MapEEEiNS0_17PropertyConstnessENS2_INS0_6ObjectEEE (209 samples, 1.14%)</title><rect x="1104.2" y="373" width="13.5" height="15.0" fill="rgb(244,43,12)" rx="2" ry="2" />
<text text-anchor="" x="1107.24" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (9 samples, 0.05%)</title><rect x="760.7" y="405" width="0.5" height="15.0" fill="rgb(216,145,45)" rx="2" ry="2" />
<text text-anchor="" x="763.67" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment