Skip to content

Instantly share code, notes, and snippets.

@DanielThomas
Created July 14, 2017 16:38
Show Gist options
  • Save DanielThomas/3ea2ac2e745ca6c458422873f9cce625 to your computer and use it in GitHub Desktop.
Save DanielThomas/3ea2ac2e745ca6c458422873f9cce625 to your computer and use it in GitHub Desktop.
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="4002" onload="init(evt)" viewBox="0 0 1200 4002" 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. -->
<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;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// 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.
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
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="4002.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="3985" 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="3985" 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>ip_queue_xmit (3 samples, 0.10%)</title><rect x="821.3" y="353" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="824.28" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/ScriptBytecodeAdapter:::invokeMethodNSpreadSafe (2 samples, 0.07%)</title><rect x="1048.4" y="1553" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (4 samples, 0.14%)</title><rect x="1159.7" y="1361" width="1.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1162.74" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>walk_component (3 samples, 0.10%)</title><rect x="1159.7" y="1265" width="1.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1162.74" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (3 samples, 0.10%)</title><rect x="781.7" y="705" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="784.74" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (2 samples, 0.07%)</title><rect x="147.2" y="3809" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$ActionInvocationHandler:::dispatch (28 samples, 0.96%)</title><rect x="1173.5" y="2529" width="11.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseRemoveUseless::PhaseRemoveUseless(PhaseGVN*,Unique_Node_List*,Phase::PhaseNumber) (2 samples, 0.07%)</title><rect x="100.0" y="3761" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="102.96" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/AlignRules$ApplyAlignsAction:::execute (2 samples, 0.07%)</title><rect x="913.7" y="1073" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="916.66" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="1041.1" y="833" width="1.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1044.14" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse(JVMState*,ciMethod*,float) (4 samples, 0.14%)</title><rect x="105.6" y="3473" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="917.7" y="913" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (3 samples, 0.10%)</title><rect x="917.3" y="1377" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$DefaultLookupContext$4:::apply (2 samples, 0.07%)</title><rect x="166.9" y="1729" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (1,397 samples, 47.76%)</title><rect x="484.4" y="1841" width="563.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/event/ListenerBroadcast:::dispatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (3 samples, 0.10%)</title><rect x="435.6" y="1217" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="438.61" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeLo (77 samples, 2.63%)</title><rect x="747.4" y="897" width="31.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="750.45" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lj..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (22 samples, 0.75%)</title><rect x="534.8" y="721" width="8.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="537.85" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/storage/LockBasedStorageManager$LockBasedNotNullLazyValue:::invoke (2 samples, 0.07%)</title><rect x="1177.5" y="1633" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (9 samples, 0.31%)</title><rect x="444.1" y="1281" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="447.08" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (4 samples, 0.14%)</title><rect x="1041.1" y="897" width="1.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1044.14" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="812.0" y="609" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (3 samples, 0.10%)</title><rect x="1067.4" y="1233" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1070.36" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (35 samples, 1.20%)</title><rect x="1052.0" y="1361" width="14.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (9 samples, 0.31%)</title><rect x="1148.0" y="913" width="3.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1151.04" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,521 samples, 86.19%)</title><rect x="168.1" y="2913" width="1017.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (2 samples, 0.07%)</title><rect x="899.9" y="849" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="902.94" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethod::find_monomorphic_target(ciInstanceKlass*,ciInstanceKlass*,ciInstanceKlass*,bool) (3 samples, 0.10%)</title><rect x="118.1" y="3649" width="1.2" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="121.12" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/listener/ClosureBackedMethodInvocationDispatch:::dispatch (4 samples, 0.14%)</title><rect x="1049.6" y="1729" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1052.61" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (3 samples, 0.10%)</title><rect x="966.1" y="897" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="969.10" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1185.2" y="3137" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="3147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (336 samples, 11.49%)</title><rect x="517.1" y="849" width="135.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="520.10" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (10 samples, 0.34%)</title><rect x="856.8" y="1121" width="4.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="859.78" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="855.2" y="961" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (3 samples, 0.10%)</title><rect x="1150.1" y="849" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1178.7" y="1281" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/DefaultCacheLockingManager:::useCache (13 samples, 0.44%)</title><rect x="1158.5" y="1857" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (2 samples, 0.07%)</title><rect x="146.4" y="3713" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (2 samples, 0.07%)</title><rect x="371.9" y="1009" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="855.2" y="817" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (17 samples, 0.58%)</title><rect x="869.3" y="737" width="6.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="872.28" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$CandidateResult:::resolve (3 samples, 0.10%)</title><rect x="992.7" y="1073" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="995.73" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::isRejectedByRules (2 samples, 0.07%)</title><rect x="177.0" y="1473" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="180.02" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/DefaultCacheLockingManager:::useCache (84 samples, 2.87%)</title><rect x="1051.6" y="1841" width="33.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1054.63" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Start:::match (2 samples, 0.07%)</title><rect x="988.7" y="481" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (4 samples, 0.14%)</title><rect x="404.1" y="1345" width="1.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="407.14" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/dispatch/ReflectionDispatch:::dispatch (3 samples, 0.10%)</title><rect x="166.9" y="2801" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (2 samples, 0.07%)</title><rect x="97.9" y="3489" width="0.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (2 samples, 0.07%)</title><rect x="1132.3" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1135.31" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/CacheLockingArtifactResolver:::resolveArtifact (13 samples, 0.44%)</title><rect x="1158.5" y="1873" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/io/RandomAccessFileInputStream:::read (2 samples, 0.07%)</title><rect x="1161.8" y="1265" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1164.76" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler:::resolveNextConflict (10 samples, 0.34%)</title><rect x="1025.8" y="1233" width="4.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1028.81" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1181.5" y="1697" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/AbstractCallSite:::call (3 samples, 0.10%)</title><rect x="857.2" y="1089" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="860.18" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaMain (4 samples, 0.14%)</title><rect x="10.0" y="3905" width="1.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::escape (2 samples, 0.07%)</title><rect x="1100.0" y="657" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1103.04" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (3 samples, 0.10%)</title><rect x="1092.8" y="721" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1095.78" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/ExternalResourceName:::getUri (2 samples, 0.07%)</title><rect x="933.0" y="881" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="936.02" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (2 samples, 0.07%)</title><rect x="988.7" y="689" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (2 samples, 0.07%)</title><rect x="810.8" y="641" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1,395 samples, 47.69%)</title><rect x="484.4" y="1633" width="562.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3393" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/CompositeDomainObjectSet$DomainObjectCompositeCollection:::estimatedSize (4 samples, 0.14%)</title><rect x="1175.1" y="1569" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="855.2" y="785" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ChainedVersionLister$1:::visit (12 samples, 0.41%)</title><rect x="810.4" y="769" width="4.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="813.38" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionSelectorResolveState:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="498.5" y="1137" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="501.54" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::sort (660 samples, 22.56%)</title><rect x="182.3" y="1425" width="266.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="185.26" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/TimSort:::sort</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::escape (2 samples, 0.07%)</title><rect x="709.1" y="673" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="712.12" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/jar/JarFile:::getEntry (2 samples, 0.07%)</title><rect x="999.6" y="81" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 0.96%)</title><rect x="1173.5" y="2385" width="11.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fstatat (2 samples, 0.07%)</title><rect x="166.1" y="3857" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (2 samples, 0.07%)</title><rect x="745.4" y="785" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="748.43" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::sort (662 samples, 22.63%)</title><rect x="181.5" y="1441" width="267.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="184.45" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/Arrays:::sort</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::getNode (3 samples, 0.10%)</title><rect x="479.6" y="1505" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="482.58" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performRequest (3 samples, 0.10%)</title><rect x="1016.9" y="657" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1019.93" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (2 samples, 0.07%)</title><rect x="166.9" y="2337" width="0.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/configurations/DefaultConfiguration:::resolveToStateOrLater (150 samples, 5.13%)</title><rect x="1085.5" y="1537" width="60.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::run() (7 samples, 0.24%)</title><rect x="20.9" y="3889" width="2.8" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="23.89" y="3899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (2 samples, 0.07%)</title><rect x="755.9" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="758.92" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (14 samples, 0.48%)</title><rect x="1106.9" y="785" width="5.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1109.90" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="983.4" y="817" width="1.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="986.45" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (6 samples, 0.21%)</title><rect x="105.6" y="3681" width="2.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/AbstractIterator:::tryToComputeNext (5 samples, 0.17%)</title><rect x="847.5" y="1105" width="2.0" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="850.50" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$TreeInfo:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="223.8" y="1169" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="226.81" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="1181.5" y="2001" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 0.21%)</title><rect x="1167.4" y="2209" width="2.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.41" y="2219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess:::resolveComponentMetaData (9 samples, 0.31%)</title><rect x="988.7" y="993" width="3.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-16622/16626 (8 samples, 0.27%)</title><rect x="20.5" y="3937" width="3.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="23.49" y="3947.5" font-size="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 (2,526 samples, 86.36%)</title><rect x="166.9" y="3921" width="1019.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Annotation$1:::parsePartialFrom (3 samples, 0.10%)</title><rect x="1175.5" y="849" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="981.0" y="817" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="984.03" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (5 samples, 0.17%)</title><rect x="103.6" y="3601" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (52 samples, 1.78%)</title><rect x="865.7" y="865" width="20.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="868.65" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (8 samples, 0.27%)</title><rect x="276.7" y="1249" width="3.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="279.66" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::sort (2 samples, 0.07%)</title><rect x="1050.0" y="1489" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1053.01" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.07%)</title><rect x="147.2" y="3841" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (2 samples, 0.07%)</title><rect x="1134.3" y="737" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1137.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swap_readpage (4 samples, 0.14%)</title><rect x="138.3" y="3665" width="1.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="141.29" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (2 samples, 0.07%)</title><rect x="783.4" y="769" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="786.35" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseAggressiveCoalesce::insert_copies(Matcher&amp;) (3 samples, 0.10%)</title><rect x="33.0" y="3761" width="1.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="35.99" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (2 samples, 0.07%)</title><rect x="1140.0" y="961" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1142.98" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/AlignRules:::selectedVersions (309 samples, 10.56%)</title><rect x="921.7" y="1617" width="124.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="924.73" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lnebula/plugin/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3649" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (4 samples, 0.14%)</title><rect x="790.2" y="769" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="793.21" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (14 samples, 0.48%)</title><rect x="409.4" y="1329" width="5.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="412.38" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="833.0" y="993" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="835.97" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::binarySort (9 samples, 0.31%)</title><rect x="1148.0" y="961" width="3.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1151.04" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/util/CollectionUtils:::sort (15 samples, 0.51%)</title><rect x="1036.7" y="1041" width="6.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/HTMLScanner$ContentScanner:::scanCharacters (3 samples, 0.10%)</title><rect x="816.4" y="561" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="819.43" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::findLatestModule (78 samples, 2.67%)</title><rect x="1052.0" y="1569" width="31.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (3 samples, 0.10%)</title><rect x="413.4" y="1249" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="416.42" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (3 samples, 0.10%)</title><rect x="743.8" y="753" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_lookup (2 samples, 0.07%)</title><rect x="1023.8" y="1041" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1026.79" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (8 samples, 0.27%)</title><rect x="1131.9" y="833" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1134.91" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (13 samples, 0.44%)</title><rect x="1158.5" y="1825" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (2,526 samples, 86.36%)</title><rect x="166.9" y="3793" width="1019.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/KClassImpl$Data:::getDescriptor (4 samples, 0.14%)</title><rect x="1178.3" y="1665" width="1.6" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (3 samples, 0.10%)</title><rect x="917.3" y="1345" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matcher (4 samples, 0.14%)</title><rect x="957.6" y="785" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="960.63" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$DependencyToComponentIdResolverChain:::resolve (813 samples, 27.79%)</title><rect x="507.0" y="1153" width="328.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="510.01" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivyservic..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (4 samples, 0.14%)</title><rect x="974.2" y="849" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="977.17" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::StateVector::do_getstatic(ciBytecodeStream*) (2 samples, 0.07%)</title><rect x="26.1" y="3665" width="0.8" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="29.14" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor:::processRules (13 samples, 0.44%)</title><rect x="509.0" y="993" width="5.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="512.03" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (2 samples, 0.07%)</title><rect x="818.5" y="369" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performRawGet (5 samples, 0.17%)</title><rect x="996.4" y="657" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (8 samples, 0.27%)</title><rect x="1173.9" y="1713" width="3.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call() (4 samples, 0.14%)</title><rect x="105.6" y="3313" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.07%)</title><rect x="146.4" y="3761" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3771.5" font-size="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 (2 samples, 0.07%)</title><rect x="112.1" y="3905" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="115.06" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/RandomAccessFile:::readBytes (2 samples, 0.07%)</title><rect x="1161.8" y="1233" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1164.76" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::sweep_code_cache() (2 samples, 0.07%)</title><rect x="110.9" y="3809" width="0.8" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="113.85" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (8 samples, 0.27%)</title><rect x="970.5" y="769" width="3.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="973.54" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultFileLockManager$DefaultFileLock:::doWriteAction (2 samples, 0.07%)</title><rect x="808.8" y="897" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="811.77" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (2 samples, 0.07%)</title><rect x="917.7" y="1009" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1034.3" y="945" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1037.28" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (263 samples, 8.99%)</title><rect x="1051.2" y="1985" width="106.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1054.22" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/databind/introspect/AnnotationIntrospectorPair:::findImplicitPropertyName (2 samples, 0.07%)</title><rect x="1173.9" y="1601" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (4 samples, 0.14%)</title><rect x="144.3" y="3905" width="1.7" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="147.34" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::digit (6 samples, 0.21%)</title><rect x="325.9" y="1249" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="328.88" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (6 samples, 0.21%)</title><rect x="895.1" y="785" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="898.10" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse(JVMState*,ciMethod*,float) (19 samples, 0.65%)</title><rect x="101.2" y="3777" width="7.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="104.17" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::digit (3 samples, 0.10%)</title><rect x="525.2" y="753" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="528.17" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lookup_slow (10 samples, 0.34%)</title><rect x="157.7" y="3745" width="4.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="160.65" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$2$1:::execute (5 samples, 0.17%)</title><rect x="851.1" y="1137" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="854.13" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3505" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (4 samples, 0.14%)</title><rect x="904.0" y="769" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="906.98" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::run() (212 samples, 7.25%)</title><rect x="26.1" y="3889" width="85.6" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="29.14" y="3899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (23 samples, 0.79%)</title><rect x="1146.4" y="1297" width="9.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (14 samples, 0.48%)</title><rect x="886.6" y="817" width="5.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="889.63" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (9 samples, 0.31%)</title><rect x="749.1" y="753" width="3.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::sortLatestFirst (122 samples, 4.17%)</title><rect x="1089.5" y="1025" width="49.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.07%)</title><rect x="146.4" y="3633" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (3 samples, 0.10%)</title><rect x="1048.4" y="1697" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (31 samples, 1.06%)</title><rect x="1172.2" y="2609" width="12.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (5 samples, 0.17%)</title><rect x="1121.8" y="689" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1124.82" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (3 samples, 0.10%)</title><rect x="901.6" y="753" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="904.56" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/AlignRule:::toString (2 samples, 0.07%)</title><rect x="839.4" y="1025" width="0.8" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="842.43" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BmpCharProperty:::match (4 samples, 0.14%)</title><rect x="533.2" y="721" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="536.23" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$DefaultLookupContext$4:::apply (2 samples, 0.07%)</title><rect x="166.9" y="1553" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/BaseModuleComponentRepositoryAccess:::listModuleVersions (60 samples, 2.05%)</title><rect x="995.1" y="1025" width="24.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="998.15" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BmpCharProperty:::match (6 samples, 0.21%)</title><rect x="536.1" y="705" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="539.06" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (16 samples, 0.55%)</title><rect x="959.2" y="865" width="6.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="962.24" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks() (2 samples, 0.07%)</title><rect x="106.0" y="3169" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="109.01" y="3179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::resize (2 samples, 0.07%)</title><rect x="993.9" y="1025" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (22 samples, 0.75%)</title><rect x="198.8" y="1217" width="8.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="201.80" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::atom (3 samples, 0.10%)</title><rect x="1099.6" y="673" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1102.63" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1156.1" y="1601" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::resolve (17 samples, 0.58%)</title><rect x="1147.6" y="1105" width="6.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver:::access$100 (2 samples, 0.07%)</title><rect x="1018.5" y="977" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1021.55" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (33 samples, 1.13%)</title><rect x="945.9" y="801" width="13.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="948.93" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (4 samples, 0.14%)</title><rect x="1131.9" y="737" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1134.91" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (2 samples, 0.07%)</title><rect x="780.1" y="753" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="783.13" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_flush_plug_list (2 samples, 0.07%)</title><rect x="1186.0" y="3729" width="0.8" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (11 samples, 0.38%)</title><rect x="901.2" y="801" width="4.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="904.15" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (15 samples, 0.51%)</title><rect x="892.3" y="833" width="6.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor:::apply (13 samples, 0.44%)</title><rect x="509.0" y="1009" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="512.03" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess:::resolveComponentMetaData (3 samples, 0.10%)</title><rect x="992.7" y="1025" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="995.73" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Object:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="343.6" y="1201" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="346.63" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (2 samples, 0.07%)</title><rect x="787.0" y="657" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="789.98" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::resolve (9 samples, 0.31%)</title><rect x="500.6" y="1105" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::iterator (7 samples, 0.24%)</title><rect x="457.4" y="1505" width="2.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="460.39" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (2 samples, 0.07%)</title><rect x="975.8" y="817" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="1058.5" y="1217" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1061.49" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (8 samples, 0.27%)</title><rect x="1036.7" y="897" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::useCache (910 samples, 31.11%)</title><rect x="487.6" y="1345" width="367.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="490.65" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/cache/internal/DefaultCacheFactory$Re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIterGVN::optimize() (6 samples, 0.21%)</title><rect x="96.7" y="3777" width="2.5" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="99.74" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (4 samples, 0.14%)</title><rect x="1110.9" y="721" width="1.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1113.93" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (2 samples, 0.07%)</title><rect x="139.1" y="3553" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="142.09" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (84 samples, 2.87%)</title><rect x="1051.6" y="1809" width="33.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1054.63" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1137.6" y="849" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1140.56" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (3 samples, 0.10%)</title><rect x="402.9" y="1313" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="405.93" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (2 samples, 0.07%)</title><rect x="1038.3" y="737" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1041.31" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (2,521 samples, 86.19%)</title><rect x="168.1" y="2961" width="1017.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/Transformers$4:::transform</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (926 samples, 31.66%)</title><rect x="487.2" y="1425" width="373.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="490.24" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (5 samples, 0.17%)</title><rect x="1092.0" y="737" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1094.97" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block() (5 samples, 0.17%)</title><rect x="105.6" y="3537" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/AlignRules$resolvedAligns$1:::invoke (2 samples, 0.07%)</title><rect x="920.5" y="1553" width="0.8" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="923.52" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (4 samples, 0.14%)</title><rect x="743.8" y="833" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>checkcast_arraycopy_uninit (9 samples, 0.31%)</title><rect x="280.3" y="1281" width="3.6" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="283.29" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (2 samples, 0.07%)</title><rect x="166.9" y="2113" width="0.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/base/Predicates$InPredicate:::apply (3 samples, 0.10%)</title><rect x="479.6" y="1553" width="1.2" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="482.58" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (33 samples, 1.13%)</title><rect x="1116.2" y="881" width="13.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::calculateTargetConfigurations (3 samples, 0.10%)</title><rect x="1025.8" y="1089" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1028.81" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (13 samples, 0.44%)</title><rect x="418.3" y="1169" width="5.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="421.26" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (2 samples, 0.07%)</title><rect x="164.5" y="3729" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (6 samples, 0.21%)</title><rect x="148.0" y="3777" width="2.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="150.97" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (31 samples, 1.06%)</title><rect x="1172.2" y="2641" width="12.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (3 samples, 0.10%)</title><rect x="118.1" y="3521" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="121.12" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionResolveState:::getMetaData (25 samples, 0.85%)</title><rect x="930.2" y="1201" width="10.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="933.20" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1156.5" y="1313" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.07%)</title><rect x="413.8" y="1185" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="416.82" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (2 samples, 0.07%)</title><rect x="988.7" y="881" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::resolve (132 samples, 4.51%)</title><rect x="1089.5" y="1073" width="53.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeForceCollapse (5 samples, 0.17%)</title><rect x="1080.7" y="1409" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1083.67" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/RegularImmutableMap:::get (4 samples, 0.14%)</title><rect x="1090.4" y="801" width="1.6" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1093.36" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (263 samples, 8.99%)</title><rect x="1051.2" y="1969" width="106.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1054.22" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (9 samples, 0.31%)</title><rect x="784.2" y="769" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="787.16" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/memcache/InMemoryMetaDataCache:::supplyModuleVersions (14 samples, 0.48%)</title><rect x="825.7" y="993" width="5.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="828.71" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (2 samples, 0.07%)</title><rect x="23.7" y="3809" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (2 samples, 0.07%)</title><rect x="908.8" y="689" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="911.82" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (6 samples, 0.21%)</title><rect x="963.3" y="849" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="966.28" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder:::traverseGraph (146 samples, 4.99%)</title><rect x="1085.9" y="1217" width="58.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1088.92" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (8 samples, 0.27%)</title><rect x="1031.9" y="1329" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ConfigurationNode:::visitOutgoingDependencies (19 samples, 0.65%)</title><rect x="492.5" y="1201" width="7.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="495.49" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_queue_bio (2 samples, 0.07%)</title><rect x="311.4" y="1057" width="0.8" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="314.35" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3361" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::run() (4 samples, 0.14%)</title><rect x="144.3" y="3889" width="1.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="147.34" y="3899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="810.8" y="529" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::GraphBuilder(Compilation*,IRScope*) (14 samples, 0.48%)</title><rect x="113.7" y="3713" width="5.6" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="116.68" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (2 samples, 0.07%)</title><rect x="1134.3" y="721" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1137.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (8 samples, 0.27%)</title><rect x="1173.9" y="1761" width="3.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arrayof_jint_fill (2 samples, 0.07%)</title><rect x="330.3" y="1249" width="0.8" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="333.31" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (6 samples, 0.21%)</title><rect x="981.0" y="849" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="984.03" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (7 samples, 0.24%)</title><rect x="973.8" y="865" width="2.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="976.77" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (147 samples, 5.03%)</title><rect x="1085.5" y="1233" width="59.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (9 samples, 0.31%)</title><rect x="136.3" y="3745" width="3.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="139.27" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (2 samples, 0.07%)</title><rect x="1054.5" y="1233" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1057.45" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (201 samples, 6.87%)</title><rect x="658.3" y="865" width="81.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="661.29" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="977.0" y="737" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="979.99" y="747.5" font-size="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_send (2 samples, 0.07%)</title><rect x="146.4" y="3857" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (4 samples, 0.14%)</title><rect x="659.1" y="833" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="662.10" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::selectNewestMatchingComponent (668 samples, 22.84%)</title><rect x="180.6" y="1521" width="269.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="183.65" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__getblk_gfp (2 samples, 0.07%)</title><rect x="158.5" y="3649" width="0.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="161.46" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (63 samples, 2.15%)</title><rect x="1089.5" y="849" width="25.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1165.0" y="2401" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (2 samples, 0.07%)</title><rect x="1170.2" y="2305" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassHierarchyWalker::find_witness_anywhere(Klass*,bool,bool) (3 samples, 0.10%)</title><rect x="118.1" y="3617" width="1.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="121.12" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (2 samples, 0.07%)</title><rect x="988.7" y="721" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/PojoMetaMethodSite:::call (2 samples, 0.07%)</title><rect x="1172.2" y="2001" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$CachingProvider:::getService (2 samples, 0.07%)</title><rect x="166.9" y="1537" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::isRejectedComponent (8 samples, 0.27%)</title><rect x="500.6" y="1009" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::append (2 samples, 0.07%)</title><rect x="839.4" y="1057" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="842.43" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentMetaDataResolveState:::process (9 samples, 0.31%)</title><rect x="500.6" y="1025" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="1167.4" y="2273" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.41" y="2283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::putVal (2 samples, 0.07%)</title><rect x="1019.8" y="929" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1022.76" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions$DependencyResolveDetailsWrapperAction:::execute (9 samples, 0.31%)</title><rect x="839.0" y="1121" width="3.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="842.03" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (6 samples, 0.21%)</title><rect x="785.4" y="721" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="788.37" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_GetClassDeclaredFields (2 samples, 0.07%)</title><rect x="10.0" y="3697" width="0.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::sort (16 samples, 0.55%)</title><rect x="1147.6" y="993" width="6.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::atom (2 samples, 0.07%)</title><rect x="774.9" y="625" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="777.88" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/ReflectProperties$Val:::getValue (5 samples, 0.17%)</title><rect x="1181.5" y="1937" width="2.0" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1265" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call() (4 samples, 0.14%)</title><rect x="105.6" y="3409" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_swap_page (2 samples, 0.07%)</title><rect x="116.5" y="3473" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="119.50" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (52 samples, 1.78%)</title><rect x="865.7" y="881" width="20.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="868.65" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1168.2" y="2033" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::sort (15 samples, 0.51%)</title><rect x="1148.0" y="977" width="6.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1151.04" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke(instanceKlassHandle,methodHandle,Handle,bool,objArrayHandle,BasicType,objArrayHandle,bool,Thread*) (2 samples, 0.07%)</title><rect x="1172.2" y="2081" width="0.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2091.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 0.85%)</title><rect x="1173.5" y="2065" width="10.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/ReflectProperties$Val:::getValue (2 samples, 0.07%)</title><rect x="1177.5" y="1761" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (8 samples, 0.27%)</title><rect x="440.9" y="1281" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="443.85" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/security/AccessController:::doPrivileged (2 samples, 0.07%)</title><rect x="1000.8" y="465" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1003.80" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol::increment_refcount() (2 samples, 0.07%)</title><rect x="116.5" y="3553" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="119.50" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::contains (3 samples, 0.10%)</title><rect x="479.6" y="1537" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="482.58" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (2 samples, 0.07%)</title><rect x="166.9" y="2513" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1172.2" y="1617" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ll_rw_block (3 samples, 0.10%)</title><rect x="152.0" y="3633" width="1.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="402.9" y="1281" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="405.93" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (3 samples, 0.10%)</title><rect x="118.1" y="3537" width="1.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="121.12" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (20 samples, 0.68%)</title><rect x="671.2" y="721" width="8.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="674.20" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/databind/introspect/AnnotationIntrospectorPair:::findImplicitPropertyName (5 samples, 0.17%)</title><rect x="1181.5" y="2033" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1409" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (280 samples, 9.57%)</title><rect x="922.1" y="1521" width="113.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (4 samples, 0.14%)</title><rect x="1148.0" y="849" width="1.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1151.04" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$SingletonService:::getService (2 samples, 0.07%)</title><rect x="166.9" y="1649" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-16622/16655 (8 samples, 0.27%)</title><rect x="1186.0" y="3937" width="3.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (2 samples, 0.07%)</title><rect x="438.0" y="1361" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="441.03" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3761" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (20 samples, 0.68%)</title><rect x="1173.5" y="2033" width="8.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1034.3" y="817" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1037.28" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (2 samples, 0.07%)</title><rect x="1023.8" y="1137" width="0.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1026.79" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1178.7" y="1473" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::elide_copy(Node*,int,Block*,Node_List&amp;,Node_List&amp;,bool) (8 samples, 0.27%)</title><rect x="45.5" y="3745" width="3.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="48.50" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1537" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeAt (24 samples, 0.82%)</title><rect x="898.7" y="913" width="9.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="901.73" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fuse_simple_request (2 samples, 0.07%)</title><rect x="1163.0" y="1329" width="0.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1165.97" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder:::assembleResult (6 samples, 0.21%)</title><rect x="922.1" y="1249" width="2.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3233" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::resize (6 samples, 0.21%)</title><rect x="798.7" y="993" width="2.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="801.68" y="1003.5" font-size="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___xstat (16 samples, 0.55%)</title><rect x="157.7" y="3905" width="6.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="160.65" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (3 samples, 0.10%)</title><rect x="1172.2" y="2385" width="1.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::resolve (801 samples, 27.38%)</title><rect x="509.0" y="1073" width="323.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="512.03" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivyservi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (5 samples, 0.17%)</title><rect x="780.9" y="785" width="2.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="783.93" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (8 samples, 0.27%)</title><rect x="425.1" y="1249" width="3.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="428.12" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3729" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (8 samples, 0.27%)</title><rect x="1031.9" y="1377" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler:::resolveNextConflict (7 samples, 0.24%)</title><rect x="851.1" y="1201" width="2.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="854.13" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.07%)</title><rect x="818.5" y="273" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopLeft (2 samples, 0.07%)</title><rect x="438.0" y="1377" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="441.03" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (5 samples, 0.17%)</title><rect x="745.4" y="849" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="748.43" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess:::resolveComponentMetaData (17 samples, 0.58%)</title><rect x="933.0" y="1041" width="6.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="936.02" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (2 samples, 0.07%)</title><rect x="1172.2" y="1713" width="0.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1173.9" y="1617" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/listener/ClosureBackedMethodInvocationDispatch:::dispatch (4 samples, 0.14%)</title><rect x="1049.6" y="1745" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1052.61" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1473" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (260 samples, 8.89%)</title><rect x="1051.2" y="1873" width="104.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1054.22" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap$LinkedHashIterator:::nextNode (7 samples, 0.24%)</title><rect x="473.1" y="1393" width="2.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="476.12" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/deserialization/TypeDeserializer:::type$default (2 samples, 0.07%)</title><rect x="1181.5" y="1617" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_make_request (3 samples, 0.10%)</title><rect x="152.0" y="3585" width="1.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactory:::module (2 samples, 0.07%)</title><rect x="1088.7" y="1105" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1091.74" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (2 samples, 0.07%)</title><rect x="166.9" y="2129" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1156.1" y="1585" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::longRunningOperation (55 samples, 1.88%)</title><rect x="996.4" y="961" width="22.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (3 samples, 0.10%)</title><rect x="154.0" y="3665" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="157.02" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::iterate_all_blocks(bool) (13 samples, 0.44%)</title><rect x="114.1" y="3697" width="5.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.08" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (7 samples, 0.24%)</title><rect x="1048.4" y="1873" width="2.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.07%)</title><rect x="25.3" y="3889" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="28.33" y="3899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::assign_reg_num() (3 samples, 0.10%)</title><rect x="125.8" y="3729" width="1.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="128.78" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__breadahead (3 samples, 0.10%)</title><rect x="152.0" y="3649" width="1.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matcher (20 samples, 0.68%)</title><rect x="242.8" y="1233" width="8.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="245.77" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$CompositeProvider:::getService (2 samples, 0.07%)</title><rect x="166.9" y="1681" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="406.2" y="1297" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="409.16" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (3 samples, 0.10%)</title><rect x="812.0" y="641" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (2 samples, 0.07%)</title><rect x="404.5" y="1201" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="407.54" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,467 samples, 84.34%)</title><rect x="168.5" y="2049" width="995.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/store/DefaultBinaryStore:::write (2 samples, 0.07%)</title><rect x="490.9" y="1153" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="493.88" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shrink_node (2 samples, 0.07%)</title><rect x="10.0" y="3409" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptscsih_qcmd (2 samples, 0.07%)</title><rect x="139.1" y="3505" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="142.09" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (8 samples, 0.27%)</title><rect x="872.9" y="705" width="3.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="875.91" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1172.2" y="2193" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1166.6" y="2273" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1169.60" y="2283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1165.0" y="2449" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queue_unplugged (4 samples, 0.14%)</title><rect x="148.4" y="3649" width="1.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="151.37" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder:::assembleResult (4 samples, 0.14%)</title><rect x="168.5" y="1697" width="1.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (2 samples, 0.07%)</title><rect x="793.4" y="945" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="796.44" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::study (8 samples, 0.27%)</title><rect x="693.0" y="689" width="3.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="695.99" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toUpperCase (3 samples, 0.10%)</title><rect x="1012.5" y="529" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1015.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/CompositeStoppable:::stop (2 samples, 0.07%)</title><rect x="1185.2" y="2993" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="3003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (3 samples, 0.10%)</title><rect x="917.3" y="1361" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Actions$CompositeAction:::execute (22 samples, 0.75%)</title><rect x="835.8" y="1137" width="8.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="838.80" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (28 samples, 0.96%)</title><rect x="866.5" y="817" width="11.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="869.46" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ResolveState:::getModule (2 samples, 0.07%)</title><rect x="845.5" y="1153" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="848.48" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/plugins/DefaultPluginManager:::addImperativePlugin (7 samples, 0.24%)</title><rect x="1167.4" y="2305" width="2.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1170.41" y="2315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::valueOf (2 samples, 0.07%)</title><rect x="784.6" y="737" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="787.56" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/AbstractExternalResource:::withContent (2 samples, 0.07%)</title><rect x="810.8" y="593" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::selectNewestMatchingComponent (16 samples, 0.55%)</title><rect x="1147.6" y="1073" width="6.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (2 samples, 0.07%)</title><rect x="752.7" y="785" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="755.69" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (3 samples, 0.10%)</title><rect x="1135.1" y="865" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="875.5" font-size="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_send (2 samples, 0.07%)</title><rect x="155.2" y="3889" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="158.23" y="3899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call() (2 samples, 0.07%)</title><rect x="104.0" y="3329" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="107.00" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionResolveState:::resolve (2 samples, 0.07%)</title><rect x="1027.4" y="1025" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/cached/ivy/AbstractCachedIndex$1:::create (10 samples, 0.34%)</title><rect x="1158.9" y="1521" width="4.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.94" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeAt (4 samples, 0.14%)</title><rect x="1041.1" y="945" width="1.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1044.14" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__elv_add_request (2 samples, 0.07%)</title><rect x="1186.0" y="3713" width="0.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (134 samples, 4.58%)</title><rect x="595.4" y="833" width="54.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="598.36" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (3 samples, 0.10%)</title><rect x="1011.3" y="273" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (911 samples, 31.15%)</title><rect x="487.2" y="1377" width="367.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="490.24" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::append (2 samples, 0.07%)</title><rect x="1142.8" y="1057" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::allocate_registers() (3 samples, 0.10%)</title><rect x="124.6" y="3729" width="1.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="127.57" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/AlignRules$ApplyAlignsAction:::execute (3 samples, 0.10%)</title><rect x="1142.8" y="1089" width="1.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (2 samples, 0.07%)</title><rect x="818.5" y="385" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (3 samples, 0.10%)</title><rect x="1156.1" y="1649" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (3 samples, 0.10%)</title><rect x="154.0" y="3617" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="157.02" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks() (18 samples, 0.62%)</title><rect x="101.6" y="3761" width="7.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="104.58" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,471 samples, 84.48%)</title><rect x="168.1" y="2801" width="996.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (30 samples, 1.03%)</title><rect x="886.6" y="913" width="12.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="889.63" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (62 samples, 2.12%)</title><rect x="603.4" y="817" width="25.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="606.43" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionResolver:::resolve (17 samples, 0.58%)</title><rect x="1147.6" y="1201" width="6.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="743.8" y="769" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="812.0" y="385" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (9 samples, 0.31%)</title><rect x="1166.6" y="2433" width="3.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1169.60" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/btree/FileBackedBlockStore$BlockImpl:::read (3 samples, 0.10%)</title><rect x="1161.4" y="1345" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1164.36" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (2 samples, 0.07%)</title><rect x="1040.3" y="849" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1043.33" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$CachingProvider:::getService (2 samples, 0.07%)</title><rect x="166.9" y="1697" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/MethodMetaProperty$GetBeanMethodMetaProperty:::getProperty (2 samples, 0.07%)</title><rect x="1032.7" y="1089" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1035.67" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::split_if_with_blocks(VectorSet&amp;,Node_Stack&amp;) (2 samples, 0.07%)</title><rect x="93.9" y="3761" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="96.91" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (5 samples, 0.17%)</title><rect x="858.4" y="993" width="2.0" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_swap_page (3 samples, 0.10%)</title><rect x="73.3" y="3681" width="1.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="76.34" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (18 samples, 0.62%)</title><rect x="1165.0" y="2609" width="7.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_iget (3 samples, 0.10%)</title><rect x="152.0" y="3681" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (2 samples, 0.07%)</title><rect x="106.0" y="3201" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="109.01" y="3211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode() (6 samples, 0.21%)</title><rect x="105.6" y="3617" width="2.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (16 samples, 0.55%)</title><rect x="747.4" y="865" width="6.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="750.45" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/cache/LocalCache$LocalLoadingCache:::get (2 samples, 0.07%)</title><rect x="1171.0" y="2529" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1174.04" y="2539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (2 samples, 0.07%)</title><rect x="317.8" y="1265" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="320.81" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (2 samples, 0.07%)</title><rect x="138.3" y="3553" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="141.29" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/component/model/DefaultDependencyMetadata:::getRequested (2 samples, 0.07%)</title><rect x="464.7" y="1521" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="467.65" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::versionMatches (10 samples, 0.34%)</title><rect x="988.7" y="1057" width="4.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeCollapse (4 samples, 0.14%)</title><rect x="1041.1" y="961" width="1.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1044.14" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry(JavaThread*,Thread*) (7 samples, 0.24%)</title><rect x="17.3" y="3857" width="2.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>e1000_xmit_frame (2 samples, 0.07%)</title><rect x="821.7" y="209" width="0.8" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="824.68" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver:::listVersionsForAllPatterns (55 samples, 1.88%)</title><rect x="996.4" y="817" width="22.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (10 samples, 0.34%)</title><rect x="763.2" y="769" width="4.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="766.18" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1329" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.07%)</title><rect x="22.5" y="3841" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="25.51" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (2 samples, 0.07%)</title><rect x="1134.3" y="753" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1137.33" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$DefaultLookupContext:::getServiceProvider (2 samples, 0.07%)</title><rect x="166.9" y="1745" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (5 samples, 0.17%)</title><rect x="151.6" y="3809" width="2.0" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (4 samples, 0.14%)</title><rect x="1049.6" y="1697" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1052.61" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::digit (3 samples, 0.10%)</title><rect x="525.2" y="769" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="528.17" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/ReflectProperties$Val:::getValue (2 samples, 0.07%)</title><rect x="1180.3" y="1937" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1183.32" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (16 samples, 0.55%)</title><rect x="747.4" y="849" width="6.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="750.45" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (2,468 samples, 84.38%)</title><rect x="168.5" y="2673" width="995.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/Transformers$4:::transform</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual(JavaValue*,KlassHandle,Symbol*,Symbol*,JavaCallArguments*,Thread*) (4 samples, 0.14%)</title><rect x="144.3" y="3825" width="1.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="147.34" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (2 samples, 0.07%)</title><rect x="1130.7" y="753" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1133.70" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (2 samples, 0.07%)</title><rect x="789.0" y="721" width="0.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="792.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::binarySort (54 samples, 1.85%)</title><rect x="944.3" y="961" width="21.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="947.32" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (14 samples, 0.48%)</title><rect x="432.0" y="1281" width="5.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="434.98" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (3 samples, 0.10%)</title><rect x="855.2" y="1009" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (2 samples, 0.07%)</title><rect x="810.8" y="657" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1173.9" y="1393" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::try_inline_full(ciMethod*,bool,Bytecodes::Code,Instruction*) (2 samples, 0.07%)</title><rect x="114.9" y="3553" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.89" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Branch:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="699.8" y="689" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="702.85" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::valueOf (13 samples, 0.44%)</title><rect x="325.9" y="1281" width="5.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="328.88" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1151.7" y="849" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1154.68" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1633" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/deserialization/TypeDeserializer:::simpleType (2 samples, 0.07%)</title><rect x="1181.5" y="1585" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (2 samples, 0.07%)</title><rect x="919.7" y="1505" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="922.71" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/VersionSelectionReasonResolver:::select (2 samples, 0.07%)</title><rect x="481.6" y="1649" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="484.60" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess$UnitOfWorkFileAccess:::readFile (3 samples, 0.10%)</title><rect x="937.9" y="929" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="940.86" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (2 samples, 0.07%)</title><rect x="166.1" y="3793" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopLeft (4 samples, 0.14%)</title><rect x="1041.1" y="913" width="1.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1044.14" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IRScope::IRScope(Compilation*,IRScope*,int,ciMethod*,int,bool) (14 samples, 0.48%)</title><rect x="113.7" y="3729" width="5.6" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="116.68" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/ReflectProperties$Val:::getValue (4 samples, 0.14%)</title><rect x="1178.3" y="1761" width="1.6" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class$1:::parsePartialFrom (2 samples, 0.07%)</title><rect x="1182.3" y="1425" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::candidates (35 samples, 1.20%)</title><rect x="450.5" y="1521" width="14.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="453.53" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (4 samples, 0.14%)</title><rect x="1159.7" y="1329" width="1.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1162.74" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (3 samples, 0.10%)</title><rect x="774.5" y="657" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="777.48" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transfer/DefaultExternalResourceConnector:::list (5 samples, 0.17%)</title><rect x="996.4" y="721" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_cache_sync_readahead (2 samples, 0.07%)</title><rect x="156.4" y="3761" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="159.44" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (2 samples, 0.07%)</title><rect x="131.0" y="3665" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1177.5" y="1729" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (4 samples, 0.14%)</title><rect x="444.1" y="1249" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="447.08" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="812.0" y="401" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="411.5" font-size="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___xstat (2 samples, 0.07%)</title><rect x="166.1" y="3921" width="0.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/SubstituteRule$apply$$inlined$action$1:::execute (4 samples, 0.14%)</title><rect x="1021.4" y="1153" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1024.37" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,470 samples, 84.44%)</title><rect x="168.1" y="2721" width="996.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Node:::study (2 samples, 0.07%)</title><rect x="221.4" y="1153" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="224.39" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1185.2" y="2961" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="2971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (3 samples, 0.10%)</title><rect x="901.6" y="673" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="904.56" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="810.8" y="625" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (2 samples, 0.07%)</title><rect x="164.5" y="3585" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (5 samples, 0.17%)</title><rect x="758.3" y="657" width="2.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="761.34" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (3 samples, 0.10%)</title><rect x="1135.1" y="881" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (3 samples, 0.10%)</title><rect x="166.9" y="2913" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/rules/ClosureBackedRuleAction:::execute (2 samples, 0.07%)</title><rect x="988.7" y="801" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/clientmodule/ClientModuleResolver:::resolve (2 samples, 0.07%)</title><rect x="1027.4" y="1009" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/CachingDependencyResultFactory:::createResolvedDependency (2 samples, 0.07%)</title><rect x="1034.3" y="769" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1037.28" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::putVal (2 samples, 0.07%)</title><rect x="179.0" y="1617" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="182.03" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_ack_snd_check (3 samples, 0.10%)</title><rect x="1011.3" y="369" width="1.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (3 samples, 0.10%)</title><rect x="979.0" y="769" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="982.01" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (2 samples, 0.07%)</title><rect x="441.7" y="1201" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="444.66" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::putVal (9 samples, 0.31%)</title><rect x="798.3" y="1009" width="3.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="801.28" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (15 samples, 0.51%)</title><rect x="1094.8" y="721" width="6.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1097.79" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="999.6" y="289" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (5 samples, 0.17%)</title><rect x="105.6" y="3585" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (84 samples, 2.87%)</title><rect x="1051.6" y="1745" width="33.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1054.63" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >In..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (2 samples, 0.07%)</title><rect x="983.9" y="673" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="986.85" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::selectNewestMatchingComponent (15 samples, 0.51%)</title><rect x="1036.7" y="1073" width="6.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (78 samples, 2.67%)</title><rect x="680.1" y="737" width="31.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="683.08" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lj..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (327 samples, 11.18%)</title><rect x="184.7" y="1393" width="131.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="187.68" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/Colle..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (910 samples, 31.11%)</title><rect x="487.6" y="1265" width="367.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="490.65" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (22 samples, 0.75%)</title><rect x="1116.6" y="833" width="8.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1119.58" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>submit_bh_wbc (3 samples, 0.10%)</title><rect x="152.0" y="3617" width="1.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (2 samples, 0.07%)</title><rect x="1029.0" y="1153" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1032.04" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (20 samples, 0.68%)</title><rect x="1173.5" y="2001" width="8.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_queue_bio (4 samples, 0.14%)</title><rect x="138.3" y="3617" width="1.6" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="141.29" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3121" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (2 samples, 0.07%)</title><rect x="138.3" y="3521" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="141.29" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compiler::compile_method(ciEnv*,ciMethod*,int) (4 samples, 0.14%)</title><rect x="12.8" y="3825" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="15.82" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_swap_cache_async (2 samples, 0.07%)</title><rect x="413.8" y="1089" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="416.82" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.07%)</title><rect x="164.5" y="3713" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::attachToTargetConfigurations (3 samples, 0.10%)</title><rect x="1027.4" y="1073" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeyIterator:::next (4 samples, 0.14%)</title><rect x="509.4" y="977" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="512.43" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="917.7" y="961" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.07%)</title><rect x="818.5" y="289" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::sort (16 samples, 0.55%)</title><rect x="1147.6" y="1025" width="6.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (2 samples, 0.07%)</title><rect x="654.7" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="657.66" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/AbstractCallSite:::callCurrent (2 samples, 0.07%)</title><rect x="1165.4" y="2385" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1168.39" y="2395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="10.0" y="3825" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/HTMLConfiguration:::parse (17 samples, 0.58%)</title><rect x="816.0" y="625" width="6.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="819.03" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (2 samples, 0.07%)</title><rect x="1077.8" y="1233" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1080.85" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (4 samples, 0.14%)</title><rect x="103.6" y="3505" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap:::get (2 samples, 0.07%)</title><rect x="1035.5" y="1185" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1038.49" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/MethodMetaProperty$GetBeanMethodMetaProperty:::getProperty (5 samples, 0.17%)</title><rect x="858.4" y="1057" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (3 samples, 0.10%)</title><rect x="1151.7" y="897" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1154.68" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder$3:::write (2 samples, 0.07%)</title><rect x="490.9" y="1137" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="493.88" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/RegularImmutableMap:::get (2 samples, 0.07%)</title><rect x="1052.4" y="1281" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1055.43" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::Code_Gen() (66 samples, 2.26%)</title><rect x="27.8" y="3793" width="26.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="30.75" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >C..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match0 (2 samples, 0.07%)</title><rect x="1093.2" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1096.18" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Factories$1:::create (147 samples, 5.03%)</title><rect x="1085.5" y="1281" width="59.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_IHashCode (2 samples, 0.07%)</title><rect x="855.2" y="657" width="0.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call() (17 samples, 0.58%)</title><rect x="101.6" y="3713" width="6.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="104.58" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 0.96%)</title><rect x="1173.5" y="2481" width="11.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (3 samples, 0.10%)</title><rect x="1011.3" y="481" width="1.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (2,467 samples, 84.34%)</title><rect x="168.5" y="2161" width="995.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (2 samples, 0.07%)</title><rect x="23.7" y="3921" width="0.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (5 samples, 0.17%)</title><rect x="12.8" y="3905" width="2.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="15.82" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (20 samples, 0.68%)</title><rect x="362.6" y="1169" width="8.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="365.59" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$DefaultLookupContext$4:::apply (2 samples, 0.07%)</title><rect x="166.9" y="1713" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_swap_page (2 samples, 0.07%)</title><rect x="25.3" y="3825" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="28.33" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$2:::execute (8 samples, 0.27%)</title><rect x="1025.8" y="1217" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1028.81" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/modulecache/DefaultModuleMetaDataCache:::getCachedModuleDescriptor (2 samples, 0.07%)</title><rect x="991.1" y="913" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="994.11" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess:::useCache (22 samples, 0.75%)</title><rect x="1035.1" y="1345" width="8.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="812.0" y="497" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (5 samples, 0.17%)</title><rect x="858.4" y="1009" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ll_rw_block (2 samples, 0.07%)</title><rect x="162.5" y="3713" width="0.8" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="165.49" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="166.9" y="2321" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (18 samples, 0.62%)</title><rect x="1052.0" y="1313" width="7.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::attachToTargetConfigurations (4 samples, 0.14%)</title><rect x="851.1" y="1073" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="854.13" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::reset (4 samples, 0.14%)</title><rect x="375.5" y="1201" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="378.50" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (23 samples, 0.79%)</title><rect x="967.3" y="913" width="9.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="970.31" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.07%)</title><rect x="818.5" y="257" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse(JVMState*,ciMethod*,float) (6 samples, 0.21%)</title><rect x="105.6" y="3665" width="2.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ClassLoader:::getResource (2 samples, 0.07%)</title><rect x="999.6" y="273" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::resolveModule (2 samples, 0.07%)</title><rect x="1027.4" y="961" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (2 samples, 0.07%)</title><rect x="1041.9" y="817" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1044.95" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (2 samples, 0.07%)</title><rect x="934.2" y="769" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$2:::execute (8 samples, 0.27%)</title><rect x="1025.8" y="1201" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1028.81" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/CacheLockReleasingModuleComponentsRepository$LockReleasingRepositoryAccess$1:::run (38 samples, 1.30%)</title><rect x="809.6" y="849" width="15.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="812.58" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1181.5" y="1713" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1180.3" y="1857" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.32" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::putVal (2 samples, 0.07%)</title><rect x="993.9" y="1041" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="891.1" y="737" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="894.07" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="999.6" y="401" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$DependencyToComponentIdResolverChain:::resolve (78 samples, 2.67%)</title><rect x="1052.0" y="1633" width="31.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/Sets$2:::isEmpty (5 samples, 0.17%)</title><rect x="847.5" y="1137" width="2.0" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="850.50" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (2 samples, 0.07%)</title><rect x="438.0" y="1345" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="441.03" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.07%)</title><rect x="146.4" y="3649" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3659.5" font-size="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 (212 samples, 7.25%)</title><rect x="26.1" y="3921" width="85.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="29.14" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lookup_slow (2 samples, 0.07%)</title><rect x="1023.8" y="1057" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1026.79" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (154 samples, 5.26%)</title><rect x="188.7" y="1297" width="62.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="191.71" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (9 samples, 0.31%)</title><rect x="856.8" y="1105" width="3.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="859.78" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeHi (30 samples, 1.03%)</title><rect x="779.7" y="897" width="12.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="782.72" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="810.8" y="577" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (6 samples, 0.21%)</title><rect x="983.4" y="897" width="2.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="986.45" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$LastNode:::match (2 samples, 0.07%)</title><rect x="749.5" y="689" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="752.47" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke(instanceKlassHandle,methodHandle,Handle,bool,objArrayHandle,BasicType,objArrayHandle,bool,Thread*) (3 samples, 0.10%)</title><rect x="1172.2" y="2321" width="1.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (2 samples, 0.07%)</title><rect x="97.9" y="3505" width="0.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (49 samples, 1.68%)</title><rect x="1165.0" y="2689" width="19.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentMetaDataResolveState:::resolve (2 samples, 0.07%)</title><rect x="1027.4" y="913" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::closure (2 samples, 0.07%)</title><rect x="1123.0" y="673" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1126.03" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (22 samples, 0.75%)</title><rect x="877.8" y="833" width="8.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="880.75" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/protobuf/CodedInputStream:::readMessage (3 samples, 0.10%)</title><rect x="1175.5" y="641" width="1.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpResourceAccessor:::openResource (3 samples, 0.10%)</title><rect x="813.2" y="673" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="816.21" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (151 samples, 5.16%)</title><rect x="1085.5" y="1601" width="60.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (2 samples, 0.07%)</title><rect x="371.9" y="1025" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (3 samples, 0.10%)</title><rect x="917.3" y="1313" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (2 samples, 0.07%)</title><rect x="1075.0" y="1265" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1078.03" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/Closure:::call (10 samples, 0.34%)</title><rect x="856.8" y="1233" width="4.0" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="859.78" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (3 samples, 0.10%)</title><rect x="164.1" y="3809" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="167.11" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::atom (3 samples, 0.10%)</title><rect x="972.2" y="705" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (12 samples, 0.41%)</title><rect x="733.7" y="769" width="4.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="736.73" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (2 samples, 0.07%)</title><rect x="988.7" y="577" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (3 samples, 0.10%)</title><rect x="118.1" y="3569" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="121.12" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class$1:::parsePartialFrom (3 samples, 0.10%)</title><rect x="1178.7" y="1233" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/DefaultModuleIdentifier:::getGroup (2 samples, 0.07%)</title><rect x="843.9" y="1089" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="846.87" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (2 samples, 0.07%)</title><rect x="1039.1" y="865" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1042.12" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (2 samples, 0.07%)</title><rect x="1145.2" y="1153" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1148.22" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess:::listModuleVersions (59 samples, 2.02%)</title><rect x="807.6" y="1025" width="23.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="810.56" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1034.3" y="865" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1037.28" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList$SubList$1:::next (2 samples, 0.07%)</title><rect x="313.8" y="1265" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="316.77" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (2 samples, 0.07%)</title><rect x="1153.3" y="913" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1156.29" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3105" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_swap_cache_async (2 samples, 0.07%)</title><rect x="1124.2" y="609" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1127.24" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Function:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="1175.1" y="961" width="1.6" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/module/kotlin/KotlinNamesAnnotationIntrospector:::hasCreatorAnnotation (2 samples, 0.07%)</title><rect x="1177.5" y="1841" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/InvokerHelper:::invokePojoMethod (2 samples, 0.07%)</title><rect x="1048.4" y="1489" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (4 samples, 0.14%)</title><rect x="1159.7" y="1313" width="1.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1162.74" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$2:::execute (2 samples, 0.07%)</title><rect x="1154.9" y="1201" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1157.90" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::sort (122 samples, 4.17%)</title><rect x="1089.5" y="993" width="49.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopLeft (5 samples, 0.17%)</title><rect x="739.4" y="897" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="742.38" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arrayof_jint_fill (2 samples, 0.07%)</title><rect x="250.0" y="1201" width="0.8" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="253.03" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (3 samples, 0.10%)</title><rect x="429.6" y="1201" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="432.56" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::resolve (17 samples, 0.58%)</title><rect x="1147.6" y="1153" width="6.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (2 samples, 0.07%)</title><rect x="792.2" y="929" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="795.23" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (2 samples, 0.07%)</title><rect x="477.6" y="1489" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="480.56" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="1037.5" y="769" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1040.51" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (8 samples, 0.27%)</title><rect x="970.5" y="753" width="3.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="973.54" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/DefaultExternalResourceRepository:::getResource (3 samples, 0.10%)</title><rect x="813.2" y="705" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="816.21" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (2,467 samples, 84.34%)</title><rect x="168.5" y="2433" width="995.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/cache/LocalCache$Segment:::lockedGetOrLoad (2 samples, 0.07%)</title><rect x="1171.0" y="2465" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1174.04" y="2475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (4 samples, 0.14%)</title><rect x="1081.1" y="1313" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1084.08" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1361" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleResolveState:::restart (8 samples, 0.27%)</title><rect x="1025.8" y="1137" width="3.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1028.81" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,520 samples, 86.15%)</title><rect x="168.1" y="2865" width="1016.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::useCache (269 samples, 9.20%)</title><rect x="922.1" y="1377" width="108.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/plugins/DefaultPluginManager:::doApply (9 samples, 0.31%)</title><rect x="1166.6" y="2449" width="3.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1169.60" y="2459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fstatat (2 samples, 0.07%)</title><rect x="1023.8" y="1153" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1026.79" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="1175.1" y="1041" width="1.6" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::add (2 samples, 0.07%)</title><rect x="1142.0" y="929" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1144.99" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::df_flow_types(ciTypeFlow::Block*,bool,ciTypeFlow::StateVector*,ciTypeFlow::JsrSet*) (4 samples, 0.14%)</title><rect x="26.1" y="3713" width="1.7" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="29.14" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptscsih_qcmd (2 samples, 0.07%)</title><rect x="311.4" y="945" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="314.35" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (150 samples, 5.13%)</title><rect x="1085.5" y="1457" width="60.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (2 samples, 0.07%)</title><rect x="10.0" y="3473" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performGet (5 samples, 0.17%)</title><rect x="996.4" y="673" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/ApacheDirectoryListingParser:::parse (32 samples, 1.09%)</title><rect x="1004.0" y="705" width="12.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1007.02" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::identify_useful_nodes(Unique_Node_List&amp;) (2 samples, 0.07%)</title><rect x="100.0" y="3745" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="102.96" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1172.2" y="1921" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (41 samples, 1.40%)</title><rect x="754.3" y="849" width="16.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (2 samples, 0.07%)</title><rect x="1135.1" y="737" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::add (3 samples, 0.10%)</title><rect x="1019.4" y="961" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1022.35" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (3 samples, 0.10%)</title><rect x="982.2" y="817" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="985.24" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-16622/16640 (2,578 samples, 88.14%)</title><rect x="146.0" y="3937" width="1040.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="148.95" y="3947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-16622/16640</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (337 samples, 11.52%)</title><rect x="516.7" y="897" width="135.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="519.69" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="999.6" y="417" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="999.6" y="433" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (2 samples, 0.07%)</title><rect x="1186.0" y="3697" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/DefaultCacheLockingManager:::useCache (2 samples, 0.07%)</title><rect x="1170.2" y="2337" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler:::resolveNextConflict (4 samples, 0.14%)</title><rect x="481.2" y="1681" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="484.19" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess:::useCache (2 samples, 0.07%)</title><rect x="1170.2" y="2273" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1617" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeAt (17 samples, 0.58%)</title><rect x="1129.5" y="913" width="6.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1132.49" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1180.3" y="1825" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.32" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3521" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (2 samples, 0.07%)</title><rect x="166.1" y="3873" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.07%)</title><rect x="818.5" y="321" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (2,526 samples, 86.36%)</title><rect x="166.9" y="3809" width="1019.1" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (13 samples, 0.44%)</title><rect x="1158.5" y="1569" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvfrom (3 samples, 0.10%)</title><rect x="164.1" y="3873" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="167.11" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/DefaultExternalResourceRepository:::getResource (3 samples, 0.10%)</title><rect x="1002.4" y="737" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1005.41" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (25 samples, 0.85%)</title><rect x="638.1" y="753" width="10.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="641.12" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/memcache/InMemoryCachedModuleComponentRepository$CachedAccess:::resolveComponentMetaData (2 samples, 0.07%)</title><rect x="796.3" y="977" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="799.26" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (2 samples, 0.07%)</title><rect x="25.3" y="3809" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="28.33" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (20 samples, 0.68%)</title><rect x="415.8" y="1249" width="8.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="418.84" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,521 samples, 86.19%)</title><rect x="168.1" y="2881" width="1017.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (3 samples, 0.10%)</title><rect x="790.6" y="753" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="793.62" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashSet:::&lt;init&gt; (21 samples, 0.72%)</title><rect x="467.5" y="1441" width="8.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="470.48" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/ModuleExclusions:::intersect (2 samples, 0.07%)</title><rect x="173.0" y="1633" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="175.98" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (19 samples, 0.65%)</title><rect x="101.2" y="3793" width="7.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="104.17" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1178.3" y="1825" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeAt (5 samples, 0.17%)</title><rect x="1080.7" y="1393" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1083.67" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (147 samples, 5.03%)</title><rect x="1085.5" y="1329" width="59.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (6 samples, 0.21%)</title><rect x="433.2" y="1201" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="436.19" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_method_by_index(constantPoolHandle,int,Bytecodes::Code,ciInstanceKlass*) (4 samples, 0.14%)</title><rect x="116.5" y="3633" width="1.6" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="119.50" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (2 samples, 0.07%)</title><rect x="1165.4" y="2353" width="0.8" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="1168.39" y="2363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (2 samples, 0.07%)</title><rect x="1152.1" y="817" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1155.08" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1048.4" y="1745" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (9 samples, 0.31%)</title><rect x="444.1" y="1361" width="3.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="447.08" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeAt (2 samples, 0.07%)</title><rect x="1153.3" y="945" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1156.29" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 0.58%)</title><rect x="1165.0" y="2577" width="6.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository$LocateInCacheRepositoryAccess:::resolveComponentMetaDataFromCache (14 samples, 0.48%)</title><rect x="934.2" y="977" width="5.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (13 samples, 0.44%)</title><rect x="747.4" y="801" width="5.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="750.45" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Annotation$Argument$Value$1:::parsePartialFrom (2 samples, 0.07%)</title><rect x="1175.9" y="465" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.88" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (2 samples, 0.07%)</title><rect x="23.7" y="3905" width="0.8" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (14 samples, 0.48%)</title><rect x="432.0" y="1329" width="5.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="434.98" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (2 samples, 0.07%)</title><rect x="146.4" y="3601" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="166.9" y="2241" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__breadahead (2 samples, 0.07%)</title><rect x="166.1" y="3681" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3233" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call() (5 samples, 0.17%)</title><rect x="105.6" y="3505" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BmpCharProperty:::match (2 samples, 0.07%)</title><rect x="204.9" y="1169" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="207.85" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3681" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Factories$1:::create (782 samples, 26.74%)</title><rect x="168.5" y="1761" width="315.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/Factories$1:::create</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Actions$CompositeAction:::execute (5 samples, 0.17%)</title><rect x="1021.0" y="1169" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1023.97" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/zip/ZipCoder:::getBytes (2 samples, 0.07%)</title><rect x="999.6" y="49" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (212 samples, 7.25%)</title><rect x="26.1" y="3905" width="85.6" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="29.14" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (1,397 samples, 47.76%)</title><rect x="484.4" y="1809" width="563.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nss_passwd_lookup (2 samples, 0.07%)</title><rect x="53.6" y="3761" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="56.57" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (2 samples, 0.07%)</title><rect x="403.3" y="1217" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="406.33" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (3 samples, 0.10%)</title><rect x="1011.3" y="401" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/protobuf/CodedInputStream:::readMessage (3 samples, 0.10%)</title><rect x="1175.5" y="721" width="1.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1178.3" y="1713" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (3 samples, 0.10%)</title><rect x="1135.1" y="817" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3521" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (30 samples, 1.03%)</title><rect x="886.6" y="865" width="12.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="889.63" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (2 samples, 0.07%)</title><rect x="166.9" y="2097" width="0.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 0.85%)</title><rect x="1173.5" y="2081" width="10.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2091.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (4 samples, 0.14%)</title><rect x="1033.5" y="1233" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1036.47" y="1243.5" font-size="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-16622.map] (14 samples, 0.48%)</title><rect x="998.4" y="785" width="5.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1001.38" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/xerces/parsers/XMLParser:::parse (23 samples, 0.79%)</title><rect x="1005.6" y="673" width="9.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1008.64" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1601" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (3 samples, 0.10%)</title><rect x="974.6" y="817" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="977.57" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_klass_by_name_impl(ciKlass*,constantPoolHandle,ciSymbol*,bool) (2 samples, 0.07%)</title><rect x="117.3" y="3537" width="0.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="120.31" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1032.7" y="913" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1035.67" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (5 samples, 0.17%)</title><rect x="750.3" y="673" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="753.27" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/util/ConfigureUtil:::configure (2 samples, 0.07%)</title><rect x="166.9" y="2609" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$CandidateResult:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="806.3" y="1025" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="809.35" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::newCapacity (2 samples, 0.07%)</title><rect x="988.7" y="849" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1217" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3441" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (84 samples, 2.87%)</title><rect x="1051.6" y="1729" width="33.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1054.63" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >In..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate() (56 samples, 1.91%)</title><rect x="31.8" y="3777" width="22.6" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="34.78" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >P..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="859.6" y="817" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="862.60" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/DefaultResolvedConfigurationBuilder:::newResolvedDependency (3 samples, 0.10%)</title><rect x="488.9" y="1153" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="491.86" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__elv_add_request (2 samples, 0.07%)</title><rect x="160.9" y="3569" width="0.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="163.88" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="999.6" y="465" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/protobuf/CodedInputStream:::readMessage (4 samples, 0.14%)</title><rect x="1175.1" y="1089" width="1.6" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (5 samples, 0.17%)</title><rect x="780.9" y="769" width="2.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="783.93" y="779.5" font-size="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 (7 samples, 0.24%)</title><rect x="141.1" y="3921" width="2.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="144.11" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3585" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_main_inner() (4 samples, 0.14%)</title><rect x="144.3" y="3873" width="1.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="147.34" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (6 samples, 0.21%)</title><rect x="409.8" y="1233" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="412.79" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (175 samples, 5.98%)</title><rect x="1085.5" y="1809" width="70.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="908.8" y="817" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="911.82" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>checkcast_arraycopy_uninit (2 samples, 0.07%)</title><rect x="390.8" y="1281" width="0.8" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="393.83" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1178.7" y="1441" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (14 samples, 0.48%)</title><rect x="855.2" y="1361" width="5.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactory:::module (2 samples, 0.07%)</title><rect x="1035.5" y="1201" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1038.49" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (14 samples, 0.48%)</title><rect x="432.0" y="1313" width="5.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="434.98" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (6 samples, 0.21%)</title><rect x="981.0" y="881" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="984.03" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (2,521 samples, 86.19%)</title><rect x="168.1" y="2977" width="1017.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionResolveState:::getMetaData (9 samples, 0.31%)</title><rect x="500.6" y="1169" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::closure (2 samples, 0.07%)</title><rect x="422.7" y="1105" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="425.70" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (23 samples, 0.79%)</title><rect x="1146.4" y="1265" width="9.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::sort (15 samples, 0.51%)</title><rect x="1036.7" y="1025" width="6.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$ComponentMetaDataResolverChain:::resolve (2 samples, 0.07%)</title><rect x="1027.4" y="993" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3313" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::codePointAt (5 samples, 0.17%)</title><rect x="1119.8" y="705" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1122.81" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1078.7" y="1249" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1081.66" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionSelectorScheme:::parseSelector (3 samples, 0.10%)</title><rect x="911.6" y="1121" width="1.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="914.64" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="785.4" y="673" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="788.37" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (4 samples, 0.14%)</title><rect x="977.0" y="785" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="979.99" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeyIterator:::next (3 samples, 0.10%)</title><rect x="501.4" y="945" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="504.36" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (15 samples, 0.51%)</title><rect x="870.1" y="721" width="6.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="873.09" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (6 samples, 0.21%)</title><rect x="148.0" y="3809" width="2.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="150.97" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (140 samples, 4.79%)</title><rect x="860.8" y="1409" width="56.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (25 samples, 0.85%)</title><rect x="1066.2" y="1361" width="10.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1069.15" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeCollapse (24 samples, 0.82%)</title><rect x="976.6" y="961" width="9.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="979.59" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/execchain/RedirectExec:::execute (2 samples, 0.07%)</title><rect x="824.1" y="545" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="827.10" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/serialize/kryo/KryoBackedEncoder:::writeString (3 samples, 0.10%)</title><rect x="488.9" y="1057" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="491.86" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (280 samples, 9.57%)</title><rect x="922.1" y="1537" width="113.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentMetaDataResolveState:::resolve (9 samples, 0.31%)</title><rect x="500.6" y="1041" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Factories$1:::create (2 samples, 0.07%)</title><rect x="1170.2" y="2257" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentMetaDataResolveState:::resolve (22 samples, 0.75%)</title><rect x="931.0" y="1073" width="8.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="934.01" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::resolve (119 samples, 4.07%)</title><rect x="863.6" y="1073" width="48.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="866.63" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_free_pages (2 samples, 0.07%)</title><rect x="372.7" y="1009" width="0.8" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="375.67" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.07%)</title><rect x="1140.0" y="1009" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1142.98" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions$DependencyResolveDetailsWrapperAction:::execute (9 samples, 0.31%)</title><rect x="839.0" y="1105" width="3.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="842.03" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/result/DefaultResolutionResult:::getRoot (2 samples, 0.07%)</title><rect x="917.7" y="929" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (2 samples, 0.07%)</title><rect x="975.8" y="849" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$VersionListResult:::resolve (3 samples, 0.10%)</title><rect x="1141.6" y="1057" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1144.59" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Object:::&lt;init&gt; (5 samples, 0.17%)</title><rect x="680.9" y="721" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="683.89" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::sort (662 samples, 22.63%)</title><rect x="181.5" y="1457" width="267.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="184.45" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/ArrayList:::sort</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::getExclusions (3 samples, 0.10%)</title><rect x="493.7" y="1169" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="496.70" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Branch:::match (2 samples, 0.07%)</title><rect x="833.0" y="1073" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="835.97" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/btree/BTreePersistentIndexedCache:::put (2 samples, 0.07%)</title><rect x="995.6" y="897" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="998.55" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/ReflectProperties$Val:::getValue (3 samples, 0.10%)</title><rect x="1182.3" y="1825" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (2 samples, 0.07%)</title><rect x="902.0" y="641" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="904.96" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (2 samples, 0.07%)</title><rect x="934.2" y="753" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1617" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (3 samples, 0.10%)</title><rect x="776.9" y="769" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="779.90" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match0 (2 samples, 0.07%)</title><rect x="743.8" y="657" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Annotation$Argument$Value:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="1175.5" y="673" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::putVal (2 samples, 0.07%)</title><rect x="929.0" y="1169" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="931.99" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TreeSet:::addAll (2 samples, 0.07%)</title><rect x="1180.3" y="1793" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1183.32" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (4 samples, 0.14%)</title><rect x="786.2" y="705" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="789.18" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (5 samples, 0.17%)</title><rect x="435.6" y="1265" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="438.61" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess:::useCache (140 samples, 4.79%)</title><rect x="860.8" y="1313" width="56.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/DefaultCacheLockingManager:::useCache (140 samples, 4.79%)</title><rect x="860.8" y="1361" width="56.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (2 samples, 0.07%)</title><rect x="160.9" y="3457" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="163.88" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1185.2" y="3121" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="3131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactory:::module (6 samples, 0.21%)</title><rect x="494.9" y="1169" width="2.4" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="497.91" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,468 samples, 84.38%)</title><rect x="168.5" y="2625" width="995.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainDependencyToComponentIdResolver:::resolve (134 samples, 4.58%)</title><rect x="1088.7" y="1137" width="54.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1091.74" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (2 samples, 0.07%)</title><rect x="899.9" y="833" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="902.94" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (6 samples, 0.21%)</title><rect x="654.3" y="849" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="657.26" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$ComponentMetaDataResolverChain:::resolve (9 samples, 0.31%)</title><rect x="500.6" y="1121" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ChainedVersionLister$1:::visit (19 samples, 0.65%)</title><rect x="996.4" y="801" width="7.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filemap_fault (2 samples, 0.07%)</title><rect x="1186.0" y="3777" width="0.8" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (2 samples, 0.07%)</title><rect x="131.0" y="3569" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask:::access$301 (6 samples, 0.21%)</title><rect x="1186.8" y="3713" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,470 samples, 84.44%)</title><rect x="168.1" y="2769" width="996.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.07%)</title><rect x="146.4" y="3665" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (2 samples, 0.07%)</title><rect x="649.8" y="833" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="652.82" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (2 samples, 0.07%)</title><rect x="975.8" y="785" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (5 samples, 0.17%)</title><rect x="1076.6" y="1329" width="2.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1079.64" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/ClosureBackedAction:::execute (2 samples, 0.07%)</title><rect x="166.9" y="2577" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/CacheLockReleasingModuleComponentsRepository$LockReleasingRepositoryAccess:::listModuleVersions (38 samples, 1.30%)</title><rect x="809.6" y="961" width="15.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="812.58" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (3 samples, 0.10%)</title><rect x="97.9" y="3697" width="1.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess:::useCache (13 samples, 0.44%)</title><rect x="1158.5" y="1553" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::findLatestModule (733 samples, 25.06%)</title><rect x="180.2" y="1569" width="295.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="183.24" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivys..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (3 samples, 0.10%)</title><rect x="1172.2" y="2449" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1171.0" y="2385" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1174.04" y="2395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::findLatestModule (17 samples, 0.58%)</title><rect x="1147.6" y="1137" width="6.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Actions$CompositeAction:::execute (3 samples, 0.10%)</title><rect x="1083.5" y="1617" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1086.50" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="444.1" y="1169" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="447.08" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="743.8" y="801" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (3 samples, 0.10%)</title><rect x="917.3" y="1393" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (4 samples, 0.14%)</title><rect x="1127.5" y="801" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1130.47" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (23 samples, 0.79%)</title><rect x="1146.4" y="1585" width="9.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (2 samples, 0.07%)</title><rect x="1011.7" y="193" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1014.69" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__elv_add_request (2 samples, 0.07%)</title><rect x="131.0" y="3585" width="0.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/MethodMetaProperty$GetBeanMethodMetaProperty:::getProperty (3 samples, 0.10%)</title><rect x="855.2" y="1057" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileQueue::get() (2 samples, 0.07%)</title><rect x="110.9" y="3841" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="113.85" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (4 samples, 0.14%)</title><rect x="148.4" y="3633" width="1.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="151.37" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1,071 samples, 36.62%)</title><rect x="486.8" y="1553" width="432.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="489.84" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/GetEffectivePojoPropertySite:::getProperty (5 samples, 0.17%)</title><rect x="858.4" y="1073" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (5 samples, 0.17%)</title><rect x="1076.6" y="1281" width="2.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1079.64" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (7 samples, 0.24%)</title><rect x="409.4" y="1265" width="2.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="412.38" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="17.3" y="3361" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (6 samples, 0.21%)</title><rect x="654.3" y="897" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="657.26" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.10%)</title><rect x="1011.3" y="529" width="1.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (2 samples, 0.07%)</title><rect x="821.7" y="241" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="824.68" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (2 samples, 0.07%)</title><rect x="1023.8" y="1089" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1026.79" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/util/CollectionUtils:::sort (113 samples, 3.86%)</title><rect x="864.8" y="1009" width="45.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="867.84" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (10 samples, 0.34%)</title><rect x="969.7" y="801" width="4.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="972.73" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (39 samples, 1.33%)</title><rect x="264.6" y="1281" width="15.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="267.56" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap$LinkedHashIterator:::hasNext (2 samples, 0.07%)</title><rect x="465.5" y="1505" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="468.46" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (2 samples, 0.07%)</title><rect x="97.9" y="3553" width="0.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1173.9" y="1633" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (9 samples, 0.31%)</title><rect x="1148.0" y="945" width="3.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1151.04" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>e1000_xmit_frame (2 samples, 0.07%)</title><rect x="154.4" y="3537" width="0.8" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="157.42" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister$1:::visit (5 samples, 0.17%)</title><rect x="996.4" y="785" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_lookup (4 samples, 0.14%)</title><rect x="151.6" y="3713" width="1.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (12 samples, 0.41%)</title><rect x="755.9" y="737" width="4.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="758.92" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::&lt;init&gt; (18 samples, 0.62%)</title><rect x="711.9" y="737" width="7.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="714.95" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::add (11 samples, 0.38%)</title><rect x="826.5" y="929" width="4.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="829.52" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (9 samples, 0.31%)</title><rect x="1173.9" y="1841" width="3.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (27 samples, 0.92%)</title><rect x="1004.0" y="689" width="10.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1007.02" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8 samples, 0.27%)</title><rect x="147.2" y="3873" width="3.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/GetEffectivePojoPropertySite:::getProperty (2 samples, 0.07%)</title><rect x="917.7" y="1073" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,470 samples, 84.44%)</title><rect x="168.1" y="2753" width="996.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="1178.7" y="1201" width="1.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess:::listModuleVersions (2 samples, 0.07%)</title><rect x="1142.0" y="1025" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1144.99" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.07%)</title><rect x="14.8" y="3921" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="17.84" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/AlignRule:::ruleMatches (2 samples, 0.07%)</title><rect x="919.7" y="1569" width="0.8" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="922.71" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/HTMLScanner$ContentScanner:::scan (16 samples, 0.55%)</title><rect x="816.0" y="577" width="6.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="819.03" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::resolve (78 samples, 2.67%)</title><rect x="1052.0" y="1601" width="31.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="999.2" y="737" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.18" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3281" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeLo (15 samples, 0.51%)</title><rect x="1130.3" y="897" width="6.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1133.29" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (2 samples, 0.07%)</title><rect x="919.7" y="1521" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="922.71" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/memcache/InMemoryCachedModuleComponentRepository$CachedAccess:::resolveArtifact (13 samples, 0.44%)</title><rect x="1158.5" y="1697" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resolve/result/DefaultBuildableModuleVersionListingResolveResult:::listed (21 samples, 0.72%)</title><rect x="467.5" y="1457" width="8.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="470.48" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/Closure:::call (4 samples, 0.14%)</title><rect x="1031.9" y="1265" width="1.6" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$ActionInvocationHandler:::dispatch (1,396 samples, 47.73%)</title><rect x="484.4" y="1713" width="563.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/event/BroadcastDispatch$ActionInvocationHandler:::dispatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (41 samples, 1.40%)</title><rect x="415.4" y="1281" width="16.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="418.44" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::reset (3 samples, 0.10%)</title><rect x="958.0" y="753" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="961.03" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::sort (76 samples, 2.60%)</title><rect x="1052.0" y="1473" width="30.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lj..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (2 samples, 0.07%)</title><rect x="1124.2" y="673" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1127.24" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/databind/introspect/AnnotationIntrospectorPair:::findImplicitPropertyName (4 samples, 0.14%)</title><rect x="1178.3" y="1857" width="1.6" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/CompositeDomainObjectSet$DomainObjectCompositeCollection:::estimatedSize (4 samples, 0.14%)</title><rect x="1178.3" y="1745" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_lookupat (4 samples, 0.14%)</title><rect x="1159.7" y="1297" width="1.7" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1162.74" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (2 samples, 0.07%)</title><rect x="1163.0" y="1457" width="0.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1165.97" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1172.2" y="1601" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (11 samples, 0.38%)</title><rect x="1108.1" y="753" width="4.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1111.11" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (17 samples, 0.58%)</title><rect x="417.0" y="1233" width="6.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="420.05" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (2 samples, 0.07%)</title><rect x="783.4" y="753" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="786.35" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (6 samples, 0.21%)</title><rect x="433.2" y="1233" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="436.19" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (12 samples, 0.41%)</title><rect x="755.9" y="721" width="4.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="758.92" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (2 samples, 0.07%)</title><rect x="983.9" y="705" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="986.85" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainDependencyToComponentIdResolver:::resolve (734 samples, 25.09%)</title><rect x="179.8" y="1617" width="296.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="182.84" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivys..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::findLatestModule (192 samples, 6.56%)</title><rect x="943.1" y="1121" width="77.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gra..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::containsKey (3 samples, 0.10%)</title><rect x="479.6" y="1521" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="482.58" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (2 samples, 0.07%)</title><rect x="371.9" y="945" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (2 samples, 0.07%)</title><rect x="15.6" y="3905" width="0.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="18.65" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (7 samples, 0.24%)</title><rect x="1063.3" y="1281" width="2.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1066.33" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::study (3 samples, 0.10%)</title><rect x="953.2" y="721" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="956.19" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,524 samples, 86.29%)</title><rect x="166.9" y="3105" width="1018.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (6 samples, 0.21%)</title><rect x="1056.1" y="1169" width="2.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1059.06" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionResolver:::resolve (201 samples, 6.87%)</title><rect x="941.9" y="1201" width="81.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="944.90" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode() (5 samples, 0.17%)</title><rect x="105.6" y="3521" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver:::doResolveComponentMetaData (3 samples, 0.10%)</title><rect x="933.0" y="961" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="936.02" y="971.5" font-size="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-16622.map] (2 samples, 0.07%)</title><rect x="1173.9" y="1361" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/KClassImpl:::getDescriptor (3 samples, 0.10%)</title><rect x="1182.3" y="1857" width="1.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (2 samples, 0.07%)</title><rect x="1114.2" y="801" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1117.16" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 0.96%)</title><rect x="1173.5" y="2353" width="11.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (5 samples, 0.17%)</title><rect x="1078.7" y="1297" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1081.66" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/CompositeDomainObjectSet$DomainObjectCompositeCollection:::estimatedSize (2 samples, 0.07%)</title><rect x="1182.3" y="1729" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_cache_sync_readahead (2 samples, 0.07%)</title><rect x="165.3" y="3777" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="168.32" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/Closure:::call (3 samples, 0.10%)</title><rect x="1048.4" y="1713" width="1.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (3 samples, 0.10%)</title><rect x="407.8" y="1345" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="410.77" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeAt (87 samples, 2.97%)</title><rect x="402.9" y="1393" width="35.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="405.93" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lj..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::useCache (84 samples, 2.87%)</title><rect x="1051.6" y="1825" width="33.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1054.63" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/ASCII:::isType (2 samples, 0.07%)</title><rect x="678.1" y="673" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="681.06" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_lookupat (2 samples, 0.07%)</title><rect x="166.1" y="3809" width="0.8" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/jvm/internal/Intrinsics:::areEqual (4 samples, 0.14%)</title><rect x="837.4" y="1105" width="1.6" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="840.41" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/RegularImmutableMap:::get (5 samples, 0.17%)</title><rect x="193.2" y="1281" width="2.0" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="196.15" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions$DependencyResolveDetailsWrapperAction:::execute (4 samples, 0.14%)</title><rect x="477.2" y="1601" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="480.16" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::attachToTargetConfigurations (2 samples, 0.07%)</title><rect x="862.8" y="1201" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="865.83" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver:::access$100 (55 samples, 1.88%)</title><rect x="996.4" y="849" width="22.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Select() (4 samples, 0.14%)</title><rect x="34.2" y="3761" width="1.6" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="37.21" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_swap_page (2 samples, 0.07%)</title><rect x="131.0" y="3649" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/btree/BTreePersistentIndexedCache:::get (3 samples, 0.10%)</title><rect x="937.9" y="881" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="940.86" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke(instanceKlassHandle,methodHandle,Handle,bool,objArrayHandle,BasicType,objArrayHandle,bool,Thread*) (2,467 samples, 84.34%)</title><rect x="168.5" y="2177" width="995.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Reflection::invoke(instanceKlassHandle,methodHandle,Handle,bool,objArrayHandle,BasicType,objArrayHandle,bool,Thread*)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1151.7" y="913" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1154.68" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (4 samples, 0.14%)</title><rect x="946.7" y="753" width="1.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="949.74" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (2 samples, 0.07%)</title><rect x="987.5" y="817" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="990.48" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_vma (2 samples, 0.07%)</title><rect x="372.7" y="1057" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="375.67" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (33 samples, 1.13%)</title><rect x="945.9" y="833" width="13.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="948.93" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::reset (15 samples, 0.51%)</title><rect x="244.0" y="1201" width="6.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="246.98" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (52 samples, 1.78%)</title><rect x="865.7" y="913" width="20.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="868.65" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="999.6" y="305" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (4 samples, 0.14%)</title><rect x="153.6" y="3809" width="1.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="156.62" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (23 samples, 0.79%)</title><rect x="1146.4" y="1409" width="9.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (38 samples, 1.30%)</title><rect x="632.9" y="785" width="15.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="635.88" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (2 samples, 0.07%)</title><rect x="139.1" y="3569" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="142.09" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (31 samples, 1.06%)</title><rect x="1172.2" y="2657" width="12.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (3 samples, 0.10%)</title><rect x="855.2" y="1185" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (3 samples, 0.10%)</title><rect x="417.0" y="1153" width="1.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="420.05" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (2 samples, 0.07%)</title><rect x="1145.2" y="1377" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1148.22" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser$DefaultVersion:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="1112.5" y="817" width="1.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1115.54" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1004.0" y="641" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1007.02" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (2 samples, 0.07%)</title><rect x="1165.4" y="2337" width="0.8" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="1168.39" y="2347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (3 samples, 0.10%)</title><rect x="1156.1" y="1617" width="1.2" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/client/InternalHttpClient:::doExecute (3 samples, 0.10%)</title><rect x="1016.9" y="593" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1019.93" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (2 samples, 0.07%)</title><rect x="651.4" y="833" width="0.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="654.44" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (4 samples, 0.14%)</title><rect x="908.8" y="833" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="911.82" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (23 samples, 0.79%)</title><rect x="1146.4" y="1361" width="9.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/GetEffectivePojoPropertySite:::getProperty (3 samples, 0.10%)</title><rect x="1033.9" y="1105" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1036.88" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="987.5" y="721" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="990.48" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (140 samples, 4.79%)</title><rect x="860.8" y="1329" width="56.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ConfigurationNode:::visitOutgoingDependencies (2 samples, 0.07%)</title><rect x="1035.5" y="1233" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1038.49" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks() (5 samples, 0.17%)</title><rect x="103.6" y="3665" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (2 samples, 0.07%)</title><rect x="1124.2" y="689" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1127.24" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1233" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3265" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::hash (7 samples, 0.24%)</title><rect x="826.9" y="897" width="2.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="829.92" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (2 samples, 0.07%)</title><rect x="166.9" y="2529" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/rules/ClosureBackedRuleAction:::execute (2 samples, 0.07%)</title><rect x="934.2" y="849" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (5 samples, 0.17%)</title><rect x="151.6" y="3841" width="2.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (141 samples, 4.82%)</title><rect x="321.4" y="1313" width="56.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="324.44" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (2 samples, 0.07%)</title><rect x="371.9" y="977" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/dispatch/ProxyDispatchAdapter$DispatchingInvocationHandler:::invoke (7 samples, 0.24%)</title><rect x="1048.4" y="1889" width="2.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::selectNewestMatchingComponent (123 samples, 4.21%)</title><rect x="1089.5" y="1041" width="49.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (9 samples, 0.31%)</title><rect x="784.2" y="785" width="3.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="787.16" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match0 (2 samples, 0.07%)</title><rect x="888.2" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="891.24" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1178.7" y="1409" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask:::run (3 samples, 0.10%)</title><rect x="144.3" y="3729" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="147.34" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (3 samples, 0.10%)</title><rect x="1172.2" y="2481" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1050.0" y="1521" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1053.01" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="1081.1" y="1233" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1084.08" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (2 samples, 0.07%)</title><rect x="934.2" y="817" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PredictedCallGenerator::generate(JVMState*) (6 samples, 0.21%)</title><rect x="105.6" y="3697" width="2.4" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1182.3" y="1793" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::sort (15 samples, 0.51%)</title><rect x="1036.7" y="977" width="6.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/DefaultGroovyMethods:::join (3 samples, 0.10%)</title><rect x="934.2" y="961" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions$ModuleMatchDependencySubstitutionAction:::execute (5 samples, 0.17%)</title><rect x="842.7" y="1121" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="845.66" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeHi (8 samples, 0.27%)</title><rect x="405.8" y="1377" width="3.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="408.75" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (9 samples, 0.31%)</title><rect x="1068.6" y="1233" width="3.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1071.57" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::findBestMatch (2 samples, 0.07%)</title><rect x="1027.4" y="929" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (20 samples, 0.68%)</title><rect x="393.2" y="1265" width="8.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="396.25" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InvokeMethod (2 samples, 0.07%)</title><rect x="1172.2" y="2113" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (3 samples, 0.10%)</title><rect x="171.0" y="1649" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="173.96" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (4 samples, 0.14%)</title><rect x="444.1" y="1233" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="447.08" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Factories$1:::create (84 samples, 2.87%)</title><rect x="1051.6" y="1761" width="33.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1054.63" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (2 samples, 0.07%)</title><rect x="981.4" y="785" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="984.43" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="858.4" y="801" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactsGraphVisitor:::visitEdges (3 samples, 0.10%)</title><rect x="922.1" y="1217" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::compile_java_method() (44 samples, 1.50%)</title><rect x="113.3" y="3777" width="17.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="116.28" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (2 samples, 0.07%)</title><rect x="1000.8" y="433" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1003.80" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (3 samples, 0.10%)</title><rect x="318.6" y="1297" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="321.62" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (13 samples, 0.44%)</title><rect x="747.4" y="785" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="750.45" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (2 samples, 0.07%)</title><rect x="131.0" y="3537" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (7 samples, 0.24%)</title><rect x="20.9" y="3905" width="2.8" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="23.89" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::resolve (25 samples, 0.85%)</title><rect x="930.2" y="1137" width="10.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="933.20" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (2 samples, 0.07%)</title><rect x="917.7" y="1041" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (13 samples, 0.44%)</title><rect x="418.3" y="1185" width="5.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="421.26" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (49 samples, 1.68%)</title><rect x="628.4" y="817" width="19.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="631.44" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/xml/parsers/SAXParserFactory:::newInstance (2 samples, 0.07%)</title><rect x="1000.8" y="513" width="0.8" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="1003.80" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.07%)</title><rect x="283.9" y="1281" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="286.92" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (140 samples, 4.79%)</title><rect x="860.8" y="1377" width="56.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (4 samples, 0.14%)</title><rect x="906.4" y="737" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="909.40" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_dispatch_cmd (2 samples, 0.07%)</title><rect x="371.9" y="993" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$CandidateResult:::process (3 samples, 0.10%)</title><rect x="992.7" y="1041" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="995.73" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1156.5" y="1345" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,468 samples, 84.38%)</title><rect x="168.5" y="2561" width="995.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (202 samples, 6.91%)</title><rect x="321.0" y="1361" width="81.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="324.04" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::try_inline_full(ciMethod*,bool,Bytecodes::Code,Instruction*) (5 samples, 0.17%)</title><rect x="114.5" y="3633" width="2.0" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.49" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Factories$1:::create (269 samples, 9.20%)</title><rect x="922.1" y="1313" width="108.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call() (4 samples, 0.14%)</title><rect x="103.6" y="3521" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (8 samples, 0.27%)</title><rect x="772.5" y="689" width="3.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="775.46" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3553" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (5 samples, 0.17%)</title><rect x="1078.7" y="1329" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1081.66" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::sort (113 samples, 3.86%)</title><rect x="864.8" y="961" width="45.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="867.84" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/jvm/internal/Intrinsics:::areEqual (3 samples, 0.10%)</title><rect x="1021.4" y="1137" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1024.37" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (2 samples, 0.07%)</title><rect x="794.6" y="945" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="797.65" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractCollection:::addAll (3 samples, 0.10%)</title><rect x="1019.4" y="977" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1022.35" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (3 samples, 0.10%)</title><rect x="1011.3" y="289" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="743.8" y="817" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/btree/BTreePersistentIndexedCache:::put (2 samples, 0.07%)</title><rect x="808.8" y="865" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="811.77" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::put (2 samples, 0.07%)</title><rect x="1142.0" y="913" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1144.99" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_sock (3 samples, 0.10%)</title><rect x="1011.3" y="433" width="1.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1178.7" y="1377" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (23 samples, 0.79%)</title><rect x="382.4" y="1297" width="9.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="385.36" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (2,188 samples, 74.80%)</title><rect x="168.5" y="1969" width="882.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1,084 samples, 37.06%)</title><rect x="484.4" y="1617" width="437.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/Closure:::call (3 samples, 0.10%)</title><rect x="1156.1" y="1713" width="1.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer:::registerConflict (2 samples, 0.07%)</title><rect x="916.1" y="1153" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="919.08" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (53 samples, 1.81%)</title><rect x="944.3" y="897" width="21.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="947.32" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (2 samples, 0.07%)</title><rect x="785.4" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="788.37" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (8 samples, 0.27%)</title><rect x="1131.9" y="817" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1134.91" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (10 samples, 0.34%)</title><rect x="157.7" y="3777" width="4.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="160.65" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::invoke(Bytecodes::Code) (2 samples, 0.07%)</title><rect x="114.9" y="3505" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.89" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::invoke(Bytecodes::Code) (12 samples, 0.41%)</title><rect x="114.5" y="3665" width="4.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.49" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-16488/16620 (9 samples, 0.31%)</title><rect x="16.5" y="3937" width="3.6" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="19.45" y="3947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="988.7" y="465" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (2 samples, 0.07%)</title><rect x="1172.2" y="1633" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (3 samples, 0.10%)</title><rect x="917.3" y="1297" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (10 samples, 0.34%)</title><rect x="856.8" y="1185" width="4.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="859.78" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 0.96%)</title><rect x="1173.5" y="2465" width="11.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (2 samples, 0.07%)</title><rect x="818.5" y="433" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (3 samples, 0.10%)</title><rect x="746.2" y="785" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="749.24" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/ApacheDirectoryListingParser:::resolveURIs (2 samples, 0.07%)</title><rect x="1016.1" y="689" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1019.13" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (41 samples, 1.40%)</title><rect x="415.4" y="1297" width="16.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="418.44" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="859.6" y="881" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="862.60" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_main_inner() (6 samples, 0.21%)</title><rect x="1186.8" y="3873" width="2.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (9 samples, 0.31%)</title><rect x="756.7" y="705" width="3.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="759.73" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::findBestMatch (9 samples, 0.31%)</title><rect x="500.6" y="1073" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/execchain/RedirectExec:::execute (5 samples, 0.17%)</title><rect x="996.4" y="561" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (3 samples, 0.10%)</title><rect x="917.3" y="1201" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="1138.0" y="689" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1140.96" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (912 samples, 31.18%)</title><rect x="487.2" y="1393" width="368.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="490.24" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (2 samples, 0.07%)</title><rect x="1081.9" y="1233" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1084.88" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="906.4" y="673" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="909.40" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,188 samples, 74.80%)</title><rect x="168.5" y="2001" width="882.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$TreeInfo:::reset (2 samples, 0.07%)</title><rect x="356.1" y="1153" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="359.13" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/storage/LockBasedStorageManager$MapBasedMemoizedFunctionToNotNull:::invoke (2 samples, 0.07%)</title><rect x="1177.5" y="1505" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (18 samples, 0.62%)</title><rect x="770.8" y="801" width="7.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="773.85" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (4 samples, 0.14%)</title><rect x="1031.9" y="1185" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/UnixFileSystem:::getBooleanAttributes (2 samples, 0.07%)</title><rect x="937.1" y="881" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="940.06" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 0.96%)</title><rect x="1173.5" y="2497" width="11.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/CacheLockReleasingModuleComponentsRepository$LockReleasingRepositoryAccess:::listModuleVersions (55 samples, 1.88%)</title><rect x="996.4" y="993" width="22.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="10.0" y="3777" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/MethodMetaProperty$GetBeanMethodMetaProperty:::getProperty (3 samples, 0.10%)</title><rect x="1033.9" y="1089" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1036.88" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (2 samples, 0.07%)</title><rect x="481.6" y="1617" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="484.60" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1156.5" y="1361" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="917.7" y="865" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Annotation$1:::parsePartialFrom (3 samples, 0.10%)</title><rect x="1175.5" y="609" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/BuildOperationExternalResource:::withContent (4 samples, 0.14%)</title><rect x="811.6" y="689" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="814.59" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/DefaultCacheLockingManager:::useCache (13 samples, 0.44%)</title><rect x="1158.5" y="1601" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::sort (122 samples, 4.17%)</title><rect x="1089.5" y="945" width="49.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIterGVN::transform_old(Node*) (2 samples, 0.07%)</title><rect x="94.7" y="3745" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="97.72" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor:::processRules (2 samples, 0.07%)</title><rect x="943.1" y="1025" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (2 samples, 0.07%)</title><rect x="97.9" y="3617" width="0.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (4 samples, 0.14%)</title><rect x="148.4" y="3617" width="1.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="151.37" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1034.3" y="849" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1037.28" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.14%)</title><rect x="1159.7" y="1393" width="1.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1162.74" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::codePointAt (3 samples, 0.10%)</title><rect x="1069.0" y="1185" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1071.97" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__getblk_gfp (2 samples, 0.07%)</title><rect x="166.1" y="3665" width="0.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/BaseModuleComponentRepositoryAccess:::resolveComponentMetaData (2 samples, 0.07%)</title><rect x="1027.4" y="849" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,470 samples, 84.44%)</title><rect x="168.1" y="2785" width="996.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (2 samples, 0.07%)</title><rect x="1175.9" y="337" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1178.88" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (175 samples, 5.98%)</title><rect x="1085.5" y="1761" width="70.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (2 samples, 0.07%)</title><rect x="10.0" y="3537" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (4 samples, 0.14%)</title><rect x="1049.6" y="1633" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1052.61" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (3 samples, 0.10%)</title><rect x="154.0" y="3681" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="157.02" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository$LocateInCacheRepositoryAccess:::resolveArtifact (13 samples, 0.44%)</title><rect x="1158.5" y="1665" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (2 samples, 0.07%)</title><rect x="778.9" y="817" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="781.92" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1178.7" y="1585" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeCollapse (97 samples, 3.32%)</title><rect x="739.4" y="929" width="39.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="742.38" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (2 samples, 0.07%)</title><rect x="438.0" y="1313" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="441.03" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/VersionSelectionReasonResolver:::select (2 samples, 0.07%)</title><rect x="1029.0" y="1201" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1032.04" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (5 samples, 0.17%)</title><rect x="151.6" y="3793" width="2.0" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopLeft (11 samples, 0.38%)</title><rect x="901.2" y="881" width="4.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="904.15" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (3 samples, 0.10%)</title><rect x="743.8" y="721" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (67 samples, 2.29%)</title><rect x="112.9" y="3905" width="27.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="115.87" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 0.21%)</title><rect x="17.3" y="3457" width="2.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/AbstractBroadcastDispatch:::dispatch (175 samples, 5.98%)</title><rect x="1085.5" y="1777" width="70.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="10.0" y="3745" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/HTMLScanner$ContentScanner:::scanAttribute (4 samples, 0.14%)</title><rect x="817.6" y="545" width="1.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="820.64" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ConfigurationNode:::visitOutgoingDependencies (5 samples, 0.17%)</title><rect x="1085.9" y="1201" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1088.92" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (2,467 samples, 84.34%)</title><rect x="168.5" y="2417" width="995.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/Transformers$4:::transform</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (9 samples, 0.31%)</title><rect x="756.7" y="673" width="3.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="759.73" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>WatcherThread::run() (3 samples, 0.10%)</title><rect x="141.1" y="3889" width="1.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="144.11" y="3899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (2 samples, 0.07%)</title><rect x="818.5" y="337" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PeriodicTask::real_time_tick(int) (3 samples, 0.10%)</title><rect x="141.1" y="3873" width="1.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="144.11" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::emit_lir() (18 samples, 0.62%)</title><rect x="123.0" y="3761" width="7.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="125.96" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1170.2" y="2209" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,188 samples, 74.80%)</title><rect x="168.5" y="1985" width="882.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="908.8" y="801" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="911.82" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (11 samples, 0.38%)</title><rect x="901.2" y="817" width="4.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="904.15" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matcher (2 samples, 0.07%)</title><rect x="1058.5" y="1233" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1061.49" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class$1:::parsePartialFrom (2 samples, 0.07%)</title><rect x="1182.3" y="1409" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_prequeue_process (3 samples, 0.10%)</title><rect x="821.3" y="449" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="824.28" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/execchain/ProtocolExec:::execute (5 samples, 0.17%)</title><rect x="996.4" y="529" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_newstat (2 samples, 0.07%)</title><rect x="1023.8" y="1185" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1026.79" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,520 samples, 86.15%)</title><rect x="168.1" y="2817" width="1016.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1345" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (4 samples, 0.14%)</title><rect x="1049.6" y="1681" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1052.61" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (2 samples, 0.07%)</title><rect x="1140.0" y="929" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1142.98" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (3 samples, 0.10%)</title><rect x="1127.9" y="753" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1130.87" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (4 samples, 0.14%)</title><rect x="404.1" y="1361" width="1.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="407.14" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IntervalWalker::walk_to(int) (3 samples, 0.10%)</title><rect x="124.6" y="3713" width="1.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="127.57" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/client/InternalHttpClient:::doExecute (3 samples, 0.10%)</title><rect x="813.2" y="545" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="816.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (4 samples, 0.14%)</title><rect x="811.6" y="657" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="814.59" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (2 samples, 0.07%)</title><rect x="1081.9" y="1217" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1084.88" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (2 samples, 0.07%)</title><rect x="919.7" y="1537" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="922.71" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class$1:::parsePartialFrom (3 samples, 0.10%)</title><rect x="1178.7" y="1249" width="1.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LIR_Assembler::emit_code(BlockList*) (6 samples, 0.21%)</title><rect x="120.5" y="3745" width="2.5" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="123.54" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (9 samples, 0.31%)</title><rect x="444.1" y="1313" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="447.08" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode() (4 samples, 0.14%)</title><rect x="105.6" y="3425" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::useCache (140 samples, 4.79%)</title><rect x="860.8" y="1345" width="56.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (2 samples, 0.07%)</title><rect x="146.4" y="3745" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 0.85%)</title><rect x="1173.5" y="2145" width="10.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (10 samples, 0.34%)</title><rect x="856.8" y="1169" width="4.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="859.78" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (3 samples, 0.10%)</title><rect x="889.9" y="721" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="892.86" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_vma (2 samples, 0.07%)</title><rect x="10.0" y="3489" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3713" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1076.6" y="1265" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1079.64" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (1,397 samples, 47.76%)</title><rect x="484.4" y="1825" width="563.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/event/ListenerBroadcast:::dispatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (144 samples, 4.92%)</title><rect x="661.1" y="817" width="58.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="664.12" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (325 samples, 11.11%)</title><rect x="185.5" y="1345" width="131.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="188.49" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::findLatestModule (803 samples, 27.45%)</title><rect x="508.2" y="1105" width="324.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="511.22" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivyservi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (8 samples, 0.27%)</title><rect x="1055.3" y="1217" width="3.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1058.26" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.07%)</title><rect x="116.5" y="3537" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="119.50" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,521 samples, 86.19%)</title><rect x="168.1" y="2929" width="1017.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1177.5" y="1681" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (8 samples, 0.27%)</title><rect x="440.9" y="1329" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="443.85" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (204 samples, 6.97%)</title><rect x="320.2" y="1393" width="82.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="323.23" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/uti..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="812.0" y="433" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/RejectRule$apply$1:::execute (3 samples, 0.10%)</title><rect x="931.8" y="929" width="1.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="934.81" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (3 samples, 0.10%)</title><rect x="901.6" y="721" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="904.56" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (2 samples, 0.07%)</title><rect x="1172.2" y="2145" width="0.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/local/PathKeyFileStore:::getFileWhileCleaningInProgress (2 samples, 0.07%)</title><rect x="937.1" y="913" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="940.06" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (3 samples, 0.10%)</title><rect x="1172.2" y="2465" width="1.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (5 samples, 0.17%)</title><rect x="1037.1" y="801" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1040.10" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap$LinkedKeyIterator:::next (8 samples, 0.27%)</title><rect x="472.7" y="1409" width="3.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="475.72" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_iget_normal (8 samples, 0.27%)</title><rect x="158.5" y="3713" width="3.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="161.46" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1,071 samples, 36.62%)</title><rect x="486.8" y="1569" width="432.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="489.84" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::new_field(fieldDescriptor*,bool,Thread*) (2 samples, 0.07%)</title><rect x="10.0" y="3681" width="0.8" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (2 samples, 0.07%)</title><rect x="654.7" y="721" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="657.66" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (5 samples, 0.17%)</title><rect x="1098.8" y="689" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1101.83" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::isRejectedByRules (8 samples, 0.27%)</title><rect x="500.6" y="993" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (926 samples, 31.66%)</title><rect x="487.2" y="1457" width="373.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="490.24" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lookup_slow (2 samples, 0.07%)</title><rect x="1163.0" y="1377" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1165.97" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1178.7" y="1489" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$DependencyToComponentIdResolverChain:::resolve (134 samples, 4.58%)</title><rect x="1088.7" y="1153" width="54.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1091.74" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (4 samples, 0.14%)</title><rect x="406.2" y="1329" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="409.16" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="743.8" y="785" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/filters/NamespaceBinder:::startElement (8 samples, 0.27%)</title><rect x="1010.5" y="577" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1013.48" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (65 samples, 2.22%)</title><rect x="258.5" y="1297" width="26.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="261.51" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.07%)</title><rect x="164.5" y="3681" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performHttpRequest (5 samples, 0.17%)</title><rect x="996.4" y="609" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="619.5" font-size="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-16622.map] (2 samples, 0.07%)</title><rect x="1181.5" y="1841" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::invoke_compiler_on_method(CompileTask*) (49 samples, 1.68%)</title><rect x="112.9" y="3841" width="19.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="115.87" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ext4_get_inode_loc (8 samples, 0.27%)</title><rect x="158.5" y="3681" width="3.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="161.46" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (5 samples, 0.17%)</title><rect x="946.3" y="769" width="2.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="949.34" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (2 samples, 0.07%)</title><rect x="987.5" y="849" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="990.48" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (3 samples, 0.10%)</title><rect x="1150.1" y="833" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (3 samples, 0.10%)</title><rect x="164.1" y="3825" width="1.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="167.11" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="144.3" y="3745" width="1.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="147.34" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionSelectorScheme:::parseSelector (7 samples, 0.24%)</title><rect x="832.2" y="1121" width="2.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="835.17" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::skip (2 samples, 0.07%)</title><rect x="1100.0" y="641" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1103.04" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (3 samples, 0.10%)</title><rect x="1172.2" y="2369" width="1.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resolve/result/DefaultBuildableModuleVersionListingResolveResult:::listed (3 samples, 0.10%)</title><rect x="1019.4" y="1009" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1022.35" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_newstat (5 samples, 0.17%)</title><rect x="151.6" y="3857" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1537" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/Executors$RunnableAdapter:::call (4 samples, 0.14%)</title><rect x="1187.6" y="3681" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1190.58" y="3691.5" font-size="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-16622.map] (2 samples, 0.07%)</title><rect x="934.2" y="881" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (4 samples, 0.14%)</title><rect x="1049.6" y="1617" width="1.6" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1052.61" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$VersionListResult:::resolve (26 samples, 0.89%)</title><rect x="465.5" y="1537" width="10.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="468.46" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/CharacterData:::of (2 samples, 0.07%)</title><rect x="196.0" y="1217" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="198.98" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (18 samples, 0.62%)</title><rect x="1117.8" y="801" width="7.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1120.79" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (3 samples, 0.10%)</title><rect x="983.4" y="753" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="986.45" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (2 samples, 0.07%)</title><rect x="1172.2" y="1857" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BlockList::iterate_forward(BlockClosure*) (3 samples, 0.10%)</title><rect x="123.0" y="3745" width="1.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="125.96" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (3 samples, 0.10%)</title><rect x="979.0" y="865" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="982.01" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (3 samples, 0.10%)</title><rect x="855.2" y="1137" width="1.2" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeCollapse (88 samples, 3.01%)</title><rect x="402.5" y="1409" width="35.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="405.53" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (18 samples, 0.62%)</title><rect x="770.8" y="833" width="7.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="773.85" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (14 samples, 0.48%)</title><rect x="855.2" y="1393" width="5.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (3 samples, 0.10%)</title><rect x="311.0" y="1201" width="1.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="313.95" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/dispatch/ProxyDispatchAdapter$DispatchingInvocationHandler:::invoke (31 samples, 1.06%)</title><rect x="1172.2" y="2673" width="12.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ext4_get_inode_loc (3 samples, 0.10%)</title><rect x="152.0" y="3665" width="1.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (25 samples, 0.85%)</title><rect x="867.7" y="801" width="10.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="870.67" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::codePointAt (9 samples, 0.31%)</title><rect x="216.1" y="1185" width="3.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="219.15" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (2 samples, 0.07%)</title><rect x="116.5" y="3489" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="119.50" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1173.9" y="1329" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Annotation$Argument$Value$1:::parsePartialFrom (3 samples, 0.10%)</title><rect x="1175.5" y="689" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$CandidateResult:::process (9 samples, 0.31%)</title><rect x="988.7" y="1009" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="917.7" y="801" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Branch:::match (2 samples, 0.07%)</title><rect x="988.7" y="417" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,468 samples, 84.38%)</title><rect x="168.5" y="2529" width="995.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (18 samples, 0.62%)</title><rect x="1066.6" y="1313" width="7.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1069.55" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (3 samples, 0.10%)</title><rect x="1110.9" y="657" width="1.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1113.93" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1180.3" y="1761" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.32" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ConfigurationNode:::getModuleResolutionFilter (3 samples, 0.10%)</title><rect x="493.7" y="1185" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="496.70" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/AbstractBroadcastDispatch:::dispatch (3 samples, 0.10%)</title><rect x="1156.1" y="1761" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="868.5" y="721" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="871.48" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/DefaultExternalResourceRepository:::list (5 samples, 0.17%)</title><rect x="996.4" y="737" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_cache_readahead (2 samples, 0.07%)</title><rect x="1186.0" y="3761" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (3 samples, 0.10%)</title><rect x="821.3" y="337" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="824.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (63 samples, 2.15%)</title><rect x="1089.5" y="897" width="25.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (280 samples, 9.57%)</title><rect x="922.1" y="1457" width="113.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$DefaultLookupContext:::getServiceProvider (2 samples, 0.07%)</title><rect x="166.9" y="1585" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/dispatch/ProxyDispatchAdapter$DispatchingInvocationHandler:::invoke (3 samples, 0.10%)</title><rect x="1156.1" y="1889" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (2 samples, 0.07%)</title><rect x="899.1" y="833" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="902.14" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="981.0" y="801" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="984.03" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (2 samples, 0.07%)</title><rect x="116.5" y="3505" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="119.50" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::resolveModuleRevisionId (16 samples, 0.55%)</title><rect x="1036.3" y="1233" width="6.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1039.30" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::codePointAtImpl (3 samples, 0.10%)</title><rect x="558.6" y="689" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="561.65" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::getFailure (2 samples, 0.07%)</title><rect x="168.9" y="1633" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="171.95" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1180.3" y="1745" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.32" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$CompositeProvider:::getService (2 samples, 0.07%)</title><rect x="166.9" y="1841" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (2 samples, 0.07%)</title><rect x="439.6" y="1281" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="442.64" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (3 samples, 0.10%)</title><rect x="1156.1" y="1665" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (53 samples, 1.81%)</title><rect x="944.3" y="929" width="21.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="947.32" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1185" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1172.2" y="2209" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3537" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (175 samples, 5.98%)</title><rect x="1085.5" y="1825" width="70.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (5 samples, 0.17%)</title><rect x="1076.6" y="1313" width="2.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1079.64" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (22 samples, 0.75%)</title><rect x="1035.1" y="1281" width="8.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block() (5 samples, 0.17%)</title><rect x="103.6" y="3649" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/AbstractCallSite:::callGroovyObjectGetProperty (2 samples, 0.07%)</title><rect x="166.9" y="2305" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3761" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap:::newNode (4 samples, 0.14%)</title><rect x="455.4" y="1473" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="458.37" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1180.3" y="1841" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.32" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::calculateTargetConfigurations (2 samples, 0.07%)</title><rect x="1087.9" y="1185" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1090.94" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::resolveModuleRevisionId (744 samples, 25.44%)</title><rect x="179.0" y="1681" width="300.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="182.03" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivyse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::skip (2 samples, 0.07%)</title><rect x="709.1" y="657" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="712.12" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1649" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConnectionGraph::add_field_uses_to_worklist(FieldNode*) (34 samples, 1.16%)</title><rect x="56.8" y="3713" width="13.7" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="59.80" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionSelectorResolveState:::resolveModuleRevisionId (16 samples, 0.55%)</title><rect x="1036.3" y="1217" width="6.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1039.30" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (3 samples, 0.10%)</title><rect x="171.0" y="1665" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="173.96" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::build__optimize(bool,bool) (60 samples, 2.05%)</title><rect x="71.7" y="3777" width="24.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="74.72" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >P..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (3 samples, 0.10%)</title><rect x="164.1" y="3905" width="1.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="167.11" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/cache/LocalCache$LoadingValueReference:::loadFuture (2 samples, 0.07%)</title><rect x="1171.0" y="2433" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1174.04" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (3 samples, 0.10%)</title><rect x="413.4" y="1201" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="416.42" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (3 samples, 0.10%)</title><rect x="106.0" y="3297" width="1.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="109.01" y="3307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::escape (5 samples, 0.17%)</title><rect x="705.9" y="657" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="708.90" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (5 samples, 0.17%)</title><rect x="787.8" y="753" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="790.79" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultMultiProcessSafePersistentIndexedCache$1:::create (8 samples, 0.27%)</title><rect x="1159.3" y="1457" width="3.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1162.34" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_main_inner() (7 samples, 0.24%)</title><rect x="17.3" y="3873" width="2.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performRequest (3 samples, 0.10%)</title><rect x="813.2" y="609" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="816.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (5 samples, 0.17%)</title><rect x="741.4" y="897" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="744.40" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (3 samples, 0.10%)</title><rect x="984.7" y="817" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="987.66" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainArtifactResolver:::resolveArtifact (13 samples, 0.44%)</title><rect x="1158.5" y="1729" width="5.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (4 samples, 0.14%)</title><rect x="1133.5" y="785" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1136.52" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BmpCharProperty:::match (5 samples, 0.17%)</title><rect x="669.2" y="721" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="672.19" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3297" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.07%)</title><rect x="1163.0" y="1521" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1165.97" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScanWalker::alloc_free_reg(Interval*) (2 samples, 0.07%)</title><rect x="125.0" y="3681" width="0.8" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="127.97" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_make_request (5 samples, 0.17%)</title><rect x="159.7" y="3601" width="2.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="162.67" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::sort (691 samples, 23.62%)</title><rect x="514.3" y="961" width="278.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="517.27" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/Arrays:::sort</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap$LinkedKeyIterator:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="803.1" y="993" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="806.12" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::peek (2 samples, 0.07%)</title><rect x="707.9" y="657" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="710.91" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractCollection:::toArray (3 samples, 0.10%)</title><rect x="430.8" y="1233" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="433.77" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Annotation$Builder:::mergeFrom (3 samples, 0.10%)</title><rect x="1175.5" y="897" width="1.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_filemap_fault (2 samples, 0.07%)</title><rect x="1186.0" y="3793" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (14 samples, 0.48%)</title><rect x="409.4" y="1361" width="5.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="412.38" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (4 samples, 0.14%)</title><rect x="908.8" y="881" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="911.82" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/ResolvedConfigurationDependencyGraphVisitor:::visitNode (3 samples, 0.10%)</title><rect x="488.9" y="1169" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="491.86" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::put (3 samples, 0.10%)</title><rect x="1139.6" y="1025" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1142.57" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (3 samples, 0.10%)</title><rect x="154.0" y="3761" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="157.02" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1168.2" y="2097" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="2107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder$RootFactory:::deserialize (2 samples, 0.07%)</title><rect x="1156.5" y="1249" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="404.1" y="1313" width="1.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="407.14" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (4 samples, 0.14%)</title><rect x="889.5" y="753" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="892.45" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/client/InternalHttpClient:::doExecute (5 samples, 0.17%)</title><rect x="996.4" y="577" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (3 samples, 0.10%)</title><rect x="1137.6" y="881" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1140.56" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (23 samples, 0.79%)</title><rect x="1146.4" y="1441" width="9.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::codePointAt (14 samples, 0.48%)</title><rect x="554.2" y="705" width="5.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="557.21" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (2 samples, 0.07%)</title><rect x="982.6" y="801" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="985.64" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="810.8" y="561" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,188 samples, 74.80%)</title><rect x="168.5" y="1905" width="882.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (927 samples, 31.69%)</title><rect x="486.8" y="1505" width="374.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="489.84" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::hash (7 samples, 0.24%)</title><rect x="468.3" y="1377" width="2.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="471.28" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::attachToTargetConfigurations (32 samples, 1.09%)</title><rect x="929.0" y="1233" width="12.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="931.99" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::peek (3 samples, 0.10%)</title><rect x="709.9" y="673" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="712.93" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashSet:::&lt;init&gt; (13 samples, 0.44%)</title><rect x="826.1" y="961" width="5.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="829.12" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::countRunAndMakeAscending (3 samples, 0.10%)</title><rect x="1151.7" y="961" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1154.68" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (15 samples, 0.51%)</title><rect x="723.2" y="785" width="6.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="726.24" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 0.21%)</title><rect x="810.8" y="705" width="2.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performRequest (2 samples, 0.07%)</title><rect x="824.1" y="625" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="827.10" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3265" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse(JVMState*,ciMethod*,float) (4 samples, 0.14%)</title><rect x="105.6" y="3377" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (3 samples, 0.10%)</title><rect x="1148.4" y="817" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1151.45" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::resolve (2 samples, 0.07%)</title><rect x="1027.4" y="977" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (5 samples, 0.17%)</title><rect x="371.5" y="1153" width="2.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="374.46" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/CompositeStoppable:::stop (2 samples, 0.07%)</title><rect x="1185.2" y="3153" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="3163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/memcache/InMemoryCachedModuleComponentRepository$CachedAccess:::resolveComponentMetaData (17 samples, 0.58%)</title><rect x="933.0" y="1025" width="6.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="936.02" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (4 samples, 0.14%)</title><rect x="1081.1" y="1329" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1084.08" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::getNode (2 samples, 0.07%)</title><rect x="805.1" y="1009" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="808.14" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__elv_add_request (2 samples, 0.07%)</title><rect x="371.9" y="1057" width="0.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/RejectRule$apply$1:::execute (7 samples, 0.24%)</title><rect x="511.0" y="929" width="2.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="514.05" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/execchain/RetryExec:::execute (5 samples, 0.17%)</title><rect x="996.4" y="545" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder$RootFactory:::deserialize (2 samples, 0.07%)</title><rect x="1032.7" y="801" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1035.67" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,181 samples, 74.56%)</title><rect x="168.5" y="1889" width="879.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (147 samples, 5.03%)</title><rect x="1085.5" y="1265" width="59.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (910 samples, 31.11%)</title><rect x="487.6" y="1249" width="367.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="490.65" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_swap_cache_async (2 samples, 0.07%)</title><rect x="25.3" y="3793" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="28.33" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="439.2" y="1345" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="442.24" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (2 samples, 0.07%)</title><rect x="138.3" y="3585" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="141.29" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (2 samples, 0.07%)</title><rect x="166.9" y="2497" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository$ResolveAndCacheRepositoryAccess:::listModuleVersions (57 samples, 1.95%)</title><rect x="995.6" y="1009" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="998.55" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode() (5 samples, 0.17%)</title><rect x="103.6" y="3537" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::iterate_bytecodes_for_block(int) (13 samples, 0.44%)</title><rect x="114.1" y="3681" width="5.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.08" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (782 samples, 26.74%)</title><rect x="168.5" y="1729" width="315.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/component/external/model/IvyDependencyMetadata:::selectConfigurations (3 samples, 0.10%)</title><rect x="504.6" y="1169" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="507.59" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::register_method(ciMethod*,int,CodeOffsets*,int,CodeBuffer*,int,OopMapSet*,ExceptionHandlerTable*,ImplicitExceptionTable*,AbstractCompiler*,int,bool,bool,RTMState) (3 samples, 0.10%)</title><rect x="131.0" y="3761" width="1.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultFileLockManager$DefaultFileLock:::readFile (8 samples, 0.27%)</title><rect x="1159.3" y="1473" width="3.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1162.34" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (30 samples, 1.03%)</title><rect x="886.6" y="849" width="12.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="889.63" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="1041.1" y="849" width="1.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1044.14" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeLo (18 samples, 0.62%)</title><rect x="901.2" y="897" width="7.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="904.15" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (6 samples, 0.21%)</title><rect x="433.2" y="1217" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="436.19" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (9 samples, 0.31%)</title><rect x="444.1" y="1297" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="447.08" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 0.21%)</title><rect x="1186.8" y="3761" width="2.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (20 samples, 0.68%)</title><rect x="1173.5" y="2017" width="8.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (2 samples, 0.07%)</title><rect x="371.9" y="1041" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (4 samples, 0.14%)</title><rect x="977.0" y="721" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="979.99" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (8 samples, 0.27%)</title><rect x="202.8" y="1201" width="3.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="205.83" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder$RootFactory:::deserialize (2 samples, 0.07%)</title><rect x="917.7" y="769" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (2 samples, 0.07%)</title><rect x="481.6" y="1585" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="484.60" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1031.9" y="1137" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/DefaultCacheLockingManager:::useCache (22 samples, 0.75%)</title><rect x="1035.1" y="1393" width="8.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (263 samples, 8.99%)</title><rect x="1051.2" y="1937" width="106.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1054.22" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (3 samples, 0.10%)</title><rect x="966.1" y="881" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="969.10" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dynamicversions/SingleFileBackedModuleVersionsCache:::cacheModuleVersionList (2 samples, 0.07%)</title><rect x="808.8" y="961" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="811.77" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_cache_readahead (2 samples, 0.07%)</title><rect x="156.4" y="3729" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="159.44" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (3 samples, 0.10%)</title><rect x="1033.9" y="1025" width="1.2" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1036.88" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (3 samples, 0.10%)</title><rect x="1148.4" y="801" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1151.45" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual(JavaValue*,Handle,KlassHandle,Symbol*,Symbol*,Thread*) (4 samples, 0.14%)</title><rect x="144.3" y="3841" width="1.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="147.34" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (129 samples, 4.41%)</title><rect x="198.8" y="1249" width="52.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="201.80" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (3 samples, 0.10%)</title><rect x="1033.9" y="1073" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1036.88" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (23 samples, 0.79%)</title><rect x="1146.4" y="1489" width="9.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1499.5" font-size="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 (2 samples, 0.07%)</title><rect x="25.3" y="3905" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="28.33" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_make_request (2 samples, 0.07%)</title><rect x="311.4" y="1073" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="314.35" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,524 samples, 86.29%)</title><rect x="166.9" y="3009" width="1018.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/CompositeDependencyGraphVisitor:::visitNode (2 samples, 0.07%)</title><rect x="923.3" y="1217" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="926.34" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::sort (15 samples, 0.51%)</title><rect x="1036.7" y="993" width="6.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,467 samples, 84.34%)</title><rect x="168.5" y="2449" width="995.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 0.21%)</title><rect x="1186.8" y="3745" width="2.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/PogoGetPropertySite:::getProperty (2 samples, 0.07%)</title><rect x="166.9" y="2289" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::parseLong (2 samples, 0.07%)</title><rect x="1053.2" y="1265" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1056.24" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::useCache (147 samples, 5.03%)</title><rect x="1085.5" y="1345" width="59.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (2 samples, 0.07%)</title><rect x="23.7" y="3793" width="0.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matcher (2 samples, 0.07%)</title><rect x="655.5" y="753" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="658.47" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (2 samples, 0.07%)</title><rect x="131.0" y="3633" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LIRGenerator::do_Goto(Goto*) (2 samples, 0.07%)</title><rect x="123.0" y="3713" width="0.8" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="125.96" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 1.71%)</title><rect x="146.0" y="3921" width="20.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="148.95" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (3 samples, 0.10%)</title><rect x="1172.2" y="2289" width="1.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (24 samples, 0.82%)</title><rect x="1092.0" y="769" width="9.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1094.97" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fstatat (2 samples, 0.07%)</title><rect x="147.2" y="3793" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 0.58%)</title><rect x="1165.0" y="2561" width="6.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/execchain/ProtocolExec:::execute (2 samples, 0.07%)</title><rect x="1017.3" y="545" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1020.34" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compiler::compile_method(ciEnv*,ciMethod*,int) (47 samples, 1.61%)</title><rect x="113.3" y="3825" width="18.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="116.28" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (2 samples, 0.07%)</title><rect x="160.9" y="3489" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="163.88" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseCFG::global_code_motion() (2 samples, 0.07%)</title><rect x="31.0" y="3761" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="33.98" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (3 samples, 0.10%)</title><rect x="171.0" y="1633" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="173.96" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/execchain/RedirectExec:::execute (2 samples, 0.07%)</title><rect x="813.6" y="529" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="816.61" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (3 samples, 0.10%)</title><rect x="776.9" y="737" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="779.90" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1172.2" y="1969" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::selectMatchingVersionAndResolve (119 samples, 4.07%)</title><rect x="863.6" y="1057" width="48.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="866.63" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (4 samples, 0.14%)</title><rect x="371.9" y="1105" width="1.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,524 samples, 86.29%)</title><rect x="166.9" y="3041" width="1018.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (2 samples, 0.07%)</title><rect x="1172.2" y="1809" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1137.6" y="785" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1140.56" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_sock (2 samples, 0.07%)</title><rect x="818.5" y="417" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::sort (110 samples, 3.76%)</title><rect x="943.9" y="1025" width="44.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="946.91" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::RemoveQEQuoting (2 samples, 0.07%)</title><rect x="548.6" y="721" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="551.56" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (2 samples, 0.07%)</title><rect x="164.5" y="3569" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::longRunningOperation (38 samples, 1.30%)</title><rect x="809.6" y="913" width="15.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="812.58" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="166.9" y="2657" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/clientmodule/ClientModuleResolver:::resolve (2 samples, 0.07%)</title><rect x="177.0" y="1617" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="180.02" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (5 samples, 0.17%)</title><rect x="765.2" y="753" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="768.20" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::executeGetOrHead (3 samples, 0.10%)</title><rect x="813.2" y="593" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="816.21" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/CompositeDependencyGraphVisitor:::visitEdges (2 samples, 0.07%)</title><rect x="488.1" y="1201" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="491.05" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (16 samples, 0.55%)</title><rect x="157.7" y="3825" width="6.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="160.65" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (3 samples, 0.10%)</title><rect x="73.3" y="3713" width="1.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="76.34" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/ResolvedConfigurationDependencyGraphVisitor:::visitNode (2 samples, 0.07%)</title><rect x="168.9" y="1649" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="171.95" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$SingletonService:::prepare (2 samples, 0.07%)</title><rect x="166.9" y="1793" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1032.7" y="817" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1035.67" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/protobuf/CodedOutputStream:::newInstance (2 samples, 0.07%)</title><rect x="1175.9" y="401" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.88" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (3 samples, 0.10%)</title><rect x="1148.4" y="785" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1151.45" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (3 samples, 0.10%)</title><rect x="779.7" y="881" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="782.72" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="1167.4" y="2225" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.41" y="2235.5" font-size="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-16622.map] (2 samples, 0.07%)</title><rect x="1172.2" y="1905" width="0.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (2 samples, 0.07%)</title><rect x="1172.2" y="2065" width="0.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::parseLong (8 samples, 0.27%)</title><rect x="325.9" y="1265" width="3.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="328.88" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions$DependencyResolveDetailsWrapperAction:::execute (2 samples, 0.07%)</title><rect x="913.7" y="1121" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="916.66" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (2 samples, 0.07%)</title><rect x="1172.2" y="1697" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::escape (4 samples, 0.14%)</title><rect x="366.6" y="1137" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::binarySort (8 samples, 0.27%)</title><rect x="1036.7" y="961" width="3.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (116 samples, 3.97%)</title><rect x="331.1" y="1249" width="46.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="334.12" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="855.2" y="1265" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ModuleVersionIdentifierSerializer:::write (3 samples, 0.10%)</title><rect x="488.9" y="1073" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="491.86" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,467 samples, 84.34%)</title><rect x="168.5" y="2337" width="995.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractList:::listIterator (3 samples, 0.10%)</title><rect x="849.9" y="1121" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="852.92" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (2 samples, 0.07%)</title><rect x="934.2" y="785" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (3 samples, 0.10%)</title><rect x="855.2" y="1169" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (3 samples, 0.10%)</title><rect x="1011.3" y="353" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (4 samples, 0.14%)</title><rect x="148.4" y="3553" width="1.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="151.37" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (3 samples, 0.10%)</title><rect x="407.8" y="1361" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="410.77" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpResourceAccessor:::openResource (5 samples, 0.17%)</title><rect x="996.4" y="689" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (2 samples, 0.07%)</title><rect x="1120.6" y="641" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1123.61" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (5 samples, 0.17%)</title><rect x="1078.7" y="1281" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1081.66" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (40 samples, 1.37%)</title><rect x="610.7" y="801" width="16.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="613.69" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_method(bool&amp;,ciSignature**) (4 samples, 0.14%)</title><rect x="116.5" y="3649" width="1.6" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="119.50" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler:::registerModule (3 samples, 0.10%)</title><rect x="915.7" y="1201" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="918.68" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser$DefaultVersion:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="430.8" y="1249" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="433.77" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ConfigurationNode:::isExcluded (2 samples, 0.07%)</title><rect x="1035.5" y="1217" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1038.49" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (16 samples, 0.55%)</title><rect x="157.7" y="3889" width="6.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="160.65" y="3899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/VersionSelectionReasonResolver:::select (2 samples, 0.07%)</title><rect x="853.1" y="1169" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="856.15" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_find_entry (2 samples, 0.07%)</title><rect x="147.2" y="3665" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (23 samples, 0.79%)</title><rect x="1146.4" y="1425" width="9.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 0.96%)</title><rect x="1173.5" y="2417" width="11.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::resolveModuleRevisionId (18 samples, 0.62%)</title><rect x="1147.2" y="1233" width="7.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1150.24" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BmpCharProperty:::match (5 samples, 0.17%)</title><rect x="200.8" y="1201" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="203.82" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess:::resolveArtifact (13 samples, 0.44%)</title><rect x="1158.5" y="1713" width="5.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="412.2" y="1249" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="415.21" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_swap_page (2 samples, 0.07%)</title><rect x="1124.2" y="641" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1127.24" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (2 samples, 0.07%)</title><rect x="442.9" y="1249" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="445.87" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultArtifactSet$BuildOperationArtifactSource:::create (15 samples, 0.51%)</title><rect x="1157.7" y="1985" width="6.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1160.73" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fstatat (2 samples, 0.07%)</title><rect x="1163.0" y="1473" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1165.97" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ConfigurationNode:::getModuleResolutionFilter (3 samples, 0.10%)</title><rect x="173.0" y="1665" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="175.98" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (13 samples, 0.44%)</title><rect x="892.7" y="817" width="5.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="895.68" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (5 samples, 0.17%)</title><rect x="1078.7" y="1345" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1081.66" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (2 samples, 0.07%)</title><rect x="988.7" y="737" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal(Node*,Node*,Node*) (3 samples, 0.10%)</title><rect x="91.1" y="3713" width="1.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="94.09" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::escape (5 samples, 0.17%)</title><rect x="576.8" y="657" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="579.80" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1665" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (4 samples, 0.14%)</title><rect x="739.8" y="737" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="742.78" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::resolveModuleRevisionId (81 samples, 2.77%)</title><rect x="1052.0" y="1681" width="32.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse(JVMState*,ciMethod*,float) (2 samples, 0.07%)</title><rect x="106.0" y="3185" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="109.01" y="3195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_lookupat (2 samples, 0.07%)</title><rect x="147.2" y="3745" width="0.8" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1151.7" y="929" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1154.68" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::restart (4 samples, 0.14%)</title><rect x="851.1" y="1089" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="854.13" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleResolveState:::restart (2 samples, 0.07%)</title><rect x="1154.9" y="1137" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1157.90" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/AbstractBroadcastDispatch:::dispatch (3 samples, 0.10%)</title><rect x="166.9" y="2833" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (6 samples, 0.21%)</title><rect x="873.7" y="689" width="2.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="876.72" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (18 samples, 0.62%)</title><rect x="1052.0" y="1297" width="7.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Actions$CompositeAction:::execute (24 samples, 0.82%)</title><rect x="835.0" y="1153" width="9.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="837.99" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeHi (4 samples, 0.14%)</title><rect x="1137.2" y="897" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1140.15" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,469 samples, 84.41%)</title><rect x="168.1" y="2705" width="996.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.14" y="2715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (2 samples, 0.07%)</title><rect x="1152.1" y="833" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1155.08" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (24 samples, 0.82%)</title><rect x="1035.1" y="1473" width="9.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks() (3 samples, 0.10%)</title><rect x="103.6" y="3377" width="1.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (12 samples, 0.41%)</title><rect x="386.0" y="1281" width="4.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="388.99" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptscsih_qcmd (2 samples, 0.07%)</title><rect x="371.9" y="961" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1177.5" y="1521" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/CompositeStoppable:::stop (2 samples, 0.07%)</title><rect x="1185.2" y="3041" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="3051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (2 samples, 0.07%)</title><rect x="139.1" y="3585" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="142.09" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (2 samples, 0.07%)</title><rect x="969.7" y="785" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="972.73" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ConfigurationNode:::addIncomingEdge (2 samples, 0.07%)</title><rect x="929.0" y="1217" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="931.99" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler:::registerModule (11 samples, 0.38%)</title><rect x="846.7" y="1201" width="4.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="849.69" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (2 samples, 0.07%)</title><rect x="1011.7" y="241" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1014.69" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIterGVN::transform_old(Node*) (6 samples, 0.21%)</title><rect x="96.7" y="3761" width="2.5" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="99.74" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (2 samples, 0.07%)</title><rect x="438.0" y="1281" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="441.03" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::isRejectedByRules (5 samples, 0.17%)</title><rect x="931.0" y="1025" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="934.01" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (175 samples, 5.98%)</title><rect x="1085.5" y="1681" width="70.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::new_nmethod(methodHandle,int,int,CodeOffsets*,int,DebugInformationRecorder*,Dependencies*,CodeBuffer*,int,OopMapSet*,ExceptionHandlerTable*,ImplicitExceptionTable*,AbstractCompiler*,int) (3 samples, 0.10%)</title><rect x="131.0" y="3745" width="1.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (3 samples, 0.10%)</title><rect x="901.6" y="737" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="904.56" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (2 samples, 0.07%)</title><rect x="777.3" y="721" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="780.30" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match0 (2 samples, 0.07%)</title><rect x="1067.8" y="1185" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1070.76" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/CompositeDomainObjectSet$DomainObjectCompositeCollection:::estimatedSize (4 samples, 0.14%)</title><rect x="1178.3" y="1633" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap:::get (6 samples, 0.21%)</title><rect x="494.9" y="1153" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="497.91" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/cs/UTF_8$Encoder:::encode (2 samples, 0.07%)</title><rect x="999.6" y="33" width="0.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (2 samples, 0.07%)</title><rect x="166.9" y="2417" width="0.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentMetaDataResolveState:::process (2 samples, 0.07%)</title><rect x="177.0" y="1505" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="180.02" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (2 samples, 0.07%)</title><rect x="25.3" y="3873" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="28.33" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::assign_reg_num(LIR_OpList*,IntervalWalker*) (3 samples, 0.10%)</title><rect x="125.8" y="3713" width="1.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="128.78" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder$RootFactory:::deserialize (3 samples, 0.10%)</title><rect x="858.4" y="769" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (7 samples, 0.24%)</title><rect x="905.6" y="865" width="2.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="908.59" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::put (9 samples, 0.31%)</title><rect x="798.3" y="1025" width="3.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="801.28" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (11 samples, 0.38%)</title><rect x="772.1" y="737" width="4.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="775.06" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository$LocateInCacheRepositoryAccess:::listModuleVersions (2 samples, 0.07%)</title><rect x="808.0" y="977" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="810.96" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (7 samples, 0.24%)</title><rect x="905.6" y="881" width="2.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="908.59" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler:::resolveNextConflict (2 samples, 0.07%)</title><rect x="1154.9" y="1233" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1157.90" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/CompositeStoppable:::stop (2 samples, 0.07%)</title><rect x="1185.2" y="3105" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="3115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1039.9" y="929" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1042.93" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (3 samples, 0.10%)</title><rect x="1037.9" y="753" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1040.91" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::iterate_bytecodes_for_block(int) (2 samples, 0.07%)</title><rect x="114.9" y="3521" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.89" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Annotation$Argument$1:::parsePartialFrom (3 samples, 0.10%)</title><rect x="1175.5" y="769" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (4 samples, 0.14%)</title><rect x="153.6" y="3793" width="1.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="156.62" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3329" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeLo (10 samples, 0.34%)</title><rect x="1076.6" y="1377" width="4.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1079.64" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (4 samples, 0.14%)</title><rect x="105.6" y="3489" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performRequest (2 samples, 0.07%)</title><rect x="1002.4" y="641" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1005.41" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (910 samples, 31.11%)</title><rect x="487.6" y="1329" width="367.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="490.65" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/cache/internal/DefaultPersistentDirec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/ReflectProperties$Val:::getValue (4 samples, 0.14%)</title><rect x="1175.1" y="1473" width="1.6" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="1175.1" y="1649" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transfer/DefaultExternalResourceConnector:::list (36 samples, 1.23%)</title><rect x="1004.0" y="737" width="14.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1007.02" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/memcache/InMemoryCachedModuleComponentRepository$CachedAccess:::resolveComponentMetaData (3 samples, 0.10%)</title><rect x="992.7" y="1009" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="995.73" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="498.5" y="1185" width="1.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="501.54" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (2 samples, 0.07%)</title><rect x="1120.6" y="609" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1123.61" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractCollection:::addAll (21 samples, 0.72%)</title><rect x="467.5" y="1425" width="8.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="470.48" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>checkcast_arraycopy_uninit (2 samples, 0.07%)</title><rect x="1126.7" y="801" width="0.8" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="1129.66" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (19 samples, 0.65%)</title><rect x="784.2" y="865" width="7.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="787.16" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/AbstractIterator:::tryToComputeNext (3 samples, 0.10%)</title><rect x="479.6" y="1585" width="1.2" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="482.58" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/AbstractBroadcastDispatch:::dispatch (3 samples, 0.10%)</title><rect x="917.3" y="1329" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (30 samples, 1.03%)</title><rect x="532.4" y="737" width="12.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="535.43" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_file_read_iter (3 samples, 0.10%)</title><rect x="156.4" y="3793" width="1.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="159.44" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry:::get (2 samples, 0.07%)</title><rect x="166.9" y="1985" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse(JVMState*,ciMethod*,float) (5 samples, 0.17%)</title><rect x="103.6" y="3585" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block() (3 samples, 0.10%)</title><rect x="106.0" y="3249" width="1.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="109.01" y="3259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode() (18 samples, 0.62%)</title><rect x="101.6" y="3729" width="7.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="104.58" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/DefaultCacheLockingManager:::useCache (269 samples, 9.20%)</title><rect x="922.1" y="1393" width="108.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CallGenerator::for_inline(ciMethod*,float) (4 samples, 0.14%)</title><rect x="26.1" y="3793" width="1.7" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="29.14" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="858.4" y="881" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::study (10 samples, 0.34%)</title><rect x="561.1" y="689" width="4.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="564.07" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (2 samples, 0.07%)</title><rect x="1145.2" y="1137" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1148.22" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1,396 samples, 47.73%)</title><rect x="484.4" y="1649" width="563.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionResolver:::resolve (838 samples, 28.65%)</title><rect x="507.0" y="1169" width="338.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="510.01" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivyservice..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (143 samples, 4.89%)</title><rect x="860.8" y="1441" width="57.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (1,397 samples, 47.76%)</title><rect x="484.4" y="1793" width="563.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (4 samples, 0.14%)</title><rect x="1033.5" y="1185" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1036.47" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$FactoryService:::bind (2 samples, 0.07%)</title><rect x="166.9" y="1617" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_swap_cache_async (3 samples, 0.10%)</title><rect x="311.0" y="1121" width="1.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="313.95" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (2 samples, 0.07%)</title><rect x="743.8" y="689" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/ReflectProperties$Val:::getValue (2 samples, 0.07%)</title><rect x="1173.9" y="1489" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="407.8" y="1313" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="410.77" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1178.3" y="1777" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainDependencyToComponentIdResolver:::resolve (78 samples, 2.67%)</title><rect x="1052.0" y="1617" width="31.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1156.5" y="1393" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (3 samples, 0.10%)</title><rect x="1156.1" y="1777" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (15 samples, 0.51%)</title><rect x="1119.0" y="737" width="6.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1122.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::contains (2 samples, 0.07%)</title><rect x="847.5" y="1057" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="850.50" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (53 samples, 1.81%)</title><rect x="944.3" y="881" width="21.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="947.32" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionSelectorResolveState:::getFailure (2 samples, 0.07%)</title><rect x="168.9" y="1601" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="171.95" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::find_method_index(Array&lt;Method*&gt;*,Symbol*,Symbol*,bool,bool) (3 samples, 0.10%)</title><rect x="118.1" y="3585" width="1.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="121.12" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::resolve (2 samples, 0.07%)</title><rect x="177.0" y="1585" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="180.02" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::countRunAndMakeAscending (30 samples, 1.03%)</title><rect x="886.6" y="929" width="12.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="889.63" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.07%)</title><rect x="155.2" y="3825" width="0.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="158.23" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="999.6" y="545" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::binarySort (345 samples, 11.79%)</title><rect x="514.3" y="929" width="139.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="517.27" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/TimSor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (2 samples, 0.07%)</title><rect x="97.9" y="3649" width="0.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Node:::study (3 samples, 0.10%)</title><rect x="696.2" y="689" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="699.22" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList$SubList:::size (2 samples, 0.07%)</title><rect x="314.6" y="1265" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="317.58" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block() (4 samples, 0.14%)</title><rect x="105.6" y="3345" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="908.8" y="673" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="911.82" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::codePointAt (2 samples, 0.07%)</title><rect x="757.1" y="657" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="760.13" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1180.3" y="1889" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.32" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::reset (2 samples, 0.07%)</title><rect x="1058.5" y="1201" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1061.49" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (15 samples, 0.51%)</title><rect x="723.2" y="801" width="6.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="726.24" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method(ciEnv*,ciMethod*,int) (210 samples, 7.18%)</title><rect x="26.1" y="3825" width="84.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="29.14" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >C2Compile..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/CompositeDependencyGraphVisitor:::visitNode (2 samples, 0.07%)</title><rect x="860.8" y="1201" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (3 samples, 0.10%)</title><rect x="741.8" y="737" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="744.80" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/AbstractCallSite:::callGetProperty (2 samples, 0.07%)</title><rect x="1156.5" y="1569" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1181.5" y="1793" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performHttpRequest (2 samples, 0.07%)</title><rect x="1002.4" y="609" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1005.41" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-16622/16627 (2 samples, 0.07%)</title><rect x="23.7" y="3937" width="0.8" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/typeconversion/NotationParserBuilder:::create (2 samples, 0.07%)</title><rect x="166.9" y="1969" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (4 samples, 0.14%)</title><rect x="867.7" y="753" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="870.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (9 samples, 0.31%)</title><rect x="1166.6" y="2385" width="3.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1169.60" y="2395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (4 samples, 0.14%)</title><rect x="10.0" y="3857" width="1.6" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (2 samples, 0.07%)</title><rect x="166.1" y="3841" width="0.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::append (2 samples, 0.07%)</title><rect x="230.7" y="1137" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="233.67" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Function$1:::parsePartialFrom (3 samples, 0.10%)</title><rect x="1178.7" y="1153" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (175 samples, 5.98%)</title><rect x="1085.5" y="1649" width="70.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (2,524 samples, 86.29%)</title><rect x="166.9" y="3137" width="1018.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/Transformers$4:::transform</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor:::processRule (3 samples, 0.10%)</title><rect x="502.6" y="945" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="505.57" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Start:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="871.7" y="705" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="874.70" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/MavenMetadataLoader:::parseMavenMetadataInfo (9 samples, 0.31%)</title><rect x="810.8" y="721" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (2 samples, 0.07%)</title><rect x="152.4" y="3473" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="155.41" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractSequentialList:::iterator (3 samples, 0.10%)</title><rect x="849.9" y="1137" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="852.92" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (2 samples, 0.07%)</title><rect x="447.7" y="1313" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="450.71" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (4 samples, 0.14%)</title><rect x="148.4" y="3585" width="1.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="151.37" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/AbstractBroadcastDispatch:::dispatch (1,397 samples, 47.76%)</title><rect x="484.4" y="1777" width="563.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/event/AbstractBroadcastDispatch:::dispatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (15 samples, 0.51%)</title><rect x="1119.0" y="721" width="6.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1122.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.07%)</title><rect x="146.4" y="3617" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeAt (5 samples, 0.17%)</title><rect x="908.4" y="913" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="911.41" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::longRunningOperation (55 samples, 1.88%)</title><rect x="996.4" y="945" width="22.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (2 samples, 0.07%)</title><rect x="118.5" y="3489" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="121.52" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="889.5" y="737" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="892.45" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="855.2" y="977" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>submit_bio (3 samples, 0.10%)</title><rect x="152.0" y="3601" width="1.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (3 samples, 0.10%)</title><rect x="1011.3" y="305" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionSelectorResolveState:::resolveModuleRevisionId (17 samples, 0.58%)</title><rect x="1147.6" y="1217" width="6.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (3 samples, 0.10%)</title><rect x="439.2" y="1361" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="442.24" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (11 samples, 0.38%)</title><rect x="419.1" y="1153" width="4.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="422.07" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IndexSetIterator::advance_and_next() (5 samples, 0.17%)</title><rect x="49.9" y="3745" width="2.1" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="52.94" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (2 samples, 0.07%)</title><rect x="147.2" y="3729" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (3 samples, 0.10%)</title><rect x="154.0" y="3633" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="157.02" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse(JVMState*,ciMethod*,float) (5 samples, 0.17%)</title><rect x="105.6" y="3569" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (41 samples, 1.40%)</title><rect x="415.4" y="1313" width="16.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="418.44" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (6 samples, 0.21%)</title><rect x="148.0" y="3841" width="2.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="150.97" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/DefaultExternalResourceArtifactResolver:::artifactExists (2 samples, 0.07%)</title><rect x="933.0" y="913" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="936.02" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (2 samples, 0.07%)</title><rect x="372.7" y="1041" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="375.67" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_swap_cache_async (2 samples, 0.07%)</title><rect x="372.7" y="1089" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="375.67" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="1181.5" y="1953" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/CompositeDependencyGraphVisitor:::visitNode (2 samples, 0.07%)</title><rect x="860.8" y="1185" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="1081.1" y="1297" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1084.08" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1185.2" y="3169" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="3179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Ctype:::isSatisfiedBy (2 samples, 0.07%)</title><rect x="678.1" y="689" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="681.06" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1172.2" y="1777" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver:::listVersionsForAllPatterns (38 samples, 1.30%)</title><rect x="809.6" y="785" width="15.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="812.58" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (16 samples, 0.55%)</title><rect x="157.7" y="3857" width="6.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="160.65" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/AbstractBroadcastDispatch:::dispatch (8 samples, 0.27%)</title><rect x="1031.9" y="1313" width="3.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::digit (2 samples, 0.07%)</title><rect x="196.0" y="1233" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="198.98" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (23 samples, 0.79%)</title><rect x="1146.4" y="1601" width="9.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arrayof_jint_fill (3 samples, 0.10%)</title><rect x="592.5" y="705" width="1.2" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="595.54" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeLo (72 samples, 2.46%)</title><rect x="409.0" y="1377" width="29.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="411.98" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lj..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (2 samples, 0.07%)</title><rect x="1175.9" y="289" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1178.88" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (2 samples, 0.07%)</title><rect x="1145.2" y="1393" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1148.22" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/protobuf/CodedInputStream:::readMessage (2 samples, 0.07%)</title><rect x="1175.9" y="481" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.88" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/HTMLScanner$ContentScanner:::scanAttribute (5 samples, 0.17%)</title><rect x="1008.1" y="577" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1011.06" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/Iterators$7:::computeNext (5 samples, 0.17%)</title><rect x="847.5" y="1089" width="2.0" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="850.50" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performRawGet (3 samples, 0.10%)</title><rect x="813.2" y="625" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="816.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (3 samples, 0.10%)</title><rect x="790.6" y="737" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="793.62" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::sort (2 samples, 0.07%)</title><rect x="1050.0" y="1441" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1053.01" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (3 samples, 0.10%)</title><rect x="1156.1" y="1793" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (3 samples, 0.10%)</title><rect x="311.0" y="1137" width="1.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="313.95" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (15 samples, 0.51%)</title><rect x="1165.0" y="2529" width="6.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (7 samples, 0.24%)</title><rect x="905.6" y="801" width="2.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="908.59" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fstatat (4 samples, 0.14%)</title><rect x="1159.7" y="1345" width="1.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1162.74" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::longRunningOperation (38 samples, 1.30%)</title><rect x="809.6" y="929" width="15.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="812.58" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (3 samples, 0.10%)</title><rect x="97.9" y="3713" width="1.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/InvokerHelper:::invokeMethod (2 samples, 0.07%)</title><rect x="1048.4" y="1505" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/client/CloseableHttpClient:::execute (3 samples, 0.10%)</title><rect x="813.2" y="561" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="816.21" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_file_read_iter (6 samples, 0.21%)</title><rect x="148.0" y="3761" width="2.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="150.97" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="957.6" y="769" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="960.63" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::sort (2 samples, 0.07%)</title><rect x="857.6" y="993" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="860.58" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$SingletonService:::prepare (2 samples, 0.07%)</title><rect x="166.9" y="1633" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor:::processRule (7 samples, 0.24%)</title><rect x="511.0" y="977" width="2.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="514.05" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (12 samples, 0.41%)</title><rect x="887.4" y="769" width="4.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="890.44" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (38 samples, 1.30%)</title><rect x="568.3" y="705" width="15.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="571.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::findBestMatch (23 samples, 0.79%)</title><rect x="931.0" y="1089" width="9.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="934.01" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/component/external/model/IvyDependencyMetadata:::findMatches (2 samples, 0.07%)</title><rect x="505.0" y="1153" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="507.99" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3665" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (8 samples, 0.27%)</title><rect x="1131.9" y="849" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1134.91" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (4 samples, 0.14%)</title><rect x="1031.9" y="1217" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (4 samples, 0.14%)</title><rect x="1049.6" y="1665" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1052.61" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionResolveState:::getMetaData (2 samples, 0.07%)</title><rect x="1027.4" y="1041" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::resolve (132 samples, 4.51%)</title><rect x="1089.5" y="1121" width="53.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (3 samples, 0.10%)</title><rect x="152.0" y="3537" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="855.2" y="881" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap$LinkedKeyIterator:::next (2 samples, 0.07%)</title><rect x="497.7" y="1169" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="500.73" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3361" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 0.89%)</title><rect x="1173.5" y="2209" width="10.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (2 samples, 0.07%)</title><rect x="999.6" y="337" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>WatcherThread::run() (2 samples, 0.07%)</title><rect x="15.6" y="3889" width="0.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="18.65" y="3899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (32 samples, 1.09%)</title><rect x="226.6" y="1169" width="12.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="229.64" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (5 samples, 0.17%)</title><rect x="1076.6" y="1345" width="2.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1079.64" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1697" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (24 samples, 0.82%)</title><rect x="1035.1" y="1489" width="9.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (6 samples, 0.21%)</title><rect x="983.4" y="865" width="2.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="986.45" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_dispatch_cmd (2 samples, 0.07%)</title><rect x="1186.0" y="3649" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/listener/ClosureBackedMethodInvocationDispatch:::dispatch (3 samples, 0.10%)</title><rect x="1156.1" y="1729" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (2 samples, 0.07%)</title><rect x="794.6" y="977" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="797.65" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/DefaultResolvedArtifact:::getFile (15 samples, 0.51%)</title><rect x="1157.7" y="2017" width="6.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1160.73" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1168.2" y="2017" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (5 samples, 0.17%)</title><rect x="887.4" y="737" width="2.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="890.44" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (2 samples, 0.07%)</title><rect x="987.5" y="753" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="990.48" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="786.2" y="689" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="789.18" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/AbstractCallSite:::callGetProperty (2 samples, 0.07%)</title><rect x="1032.7" y="1121" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1035.67" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (4 samples, 0.14%)</title><rect x="972.2" y="737" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/security/AccessController:::doPrivileged (2 samples, 0.07%)</title><rect x="999.6" y="369" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke(instanceKlassHandle,methodHandle,Handle,bool,objArrayHandle,BasicType,objArrayHandle,bool,Thread*) (2 samples, 0.07%)</title><rect x="166.9" y="2049" width="0.8" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/protobuf/CodedInputStream:::readMessage (2 samples, 0.07%)</title><rect x="1182.3" y="1441" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/result/DefaultResolutionResult:::getRoot (2 samples, 0.07%)</title><rect x="859.6" y="929" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="862.60" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1168.2" y="2065" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (9 samples, 0.31%)</title><rect x="1173.9" y="1777" width="3.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1172.2" y="2241" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="1178.7" y="1217" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (2 samples, 0.07%)</title><rect x="97.9" y="3585" width="0.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1170.2" y="2385" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/typehandling/DefaultTypeTransformation:::castToBoolean (2 samples, 0.07%)</title><rect x="988.7" y="625" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (2 samples, 0.07%)</title><rect x="481.6" y="1601" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="484.60" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainDependencyToComponentIdResolver:::resolve (122 samples, 4.17%)</title><rect x="863.6" y="1137" width="49.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="866.63" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="10.0" y="3793" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_finish_plug (2 samples, 0.07%)</title><rect x="131.0" y="3617" width="0.8" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList$SubList$1:::hasNext (3 samples, 0.10%)</title><rect x="185.9" y="1313" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="188.89" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeyIterator:::next (2 samples, 0.07%)</title><rect x="943.1" y="1009" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1173.9" y="1569" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (3 samples, 0.10%)</title><rect x="821.3" y="385" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="824.28" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::sort (2 samples, 0.07%)</title><rect x="857.6" y="1009" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="860.58" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (14 samples, 0.48%)</title><rect x="1106.9" y="817" width="5.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1109.90" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_file_read_iter (2 samples, 0.07%)</title><rect x="165.3" y="3809" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="168.32" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,524 samples, 86.29%)</title><rect x="166.9" y="2993" width="1018.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="1125.9" y="801" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1128.86" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository$LocateInCacheRepositoryAccess:::listModuleVersionsFromCache (2 samples, 0.07%)</title><rect x="808.0" y="961" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="810.96" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1249" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/Closure:::getProperty (2 samples, 0.07%)</title><rect x="166.9" y="2273" width="0.8" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (9 samples, 0.31%)</title><rect x="1059.7" y="1297" width="3.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1062.70" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (2 samples, 0.07%)</title><rect x="909.6" y="785" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="912.62" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (7 samples, 0.24%)</title><rect x="1048.4" y="1841" width="2.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Matcher::match() (5 samples, 0.17%)</title><rect x="28.6" y="3777" width="2.0" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="31.56" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/client/InternalHttpClient:::doExecute (2 samples, 0.07%)</title><rect x="1002.4" y="577" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1005.41" y="587.5" font-size="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-16622.map] (3 samples, 0.10%)</title><rect x="166.9" y="2705" width="1.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (7 samples, 0.24%)</title><rect x="17.3" y="3905" width="2.8" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="402.9" y="1345" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="405.93" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/InvokerHelper:::getProperty (2 samples, 0.07%)</title><rect x="166.9" y="2257" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (5 samples, 0.17%)</title><rect x="946.3" y="785" width="2.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="949.34" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="17.3" y="3297" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainDependencyToComponentIdResolver:::resolve (17 samples, 0.58%)</title><rect x="1147.6" y="1169" width="6.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (3 samples, 0.10%)</title><rect x="1039.9" y="897" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1042.93" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lookup_slow (2 samples, 0.07%)</title><rect x="147.2" y="3697" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (2 samples, 0.07%)</title><rect x="1172.2" y="1681" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3217" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::sort (691 samples, 23.62%)</title><rect x="514.3" y="977" width="278.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="517.27" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/ArrayList:::sort</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$DefaultLookupContext$4:::apply (2 samples, 0.07%)</title><rect x="166.9" y="1873" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1165.4" y="2321" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1168.39" y="2331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (2 samples, 0.07%)</title><rect x="97.9" y="3521" width="0.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1178.7" y="1329" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (4 samples, 0.14%)</title><rect x="1031.9" y="1233" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (30 samples, 1.03%)</title><rect x="886.6" y="881" width="12.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="889.63" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::sort (110 samples, 3.76%)</title><rect x="943.9" y="1009" width="44.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="946.91" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/SubstituteRule$apply$$inlined$action$1:::execute (4 samples, 0.14%)</title><rect x="837.4" y="1121" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="840.41" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1172.2" y="2273" width="1.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1173.9" y="1409" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (23 samples, 0.79%)</title><rect x="1146.4" y="1473" width="9.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (3 samples, 0.10%)</title><rect x="1048.4" y="1633" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (3 samples, 0.10%)</title><rect x="821.3" y="417" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="824.28" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/module/kotlin/KotlinNamesAnnotationIntrospector:::findImplicitPropertyName (5 samples, 0.17%)</title><rect x="1175.1" y="1665" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1170.2" y="2369" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (3 samples, 0.10%)</title><rect x="318.6" y="1265" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="321.62" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/AlignRule:::ruleMatches (2 samples, 0.07%)</title><rect x="477.6" y="1537" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="480.56" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (14 samples, 0.48%)</title><rect x="1106.9" y="769" width="5.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1109.90" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (4 samples, 0.14%)</title><rect x="1081.1" y="1361" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1084.08" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/security/AccessController:::doPrivileged (2 samples, 0.07%)</title><rect x="999.6" y="241" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::iterate_all_blocks(bool) (2 samples, 0.07%)</title><rect x="12.8" y="3697" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="15.82" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_dispatch_cmd (3 samples, 0.10%)</title><rect x="159.7" y="3537" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="162.67" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IR::IR(Compilation*,ciMethod*,int) (2 samples, 0.07%)</title><rect x="12.8" y="3745" width="0.8" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="15.82" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/BaseModuleComponentRepositoryAccess:::resolveArtifact (13 samples, 0.44%)</title><rect x="1158.5" y="1681" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1,396 samples, 47.73%)</title><rect x="484.4" y="1681" width="563.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (18 samples, 0.62%)</title><rect x="770.8" y="865" width="7.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="773.85" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1178.3" y="1617" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (2 samples, 0.07%)</title><rect x="311.4" y="993" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="314.35" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (9 samples, 0.31%)</title><rect x="1166.6" y="2369" width="3.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1169.60" y="2379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Start:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="1097.2" y="705" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1100.21" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/misc/URLClassPath:::findResource (2 samples, 0.07%)</title><rect x="999.6" y="145" width="0.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (3 samples, 0.10%)</title><rect x="917.3" y="1153" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$DependencyToComponentIdResolverChain:::resolve (16 samples, 0.55%)</title><rect x="1036.3" y="1185" width="6.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1039.30" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (3 samples, 0.10%)</title><rect x="159.7" y="3569" width="1.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="162.67" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (6 samples, 0.21%)</title><rect x="1186.8" y="3809" width="2.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1031.9" y="1297" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::parseLong (5 samples, 0.17%)</title><rect x="524.8" y="785" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="527.76" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_newstat (16 samples, 0.55%)</title><rect x="157.7" y="3873" width="6.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="160.65" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (11 samples, 0.38%)</title><rect x="386.4" y="1265" width="4.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="389.39" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapin_readahead (2 samples, 0.07%)</title><rect x="1124.2" y="625" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1127.24" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/RegularImmutableMap:::get (2 samples, 0.07%)</title><rect x="866.5" y="801" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="869.46" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1031.9" y="1153" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (8 samples, 0.27%)</title><rect x="1031.9" y="1393" width="3.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (2 samples, 0.07%)</title><rect x="1120.6" y="673" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1123.61" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (4 samples, 0.14%)</title><rect x="444.1" y="1153" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="447.08" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ResolveState:::getSelector (3 samples, 0.10%)</title><rect x="927.8" y="1201" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="930.78" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (3 samples, 0.10%)</title><rect x="1011.3" y="321" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (14 samples, 0.48%)</title><rect x="1158.1" y="1969" width="5.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.13" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="1072.2" y="1217" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1075.20" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (269 samples, 9.20%)</title><rect x="922.1" y="1409" width="108.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (25 samples, 0.85%)</title><rect x="867.7" y="785" width="10.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="870.67" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::candidates (23 samples, 0.79%)</title><rect x="797.9" y="1041" width="9.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="800.88" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_flush_plug_list (5 samples, 0.17%)</title><rect x="148.0" y="3665" width="2.0" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="150.97" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/InvokerHelper:::invokePojoMethod (2 samples, 0.07%)</title><rect x="988.7" y="593" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="603.5" font-size="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_recv (3 samples, 0.10%)</title><rect x="1011.3" y="545" width="1.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="999.6" y="449" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::compute_oop_map(IntervalWalker*,LIR_Op*,CodeEmitInfo*,bool) (3 samples, 0.10%)</title><rect x="125.8" y="3697" width="1.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="128.78" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match0 (4 samples, 0.14%)</title><rect x="204.4" y="1185" width="1.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="207.45" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performRawGet (2 samples, 0.07%)</title><rect x="824.1" y="641" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="827.10" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/AbstractBroadcastDispatch:::dispatch (31 samples, 1.06%)</title><rect x="1172.2" y="2593" width="12.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1156.5" y="1297" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (2 samples, 0.07%)</title><rect x="1125.9" y="785" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1128.86" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_lookupat (2 samples, 0.07%)</title><rect x="1163.0" y="1425" width="0.8" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1165.97" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (3 samples, 0.10%)</title><rect x="164.1" y="3841" width="1.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="167.11" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (150 samples, 5.13%)</title><rect x="1085.5" y="1505" width="60.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder:::traverseGraph (899 samples, 30.74%)</title><rect x="492.1" y="1217" width="362.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="495.09" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivyservice/res..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (272 samples, 9.30%)</title><rect x="922.1" y="1425" width="109.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 0.89%)</title><rect x="1173.5" y="2225" width="10.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (7 samples, 0.24%)</title><rect x="767.6" y="737" width="2.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="770.62" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (3 samples, 0.10%)</title><rect x="1011.3" y="337" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::iterate_all_blocks(bool) (2 samples, 0.07%)</title><rect x="114.9" y="3537" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.89" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser$DefaultVersion:::&lt;init&gt; (6 samples, 0.21%)</title><rect x="313.0" y="1297" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="315.97" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (3 samples, 0.10%)</title><rect x="311.0" y="1217" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="313.95" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (22 samples, 0.75%)</title><rect x="967.7" y="897" width="8.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="970.72" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeForceCollapse (2 samples, 0.07%)</title><rect x="1153.3" y="961" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1156.29" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (4 samples, 0.14%)</title><rect x="781.3" y="753" width="1.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="784.34" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (4 samples, 0.14%)</title><rect x="1110.9" y="737" width="1.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1113.93" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/GeneratedMethodAccessor75:::invoke (2 samples, 0.07%)</title><rect x="988.7" y="673" width="0.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="855.2" y="945" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::useCache (13 samples, 0.44%)</title><rect x="1158.5" y="1841" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3281" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (782 samples, 26.74%)</title><rect x="168.5" y="1809" width="315.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/cache/internal/DefaultPersiste..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (4 samples, 0.14%)</title><rect x="1127.5" y="817" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1130.47" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/metaobject/BeanDynamicObject$MetaClassAdapter:::getProperty (2 samples, 0.07%)</title><rect x="166.9" y="2193" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::attachToTargetConfigurations (3 samples, 0.10%)</title><rect x="1025.8" y="1105" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1028.81" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$OwnServices:::getService (2 samples, 0.07%)</title><rect x="166.9" y="1665" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.07%)</title><rect x="1120.6" y="689" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1123.61" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (4 samples, 0.14%)</title><rect x="1127.5" y="785" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1130.47" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/CharacterData:::of (2 samples, 0.07%)</title><rect x="525.2" y="737" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="528.17" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::reset (4 samples, 0.14%)</title><rect x="876.1" y="721" width="1.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="879.14" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (3 samples, 0.10%)</title><rect x="434.0" y="1153" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="436.99" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__release_sock (3 samples, 0.10%)</title><rect x="1011.3" y="417" width="1.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$ActionInvocationHandler:::dispatch (28 samples, 0.96%)</title><rect x="1173.5" y="2513" width="11.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1156.5" y="1457" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/BufferedInputStream:::read (2 samples, 0.07%)</title><rect x="1161.8" y="1297" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1164.76" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,181 samples, 74.56%)</title><rect x="168.5" y="1873" width="879.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DefaultResolutionResultBuilder:::visitOutgoingEdges (2 samples, 0.07%)</title><rect x="1034.3" y="785" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1037.28" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/util/CollectionUtils:::toMutableList (3 samples, 0.10%)</title><rect x="793.0" y="993" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="796.04" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (2 samples, 0.07%)</title><rect x="408.2" y="1201" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="411.17" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1168.2" y="2113" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="2123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (6 samples, 0.21%)</title><rect x="103.2" y="3697" width="2.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.19" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matcher (27 samples, 0.92%)</title><rect x="584.5" y="753" width="10.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="587.47" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (140 samples, 4.79%)</title><rect x="860.8" y="1393" width="56.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (6 samples, 0.21%)</title><rect x="976.6" y="881" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="979.59" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::sort (2 samples, 0.07%)</title><rect x="1050.0" y="1457" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1053.01" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (76 samples, 2.60%)</title><rect x="211.7" y="1217" width="30.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="214.71" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lj..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1180.3" y="1777" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.32" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (2 samples, 0.07%)</title><rect x="1138.0" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1140.96" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (2 samples, 0.07%)</title><rect x="899.1" y="785" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="902.14" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="858.4" y="865" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$DefaultLookupContext:::find (2 samples, 0.07%)</title><rect x="166.9" y="1601" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="17.3" y="3377" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate(JVMState*) (2 samples, 0.07%)</title><rect x="104.0" y="3313" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="107.00" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (2 samples, 0.07%)</title><rect x="447.7" y="1281" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="450.71" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (8 samples, 0.27%)</title><rect x="1036.7" y="945" width="3.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeHi (4 samples, 0.14%)</title><rect x="986.7" y="929" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="989.68" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/ModuleExclusions:::intersect (2 samples, 0.07%)</title><rect x="493.7" y="1153" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="496.70" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (2 samples, 0.07%)</title><rect x="430.0" y="1185" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="432.96" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/CompositeDependencyArtifactsVisitor:::visitArtifacts (2 samples, 0.07%)</title><rect x="922.5" y="1201" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="925.53" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (5 samples, 0.17%)</title><rect x="371.5" y="1137" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="374.46" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeForceCollapse (26 samples, 0.89%)</title><rect x="438.0" y="1409" width="10.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="441.03" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_main_inner() (2,526 samples, 86.36%)</title><rect x="166.9" y="3873" width="1019.1" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::thread_main_inner()</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arrayof_jint_fill (2 samples, 0.07%)</title><rect x="525.2" y="721" width="0.8" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="528.17" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (5 samples, 0.17%)</title><rect x="765.2" y="737" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="768.20" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_field(bool&amp;) (2 samples, 0.07%)</title><rect x="26.1" y="3649" width="0.8" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="29.14" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::binarySort (334 samples, 11.42%)</title><rect x="182.3" y="1409" width="134.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="185.26" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/TimSor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="855.2" y="1121" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (3 samples, 0.10%)</title><rect x="1011.3" y="465" width="1.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ext4_get_inode_loc (2 samples, 0.07%)</title><rect x="166.1" y="3697" width="0.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (11 samples, 0.38%)</title><rect x="999.2" y="753" width="4.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.18" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (8 samples, 0.27%)</title><rect x="432.4" y="1265" width="3.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="435.38" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (2 samples, 0.07%)</title><rect x="160.9" y="3553" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="163.88" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (3 samples, 0.10%)</title><rect x="1137.6" y="817" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1140.56" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="917.3" y="1105" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (30 samples, 1.03%)</title><rect x="1089.5" y="833" width="12.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (2 samples, 0.07%)</title><rect x="1135.1" y="721" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1137.6" y="769" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1140.56" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (3 samples, 0.10%)</title><rect x="97.9" y="3681" width="1.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.07%)</title><rect x="1023.8" y="1201" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1026.79" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (175 samples, 5.98%)</title><rect x="1085.5" y="1841" width="70.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse(JVMState*,ciMethod*,float) (3 samples, 0.10%)</title><rect x="103.6" y="3393" width="1.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/AbstractBroadcastDispatch:::dispatch (7 samples, 0.24%)</title><rect x="1048.4" y="1809" width="2.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap$LinkedKeyIterator:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="459.0" y="1473" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="462.01" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (2 samples, 0.07%)</title><rect x="166.9" y="2017" width="0.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::findBestMatch (24 samples, 0.82%)</title><rect x="930.6" y="1105" width="9.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="933.60" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (18 samples, 0.62%)</title><rect x="1165.0" y="2625" width="7.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/AbstractExternalResource:::withContent (3 samples, 0.10%)</title><rect x="812.0" y="593" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 0.89%)</title><rect x="1173.5" y="2241" width="10.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIterGVN::add_users_to_worklist(Node*) (2 samples, 0.07%)</title><rect x="95.9" y="3761" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="98.93" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (280 samples, 9.57%)</title><rect x="922.1" y="1553" width="113.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (7 samples, 0.24%)</title><rect x="905.6" y="849" width="2.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="908.59" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="855.2" y="849" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1156.5" y="1281" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/BaseModuleComponentRepositoryAccess:::resolveComponentMetaData (3 samples, 0.10%)</title><rect x="992.7" y="993" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="995.73" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="812.0" y="465" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (2 samples, 0.07%)</title><rect x="1156.5" y="1489" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (2 samples, 0.07%)</title><rect x="317.8" y="1281" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="320.81" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="833.0" y="945" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="835.97" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::newCapacity (2 samples, 0.07%)</title><rect x="934.2" y="897" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/storage/LockBasedStorageManager$LockBasedLazyValue:::invoke (2 samples, 0.07%)</title><rect x="1177.5" y="1617" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,467 samples, 84.34%)</title><rect x="168.5" y="2465" width="995.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::family (3 samples, 0.10%)</title><rect x="1178.7" y="1121" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,524 samples, 86.29%)</title><rect x="166.9" y="3121" width="1018.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConnectionGraph::add_java_object_edges(JavaObjectNode*,bool) (34 samples, 1.16%)</title><rect x="56.8" y="3729" width="13.7" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="59.80" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (5 samples, 0.17%)</title><rect x="820.5" y="465" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="823.47" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_recvfrom (4 samples, 0.14%)</title><rect x="153.6" y="3841" width="1.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="156.62" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/databind/introspect/AnnotationIntrospectorPair:::findImplicitPropertyName (5 samples, 0.17%)</title><rect x="1175.1" y="1681" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="407.8" y="1329" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="410.77" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (2 samples, 0.07%)</title><rect x="1032.7" y="1073" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1035.67" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::isRejectedComponent (2 samples, 0.07%)</title><rect x="177.0" y="1489" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="180.02" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataStore:::getModuleDescriptor (2 samples, 0.07%)</title><rect x="989.5" y="897" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="992.50" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/memcache/InMemoryCachedModuleComponentRepository$CachedAccess:::resolveComponentMetaData (2 samples, 0.07%)</title><rect x="1027.4" y="865" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,468 samples, 84.38%)</title><rect x="168.5" y="2609" width="995.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (189 samples, 6.46%)</title><rect x="519.1" y="833" width="76.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="522.11" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gra..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::candidates (3 samples, 0.10%)</title><rect x="993.9" y="1073" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (927 samples, 31.69%)</title><rect x="486.8" y="1521" width="374.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="489.84" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (3 samples, 0.10%)</title><rect x="774.5" y="641" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="777.48" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionResolver:::resolve (16 samples, 0.55%)</title><rect x="1036.3" y="1201" width="6.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1039.30" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/dgm$1044:::doMethodInvoke (2 samples, 0.07%)</title><rect x="988.7" y="545" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3249" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionResolveState:::resolve (2 samples, 0.07%)</title><rect x="177.0" y="1633" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="180.02" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister$1:::listAll (23 samples, 0.79%)</title><rect x="815.6" y="737" width="9.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="818.63" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BnM:::optimize (2 samples, 0.07%)</title><rect x="559.9" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="562.86" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (2 samples, 0.07%)</title><rect x="899.1" y="801" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="902.14" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1165.4" y="2305" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1168.39" y="2315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::process_nmethod(nmethod*) (2 samples, 0.07%)</title><rect x="110.9" y="3793" width="0.8" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="113.85" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (24 samples, 0.82%)</title><rect x="720.8" y="817" width="9.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="723.82" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="859.6" y="833" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="862.60" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::compiler_thread_loop() (5 samples, 0.17%)</title><rect x="12.8" y="3857" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="15.82" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/Closure:::call (2 samples, 0.07%)</title><rect x="988.7" y="785" width="0.8" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor:::apply (8 samples, 0.27%)</title><rect x="500.6" y="977" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/AlignRules$ApplyAlignsAction:::execute (9 samples, 0.31%)</title><rect x="839.0" y="1073" width="3.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="842.03" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performHttpRequest (3 samples, 0.10%)</title><rect x="1016.9" y="625" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1019.93" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap:::get (4 samples, 0.14%)</title><rect x="804.7" y="1025" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="807.74" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/AbstractCallSite:::call (2 samples, 0.07%)</title><rect x="1050.0" y="1569" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1053.01" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::valueOf (5 samples, 0.17%)</title><rect x="329.1" y="1265" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="332.10" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (2 samples, 0.07%)</title><rect x="988.7" y="561" width="0.8" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/protobuf/CodedInputStream:::readMessage (2 samples, 0.07%)</title><rect x="1182.3" y="1361" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (9 samples, 0.31%)</title><rect x="1148.0" y="929" width="3.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1151.04" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/component/external/model/IvyDependencyMetadata:::selectConfigurations (2 samples, 0.07%)</title><rect x="940.7" y="1201" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="943.69" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.07%)</title><rect x="1186.0" y="3873" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3883.5" font-size="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 (6 samples, 0.21%)</title><rect x="1186.8" y="3921" width="2.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$HashIterator:::nextNode (3 samples, 0.10%)</title><rect x="509.8" y="961" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="512.84" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/CompositeDependencyGraphVisitor:::visitSelector (3 samples, 0.10%)</title><rect x="490.9" y="1201" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="493.88" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="166.9" y="2673" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (7 samples, 0.24%)</title><rect x="902.8" y="785" width="2.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="905.77" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="999.6" y="481" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (4 samples, 0.14%)</title><rect x="410.2" y="1201" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="413.19" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (2 samples, 0.07%)</title><rect x="1023.8" y="1169" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1026.79" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="974.6" y="833" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="977.57" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Start:::&lt;init&gt; (11 samples, 0.38%)</title><rect x="220.2" y="1185" width="4.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="223.18" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1178.7" y="1505" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (12 samples, 0.41%)</title><rect x="887.4" y="785" width="4.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="890.44" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor:::processRules (2 samples, 0.07%)</title><rect x="180.6" y="1473" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="183.65" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver:::listVersionsForAllPatterns (2 samples, 0.07%)</title><rect x="1018.5" y="945" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1021.55" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (18 samples, 0.62%)</title><rect x="770.8" y="849" width="7.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="773.85" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractCollection:::toArray (6 samples, 0.21%)</title><rect x="313.0" y="1281" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="315.97" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess:::longRunningOperation (38 samples, 1.30%)</title><rect x="809.6" y="881" width="15.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="812.58" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1201" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/AbstractIterator:::hasNext (3 samples, 0.10%)</title><rect x="479.6" y="1601" width="1.2" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="482.58" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (4 samples, 0.14%)</title><rect x="977.0" y="769" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="979.99" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (926 samples, 31.66%)</title><rect x="487.2" y="1441" width="373.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="490.24" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (3 samples, 0.10%)</title><rect x="118.1" y="3553" width="1.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="121.12" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer:::newElement (11 samples, 0.38%)</title><rect x="846.7" y="1185" width="4.4" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="849.69" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::attachToTargetConfigurations (2 samples, 0.07%)</title><rect x="1087.9" y="1201" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1090.94" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister$1:::listAll (5 samples, 0.17%)</title><rect x="996.4" y="753" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="763.5" font-size="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-16622.map] (14 samples, 0.48%)</title><rect x="934.2" y="993" width="5.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ResolveState:::getModule (2 samples, 0.07%)</title><rect x="498.5" y="1121" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="501.54" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (2 samples, 0.07%)</title><rect x="1186.0" y="3665" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/modulecache/DefaultModuleMetaDataCache:::getCachedModuleDescriptor (10 samples, 0.34%)</title><rect x="935.4" y="961" width="4.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="938.44" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (912 samples, 31.18%)</title><rect x="487.2" y="1409" width="368.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="490.24" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (2 samples, 0.07%)</title><rect x="810.8" y="673" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (8 samples, 0.27%)</title><rect x="1173.9" y="1745" width="3.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder$RootFactory:::deserialize (2 samples, 0.07%)</title><rect x="855.2" y="769" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::charCount (2 samples, 0.07%)</title><rect x="215.3" y="1185" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="218.34" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess:::useCache (13 samples, 0.44%)</title><rect x="1158.5" y="1809" width="5.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (2 samples, 0.07%)</title><rect x="904.8" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="907.78" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ServiceLoader$LazyIterator:::hasNextService (2 samples, 0.07%)</title><rect x="1000.8" y="353" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1003.80" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (18 samples, 0.62%)</title><rect x="950.4" y="753" width="7.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="953.37" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (2 samples, 0.07%)</title><rect x="1114.2" y="785" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1117.16" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (2 samples, 0.07%)</title><rect x="152.4" y="3505" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="155.41" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="917.7" y="785" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister$1:::listRevisionToken (2 samples, 0.07%)</title><rect x="1018.5" y="913" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1021.55" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (10 samples, 0.34%)</title><rect x="856.8" y="1201" width="4.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="859.78" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/zip/ZipFile:::getEntry (2 samples, 0.07%)</title><rect x="999.6" y="65" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/CharacterDataLatin1:::digit (2 samples, 0.07%)</title><rect x="1053.2" y="1217" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1056.24" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1178.3" y="1697" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (2 samples, 0.07%)</title><rect x="315.8" y="1313" width="0.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="318.79" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual(JavaValue*,Handle,KlassHandle,Symbol*,Symbol*,Thread*) (6 samples, 0.21%)</title><rect x="1186.8" y="3841" width="2.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister$1:::listRevisionToken (36 samples, 1.23%)</title><rect x="1004.0" y="785" width="14.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1007.02" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (2 samples, 0.07%)</title><rect x="447.7" y="1345" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="450.71" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::add (12 samples, 0.41%)</title><rect x="467.9" y="1409" width="4.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="470.88" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (2 samples, 0.07%)</title><rect x="908.8" y="721" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="911.82" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="855.2" y="929" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_swap_page (5 samples, 0.17%)</title><rect x="371.5" y="1121" width="2.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="374.46" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="743.8" y="673" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="746.82" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::valueOf (2 samples, 0.07%)</title><rect x="755.1" y="753" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="758.11" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transfer/DefaultExternalResourceConnector:::list (23 samples, 0.79%)</title><rect x="815.6" y="705" width="9.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="818.63" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (2 samples, 0.07%)</title><rect x="165.3" y="3873" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="168.32" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (150 samples, 5.13%)</title><rect x="1085.5" y="1473" width="60.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (3 samples, 0.10%)</title><rect x="435.6" y="1249" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="438.61" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (2 samples, 0.07%)</title><rect x="438.0" y="1265" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="441.03" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry(JavaThread*,Thread*) (2,526 samples, 86.36%)</title><rect x="166.9" y="3857" width="1019.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >thread_entry(JavaThread*,Thread*)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (2 samples, 0.07%)</title><rect x="1135.1" y="753" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::RemoveQEQuoting (6 samples, 0.21%)</title><rect x="356.9" y="1185" width="2.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (3 samples, 0.10%)</title><rect x="821.3" y="321" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="824.28" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1177.5" y="1425" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1171.0" y="2417" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1174.04" y="2427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler:::registerModule (4 samples, 0.14%)</title><rect x="479.6" y="1681" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="482.58" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="318.6" y="1281" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="321.62" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpResourceAccessor:::openResource (3 samples, 0.10%)</title><rect x="1002.4" y="705" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1005.41" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$GroupHead:::match (2 samples, 0.07%)</title><rect x="833.0" y="961" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="835.97" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (4 samples, 0.14%)</title><rect x="153.6" y="3825" width="1.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="156.62" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (60 samples, 2.05%)</title><rect x="288.4" y="1265" width="24.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="291.36" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/BaseModuleComponentRepositoryAccess:::resolveComponentMetaData (9 samples, 0.31%)</title><rect x="988.7" y="961" width="3.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,524 samples, 86.29%)</title><rect x="166.9" y="3201" width="1018.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/GetEffectivePojoPropertySite:::getProperty (3 samples, 0.10%)</title><rect x="855.2" y="1073" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="969.7" y="753" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="972.73" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1130.3" y="801" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1133.29" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (3 samples, 0.10%)</title><rect x="156.4" y="3857" width="1.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="159.44" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (4 samples, 0.14%)</title><rect x="429.2" y="1217" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="432.15" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (4 samples, 0.14%)</title><rect x="977.0" y="753" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="979.99" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (3 samples, 0.10%)</title><rect x="855.2" y="1041" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (4 samples, 0.14%)</title><rect x="442.5" y="1265" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="445.46" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (5 samples, 0.17%)</title><rect x="820.5" y="497" width="2.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="823.47" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1165.0" y="2417" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::iterate_bytecodes_for_block(int) (3 samples, 0.10%)</title><rect x="114.5" y="3601" width="1.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.49" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__read_swap_cache_async (2 samples, 0.07%)</title><rect x="372.7" y="1073" width="0.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="375.67" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (3 samples, 0.10%)</title><rect x="983.4" y="785" width="1.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="986.45" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Annotation$Argument$Value:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="1175.5" y="657" width="1.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1187.6" y="3601" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1190.58" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (3 samples, 0.10%)</title><rect x="73.3" y="3697" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="76.34" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (3 samples, 0.10%)</title><rect x="1117.8" y="737" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1120.79" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultPersistentDirectoryStore:::useCache (269 samples, 9.20%)</title><rect x="922.1" y="1361" width="108.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (129 samples, 4.41%)</title><rect x="198.8" y="1265" width="52.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="201.80" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/module/kotlin/KotlinNamesAnnotationIntrospector:::findImplicitPropertyName (2 samples, 0.07%)</title><rect x="1173.9" y="1585" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="1181.5" y="1985" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (3 samples, 0.10%)</title><rect x="964.5" y="785" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="967.49" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (4 samples, 0.14%)</title><rect x="1130.3" y="881" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1133.29" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (3 samples, 0.10%)</title><rect x="166.9" y="2785" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::resolve (192 samples, 6.56%)</title><rect x="943.1" y="1105" width="77.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gra..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/result/DefaultResolvedComponentResult:::addDependent (2 samples, 0.07%)</title><rect x="855.2" y="737" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciSignature::ciSignature(ciKlass*,constantPoolHandle,ciSymbol*) (2 samples, 0.07%)</title><rect x="117.3" y="3553" width="0.8" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="120.31" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (2 samples, 0.07%)</title><rect x="981.4" y="753" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="984.43" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::sort (122 samples, 4.17%)</title><rect x="1089.5" y="961" width="49.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,468 samples, 84.38%)</title><rect x="168.5" y="2593" width="995.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (24 samples, 0.82%)</title><rect x="1035.1" y="1457" width="9.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionResolver:::resolve (128 samples, 4.38%)</title><rect x="863.6" y="1169" width="51.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="866.63" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer:::registerConflict (3 samples, 0.10%)</title><rect x="915.7" y="1169" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="918.68" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (16 samples, 0.55%)</title><rect x="816.0" y="593" width="6.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="819.03" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (17 samples, 0.58%)</title><rect x="1094.4" y="737" width="6.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1097.39" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (3 samples, 0.10%)</title><rect x="402.9" y="1297" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="405.93" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::calculateTargetConfigurations (4 samples, 0.14%)</title><rect x="851.1" y="1057" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="854.13" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::resolveModuleRevisionId (206 samples, 7.04%)</title><rect x="941.9" y="1233" width="83.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="944.90" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$DefaultLookupContext$4:::apply (2 samples, 0.07%)</title><rect x="166.9" y="1569" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (3 samples, 0.10%)</title><rect x="1039.9" y="945" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1042.93" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (2 samples, 0.07%)</title><rect x="1145.2" y="1201" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1148.22" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (4 samples, 0.14%)</title><rect x="406.2" y="1345" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="409.16" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3745" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resolve/result/DefaultBuildableModuleVersionListingResolveResult:::listed (2 samples, 0.07%)</title><rect x="1142.0" y="977" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1144.99" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (3 samples, 0.10%)</title><rect x="1033.9" y="1041" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1036.88" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (3 samples, 0.10%)</title><rect x="783.0" y="785" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="785.95" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (2 samples, 0.07%)</title><rect x="746.2" y="769" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="749.24" y="779.5" font-size="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_recv (2 samples, 0.07%)</title><rect x="818.5" y="529" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::findLatestModule (733 samples, 25.06%)</title><rect x="180.2" y="1585" width="295.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="183.24" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivys..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (269 samples, 9.20%)</title><rect x="922.1" y="1265" width="108.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (3 samples, 0.10%)</title><rect x="917.3" y="1137" width="1.2" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/file/FileResourceConnector:::list (2 samples, 0.07%)</title><rect x="1018.5" y="881" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1021.55" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::&lt;init&gt; (25 samples, 0.85%)</title><rect x="585.3" y="737" width="10.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="588.28" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$2$1:::execute (8 samples, 0.27%)</title><rect x="1025.8" y="1153" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1028.81" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3649" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (140 samples, 4.79%)</title><rect x="321.8" y="1297" width="56.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="324.84" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (19 samples, 0.65%)</title><rect x="1173.5" y="1953" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (3 samples, 0.10%)</title><rect x="741.8" y="753" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="744.80" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="810.8" y="609" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="813.79" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/KClassImpl:::getDescriptor (4 samples, 0.14%)</title><rect x="1178.3" y="1681" width="1.6" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (782 samples, 26.74%)</title><rect x="168.5" y="1713" width="315.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,524 samples, 86.29%)</title><rect x="166.9" y="3169" width="1018.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (3 samples, 0.10%)</title><rect x="979.0" y="929" width="1.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="982.01" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ResolveState:::getRevision (2 samples, 0.07%)</title><rect x="1023.0" y="1201" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1025.98" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BmpCharProperty:::match (6 samples, 0.21%)</title><rect x="540.9" y="689" width="2.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="543.90" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::possibly_sweep() (17 samples, 0.58%)</title><rect x="133.0" y="3825" width="6.9" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="136.04" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.10%)</title><rect x="24.9" y="3921" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="27.93" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::add_dependent_nmethod(nmethod*) (2 samples, 0.07%)</title><rect x="131.0" y="3729" width="0.8" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="134.03" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (27 samples, 0.92%)</title><rect x="1173.5" y="2289" width="10.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (8 samples, 0.27%)</title><rect x="440.9" y="1313" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="443.85" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (2 samples, 0.07%)</title><rect x="899.9" y="817" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="902.94" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (2 samples, 0.07%)</title><rect x="934.2" y="737" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="937.23" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URLClassLoader$2:::run (2 samples, 0.07%)</title><rect x="999.6" y="177" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/rules/NoInputsRuleAction:::execute (3 samples, 0.10%)</title><rect x="502.6" y="929" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="505.57" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/protocol/ImmutableHttpProcessor:::process (2 samples, 0.07%)</title><rect x="997.6" y="513" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1000.57" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (2 samples, 0.07%)</title><rect x="907.2" y="657" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="910.20" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1156.5" y="1329" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (3 samples, 0.10%)</title><rect x="917.3" y="1169" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/cache/LocalCache:::getOrLoad (2 samples, 0.07%)</title><rect x="1171.0" y="2513" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1174.04" y="2523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/ScriptBytecodeAdapter:::invokeMethodN (2 samples, 0.07%)</title><rect x="1048.4" y="1521" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>walk_component (2 samples, 0.07%)</title><rect x="1023.8" y="1073" width="0.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1026.79" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (2 samples, 0.07%)</title><rect x="441.7" y="1153" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="444.66" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_recvfrom (3 samples, 0.10%)</title><rect x="164.1" y="3857" width="1.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="167.11" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (4 samples, 0.14%)</title><rect x="144.3" y="3793" width="1.7" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="147.34" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_lookupat (5 samples, 0.17%)</title><rect x="151.6" y="3777" width="2.0" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arrayof_jint_fill (2 samples, 0.07%)</title><rect x="197.2" y="1249" width="0.8" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="200.19" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swap_readpage (2 samples, 0.07%)</title><rect x="311.4" y="1105" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="314.35" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (6 samples, 0.21%)</title><rect x="409.8" y="1249" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="412.79" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaMethod:::doMethodInvoke (3 samples, 0.10%)</title><rect x="917.3" y="1185" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="920.29" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap:::afterNodeAccess (2 samples, 0.07%)</title><rect x="830.2" y="881" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="833.15" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeHi (21 samples, 0.72%)</title><rect x="439.2" y="1377" width="8.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="442.24" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionSelectorResolveState:::resolveModuleRevisionId (81 samples, 2.77%)</title><rect x="1052.0" y="1665" width="32.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1055.03" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="999.6" y="529" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeHi (5 samples, 0.17%)</title><rect x="1080.7" y="1377" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1083.67" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1173.9" y="1265" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (4 samples, 0.14%)</title><rect x="1049.6" y="1649" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1052.61" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,524 samples, 86.29%)</title><rect x="166.9" y="3057" width="1018.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (163 samples, 5.57%)</title><rect x="529.6" y="801" width="65.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="532.60" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3489" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_iget (8 samples, 0.27%)</title><rect x="158.5" y="3697" width="3.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="161.46" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (143 samples, 4.89%)</title><rect x="860.8" y="1505" width="57.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class$1:::parsePartialFrom (4 samples, 0.14%)</title><rect x="1175.1" y="1073" width="1.6" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/ApacheDirectoryListingParser:::parse (20 samples, 0.68%)</title><rect x="816.0" y="673" width="8.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="819.03" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (32 samples, 1.09%)</title><rect x="635.3" y="769" width="12.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="638.30" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (2 samples, 0.07%)</title><rect x="166.1" y="3825" width="0.8" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (2 samples, 0.07%)</title><rect x="821.7" y="257" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="824.68" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$DependencyEdge:::restart (3 samples, 0.10%)</title><rect x="1027.4" y="1089" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (2 samples, 0.07%)</title><rect x="166.9" y="2481" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (3 samples, 0.10%)</title><rect x="741.8" y="705" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="744.80" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (52 samples, 1.78%)</title><rect x="291.6" y="1249" width="21.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="294.59" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (5 samples, 0.17%)</title><rect x="428.7" y="1233" width="2.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="431.75" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::sort (113 samples, 3.86%)</title><rect x="864.8" y="945" width="45.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="867.84" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Annotation$Argument$Value$1:::parsePartialFrom (2 samples, 0.07%)</title><rect x="1175.9" y="449" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.88" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::sort (2 samples, 0.07%)</title><rect x="857.6" y="961" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="860.58" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (3 samples, 0.10%)</title><rect x="166.9" y="2849" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="917.7" y="817" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_finish_plug (2 samples, 0.07%)</title><rect x="371.9" y="1089" width="0.8" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="374.87" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::digit (4 samples, 0.14%)</title><rect x="326.3" y="1233" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="329.28" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1186.8" y="3681" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser$DefaultVersion:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="648.2" y="817" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="651.21" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="983.4" y="721" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="986.45" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="10.0" y="3761" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (18 samples, 0.62%)</title><rect x="1165.0" y="2673" width="7.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (12 samples, 0.41%)</title><rect x="755.9" y="753" width="4.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="758.92" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (11 samples, 0.38%)</title><rect x="901.2" y="865" width="4.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="904.15" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/PotentialConflictFactory$1:::withParticipatingModules (2 samples, 0.07%)</title><rect x="1154.9" y="1185" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1157.90" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (92 samples, 3.15%)</title><rect x="547.4" y="737" width="37.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="550.35" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (1,397 samples, 47.76%)</title><rect x="484.4" y="1761" width="563.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (2 samples, 0.07%)</title><rect x="1145.2" y="1297" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1148.22" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (2 samples, 0.07%)</title><rect x="882.2" y="769" width="0.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="885.19" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Factories$1:::create (140 samples, 4.79%)</title><rect x="860.8" y="1281" width="56.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1166.6" y="2289" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1169.60" y="2299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (2 samples, 0.07%)</title><rect x="147.2" y="3777" width="0.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_null(Symbol*,Handle,Handle,Thread*) (2 samples, 0.07%)</title><rect x="10.0" y="3633" width="0.8" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3169" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$DependencyToComponentIdResolverChain:::resolve (196 samples, 6.70%)</title><rect x="941.9" y="1185" width="79.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="944.90" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess:::longRunningOperation (55 samples, 1.88%)</title><rect x="996.4" y="929" width="22.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/ApacheDirectoryListingParser:::resolveURIs (2 samples, 0.07%)</title><rect x="823.3" y="657" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="826.29" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse(JVMState*,ciMethod*,float) (4 samples, 0.14%)</title><rect x="103.6" y="3489" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Branch:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="360.6" y="1169" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="363.57" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentMetaDataResolveState:::process (22 samples, 0.75%)</title><rect x="931.0" y="1057" width="8.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="934.01" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 0.85%)</title><rect x="1173.5" y="2097" width="10.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (2 samples, 0.07%)</title><rect x="166.9" y="2353" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (6 samples, 0.21%)</title><rect x="785.4" y="753" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="788.37" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::valueOf (2 samples, 0.07%)</title><rect x="440.9" y="1233" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="443.85" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver:::findLatestModule (132 samples, 4.51%)</title><rect x="1089.5" y="1089" width="53.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (4 samples, 0.14%)</title><rect x="1031.9" y="1249" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1034.86" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (280 samples, 9.57%)</title><rect x="922.1" y="1505" width="113.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (2 samples, 0.07%)</title><rect x="785.4" y="689" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="788.37" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode() (5 samples, 0.17%)</title><rect x="103.6" y="3633" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::isSupplementary (3 samples, 0.10%)</title><rect x="239.5" y="1185" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="242.55" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (305 samples, 10.43%)</title><rect x="922.1" y="1601" width="123.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__read_nocancel (6 samples, 0.21%)</title><rect x="148.0" y="3857" width="2.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="150.97" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="979.0" y="897" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="982.01" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="775.7" y="689" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="778.69" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (263 samples, 8.99%)</title><rect x="1051.2" y="1953" width="106.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1054.22" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (3 samples, 0.10%)</title><rect x="171.0" y="1617" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="173.96" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call() (4 samples, 0.14%)</title><rect x="103.6" y="3425" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="999.6" y="593" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (3 samples, 0.10%)</title><rect x="979.0" y="913" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="982.01" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/ReflectProperties$Val:::getValue (4 samples, 0.14%)</title><rect x="1175.1" y="1393" width="1.6" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/CompositeStoppable:::stop (2 samples, 0.07%)</title><rect x="1185.2" y="3073" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="3083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (2,526 samples, 86.36%)</title><rect x="166.9" y="3905" width="1019.1" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start(Thread*)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/client/CloseableHttpClient:::execute (2 samples, 0.07%)</title><rect x="1002.4" y="593" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1005.41" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/filters/NamespaceBinder:::bindNamespaces (3 samples, 0.10%)</title><rect x="1012.5" y="561" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1015.50" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (2 samples, 0.07%)</title><rect x="1156.5" y="1505" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke_method(oopDesc*,Handle,objArrayHandle,Thread*) (2,467 samples, 84.34%)</title><rect x="168.5" y="2193" width="995.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Reflection::invoke_method(oopDesc*,Handle,objArrayHandle,Thread*)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1172.2" y="2257" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/dispatch/ProxyDispatchAdapter$DispatchingInvocationHandler:::invoke (1,397 samples, 47.76%)</title><rect x="484.4" y="1857" width="563.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="487.42" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/dispatch/ProxyDispatchAdapter$DispatchingInvocationHandl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::sortLatestFirst (663 samples, 22.67%)</title><rect x="181.5" y="1505" width="267.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="184.45" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::valueOf (7 samples, 0.24%)</title><rect x="526.8" y="785" width="2.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="529.78" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConnectionGraph::compute_escape() (37 samples, 1.26%)</title><rect x="55.6" y="3761" width="14.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="58.59" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (2 samples, 0.07%)</title><rect x="155.2" y="3857" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="158.23" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/dispatch/ProxyDispatchAdapter$DispatchingInvocationHandler:::invoke (14 samples, 0.48%)</title><rect x="855.2" y="1409" width="5.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (3 samples, 0.10%)</title><rect x="776.9" y="753" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="779.90" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 0.58%)</title><rect x="1173.5" y="1921" width="6.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (2 samples, 0.07%)</title><rect x="146.4" y="3809" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionSelectorResolveState:::resolveModuleRevisionId (138 samples, 4.72%)</title><rect x="1088.7" y="1185" width="55.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1091.74" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="858.4" y="961" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/GetEffectivePojoPropertySite:::getProperty (2 samples, 0.07%)</title><rect x="1032.7" y="1105" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1035.67" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (6 samples, 0.21%)</title><rect x="976.6" y="865" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="979.59" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_lookup (10 samples, 0.34%)</title><rect x="157.7" y="3729" width="4.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="160.65" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="812.0" y="513" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="435.6" y="1233" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="438.61" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (5 samples, 0.17%)</title><rect x="745.4" y="801" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="748.43" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.07%)</title><rect x="146.4" y="3777" width="0.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeLo (2 samples, 0.07%)</title><rect x="447.7" y="1377" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="450.71" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (49 samples, 1.68%)</title><rect x="1165.0" y="2769" width="19.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (18 samples, 0.62%)</title><rect x="1094.0" y="753" width="7.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1096.99" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1281" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpResourceLister:::list (5 samples, 0.17%)</title><rect x="996.4" y="705" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (9 samples, 0.31%)</title><rect x="1173.9" y="1793" width="3.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="425.9" y="1233" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="428.92" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1165.0" y="2433" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1489" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptscsih_qcmd (2 samples, 0.07%)</title><rect x="1186.0" y="3617" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::append (2 samples, 0.07%)</title><rect x="988.7" y="897" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/HTMLScanner$ContentScanner:::scanStartElement (14 samples, 0.48%)</title><rect x="1008.1" y="593" width="5.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1011.06" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1182.3" y="1553" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (7 samples, 0.24%)</title><rect x="767.6" y="721" width="2.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="770.62" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::executeGetOrHead (3 samples, 0.10%)</title><rect x="1016.9" y="641" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1019.93" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/RegularImmutableMap:::get (5 samples, 0.17%)</title><rect x="522.7" y="801" width="2.1" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="525.75" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (336 samples, 11.49%)</title><rect x="517.1" y="865" width="135.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="520.10" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (4 samples, 0.14%)</title><rect x="406.2" y="1313" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="409.16" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (2 samples, 0.07%)</title><rect x="749.5" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="752.47" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::build__late(VectorSet&amp;,Node_List&amp;,Node_Stack&amp;) (41 samples, 1.40%)</title><rect x="76.6" y="3761" width="16.5" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="79.56" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::merge_multidefs() (2 samples, 0.07%)</title><rect x="43.9" y="3761" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="46.89" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (3 samples, 0.10%)</title><rect x="156.4" y="3809" width="1.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="159.44" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="10.0" y="3729" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (24 samples, 0.82%)</title><rect x="1035.1" y="1521" width="9.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1177.5" y="1537" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (3 samples, 0.10%)</title><rect x="311.0" y="1169" width="1.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="313.95" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="858.4" y="785" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="861.39" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ConfigurationNode:::restart (4 samples, 0.14%)</title><rect x="1027.4" y="1105" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/Sets$2:::isEmpty (3 samples, 0.10%)</title><rect x="479.6" y="1617" width="1.2" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="482.58" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver:::doListModuleVersions (55 samples, 1.88%)</title><rect x="996.4" y="833" width="22.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentMetaDataResolveState:::process (2 samples, 0.07%)</title><rect x="1027.4" y="897" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.42" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::put (16 samples, 0.55%)</title><rect x="450.9" y="1505" width="6.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="453.94" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="781.7" y="689" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="784.74" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1048.4" y="1585" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3777" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::hash (2 samples, 0.07%)</title><rect x="855.2" y="689" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (18 samples, 0.62%)</title><rect x="394.1" y="1249" width="7.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="397.05" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (10 samples, 0.34%)</title><rect x="856.8" y="1153" width="4.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="859.78" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (3 samples, 0.10%)</title><rect x="166.9" y="2945" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/btree/BTreePersistentIndexedCache$IndexBlock:::get (3 samples, 0.10%)</title><rect x="1161.4" y="1425" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1164.36" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="812.0" y="449" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::compile_method() (47 samples, 1.61%)</title><rect x="113.3" y="3793" width="18.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="116.28" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOfRange (3 samples, 0.10%)</title><rect x="1061.7" y="1265" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1064.71" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (8 samples, 0.27%)</title><rect x="1036.7" y="929" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1170.2" y="2417" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (17 samples, 0.58%)</title><rect x="150.8" y="3905" width="6.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="153.79" y="3915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (2 samples, 0.07%)</title><rect x="317.8" y="1249" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="320.81" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (2 samples, 0.07%)</title><rect x="283.9" y="1249" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="286.92" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.07%)</title><rect x="164.5" y="3697" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$DefaultLookupContext:::getServiceProvider (2 samples, 0.07%)</title><rect x="166.9" y="1905" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 0.89%)</title><rect x="1173.5" y="2193" width="10.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 0.85%)</title><rect x="1173.5" y="2049" width="10.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (2 samples, 0.07%)</title><rect x="447.7" y="1297" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="450.71" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (15 samples, 0.51%)</title><rect x="1165.0" y="2513" width="6.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1167.99" y="2523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (19 samples, 0.65%)</title><rect x="730.9" y="817" width="7.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="733.91" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (3 samples, 0.10%)</title><rect x="404.1" y="1217" width="1.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="407.14" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (910 samples, 31.11%)</title><rect x="487.6" y="1233" width="367.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="490.65" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (2 samples, 0.07%)</title><rect x="1153.3" y="881" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1156.29" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister$1:::listRevisionToken (5 samples, 0.17%)</title><rect x="996.4" y="769" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (2 samples, 0.07%)</title><rect x="999.6" y="353" width="0.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (4 samples, 0.14%)</title><rect x="1130.3" y="849" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1133.29" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (2 samples, 0.07%)</title><rect x="833.0" y="1089" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="835.97" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1000.8" y="401" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1003.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (4 samples, 0.14%)</title><rect x="1131.9" y="785" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1134.91" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (2 samples, 0.07%)</title><rect x="447.7" y="1329" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="450.71" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/DefaultCacheLockingManager:::longRunningOperation (38 samples, 1.30%)</title><rect x="809.6" y="945" width="15.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="812.58" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (3 samples, 0.10%)</title><rect x="412.2" y="1265" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="415.21" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/BaseModuleComponentRepositoryAccess:::resolveComponentMetaData (17 samples, 0.58%)</title><rect x="933.0" y="1009" width="6.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="936.02" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess$UnitOfWorkFileAccess:::writeFile (2 samples, 0.07%)</title><rect x="808.8" y="929" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="811.77" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke_method(oopDesc*,Handle,objArrayHandle,Thread*) (2 samples, 0.07%)</title><rect x="166.9" y="2065" width="0.8" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (3 samples, 0.10%)</title><rect x="1148.4" y="833" width="1.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1151.45" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (10 samples, 0.34%)</title><rect x="787.8" y="785" width="4.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="790.79" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (16 samples, 0.55%)</title><rect x="1173.5" y="1873" width="6.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::match (21 samples, 0.72%)</title><rect x="331.9" y="1217" width="8.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="334.93" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (6 samples, 0.21%)</title><rect x="1186.8" y="3793" width="2.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder:::traverseGraph (21 samples, 0.72%)</title><rect x="1035.5" y="1249" width="8.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1038.49" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (2 samples, 0.07%)</title><rect x="1029.0" y="1169" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1032.04" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopLeft (6 samples, 0.21%)</title><rect x="976.6" y="929" width="2.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="979.59" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$DependencyToComponentIdResolverChain:::resolve (122 samples, 4.17%)</title><rect x="863.6" y="1153" width="49.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="866.63" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 0.21%)</title><rect x="17.3" y="3393" width="2.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3403.5" font-size="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-16622.map] (2 samples, 0.07%)</title><rect x="992.7" y="977" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="995.73" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="911.6" y="1041" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="914.64" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvfrom (4 samples, 0.14%)</title><rect x="153.6" y="3857" width="1.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="156.62" y="3867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (2 samples, 0.07%)</title><rect x="154.4" y="3569" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="157.42" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer:::newElement (3 samples, 0.10%)</title><rect x="915.7" y="1185" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="918.68" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::loop() (6 samples, 0.21%)</title><rect x="20.9" y="3873" width="2.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="23.89" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/execchain/RetryExec:::execute (2 samples, 0.07%)</title><rect x="824.1" y="529" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="827.10" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (3 samples, 0.10%)</title><rect x="73.3" y="3729" width="1.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="76.34" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_cache_readahead (2 samples, 0.07%)</title><rect x="165.3" y="3745" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="168.32" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (12 samples, 0.41%)</title><rect x="1054.5" y="1265" width="4.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1057.45" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvfrom (2 samples, 0.07%)</title><rect x="818.5" y="497" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>walk_component (2 samples, 0.07%)</title><rect x="147.2" y="3713" width="0.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="150.16" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/base/Predicates$InPredicate:::apply (2 samples, 0.07%)</title><rect x="847.5" y="1073" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="850.50" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (2,467 samples, 84.34%)</title><rect x="168.5" y="2273" width="995.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/lang/reflect/Method:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (3 samples, 0.10%)</title><rect x="855.2" y="993" width="1.2" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3185" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver:::findBestMatch (2 samples, 0.07%)</title><rect x="177.0" y="1553" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="180.02" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (204 samples, 6.97%)</title><rect x="657.1" y="897" width="82.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="660.08" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleVersionResolveState:::restart (5 samples, 0.17%)</title><rect x="1027.0" y="1121" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1030.02" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (2 samples, 0.07%)</title><rect x="906.4" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="909.40" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/listener/ClosureBackedMethodInvocationDispatch:::dispatch (2 samples, 0.07%)</title><rect x="1145.2" y="1249" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1148.22" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1178.3" y="1601" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (49 samples, 1.68%)</title><rect x="719.2" y="833" width="19.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="722.21" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopLeft (8 samples, 0.27%)</title><rect x="1131.9" y="881" width="3.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1134.91" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/RejectRule$apply$1:::execute (7 samples, 0.24%)</title><rect x="511.0" y="945" width="2.9" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="514.05" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3473" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/AbstractCallSite:::callGetProperty (2 samples, 0.07%)</title><rect x="917.7" y="1089" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (2 samples, 0.07%)</title><rect x="1170.2" y="2449" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::find (2 samples, 0.07%)</title><rect x="988.7" y="513" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="991.69" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class:::&lt;init&gt; (2 samples, 0.07%)</title><rect x="1182.3" y="1393" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1185.34" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::possibly_sweep() (2 samples, 0.07%)</title><rect x="110.9" y="3825" width="0.8" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="113.85" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (8 samples, 0.27%)</title><rect x="1036.7" y="881" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1039.70" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (7 samples, 0.24%)</title><rect x="905.6" y="833" width="2.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="908.59" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (6 samples, 0.21%)</title><rect x="1056.1" y="1185" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1059.06" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::run() (6 samples, 0.21%)</title><rect x="1186.8" y="3889" width="2.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="3899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/ListenerBroadcast:::dispatch (3 samples, 0.10%)</title><rect x="1156.1" y="1873" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/clientmodule/ClientModuleResolver:::resolve (9 samples, 0.31%)</title><rect x="500.6" y="1137" width="3.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InvokeMethod (2 samples, 0.07%)</title><rect x="166.9" y="2081" width="0.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2091.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (305 samples, 10.43%)</title><rect x="922.1" y="1569" width="123.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (6 samples, 0.21%)</title><rect x="148.0" y="3713" width="2.4" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="150.97" y="3723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_ack_snd_check (2 samples, 0.07%)</title><rect x="164.5" y="3745" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/HTMLScanner$ContentScanner:::scanCharacters (3 samples, 0.10%)</title><rect x="1006.4" y="593" width="1.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1009.44" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="857.2" y="1041" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="860.18" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (5 samples, 0.17%)</title><rect x="741.4" y="817" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="744.40" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1177.5" y="1457" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (4 samples, 0.14%)</title><rect x="1125.9" y="817" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1128.86" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::study (5 samples, 0.17%)</title><rect x="221.0" y="1169" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="223.99" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (24 samples, 0.82%)</title><rect x="1092.0" y="801" width="9.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1094.97" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/configurations/DefaultConfiguration:::resolveGraphIfRequired (150 samples, 5.13%)</title><rect x="1085.5" y="1521" width="60.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1088.51" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1178.3" y="1729" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.30" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::iterate_all_blocks(bool) (3 samples, 0.10%)</title><rect x="114.5" y="3617" width="1.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="117.49" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (205 samples, 7.01%)</title><rect x="656.7" y="913" width="82.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="659.68" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/uti..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry:::getServiceProvider (2 samples, 0.07%)</title><rect x="166.9" y="1937" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_swap_page (2 samples, 0.07%)</title><rect x="1140.0" y="945" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1142.98" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_finish_plug (2 samples, 0.07%)</title><rect x="1186.0" y="3745" width="0.8" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_ack_snd_check (3 samples, 0.10%)</title><rect x="154.0" y="3729" width="1.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="157.02" y="3739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultMultiProcessSafePersistentIndexedCache:::put (2 samples, 0.07%)</title><rect x="808.8" y="945" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="811.77" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/callsite/GetEffectivePojoPropertySite:::getProperty (2 samples, 0.07%)</title><rect x="1156.5" y="1553" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopLeft (9 samples, 0.31%)</title><rect x="440.4" y="1361" width="3.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="443.45" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (37 samples, 1.26%)</title><rect x="944.3" y="865" width="14.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="947.32" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-16622/16631 (70 samples, 2.39%)</title><rect x="111.7" y="3937" width="28.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="114.66" y="3947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block() (6 samples, 0.21%)</title><rect x="105.6" y="3633" width="2.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="1175.1" y="1633" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (143 samples, 4.89%)</title><rect x="860.8" y="1425" width="57.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="863.81" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (4 samples, 0.14%)</title><rect x="1110.9" y="705" width="1.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1113.93" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpResourceLister:::list (22 samples, 0.75%)</title><rect x="816.0" y="689" width="8.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="819.03" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::codePointAt (2 samples, 0.07%)</title><rect x="979.0" y="705" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="982.01" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::build__tree() (2 samples, 0.07%)</title><rect x="93.1" y="3761" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="96.10" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (15 samples, 0.51%)</title><rect x="967.7" y="865" width="6.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="970.72" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/CharacterDataLatin1:::digit (3 samples, 0.10%)</title><rect x="326.7" y="1217" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="329.68" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (9 samples, 0.31%)</title><rect x="1068.6" y="1217" width="3.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1071.57" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/AbstractExternalResource:::withContent (5 samples, 0.17%)</title><rect x="999.6" y="625" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ref/Reference:::tryHandlePending (2 samples, 0.07%)</title><rect x="23.7" y="3761" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/cyberneko/html/HTMLScanner$ContentScanner:::scanAttribute (4 samples, 0.14%)</title><rect x="1008.1" y="561" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1011.06" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (3 samples, 0.10%)</title><rect x="154.0" y="3697" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="157.02" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.17%)</title><rect x="999.6" y="705" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (2 samples, 0.07%)</title><rect x="156.4" y="3745" width="0.8" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="159.44" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/jar/JarFile:::getJarEntry (2 samples, 0.07%)</title><rect x="999.6" y="97" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Ctype:::isSatisfiedBy (2 samples, 0.07%)</title><rect x="542.5" y="673" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="545.51" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (7 samples, 0.24%)</title><rect x="767.6" y="753" width="2.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="770.62" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1034.3" y="897" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1037.28" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder:::visitSelector (2 samples, 0.07%)</title><rect x="490.9" y="1169" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="493.88" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block() (3 samples, 0.10%)</title><rect x="103.6" y="3361" width="1.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="106.59" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_swap_page (2 samples, 0.07%)</title><rect x="1175.9" y="305" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1178.88" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/PotentialConflictFactory$1:::withParticipatingModules (8 samples, 0.27%)</title><rect x="1025.8" y="1185" width="3.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1028.81" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,467 samples, 84.34%)</title><rect x="168.5" y="2369" width="995.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_field_by_index(ciInstanceKlass*,int) (2 samples, 0.07%)</title><rect x="26.1" y="3633" width="0.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="29.14" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (16 samples, 0.55%)</title><rect x="732.1" y="801" width="6.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="735.12" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (23 samples, 0.79%)</title><rect x="948.4" y="785" width="9.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="951.35" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (10 samples, 0.34%)</title><rect x="969.7" y="833" width="4.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="972.73" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::register_method(ciMethod*,int,CodeOffsets*,int,CodeBuffer*,int,OopMapSet*,ExceptionHandlerTable*,ImplicitExceptionTable*,AbstractCompiler*,int,bool,bool,RTMState) (4 samples, 0.14%)</title><rect x="109.2" y="3793" width="1.7" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="112.24" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::codePointAt (3 samples, 0.10%)</title><rect x="1096.0" y="705" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1099.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.07%)</title><rect x="818.5" y="513" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="821.45" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (34 samples, 1.16%)</title><rect x="1115.8" y="913" width="13.7" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1118.77" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fstatat (5 samples, 0.17%)</title><rect x="151.6" y="3825" width="2.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (2 samples, 0.07%)</title><rect x="1163.0" y="1489" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1165.97" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (36 samples, 1.23%)</title><rect x="225.0" y="1185" width="14.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="228.02" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_recvfrom (5 samples, 0.17%)</title><rect x="820.5" y="513" width="2.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="823.47" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual(JavaValue*,KlassHandle,Symbol*,Symbol*,JavaCallArguments*,Thread*) (2 samples, 0.07%)</title><rect x="23.7" y="3825" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$ArtifactResolverChain:::resolveArtifact (13 samples, 0.44%)</title><rect x="1158.5" y="1745" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess:::useCache (269 samples, 9.20%)</title><rect x="922.1" y="1329" width="108.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="925.13" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (2 samples, 0.07%)</title><rect x="155.2" y="3761" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="158.23" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (4 samples, 0.14%)</title><rect x="964.1" y="801" width="1.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="967.09" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (2 samples, 0.07%)</title><rect x="165.3" y="3841" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="168.32" y="3851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (2 samples, 0.07%)</title><rect x="441.7" y="1185" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="444.66" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::grow (2 samples, 0.07%)</title><rect x="1077.8" y="1201" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1080.85" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (33 samples, 1.13%)</title><rect x="1116.2" y="849" width="13.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (12 samples, 0.41%)</title><rect x="887.4" y="801" width="4.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="890.44" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::peek (2 samples, 0.07%)</title><rect x="875.3" y="673" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="878.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeHi (2 samples, 0.07%)</title><rect x="980.2" y="929" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="983.22" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (2 samples, 0.07%)</title><rect x="164.5" y="3617" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpResourceAccessor:::openResource (3 samples, 0.10%)</title><rect x="1002.4" y="689" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1005.41" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/protobuf/CodedOutputStream:::newInstance (2 samples, 0.07%)</title><rect x="1175.9" y="385" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1178.88" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (9 samples, 0.31%)</title><rect x="1068.6" y="1201" width="3.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1071.57" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (22 samples, 0.75%)</title><rect x="1116.6" y="817" width="8.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1119.58" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (2 samples, 0.07%)</title><rect x="1172.2" y="1873" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (3 samples, 0.10%)</title><rect x="1011.3" y="449" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1014.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/Closure:::call (2 samples, 0.07%)</title><rect x="1172.2" y="1889" width="0.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::executeGetOrHead (5 samples, 0.17%)</title><rect x="996.4" y="625" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/http/impl/execchain/MainClientExec:::execute (3 samples, 0.10%)</title><rect x="996.4" y="513" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="999.36" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (327 samples, 11.18%)</title><rect x="184.7" y="1377" width="131.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="187.68" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (7 samples, 0.24%)</title><rect x="17.3" y="3921" width="2.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptscsih_qcmd (2 samples, 0.07%)</title><rect x="160.9" y="3473" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="163.88" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::expr (5 samples, 0.17%)</title><rect x="421.5" y="1137" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="424.49" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopRight (14 samples, 0.48%)</title><rect x="432.0" y="1361" width="5.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="434.98" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/service/DefaultServiceRegistry$SingletonService:::getService (2 samples, 0.07%)</title><rect x="166.9" y="1809" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_try_to_free_pages (2 samples, 0.07%)</title><rect x="372.7" y="993" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="375.67" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::executeGetOrHead (2 samples, 0.07%)</title><rect x="824.1" y="609" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="827.10" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DefaultResolutionResultBuilder:::visitOutgoingEdges (2 samples, 0.07%)</title><rect x="1032.7" y="785" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1035.67" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (3 samples, 0.10%)</title><rect x="1137.6" y="737" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1140.56" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::RemoveQEQuoting (6 samples, 0.21%)</title><rect x="565.9" y="705" width="2.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="568.91" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureCapacityInternal (64 samples, 2.19%)</title><rect x="286.7" y="1281" width="25.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="289.75" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConnectionGraph::complete_connection_graph(GrowableArray&lt;PointsToNode*&gt;&amp;,GrowableArray&lt;JavaObjectNode*&gt;&amp;,GrowableArray&lt;JavaObjectNode*&gt;&amp;,GrowableArray&lt;FieldNode*&gt;&amp;) (34 samples, 1.16%)</title><rect x="56.8" y="3745" width="13.7" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="59.80" y="3755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_swap_cache_async (2 samples, 0.07%)</title><rect x="10.0" y="3521" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matcher (10 samples, 0.34%)</title><rect x="373.5" y="1233" width="4.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="376.48" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/listener/ClosureBackedMethodInvocationDispatch:::dispatch (4 samples, 0.14%)</title><rect x="1033.5" y="1297" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1036.47" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Actions$CompositeAction:::execute (5 samples, 0.17%)</title><rect x="912.9" y="1137" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="915.85" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*) (7 samples, 0.24%)</title><rect x="17.3" y="3809" width="2.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (2 samples, 0.07%)</title><rect x="1186.0" y="3825" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (2 samples, 0.07%)</title><rect x="146.4" y="3569" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (2 samples, 0.07%)</title><rect x="1172.2" y="2161" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1175.25" y="2171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::useCache (22 samples, 0.75%)</title><rect x="1035.1" y="1377" width="8.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (2 samples, 0.07%)</title><rect x="403.3" y="1249" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="406.33" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (8 samples, 0.27%)</title><rect x="432.4" y="1249" width="3.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="435.38" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/btree/CachingBlockStore:::read (3 samples, 0.10%)</title><rect x="1161.4" y="1377" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1164.36" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/ReflectProperties$Val:::getValue (3 samples, 0.10%)</title><rect x="1178.7" y="1569" width="1.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::emit_code_body() (8 samples, 0.27%)</title><rect x="119.7" y="3761" width="3.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="122.73" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::countRunAndMakeAscending (212 samples, 7.25%)</title><rect x="317.0" y="1409" width="85.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="320.00" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (2 samples, 0.07%)</title><rect x="116.5" y="3521" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="119.50" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (11 samples, 0.38%)</title><rect x="901.2" y="833" width="4.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="904.15" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$VersionListResult:::process (3 samples, 0.10%)</title><rect x="1141.6" y="1041" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1144.59" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::gallopLeft (2 samples, 0.07%)</title><rect x="899.9" y="881" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="902.94" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.10%)</title><rect x="1048.4" y="1729" width="1.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (14 samples, 0.48%)</title><rect x="432.0" y="1297" width="5.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="434.98" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/ClosureMetaClass:::invokeMethod (3 samples, 0.10%)</title><rect x="1156.1" y="1681" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::sort (113 samples, 3.86%)</title><rect x="864.8" y="993" width="45.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="867.84" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/LatestModuleConflictResolver:::select (2 samples, 0.07%)</title><rect x="1029.0" y="1185" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1032.04" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1185.2" y="3089" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1188.16" y="3099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$ReverseComparator2:::compare (3 samples, 0.10%)</title><rect x="402.9" y="1361" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="405.93" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/transport/http/HttpClientHelper:::performGet (2 samples, 0.07%)</title><rect x="1002.4" y="673" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1005.41" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::isNumber (2 samples, 0.07%)</title><rect x="1077.0" y="1233" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1080.04" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BmpCharProperty:::match (2 samples, 0.07%)</title><rect x="417.5" y="1121" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="420.45" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (22 samples, 0.75%)</title><rect x="1035.1" y="1265" width="8.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="1130.3" y="833" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1133.29" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver$RemoteRepositoryAccess:::listModuleVersions (2 samples, 0.07%)</title><rect x="1018.5" y="993" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1021.55" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentMetaDataResolveState:::resolve (2 samples, 0.07%)</title><rect x="177.0" y="1521" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="180.02" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.24%)</title><rect x="17.3" y="3537" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,468 samples, 84.38%)</title><rect x="168.5" y="2577" width="995.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1521" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::reset (2 samples, 0.07%)</title><rect x="775.7" y="673" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="778.69" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>readBytes (2 samples, 0.07%)</title><rect x="1161.8" y="1217" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1164.76" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (3 samples, 0.10%)</title><rect x="741.8" y="721" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="744.80" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.07%)</title><rect x="146.4" y="3697" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="3707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$SingletonDispatch:::dispatch (14 samples, 0.48%)</title><rect x="855.2" y="1297" width="5.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain$DependencyToComponentIdResolverChain:::resolve (734 samples, 25.09%)</title><rect x="179.8" y="1633" width="296.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="182.84" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/artifacts/ivys..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks() (5 samples, 0.17%)</title><rect x="105.6" y="3553" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="108.61" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactsGraphVisitor:::visitEdges (2 samples, 0.07%)</title><rect x="488.1" y="1185" width="0.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="491.05" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1177.5" y="1569" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Factories$1:::create (22 samples, 0.75%)</title><rect x="1035.1" y="1313" width="8.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/MutableActionSet:::execute (3 samples, 0.10%)</title><rect x="166.9" y="2721" width="1.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="2731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::next (2 samples, 0.07%)</title><rect x="236.7" y="1153" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="239.72" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (69 samples, 2.36%)</title><rect x="213.3" y="1201" width="27.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="216.32" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$VersionListResult:::process (63 samples, 2.15%)</title><rect x="995.1" y="1073" width="25.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="998.15" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>e1000_xmit_frame (2 samples, 0.07%)</title><rect x="1011.7" y="177" width="0.8" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1014.69" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptscsih_qcmd (2 samples, 0.07%)</title><rect x="152.4" y="3489" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="155.41" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::sort (662 samples, 22.63%)</title><rect x="181.5" y="1473" width="267.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="184.45" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/Collections:::sort</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,526 samples, 86.36%)</title><rect x="166.9" y="3633" width="1019.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="169.93" y="3643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::matches (6 samples, 0.21%)</title><rect x="785.4" y="737" width="2.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="788.37" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (2 samples, 0.07%)</title><rect x="317.8" y="1313" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="320.81" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shrink_node (2 samples, 0.07%)</title><rect x="372.7" y="977" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="375.67" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Class:::&lt;init&gt; (4 samples, 0.14%)</title><rect x="1175.1" y="1025" width="1.6" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheFactory$ReferenceTrackingCache:::useCache (13 samples, 0.44%)</title><rect x="1158.5" y="1585" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_invoke_static(JNIEnv_*,JavaValue*,_jobject*,JNICallType,_jmethodID*,JNI_ArgumentPusher*,Thread*) (4 samples, 0.14%)</title><rect x="10.0" y="3873" width="1.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator:::compare (7 samples, 0.24%)</title><rect x="409.4" y="1281" width="2.8" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="412.38" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::sort (122 samples, 4.17%)</title><rect x="1089.5" y="977" width="49.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1092.55" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::atom (10 samples, 0.34%)</title><rect x="230.3" y="1153" width="4.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="233.27" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::valueOf (3 samples, 0.10%)</title><rect x="665.6" y="801" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="668.56" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Curly:::match (2 samples, 0.07%)</title><rect x="833.0" y="1041" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="835.97" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (2 samples, 0.07%)</title><rect x="164.5" y="3761" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::build_() (16 samples, 0.55%)</title><rect x="113.3" y="3761" width="6.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="116.28" y="3771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1048.4" y="1569" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1173.9" y="1665" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lgroovy/lang/MetaClassImpl:::invokeMethod (3 samples, 0.10%)</title><rect x="1156.1" y="1697" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arrayof_jint_fill (4 samples, 0.14%)</title><rect x="593.7" y="721" width="1.7" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="596.75" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (3 samples, 0.10%)</title><rect x="1135.1" y="833" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (2 samples, 0.07%)</title><rect x="311.4" y="1009" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="314.35" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="10.0" y="3809" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (16 samples, 0.55%)</title><rect x="1067.4" y="1249" width="6.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1070.36" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (4 samples, 0.14%)</title><rect x="786.2" y="673" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="789.18" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (2,467 samples, 84.34%)</title><rect x="168.5" y="2241" width="995.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="171.54" y="2251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lsun/reflect/NativeMethodAccessorImpl:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser:::transform (4 samples, 0.14%)</title><rect x="318.6" y="1313" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="321.62" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver$RepositoryResolveState:::selectMatchingVersionAndResolve (17 samples, 0.58%)</title><rect x="1147.6" y="1089" width="6.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1150.64" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>submit_bio (5 samples, 0.17%)</title><rect x="159.7" y="3617" width="2.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="162.67" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ConfigurationNode:::removeOutgoingEdges (3 samples, 0.10%)</title><rect x="926.6" y="1217" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="929.57" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="1170.2" y="2401" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1173.23" y="2411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (2 samples, 0.07%)</title><rect x="139.1" y="3489" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="142.09" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 0.58%)</title><rect x="1173.5" y="1889" width="6.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.46" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1601" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/jvm/internal/impl/serialization/ProtoBuf$Function:::&lt;init&gt; (3 samples, 0.10%)</title><rect x="1178.7" y="1137" width="1.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1181.70" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$Branch:::match (2 samples, 0.07%)</title><rect x="911.6" y="1073" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="914.64" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator$1:::compare (4 samples, 0.14%)</title><rect x="406.2" y="1281" width="1.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="409.16" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::&lt;init&gt; (18 samples, 0.62%)</title><rect x="243.6" y="1217" width="7.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="246.58" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (2 samples, 0.07%)</title><rect x="283.9" y="1233" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="286.92" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::add (2 samples, 0.07%)</title><rect x="407.0" y="1249" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="409.96" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/event/BroadcastDispatch$CompositeDispatch:::dispatch (2 samples, 0.07%)</title><rect x="1145.2" y="1345" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1148.22" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence(Node*,int&amp;) (3 samples, 0.10%)</title><rect x="97.9" y="3665" width="1.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="3675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/runtime/metaclass/MethodMetaProperty$GetBeanMethodMetaProperty:::getProperty (2 samples, 0.07%)</title><rect x="917.7" y="1057" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="920.69" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::getNode (2 samples, 0.07%)</title><rect x="466.7" y="1441" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="469.67" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.07%)</title><rect x="18.9" y="3345" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.88" y="3355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/reflection/CachedMethod:::invoke (3 samples, 0.10%)</title><rect x="855.2" y="1025" width="1.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="858.16" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::matches (23 samples, 0.79%)</title><rect x="331.1" y="1233" width="9.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="334.12" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::compile_method() (4 samples, 0.14%)</title><rect x="12.8" y="3793" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="15.82" y="3803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/RejectRule$apply$1:::execute (3 samples, 0.10%)</title><rect x="931.8" y="945" width="1.2" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="934.81" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TimSort:::mergeHi (2 samples, 0.07%)</title><rect x="1153.3" y="929" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1156.29" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/resource/cached/ivy/AbstractCachedIndex:::lookup (13 samples, 0.44%)</title><rect x="1158.5" y="1617" width="5.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1161.53" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::containsKey (2 samples, 0.07%)</title><rect x="847.5" y="1041" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="850.50" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector:::isLower (2 samples, 0.07%)</title><rect x="794.6" y="993" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="797.65" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lnebula/plugin/resolutionrules/AlignRules:::selectedVersions (23 samples, 0.79%)</title><rect x="1146.4" y="1617" width="9.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/Transformers$4:::transform (5 samples, 0.17%)</title><rect x="999.6" y="673" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1002.59" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (2 samples, 0.07%)</title><rect x="987.5" y="865" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="990.48" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.14%)</title><rect x="1175.1" y="1425" width="1.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1178.07" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparator:::compare (2 samples, 0.07%)</title><rect x="987.5" y="881" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="990.48" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lkotlin/reflect/KClasses:::getCompanionObject (2 samples, 0.07%)</title><rect x="1177.5" y="1825" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (22 samples, 0.75%)</title><rect x="1035.1" y="1297" width="8.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1038.09" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matches (3 samples, 0.10%)</title><rect x="1137.6" y="721" width="1.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1140.56" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphBuilder$ModuleResolveState:::restart (5 samples, 0.17%)</title><rect x="851.1" y="1105" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="854.13" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::sequence (2 samples, 0.07%)</title><rect x="241.2" y="1201" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="244.16" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (2 samples, 0.07%)</title><rect x="165.3" y="3825" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="168.32" y="3835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser:::isRejectedComponent (5 samples, 0.17%)</title><rect x="931.0" y="1041" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="934.01"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment