Skip to content

Instantly share code, notes, and snippets.

@dwursteisen
Created May 14, 2019 19:55
Show Gist options
  • Save dwursteisen/f76e5814fd320e76beee605cec9c5c2f to your computer and use it in GitHub Desktop.
Save dwursteisen/f76e5814fd320e76beee605cec9c5c2f 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="2498" onload="init(evt)" viewBox="0 0 1200 2498" 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="#f8f8f8" offset="5%" />
<stop stop-color="#e8e8e8" 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 (func != null)
func = func.replace(/ .*/, "");
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="2498.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="2481" 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="2481" 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>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$Package.(init) (1 samples, 2.00%)</title><rect x="1001.2" y="625" width="23.6" height="15.0" fill="rgb(233,223,32)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.transformation.InlineInstrumentation.execute (2 samples, 4.00%)</title><rect x="1142.8" y="1553" width="47.2" height="15.0" fill="rgb(225,99,21)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$TypeParameter.(init) (1 samples, 2.00%)</title><rect x="1001.2" y="481" width="23.6" height="15.0" fill="rgb(220,57,20)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.JvmAnyValueGenerator$anyValue$1.invoke (3 samples, 6.00%)</title><rect x="1048.4" y="1361" width="70.8" height="15.0" fill="rgb(213,206,51)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KDeclarationContainerImpl$Data.getModuleData (2 samples, 4.00%)</title><rect x="977.6" y="1025" width="47.2" height="15.0" fill="rgb(234,151,25)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.internal.runners.model.EachTestNotifier.fireTestStarted (1 samples, 2.00%)</title><rect x="954.0" y="1777" width="23.6" height="15.0" fill="rgb(239,219,20)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.locks.LockSupport.unpark (1 samples, 2.00%)</title><rect x="954.0" y="1345" width="23.6" height="15.0" fill="rgb(205,139,6)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1355.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>net.bytebuddy.description.method.MethodDescription$ForLoadedMethod.getReturnType (1 samples, 2.00%)</title><rect x="1048.4" y="1057" width="23.6" height="15.0" fill="rgb(247,36,43)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$PackageFragment$1.parsePartialFrom (1 samples, 2.00%)</title><rect x="1001.2" y="737" width="23.6" height="15.0" fill="rgb(228,55,48)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.builtins.KotlinBuiltIns.createBuiltInsModule (2 samples, 4.00%)</title><rect x="977.6" y="881" width="47.2" height="15.0" fill="rgb(248,210,45)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MockkSlownessTest.tooSlow (9 samples, 18.00%)</title><rect x="977.6" y="1649" width="212.4" height="15.0" fill="rgb(227,184,13)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >MockkSlownessTest.tooSlow</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.defineClass (1 samples, 2.00%)</title><rect x="1024.8" y="545" width="23.6" height="15.0" fill="rgb(221,142,21)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="555.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>io.mockk.proxy.jvm.ProxyMaker.proxy (2 samples, 4.00%)</title><rect x="1142.8" y="1585" width="47.2" height="15.0" fill="rgb(249,184,10)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Throwable.getOurStackTrace (1 samples, 2.00%)</title><rect x="1024.8" y="385" width="23.6" height="15.0" fill="rgb(233,159,16)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="395.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>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$TypeParameter$1.parsePartialFrom (1 samples, 2.00%)</title><rect x="1001.2" y="513" width="23.6" height="15.0" fill="rgb(215,81,30)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader$1.run (1 samples, 2.00%)</title><rect x="1024.8" y="609" width="23.6" height="15.0" fill="rgb(233,15,47)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="619.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>java.lang.Throwable.fillInStackTrace (1 samples, 2.00%)</title><rect x="977.6" y="689" width="23.6" height="15.0" fill="rgb(219,204,15)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="699.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>sun.nio.ch.SelectorImpl.select (10 samples, 20.00%)</title><rect x="10.0" y="2161" width="236.0" height="15.0" fill="rgb(234,82,18)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.nio.ch.SelectorImpl.select</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder$DelegationProcessor$Handler$Bound.bind (1 samples, 2.00%)</title><rect x="1095.6" y="945" width="23.6" height="15.0" fill="rgb(227,174,33)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>FooLoader.allFoos (6 samples, 12.00%)</title><rect x="977.6" y="1489" width="141.6" height="15.0" fill="rgb(226,22,12)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >FooLoader.allFoos</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (50 samples, 100%)</title><rect x="10.0" y="2449" width="1180.0" height="15.0" fill="rgb(212,174,43)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>MockkSlownessTest$tooSlow$1.invoke (6 samples, 12.00%)</title><rect x="977.6" y="1505" width="141.6" height="15.0" fill="rgb(250,195,9)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >MockkSlownessTest$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.transformation.InliningClassTransformer.transform (2 samples, 4.00%)</title><rect x="1142.8" y="1473" width="47.2" height="15.0" fill="rgb(245,148,19)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.ParentRunner.runLeaf (10 samples, 20.00%)</title><rect x="954.0" y="1793" width="236.0" height="15.0" fill="rgb(215,92,20)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.ParentRunner...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.DynamicType$Builder$AbstractBase$Delegator.make (2 samples, 4.00%)</title><rect x="1072.0" y="1137" width="47.2" height="15.0" fill="rgb(221,165,45)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.inline.RedefinitionDynamicTypeBuilder.make (1 samples, 2.00%)</title><rect x="1166.4" y="1425" width="23.6" height="15.0" fill="rgb(237,64,45)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.security.AccessController.doPrivileged (1 samples, 2.00%)</title><rect x="1119.2" y="1489" width="23.6" height="15.0" fill="rgb(222,100,20)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1499.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>kotlin.reflect.jvm.internal.KClassImpl$Data$declaredNonStaticMembers$2.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1169" width="70.8" height="15.0" fill="rgb(253,215,12)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.NativeMethodAccessorImpl.invoke0 (10 samples, 20.00%)</title><rect x="954.0" y="2193" width="236.0" height="15.0" fill="rgb(230,152,49)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.reflect.NativeMethodAccesso..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KClassImpl$Data.getDescriptor (3 samples, 6.00%)</title><rect x="977.6" y="1105" width="70.8" height="15.0" fill="rgb(214,198,14)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.security.AccessController.doPrivileged (1 samples, 2.00%)</title><rect x="1024.8" y="641" width="23.6" height="15.0" fill="rgb(222,100,20)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="651.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>io.mockk.MockKDsl.internalEvery (6 samples, 12.00%)</title><rect x="977.6" y="1617" width="141.6" height="15.0" fill="rgb(215,174,31)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk.MockKDsl...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.ProxyMaker.proxy (3 samples, 6.00%)</title><rect x="1048.4" y="1281" width="70.8" height="15.0" fill="rgb(249,184,10)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.SmallSortedMap.put (1 samples, 2.00%)</title><rect x="1001.2" y="385" width="23.6" height="15.0" fill="rgb(238,71,46)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.junit.TestClassExecutionEventGenerator.started (1 samples, 2.00%)</title><rect x="954.0" y="1505" width="23.6" height="15.0" fill="rgb(208,144,6)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 2.00%)</title><rect x="977.6" y="785" width="23.6" height="15.0" fill="rgb(211,70,20)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="795.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>sun.instrument.InstrumentationImpl.transform (1 samples, 2.00%)</title><rect x="1001.2" y="177" width="23.6" height="15.0" fill="rgb(214,94,50)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.JvmMockFactoryHelper.toDescription$mockk (3 samples, 6.00%)</title><rect x="977.6" y="1441" width="70.8" height="15.0" fill="rgb(232,57,19)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.NativeMethodAccessorImpl.invoke0 (1 samples, 2.00%)</title><rect x="954.0" y="1521" width="23.6" height="15.0" fill="rgb(230,152,49)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.instrument.InstrumentationImpl.retransformClasses0 (1 samples, 2.00%)</title><rect x="1048.4" y="1217" width="23.6" height="15.0" fill="rgb(238,178,10)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runner.notification.RunNotifier$SafeNotifier.run (1 samples, 2.00%)</title><rect x="954.0" y="1745" width="23.6" height="15.0" fill="rgb(238,52,43)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (10 samples, 20.00%)</title><rect x="954.0" y="2385" width="236.0" height="15.0" fill="rgb(218,182,19)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.util.concurrent.ThreadPool..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.description.method.MethodDescription$AbstractBase.asToken (1 samples, 2.00%)</title><rect x="1048.4" y="1089" width="23.6" height="15.0" fill="rgb(222,33,7)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.ReflectProperties$LazySoftVal.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1345" width="70.8" height="15.0" fill="rgb(238,121,7)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run (10 samples, 20.00%)</title><rect x="954.0" y="2401" width="236.0" height="15.0" fill="rgb(223,76,43)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.concurrent...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch (10 samples, 20.00%)</title><rect x="954.0" y="2129" width="236.0" height="15.0" fill="rgb(221,228,47)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.dispatch.Co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.instrument.InstrumentationImpl.transform (2 samples, 4.00%)</title><rect x="1142.8" y="1505" width="47.2" height="15.0" fill="rgb(214,94,50)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.ReflectProperties$LazySoftVal.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1265" width="70.8" height="15.0" fill="rgb(238,121,7)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.implementation.bytecode.assign.reference.ReferenceTypeAwareAssigner.assign (1 samples, 2.00%)</title><rect x="1095.6" y="881" width="23.6" height="15.0" fill="rgb(222,116,43)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Throwable.getStackTrace (1 samples, 2.00%)</title><rect x="1001.2" y="65" width="23.6" height="15.0" fill="rgb(222,163,17)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="75.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>net.bytebuddy.ByteBuddy.redefine (1 samples, 2.00%)</title><rect x="1048.4" y="1153" width="23.6" height="15.0" fill="rgb(207,81,41)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KClassImpl.getMemberScope$kotlin_reflect_api (3 samples, 6.00%)</title><rect x="977.6" y="1137" width="70.8" height="15.0" fill="rgb(250,163,28)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.TypeCache.findOrInsert (2 samples, 4.00%)</title><rect x="1072.0" y="1217" width="47.2" height="15.0" fill="rgb(253,74,23)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.description.type.TypeDescription$AbstractBase.equals (1 samples, 2.00%)</title><rect x="1095.6" y="833" width="23.6" height="15.0" fill="rgb(225,119,5)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.full.KClasses.getFunctions (3 samples, 6.00%)</title><rect x="977.6" y="1409" width="70.8" height="15.0" fill="rgb(210,103,43)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KClassImpl$Data$descriptor$2.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1057" width="70.8" height="15.0" fill="rgb(251,54,36)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.asm.Advice$Dispatcher$Inlining$Resolved$ForMethodEnter.bind (1 samples, 2.00%)</title><rect x="1166.4" y="1185" width="23.6" height="15.0" fill="rgb(248,58,53)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.ParentRunner.access$000 (10 samples, 20.00%)</title><rect x="954.0" y="1889" width="236.0" height="15.0" fill="rgb(223,23,23)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.ParentRunner...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.asm.Advice$AdviceVisitor$WithExitAdvice$WithoutExceptionHandling.(init) (1 samples, 2.00%)</title><rect x="1166.4" y="1233" width="23.6" height="15.0" fill="rgb(223,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.jvm.internal.Intrinsics.sanitizeStackTrace (1 samples, 2.00%)</title><rect x="1024.8" y="433" width="23.6" height="15.0" fill="rgb(237,18,43)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.remote.internal.hub.InterHubMessageSerializer$MessageReader.read (10 samples, 20.00%)</title><rect x="10.0" y="2289" width="236.0" height="15.0" fill="rgb(93,93,227)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.remote.inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KClassImpl$Data$allMembers$2.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1329" width="70.8" height="15.0" fill="rgb(219,193,14)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KClassImpl.getMembers (3 samples, 6.00%)</title><rect x="977.6" y="1393" width="70.8" height="15.0" fill="rgb(220,5,54)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.asm.Advice.wrap (1 samples, 2.00%)</title><rect x="1166.4" y="1265" width="23.6" height="15.0" fill="rgb(210,130,31)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.transformation.SubclassInstrumentation.access$doInterceptedSubclassing (2 samples, 4.00%)</title><rect x="1072.0" y="1169" width="47.2" height="15.0" fill="rgb(246,156,6)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder.make (1 samples, 2.00%)</title><rect x="1095.6" y="1105" width="23.6" height="15.0" fill="rgb(237,64,16)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.misc.Launcher$AppClassLoader.loadClass (1 samples, 2.00%)</title><rect x="1119.2" y="1537" width="23.6" height="15.0" fill="rgb(240,92,49)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.JvmMockKAgentFactory.initInstrumentation (1 samples, 2.00%)</title><rect x="1119.2" y="1585" width="23.6" height="15.0" fill="rgb(223,166,27)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ReflectionDispatch.dispatch (10 samples, 20.00%)</title><rect x="954.0" y="2257" width="236.0" height="15.0" fill="rgb(240,43,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.dispatch.Re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.builtins.BuiltInsLoader.(clinit) (1 samples, 2.00%)</title><rect x="977.6" y="865" width="23.6" height="15.0" fill="rgb(212,41,33)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.AbstractMockFactory.newProxy$default (3 samples, 6.00%)</title><rect x="1048.4" y="1313" width="70.8" height="15.0" fill="rgb(241,139,7)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.jvm.internal.Intrinsics.throwParameterIsNullException (1 samples, 2.00%)</title><rect x="1001.2" y="113" width="23.6" height="15.0" fill="rgb(232,218,35)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.resolve.scopes.AbstractScopeAdapter.getContributedClassifier (1 samples, 2.00%)</title><rect x="1024.8" y="1009" width="23.6" height="15.0" fill="rgb(236,150,10)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Throwable.getOurStackTrace (1 samples, 2.00%)</title><rect x="1001.2" y="49" width="23.6" height="15.0" fill="rgb(233,159,16)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="59.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>org.gradle.internal.actor.internal.DefaultActorFactory$BlockingActor.dispatch (1 samples, 2.00%)</title><rect x="954.0" y="1617" width="23.6" height="15.0" fill="rgb(205,221,44)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.model.FrameworkMethod.invokeExplosively (9 samples, 18.00%)</title><rect x="977.6" y="1761" width="212.4" height="15.0" fill="rgb(248,224,46)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.model.Fra..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.jvm.internal.Intrinsics.sanitizeStackTrace (1 samples, 2.00%)</title><rect x="1001.2" y="97" width="23.6" height="15.0" fill="rgb(237,18,43)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.descriptors.FindClassInModuleKt.findClassAcrossModuleDependencies (1 samples, 2.00%)</title><rect x="1024.8" y="1025" width="23.6" height="15.0" fill="rgb(223,218,3)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.ProxyMaker.inline (1 samples, 2.00%)</title><rect x="1048.4" y="1265" width="23.6" height="15.0" fill="rgb(247,96,15)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.ReflectJvmMapping.getKotlinFunction (3 samples, 6.00%)</title><rect x="977.6" y="1425" width="70.8" height="15.0" fill="rgb(224,56,41)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$Function$1.parsePartialFrom (1 samples, 2.00%)</title><rect x="1001.2" y="593" width="23.6" height="15.0" fill="rgb(217,163,16)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.description.method.MethodDescription$AbstractBase.asToken (1 samples, 2.00%)</title><rect x="1048.4" y="1073" width="23.6" height="15.0" fill="rgb(222,33,7)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.serialization.deserialization.ClassDeserializer$classes$1.invoke (1 samples, 2.00%)</title><rect x="1024.8" y="801" width="23.6" height="15.0" fill="rgb(226,112,7)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.NativeMethodAccessorImpl.invoke0 (9 samples, 18.00%)</title><rect x="977.6" y="1665" width="212.4" height="15.0" fill="rgb(230,152,49)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.reflect.NativeMethodAcc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.recording.states.RecordingState$call$retValue$1.invoke (3 samples, 6.00%)</title><rect x="1048.4" y="1345" width="70.8" height="15.0" fill="rgb(232,131,20)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.load.kotlin.DeserializedDescriptorResolver.resolveClass (1 samples, 2.00%)</title><rect x="1024.8" y="849" width="23.6" height="15.0" fill="rgb(220,152,12)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.jvm.internal.Intrinsics.sanitizeStackTrace (1 samples, 2.00%)</title><rect x="1001.2" y="81" width="23.6" height="15.0" fill="rgb(237,18,43)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.internal.runners.statements.RunBefores.evaluate (10 samples, 20.00%)</title><rect x="954.0" y="1921" width="236.0" height="15.0" fill="rgb(243,204,12)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.internal.runners.stat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.DelegatingMethodAccessorImpl.invoke (10 samples, 20.00%)</title><rect x="954.0" y="2225" width="236.0" height="15.0" fill="rgb(229,121,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.reflect.DelegatingMethodAcc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.findClass (1 samples, 2.00%)</title><rect x="1119.2" y="1505" width="23.6" height="15.0" fill="rgb(238,139,9)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1515.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>kotlin.reflect.jvm.internal.ReflectProperties$Val.getValue (3 samples, 6.00%)</title><rect x="977.6" y="1089" width="70.8" height="15.0" fill="rgb(234,101,8)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.ByteBuddy.redefine (1 samples, 2.00%)</title><rect x="1048.4" y="1137" width="23.6" height="15.0" fill="rgb(207,81,41)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runner.notification.RunNotifier.fireTestStarted (1 samples, 2.00%)</title><rect x="954.0" y="1761" width="23.6" height="15.0" fill="rgb(251,200,1)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.AnyValueGenerator.anyValue (3 samples, 6.00%)</title><rect x="1048.4" y="1377" width="70.8" height="15.0" fill="rgb(233,149,49)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.jvm.internal.Intrinsics.throwParameterIsNullException (1 samples, 2.00%)</title><rect x="1024.8" y="449" width="23.6" height="15.0" fill="rgb(232,218,35)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.AbstractParser.parseFrom (1 samples, 2.00%)</title><rect x="1001.2" y="801" width="23.6" height="15.0" fill="rgb(232,209,44)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.findClass (1 samples, 2.00%)</title><rect x="1001.2" y="321" width="23.6" height="15.0" fill="rgb(238,139,9)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="331.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>java.util.concurrent.locks.AbstractQueuedSynchronizer.unparkSuccessor (1 samples, 2.00%)</title><rect x="954.0" y="1361" width="23.6" height="15.0" fill="rgb(226,46,2)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1371.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>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$TypeParameter.(init) (1 samples, 2.00%)</title><rect x="1001.2" y="465" width="23.6" height="15.0" fill="rgb(220,57,20)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.description.type.TypeDescription$AbstractBase.isAssignable (1 samples, 2.00%)</title><rect x="1095.6" y="849" width="23.6" height="15.0" fill="rgb(223,79,48)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.concurrent.ManagedExecutorImpl$1.run (10 samples, 20.00%)</title><rect x="10.0" y="2353" width="236.0" height="15.0" fill="rgb(243,189,52)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.concurrent...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.defineClass1 (1 samples, 2.00%)</title><rect x="1001.2" y="193" width="23.6" height="15.0" fill="rgb(243,184,50)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="203.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>java.lang.reflect.Method.invoke (9 samples, 18.00%)</title><rect x="977.6" y="1713" width="212.4" height="15.0" fill="rgb(212,84,12)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.lang.reflect.Method.in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.ReflectProperties$LazySoftVal.invoke (2 samples, 4.00%)</title><rect x="977.6" y="993" width="47.2" height="15.0" fill="rgb(238,121,7)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Throwable.fillInStackTrace (1 samples, 2.00%)</title><rect x="977.6" y="673" width="23.6" height="15.0" fill="rgb(219,204,15)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="683.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>kotlin.reflect.jvm.internal.KClassImpl$Data$allMembers$2.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1313" width="70.8" height="15.0" fill="rgb(219,193,14)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.eval.RecordedBlockEvaluator$enhanceWithNPERethrow$1.invoke (6 samples, 12.00%)</title><rect x="977.6" y="1553" width="141.6" height="15.0" fill="rgb(210,19,51)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk.impl.eval..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.instrument.TransformerManager.transform (2 samples, 4.00%)</title><rect x="1142.8" y="1489" width="47.2" height="15.0" fill="rgb(206,185,53)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$Function$1.parsePartialFrom (1 samples, 2.00%)</title><rect x="1001.2" y="577" width="23.6" height="15.0" fill="rgb(217,163,16)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ReflectionDispatch.dispatch (1 samples, 2.00%)</title><rect x="954.0" y="1585" width="23.6" height="15.0" fill="rgb(240,43,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.eval.RecordedBlockEvaluator.record (6 samples, 12.00%)</title><rect x="977.6" y="1585" width="141.6" height="15.0" fill="rgb(213,200,1)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk.impl.eval..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.internal.runners.model.ReflectiveCallable.run (9 samples, 18.00%)</title><rect x="977.6" y="1745" width="212.4" height="15.0" fill="rgb(248,89,24)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.internal.runners...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.ParentRunner$2.evaluate (10 samples, 20.00%)</title><rect x="954.0" y="1905" width="236.0" height="15.0" fill="rgb(230,74,31)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.ParentRunner$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.transformation.InliningClassTransformer.transform (1 samples, 2.00%)</title><rect x="1024.8" y="481" width="23.6" height="15.0" fill="rgb(245,148,19)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors.LazyJavaPackageScope.getContributedClassifier (1 samples, 2.00%)</title><rect x="1024.8" y="961" width="23.6" height="15.0" fill="rgb(254,39,20)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MockkSlownessTest$tooSlow$1.invoke (6 samples, 12.00%)</title><rect x="977.6" y="1521" width="141.6" height="15.0" fill="rgb(250,195,9)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >MockkSlownessTest$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.ReflectProperties$Val.getValue (3 samples, 6.00%)</title><rect x="977.6" y="1201" width="70.8" height="15.0" fill="rgb(234,101,8)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.jvm.internal.Intrinsics.checkParameterIsNotNull (1 samples, 2.00%)</title><rect x="1001.2" y="129" width="23.6" height="15.0" fill="rgb(234,89,15)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.serialization.deserialization.builtins.BuiltInsLoaderImpl.createPackageFragmentProvider (1 samples, 2.00%)</title><rect x="1001.2" y="865" width="23.6" height="15.0" fill="rgb(231,65,30)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.remote.internal.hub.InterHubMessageSerializer$MessageReader.read (10 samples, 20.00%)</title><rect x="10.0" y="2273" width="236.0" height="15.0" fill="rgb(93,93,227)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.remote.inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute (10 samples, 20.00%)</title><rect x="10.0" y="2337" width="236.0" height="15.0" fill="rgb(223,203,12)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.concurrent...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.defineClass (1 samples, 2.00%)</title><rect x="1001.2" y="209" width="23.6" height="15.0" fill="rgb(221,142,21)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="219.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>kotlin.reflect.jvm.internal.KClassImpl$Data$allNonStaticMembers$2.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1249" width="70.8" height="15.0" fill="rgb(223,192,47)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.MethodRegistry$Default.prepend (1 samples, 2.00%)</title><rect x="1072.0" y="1105" width="23.6" height="15.0" fill="rgb(222,203,41)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.instrument.TransformerManager.transform (1 samples, 2.00%)</title><rect x="1001.2" y="161" width="23.6" height="15.0" fill="rgb(206,185,53)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JDWP Event Helper Thread (10 samples, 20.00%)</title><rect x="482.0" y="2433" width="236.0" height="15.0" fill="rgb(252,153,22)" rx="2" ry="2" />
<text text-anchor="" x="485.00" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JDWP Event Helper Thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.jvm.internal.Intrinsics.checkParameterIsNotNull (1 samples, 2.00%)</title><rect x="1024.8" y="465" width="23.6" height="15.0" fill="rgb(234,89,15)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.findClass (1 samples, 2.00%)</title><rect x="1024.8" y="657" width="23.6" height="15.0" fill="rgb(238,139,9)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="667.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>sun.instrument.TransformerManager.transform (1 samples, 2.00%)</title><rect x="1024.8" y="497" width="23.6" height="15.0" fill="rgb(206,185,53)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/0:0:0:0:0:0:0:1:63621 to /0:0:0:0:0:0:0:1:63619 workers Thread 3 (10 samples, 20.00%)</title><rect x="10.0" y="2433" width="236.0" height="15.0" fill="rgb(221,137,40)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/0:0:0:0:0:0:0:1:63621 to /0:0:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 2.00%)</title><rect x="977.6" y="833" width="23.6" height="15.0" fill="rgb(211,70,20)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="843.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>com.esotericsoftware.kryo.io.Input.fill (10 samples, 20.00%)</title><rect x="10.0" y="2209" width="236.0" height="15.0" fill="rgb(233,71,45)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com.esotericsoftware.kryo.io.In..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.BlockJUnit4ClassRunner.runChild (10 samples, 20.00%)</title><rect x="954.0" y="1825" width="236.0" height="15.0" fill="rgb(243,9,49)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.BlockJUnit4Cl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com.esotericsoftware.kryo.io.Input.readByte (10 samples, 20.00%)</title><rect x="10.0" y="2241" width="236.0" height="15.0" fill="rgb(117,117,196)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com.esotericsoftware.kryo.io.In..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.CodedInputStream.readMessage (1 samples, 2.00%)</title><rect x="1001.2" y="529" width="23.6" height="15.0" fill="rgb(80,80,203)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke (10 samples, 20.00%)</title><rect x="954.0" y="2145" width="236.0" height="15.0" fill="rgb(216,219,10)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.dispatch.Pr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.ProxyMaker.subclass (2 samples, 4.00%)</title><rect x="1072.0" y="1265" width="47.2" height="15.0" fill="rgb(207,126,42)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.transformation.SubclassInstrumentation$subclass$1.call (2 samples, 4.00%)</title><rect x="1072.0" y="1185" width="47.2" height="15.0" fill="rgb(229,122,4)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.description.type.TypeDescription$Generic$LazyProjection$WithEagerNavigation.(init) (1 samples, 2.00%)</title><rect x="1048.4" y="1009" width="23.6" height="15.0" fill="rgb(231,122,13)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.implementation.bind.annotation.TargetMethodAnnotationDrivenBinder$Record.bind (1 samples, 2.00%)</title><rect x="1095.6" y="961" width="23.6" height="15.0" fill="rgb(254,227,7)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.description.method.MethodList$AbstractBase.asTokenList (1 samples, 2.00%)</title><rect x="1048.4" y="1105" width="23.6" height="15.0" fill="rgb(241,38,46)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$Function.(init) (1 samples, 2.00%)</title><rect x="1001.2" y="561" width="23.6" height="15.0" fill="rgb(219,203,45)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.access$100 (1 samples, 2.00%)</title><rect x="1024.8" y="593" width="23.6" height="15.0" fill="rgb(217,189,27)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="603.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>net.bytebuddy.description.type.TypeDescription$AbstractBase.isAssignableTo (1 samples, 2.00%)</title><rect x="1095.6" y="865" width="23.6" height="15.0" fill="rgb(217,184,8)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke (1 samples, 2.00%)</title><rect x="954.0" y="1425" width="23.6" height="15.0" fill="rgb(216,219,10)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.defineClass1 (1 samples, 2.00%)</title><rect x="1119.2" y="1377" width="23.6" height="15.0" fill="rgb(243,184,50)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1387.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>java.lang.reflect.Method.invoke (1 samples, 2.00%)</title><rect x="954.0" y="1569" width="23.6" height="15.0" fill="rgb(212,84,12)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1579.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>org.gradle.internal.remote.internal.hub.MessageHub$ChannelDispatch.dispatch (1 samples, 2.00%)</title><rect x="954.0" y="1409" width="23.6" height="15.0" fill="rgb(254,182,7)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.transformation.SubclassInstrumentation.subclass (2 samples, 4.00%)</title><rect x="1072.0" y="1249" width="47.2" height="15.0" fill="rgb(207,101,21)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecutor.execute (10 samples, 20.00%)</title><rect x="954.0" y="1969" width="236.0" height="15.0" fill="rgb(240,18,46)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.api.internal.tasks.t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.ParentRunner.run (10 samples, 20.00%)</title><rect x="954.0" y="1937" width="236.0" height="15.0" fill="rgb(228,214,22)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.ParentRunner...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Test worker (10 samples, 20.00%)</title><rect x="954.0" y="2433" width="236.0" height="15.0" fill="rgb(214,66,9)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Test worker</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.remote.internal.hub.MessageHub$Handler.run (10 samples, 20.00%)</title><rect x="954.0" y="2321" width="236.0" height="15.0" fill="rgb(242,109,42)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.remote.inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.description.type.TypeDescription$Generic$LazyProjection$WithEagerNavigation$OfAnnotatedElement.(init) (1 samples, 2.00%)</title><rect x="1048.4" y="1025" width="23.6" height="15.0" fill="rgb(242,52,3)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.resolve.scopes.ChainedMemberScope.getContributedClassifier (1 samples, 2.00%)</title><rect x="1024.8" y="993" width="23.6" height="15.0" fill="rgb(225,175,47)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.security.SecureClassLoader.defineClass (1 samples, 2.00%)</title><rect x="1119.2" y="1409" width="23.6" height="15.0" fill="rgb(221,127,8)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1419.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>net.bytebuddy.dynamic.DynamicType$Builder$AbstractBase.make (1 samples, 2.00%)</title><rect x="1166.4" y="1457" width="23.6" height="15.0" fill="rgb(236,157,46)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (10 samples, 20.00%)</title><rect x="954.0" y="2369" width="236.0" height="15.0" fill="rgb(226,37,7)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.util.concurrent.ThreadPool..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ReflectiveOperationException.(init) (1 samples, 2.00%)</title><rect x="977.6" y="737" width="23.6" height="15.0" fill="rgb(249,183,38)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="747.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>io.mockk.impl.stub.MockKStub.handleInvocation (3 samples, 6.00%)</title><rect x="1048.4" y="1441" width="70.8" height="15.0" fill="rgb(242,136,1)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.remote.internal.hub.MessageHubBackedObjectConnection$DispatchWrapper.dispatch (10 samples, 20.00%)</title><rect x="954.0" y="2289" width="236.0" height="15.0" fill="rgb(226,39,19)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.remote.inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.findClass (1 samples, 2.00%)</title><rect x="977.6" y="769" width="23.6" height="15.0" fill="rgb(238,139,9)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="779.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>sun.instrument.InstrumentationImpl.retransformClasses0 (2 samples, 4.00%)</title><rect x="1142.8" y="1521" width="47.2" height="15.0" fill="rgb(238,178,10)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.FieldSet.addRepeatedField (1 samples, 2.00%)</title><rect x="1001.2" y="401" width="23.6" height="15.0" fill="rgb(250,53,21)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.AbstractParser.parseFrom (1 samples, 2.00%)</title><rect x="1001.2" y="785" width="23.6" height="15.0" fill="rgb(232,209,44)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.jar.asm.ClassReader.accept (1 samples, 2.00%)</title><rect x="1166.4" y="1377" width="23.6" height="15.0" fill="rgb(214,143,27)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.remote.internal.hub.MessageHubBackedObjectConnection$DispatchWrapper.dispatch (10 samples, 20.00%)</title><rect x="954.0" y="2305" width="236.0" height="15.0" fill="rgb(226,39,19)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.remote.inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.misc.Launcher$AppClassLoader.loadClass (1 samples, 2.00%)</title><rect x="1001.2" y="353" width="23.6" height="15.0" fill="rgb(240,92,49)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (10 samples, 20.00%)</title><rect x="954.0" y="2417" width="236.0" height="15.0" fill="rgb(241,181,21)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.lang.Thread.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader$1.run (1 samples, 2.00%)</title><rect x="1001.2" y="273" width="23.6" height="15.0" fill="rgb(233,15,47)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="283.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>java.lang.ClassLoader.loadClass (1 samples, 2.00%)</title><rect x="1001.2" y="369" width="23.6" height="15.0" fill="rgb(211,70,20)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="379.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>java.lang.Throwable.getStackTraceElement (1 samples, 2.00%)</title><rect x="1001.2" y="33" width="23.6" height="15.0" fill="rgb(246,138,43)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="43.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>java.lang.Throwable.getStackTraceElement (1 samples, 2.00%)</title><rect x="1024.8" y="369" width="23.6" height="15.0" fill="rgb(246,138,43)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="379.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>kotlin.reflect.jvm.internal.ModuleByClassLoaderKt.getOrCreateModule (2 samples, 4.00%)</title><rect x="977.6" y="945" width="47.2" height="15.0" fill="rgb(249,110,8)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors.LazyJavaPackageScope$classes$1.invoke (1 samples, 2.00%)</title><rect x="1024.8" y="897" width="23.6" height="15.0" fill="rgb(207,99,19)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runner.notification.RunNotifier$3.notifyListener (1 samples, 2.00%)</title><rect x="954.0" y="1729" width="23.6" height="15.0" fill="rgb(206,46,6)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.eval.EveryBlockEvaluator.every (6 samples, 12.00%)</title><rect x="977.6" y="1601" width="141.6" height="15.0" fill="rgb(227,192,21)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk.impl.eval..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ReflectionDispatch.dispatch (10 samples, 20.00%)</title><rect x="954.0" y="2113" width="236.0" height="15.0" fill="rgb(240,43,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.dispatch.Re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.AbstractMockFactory.mockk (2 samples, 4.00%)</title><rect x="1142.8" y="1633" width="47.2" height="15.0" fill="rgb(207,168,50)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.ReflectProperties$LazySoftVal.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1185" width="70.8" height="15.0" fill="rgb(238,121,7)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.misc.Launcher$AppClassLoader.loadClass (1 samples, 2.00%)</title><rect x="1024.8" y="689" width="23.6" height="15.0" fill="rgb(240,92,49)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.ByteBuddy.redefine (1 samples, 2.00%)</title><rect x="1142.8" y="1457" width="23.6" height="15.0" fill="rgb(207,81,41)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.defineClass (1 samples, 2.00%)</title><rect x="1024.8" y="577" width="23.6" height="15.0" fill="rgb(237,155,28)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="587.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>java.security.AccessController.doPrivileged (1 samples, 2.00%)</title><rect x="1001.2" y="305" width="23.6" height="15.0" fill="rgb(222,100,20)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="315.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>java.net.URLClassLoader.access$100 (1 samples, 2.00%)</title><rect x="1119.2" y="1441" width="23.6" height="15.0" fill="rgb(217,189,27)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1451.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>io.mockk.proxy.jvm.transformation.InlineInstrumentation.execute (1 samples, 2.00%)</title><rect x="1048.4" y="1249" width="23.6" height="15.0" fill="rgb(225,99,21)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.NativeMethodAccessorImpl.invoke (1 samples, 2.00%)</title><rect x="954.0" y="1537" width="23.6" height="15.0" fill="rgb(253,205,18)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.worker.TestWorker.processTestClass (10 samples, 20.00%)</title><rect x="954.0" y="2177" width="236.0" height="15.0" fill="rgb(223,228,8)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.api.internal.tasks.t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.asm.Advice.doWrap (1 samples, 2.00%)</title><rect x="1166.4" y="1249" width="23.6" height="15.0" fill="rgb(209,8,18)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassNotFoundException.(init) (1 samples, 2.00%)</title><rect x="977.6" y="753" width="23.6" height="15.0" fill="rgb(243,56,19)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="763.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>net.bytebuddy.TypeCache.findOrInsert (2 samples, 4.00%)</title><rect x="1072.0" y="1233" width="47.2" height="15.0" fill="rgb(253,74,23)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.TypeWriter$Default.make (1 samples, 2.00%)</title><rect x="1095.6" y="1073" width="23.6" height="15.0" fill="rgb(237,184,29)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.description.type.TypeDescription$ArrayProjection.getName (1 samples, 2.00%)</title><rect x="1095.6" y="817" width="23.6" height="15.0" fill="rgb(247,16,51)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.AbstractMockFactory.newProxy$default (2 samples, 4.00%)</title><rect x="1142.8" y="1617" width="47.2" height="15.0" fill="rgb(241,139,7)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.eval.RecordedBlockEvaluator$record$block$1.invoke (6 samples, 12.00%)</title><rect x="977.6" y="1537" width="141.6" height="15.0" fill="rgb(228,97,14)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk.impl.eval..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KClassImpl$Data.getAllNonStaticMembers (3 samples, 6.00%)</title><rect x="977.6" y="1297" width="70.8" height="15.0" fill="rgb(226,149,16)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.defineClass (1 samples, 2.00%)</title><rect x="1001.2" y="241" width="23.6" height="15.0" fill="rgb(237,155,28)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="251.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>kotlin.reflect.jvm.internal.impl.builtins.jvm.JvmBuiltIns.(init) (2 samples, 4.00%)</title><rect x="977.6" y="897" width="47.2" height="15.0" fill="rgb(221,184,45)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Throwable.(init) (1 samples, 2.00%)</title><rect x="977.6" y="705" width="23.6" height="15.0" fill="rgb(245,189,30)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="715.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>net.bytebuddy.dynamic.scaffold.inline.AbstractInliningDynamicTypeBuilder.make (1 samples, 2.00%)</title><rect x="1166.4" y="1441" width="23.6" height="15.0" fill="rgb(249,202,27)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.TypeWriter$Default$ForInlining.create (1 samples, 2.00%)</title><rect x="1166.4" y="1393" width="23.6" height="15.0" fill="rgb(211,151,25)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (10 samples, 20.00%)</title><rect x="10.0" y="2417" width="236.0" height="15.0" fill="rgb(241,181,21)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.lang.Thread.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.JvmMockFactory.newProxy (2 samples, 4.00%)</title><rect x="1142.8" y="1601" width="47.2" height="15.0" fill="rgb(217,89,52)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.instrument.TransformerManager.transform (1 samples, 2.00%)</title><rect x="1048.4" y="1185" width="23.6" height="15.0" fill="rgb(206,185,53)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.TypeWriter$Default$ForCreation.create (1 samples, 2.00%)</title><rect x="1095.6" y="1057" width="23.6" height="15.0" fill="rgb(240,191,8)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 2.00%)</title><rect x="977.6" y="801" width="23.6" height="15.0" fill="rgb(211,70,20)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="811.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>org.gradle.api.internal.tasks.testing.results.AttachParentTestResultProcessor.started (1 samples, 2.00%)</title><rect x="954.0" y="1489" width="23.6" height="15.0" fill="rgb(242,123,3)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.junit.GenericJUnitTestEventAdapter.testStarted (1 samples, 2.00%)</title><rect x="954.0" y="1681" width="23.6" height="15.0" fill="rgb(251,94,19)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.misc.Launcher$AppClassLoader.loadClass (1 samples, 2.00%)</title><rect x="977.6" y="817" width="23.6" height="15.0" fill="rgb(240,92,49)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.processors.CaptureTestOutputTestResultProcessor.started (1 samples, 2.00%)</title><rect x="954.0" y="1457" width="23.6" height="15.0" fill="rgb(221,76,30)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Throwable.getStackTrace (1 samples, 2.00%)</title><rect x="1024.8" y="401" width="23.6" height="15.0" fill="rgb(222,163,17)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="411.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>net.bytebuddy.jar.asm.ClassReader.readMethod (1 samples, 2.00%)</title><rect x="1166.4" y="1345" width="23.6" height="15.0" fill="rgb(112,112,213)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.DelegatingMethodAccessorImpl.invoke (1 samples, 2.00%)</title><rect x="954.0" y="1553" width="23.6" height="15.0" fill="rgb(229,121,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.recording.states.RecordingState.call (3 samples, 6.00%)</title><rect x="1048.4" y="1409" width="70.8" height="15.0" fill="rgb(216,193,9)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.model.FrameworkMethod$1.runReflectiveCall (9 samples, 18.00%)</title><rect x="977.6" y="1729" width="212.4" height="15.0" fill="rgb(211,176,54)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.model.Fra..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.implementation.bytecode.assign.primitive.PrimitiveTypeAwareAssigner.assign (1 samples, 2.00%)</title><rect x="1095.6" y="897" width="23.6" height="15.0" fill="rgb(254,130,36)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.remote.internal.inet.SocketConnection$SocketInputStream.read (10 samples, 20.00%)</title><rect x="10.0" y="2193" width="236.0" height="15.0" fill="rgb(135,135,209)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.remote.inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.security.SecureClassLoader.defineClass (1 samples, 2.00%)</title><rect x="1001.2" y="225" width="23.6" height="15.0" fill="rgb(221,127,8)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="235.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>java.util.concurrent.ThreadPoolExecutor$Worker.run (10 samples, 20.00%)</title><rect x="10.0" y="2385" width="236.0" height="15.0" fill="rgb(218,182,19)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.util.concurrent.ThreadPool..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors.JvmPackageScope.getContributedClassifier (1 samples, 2.00%)</title><rect x="1024.8" y="977" width="23.6" height="15.0" fill="rgb(248,26,44)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.builtins.BuiltInsLoader$Companion.(clinit) (1 samples, 2.00%)</title><rect x="977.6" y="849" width="23.6" height="15.0" fill="rgb(228,97,34)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.storage.LockBasedStorageManager$MapBasedMemoizedFunction.invoke (1 samples, 2.00%)</title><rect x="1024.8" y="817" width="23.6" height="15.0" fill="rgb(228,116,50)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.defineClass (1 samples, 2.00%)</title><rect x="1119.2" y="1393" width="23.6" height="15.0" fill="rgb(221,142,21)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1403.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>net.bytebuddy.ByteBuddy.redefine (1 samples, 2.00%)</title><rect x="1142.8" y="1441" width="23.6" height="15.0" fill="rgb(207,81,41)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.AbstractMockFactory.temporaryMock (3 samples, 6.00%)</title><rect x="1048.4" y="1329" width="70.8" height="15.0" fill="rgb(246,3,12)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.CodedInputStream.readMessage (1 samples, 2.00%)</title><rect x="1001.2" y="609" width="23.6" height="15.0" fill="rgb(80,80,203)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.AbstractParser.parsePartialFrom (1 samples, 2.00%)</title><rect x="1001.2" y="769" width="23.6" height="15.0" fill="rgb(238,21,26)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$PackageFragment.(init) (1 samples, 2.00%)</title><rect x="1001.2" y="721" width="23.6" height="15.0" fill="rgb(225,139,36)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.ParentRunner$1.schedule (10 samples, 20.00%)</title><rect x="954.0" y="1857" width="236.0" height="15.0" fill="rgb(242,38,34)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.ParentRunner$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.jvm.internal.Intrinsics.sanitizeStackTrace (1 samples, 2.00%)</title><rect x="1024.8" y="417" width="23.6" height="15.0" fill="rgb(237,18,43)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors.LazyJavaPackageScope.access$resolveKotlinBinaryClass (1 samples, 2.00%)</title><rect x="1024.8" y="881" width="23.6" height="15.0" fill="rgb(245,163,20)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.TypeWriter$Default$ForInlining$WithFullProcessing$RedefinitionClassVisitor.onVisitMethod (1 samples, 2.00%)</title><rect x="1166.4" y="1313" width="23.6" height="15.0" fill="rgb(205,14,7)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.serialization.deserialization.ClassDeserializer.deserializeClass (1 samples, 2.00%)</title><rect x="1024.8" y="833" width="23.6" height="15.0" fill="rgb(209,95,3)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.instrument.InstrumentationImpl.transform (1 samples, 2.00%)</title><rect x="1024.8" y="513" width="23.6" height="15.0" fill="rgb(214,94,50)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 2.00%)</title><rect x="1001.2" y="337" width="23.6" height="15.0" fill="rgb(211,70,20)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="347.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>org.junit.internal.runners.statements.InvokeMethod.evaluate (9 samples, 18.00%)</title><rect x="977.6" y="1777" width="212.4" height="15.0" fill="rgb(247,120,28)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.internal.runners...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.serialize.kryo.KryoBackedDecoder.readByte (10 samples, 20.00%)</title><rect x="10.0" y="2257" width="236.0" height="15.0" fill="rgb(101,101,210)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.serialize.k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.utility.visitor.MetadataAwareClassVisitor.visitMethod (1 samples, 2.00%)</title><rect x="1166.4" y="1329" width="23.6" height="15.0" fill="rgb(216,63,48)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecutor.runTestClass (10 samples, 20.00%)</title><rect x="954.0" y="1953" width="236.0" height="15.0" fill="rgb(243,98,3)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.api.internal.tasks.t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.remote.internal.hub.MessageHub$ConnectionReceive.run (10 samples, 20.00%)</title><rect x="10.0" y="2321" width="236.0" height="15.0" fill="rgb(209,69,1)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.remote.inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.NativeMethodAccessorImpl.invoke0 (10 samples, 20.00%)</title><rect x="954.0" y="2033" width="236.0" height="15.0" fill="rgb(230,152,49)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.reflect.NativeMethodAccesso..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.results.AttachParentTestResultProcessor.started (1 samples, 2.00%)</title><rect x="954.0" y="1473" width="23.6" height="15.0" fill="rgb(242,123,3)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.ReflectProperties$LazySoftVal.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1073" width="70.8" height="15.0" fill="rgb(238,121,7)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KDeclarationContainerImpl$Data$moduleData$2.invoke (2 samples, 4.00%)</title><rect x="977.6" y="977" width="47.2" height="15.0" fill="rgb(239,78,15)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.asm.Advice$AdviceVisitor.(init) (1 samples, 2.00%)</title><rect x="1166.4" y="1201" width="23.6" height="15.0" fill="rgb(208,67,23)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.reflect.Method.invoke (10 samples, 20.00%)</title><rect x="954.0" y="2081" width="236.0" height="15.0" fill="rgb(212,84,12)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2091.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.lang.reflect.Method.invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.TypeWriter$Default.make (1 samples, 2.00%)</title><rect x="1166.4" y="1409" width="23.6" height="15.0" fill="rgb(237,184,29)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.ReflectProperties$Val.getValue (3 samples, 6.00%)</title><rect x="977.6" y="1281" width="70.8" height="15.0" fill="rgb(234,101,8)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.MockKKt.every (6 samples, 12.00%)</title><rect x="977.6" y="1633" width="141.6" height="15.0" fill="rgb(248,28,26)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk.MockKKt.e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.JvmMockFactory.newProxy (3 samples, 6.00%)</title><rect x="1048.4" y="1297" width="70.8" height="15.0" fill="rgb(217,89,52)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.ReflectProperties$Val.getValue (3 samples, 6.00%)</title><rect x="977.6" y="1361" width="70.8" height="15.0" fill="rgb(234,101,8)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.KQueueArrayWrapper.poll (10 samples, 20.00%)</title><rect x="10.0" y="2113" width="236.0" height="15.0" fill="rgb(218,109,52)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.nio.ch.KQueueArrayWrapper.p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.transformation.SubclassInstrumentation.doInterceptedSubclassing (2 samples, 4.00%)</title><rect x="1072.0" y="1153" width="47.2" height="15.0" fill="rgb(233,210,17)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ReflectionDispatch.dispatch (1 samples, 2.00%)</title><rect x="954.0" y="1601" width="23.6" height="15.0" fill="rgb(240,43,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.jar.asm.ClassReader.accept (1 samples, 2.00%)</title><rect x="1166.4" y="1361" width="23.6" height="15.0" fill="rgb(214,143,27)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.recording.CommonCallRecorder.call (3 samples, 6.00%)</title><rect x="1048.4" y="1425" width="70.8" height="15.0" fill="rgb(219,62,30)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.TypeWriter$MethodPool$Record$ForDefinedMethod.apply (1 samples, 2.00%)</title><rect x="1095.6" y="1041" width="23.6" height="15.0" fill="rgb(252,148,41)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader$1.run (1 samples, 2.00%)</title><rect x="1119.2" y="1473" width="23.6" height="15.0" fill="rgb(233,15,47)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1483.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>org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run (10 samples, 20.00%)</title><rect x="10.0" y="2401" width="236.0" height="15.0" fill="rgb(223,76,43)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.concurrent...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.instrument.InstrumentationImpl.transform (1 samples, 2.00%)</title><rect x="1048.4" y="1201" width="23.6" height="15.0" fill="rgb(214,94,50)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (10 samples, 20.00%)</title><rect x="10.0" y="2369" width="236.0" height="15.0" fill="rgb(226,37,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.util.concurrent.ThreadPool..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.components.RuntimeModuleData$Companion.create (2 samples, 4.00%)</title><rect x="977.6" y="929" width="47.2" height="15.0" fill="rgb(222,213,3)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.reflect.Method.invoke (10 samples, 20.00%)</title><rect x="954.0" y="2241" width="236.0" height="15.0" fill="rgb(212,84,12)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.lang.reflect.Method.invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.SelectorImpl.lockAndDoSelect (10 samples, 20.00%)</title><rect x="10.0" y="2145" width="236.0" height="15.0" fill="rgb(245,111,10)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.nio.ch.SelectorImpl.lockAnd..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ReflectionDispatch.dispatch (10 samples, 20.00%)</title><rect x="954.0" y="2097" width="236.0" height="15.0" fill="rgb(240,43,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.dispatch.Re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runner.notification.SynchronizedRunListener.testStarted (1 samples, 2.00%)</title><rect x="954.0" y="1713" width="23.6" height="15.0" fill="rgb(254,19,52)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.GeneratedMessageLite.access$100 (1 samples, 2.00%)</title><rect x="1001.2" y="433" width="23.6" height="15.0" fill="rgb(224,69,9)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.serialization.deserialization.builtins.BuiltInsLoaderImpl.createBuiltInPackageFragmentProvider (1 samples, 2.00%)</title><rect x="1001.2" y="849" width="23.6" height="15.0" fill="rgb(224,145,6)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.JvmAnyValueGenerator.anyValue (3 samples, 6.00%)</title><rect x="1048.4" y="1393" width="70.8" height="15.0" fill="rgb(228,211,20)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.junit.AbstractJUnitTestClassProcessor.processTestClass (10 samples, 20.00%)</title><rect x="954.0" y="2001" width="236.0" height="15.0" fill="rgb(237,50,44)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.api.internal.tasks.t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JDWP Transport Listener: dt_socket (10 samples, 20.00%)</title><rect x="718.0" y="2433" width="236.0" height="15.0" fill="rgb(209,145,16)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JDWP Transport Listener: dt_soc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$Package.(init) (1 samples, 2.00%)</title><rect x="1001.2" y="641" width="23.6" height="15.0" fill="rgb(233,223,32)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.InstrumentedType$Factory$Default$1.represent (1 samples, 2.00%)</title><rect x="1048.4" y="1121" width="23.6" height="15.0" fill="rgb(230,4,4)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.implementation.bind.annotation.AllArguments$Binder.bind (1 samples, 2.00%)</title><rect x="1095.6" y="929" width="23.6" height="15.0" fill="rgb(254,44,13)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute (10 samples, 20.00%)</title><rect x="954.0" y="2337" width="236.0" height="15.0" fill="rgb(223,203,12)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.concurrent...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 2.00%)</title><rect x="1119.2" y="1521" width="23.6" height="15.0" fill="rgb(211,70,20)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1531.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>org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecutor.execute (10 samples, 20.00%)</title><rect x="954.0" y="1985" width="236.0" height="15.0" fill="rgb(240,18,46)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.api.internal.tasks.t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.instantiation.JvmMockFactoryHelper$mockHandler$1.invocation (6 samples, 12.00%)</title><rect x="977.6" y="1457" width="141.6" height="15.0" fill="rgb(254,84,28)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk.impl.inst..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder.make (1 samples, 2.00%)</title><rect x="1095.6" y="1089" width="23.6" height="15.0" fill="rgb(237,64,16)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.DynamicType$Builder$AbstractBase$Adapter$MethodMatchAdapter$AnnotationAdapter.materialize (1 samples, 2.00%)</title><rect x="1072.0" y="1121" width="23.6" height="15.0" fill="rgb(242,95,6)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.KQueueSelectorImpl.doSelect (10 samples, 20.00%)</title><rect x="10.0" y="2129" width="236.0" height="15.0" fill="rgb(229,54,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.nio.ch.KQueueSelectorImpl.d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$PackageFragment$1.parsePartialFrom (1 samples, 2.00%)</title><rect x="1001.2" y="753" width="23.6" height="15.0" fill="rgb(228,55,48)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.BlockJUnit4ClassRunner.runChild (10 samples, 20.00%)</title><rect x="954.0" y="1809" width="236.0" height="15.0" fill="rgb(243,9,49)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.BlockJUnit4Cl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.instrument.InstrumentationImpl.retransformClasses (1 samples, 2.00%)</title><rect x="1048.4" y="1233" width="23.6" height="15.0" fill="rgb(248,176,46)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors.LazyJavaPackageScope.resolveKotlinBinaryClass (1 samples, 2.00%)</title><rect x="1024.8" y="865" width="23.6" height="15.0" fill="rgb(233,225,20)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.storage.LockBasedStorageManager$MapBasedMemoizedFunction.invoke (1 samples, 2.00%)</title><rect x="1024.8" y="929" width="23.6" height="15.0" fill="rgb(228,116,50)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.TypeWriter$MethodPool$Record$ForDefinedMethod$WithBody.applyBody (1 samples, 2.00%)</title><rect x="1095.6" y="1025" width="23.6" height="15.0" fill="rgb(233,32,31)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$Function.(init) (1 samples, 2.00%)</title><rect x="1001.2" y="545" width="23.6" height="15.0" fill="rgb(219,203,45)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.ReflectProperties$Val.getValue (2 samples, 4.00%)</title><rect x="977.6" y="1009" width="47.2" height="15.0" fill="rgb(234,101,8)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.ProxyMaker.inline (2 samples, 4.00%)</title><rect x="1142.8" y="1569" width="47.2" height="15.0" fill="rgb(247,96,15)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.log.JvmLogging$adaptor$1.trace (1 samples, 2.00%)</title><rect x="1119.2" y="1569" width="23.6" height="15.0" fill="rgb(212,40,41)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.KQueueArrayWrapper.kevent0 (10 samples, 20.00%)</title><rect x="10.0" y="2097" width="236.0" height="15.0" fill="rgb(249,138,17)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.nio.ch.KQueueArrayWrapper.k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.DelegatingMethodAccessorImpl.invoke (9 samples, 18.00%)</title><rect x="977.6" y="1697" width="212.4" height="15.0" fill="rgb(229,121,4)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.reflect.DelegatingMetho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$TypeParameter$1.parsePartialFrom (1 samples, 2.00%)</title><rect x="1001.2" y="497" width="23.6" height="15.0" fill="rgb(215,81,30)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.DelegatingMethodAccessorImpl.invoke (10 samples, 20.00%)</title><rect x="954.0" y="2065" width="236.0" height="15.0" fill="rgb(229,121,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.reflect.DelegatingMethodAcc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com.esotericsoftware.kryo.io.Input.require (10 samples, 20.00%)</title><rect x="10.0" y="2225" width="236.0" height="15.0" fill="rgb(221,23,44)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com.esotericsoftware.kryo.io.In..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 2.00%)</title><rect x="1024.8" y="673" width="23.6" height="15.0" fill="rgb(211,70,20)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="683.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>kotlin.reflect.jvm.internal.KClassImpl$Data.getDeclaredNonStaticMembers (3 samples, 6.00%)</title><rect x="977.6" y="1217" width="70.8" height="15.0" fill="rgb(212,139,27)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$Package$1.parsePartialFrom (1 samples, 2.00%)</title><rect x="1001.2" y="657" width="23.6" height="15.0" fill="rgb(208,190,15)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.access$100 (1 samples, 2.00%)</title><rect x="1001.2" y="257" width="23.6" height="15.0" fill="rgb(217,189,27)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="267.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>java.net.URLClassLoader$1.run (1 samples, 2.00%)</title><rect x="1024.8" y="625" width="23.6" height="15.0" fill="rgb(233,15,47)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="635.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>sun.nio.ch.SelectorImpl.select (10 samples, 20.00%)</title><rect x="10.0" y="2177" width="236.0" height="15.0" fill="rgb(234,82,18)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.nio.ch.SelectorImpl.select</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.concurrent.ManagedExecutorImpl$1.run (10 samples, 20.00%)</title><rect x="954.0" y="2353" width="236.0" height="15.0" fill="rgb(243,189,52)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.concurrent...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader$1.run (1 samples, 2.00%)</title><rect x="1119.2" y="1457" width="23.6" height="15.0" fill="rgb(233,15,47)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1467.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>kotlin.reflect.jvm.internal.KClassImpl$Data.getAllMembers (3 samples, 6.00%)</title><rect x="977.6" y="1377" width="70.8" height="15.0" fill="rgb(222,28,9)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.defineClass1 (1 samples, 2.00%)</title><rect x="1024.8" y="529" width="23.6" height="15.0" fill="rgb(243,184,50)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="539.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>kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors.LazyJavaPackageScope.findClassifier (1 samples, 2.00%)</title><rect x="1024.8" y="945" width="23.6" height="15.0" fill="rgb(227,5,52)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.serialization.deserialization.ClassDeserializer.createClass (1 samples, 2.00%)</title><rect x="1024.8" y="753" width="23.6" height="15.0" fill="rgb(244,78,24)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JDWP Command Reader (10 samples, 20.00%)</title><rect x="246.0" y="2433" width="236.0" height="15.0" fill="rgb(228,138,16)" rx="2" ry="2" />
<text text-anchor="" x="249.00" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JDWP Command Reader</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$Package$1.parsePartialFrom (1 samples, 2.00%)</title><rect x="1001.2" y="673" width="23.6" height="15.0" fill="rgb(208,190,15)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.processTestClass (10 samples, 20.00%)</title><rect x="954.0" y="2017" width="236.0" height="15.0" fill="rgb(229,98,35)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.api.internal.tasks.t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.remote.internal.inet.SocketConnection.receive (10 samples, 20.00%)</title><rect x="10.0" y="2305" width="236.0" height="15.0" fill="rgb(235,137,18)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.remote.inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 2.00%)</title><rect x="1119.2" y="1553" width="23.6" height="15.0" fill="rgb(211,70,20)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1563.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>kotlin.reflect.jvm.internal.impl.protobuf.CodedInputStream.readMessage (1 samples, 2.00%)</title><rect x="1001.2" y="689" width="23.6" height="15.0" fill="rgb(80,80,203)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.JvmMockKAgentFactory.init (1 samples, 2.00%)</title><rect x="1119.2" y="1601" width="23.6" height="15.0" fill="rgb(233,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.api.internal.tasks.testing.junit.JUnitTestEventAdapter.testStarted (1 samples, 2.00%)</title><rect x="954.0" y="1697" width="23.6" height="15.0" fill="rgb(208,191,3)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.NativeMethodAccessorImpl.invoke (9 samples, 18.00%)</title><rect x="977.6" y="1681" width="212.4" height="15.0" fill="rgb(253,205,18)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.reflect.NativeMethodAcc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors.LazyJavaPackageScope$classes$1.invoke (1 samples, 2.00%)</title><rect x="1024.8" y="913" width="23.6" height="15.0" fill="rgb(207,99,19)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$PackageFragment.(init) (1 samples, 2.00%)</title><rect x="1001.2" y="705" width="23.6" height="15.0" fill="rgb(225,139,36)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KClassImpl.getDescriptor (3 samples, 6.00%)</title><rect x="977.6" y="1121" width="70.8" height="15.0" fill="rgb(225,143,19)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ReflectionDispatch.dispatch (10 samples, 20.00%)</title><rect x="954.0" y="2273" width="236.0" height="15.0" fill="rgb(240,43,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.gradle.internal.dispatch.Re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.serialization.deserialization.descriptors.DeserializedClassDescriptor.(init) (1 samples, 2.00%)</title><rect x="1024.8" y="737" width="23.6" height="15.0" fill="rgb(251,158,0)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Exception.(init) (1 samples, 2.00%)</title><rect x="977.6" y="721" width="23.6" height="15.0" fill="rgb(249,33,7)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="731.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>sun.instrument.InstrumentationImpl.retransformClasses (2 samples, 4.00%)</title><rect x="1142.8" y="1537" width="47.2" height="15.0" fill="rgb(248,176,46)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.ParentRunner.runChildren (10 samples, 20.00%)</title><rect x="954.0" y="1873" width="236.0" height="15.0" fill="rgb(249,90,5)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.ParentRunner...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.junit.runners.ParentRunner$3.run (10 samples, 20.00%)</title><rect x="954.0" y="1841" width="236.0" height="15.0" fill="rgb(248,121,39)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.junit.runners.ParentRunner$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.actor.internal.DefaultActorFactory$BlockingActor.dispatch (1 samples, 2.00%)</title><rect x="954.0" y="1633" width="23.6" height="15.0" fill="rgb(205,221,44)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 2.00%)</title><rect x="1024.8" y="705" width="23.6" height="15.0" fill="rgb(211,70,20)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="715.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>java.security.SecureClassLoader.defineClass (1 samples, 2.00%)</title><rect x="1024.8" y="561" width="23.6" height="15.0" fill="rgb(221,127,8)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="571.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>kotlin.reflect.jvm.internal.KDeclarationContainerImpl$Data$moduleData$2.invoke (2 samples, 4.00%)</title><rect x="977.6" y="961" width="47.2" height="15.0" fill="rgb(239,78,15)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.NativeMethodAccessorImpl.invoke (10 samples, 20.00%)</title><rect x="954.0" y="2049" width="236.0" height="15.0" fill="rgb(253,205,18)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.reflect.NativeMethodAccesso..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.GeneratedMessageLite$ExtendableMessage.parseUnknownField (1 samples, 2.00%)</title><rect x="1001.2" y="449" width="23.6" height="15.0" fill="rgb(249,59,51)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.implementation.bind.MethodDelegationBinder$Processor.bind (1 samples, 2.00%)</title><rect x="1095.6" y="977" width="23.6" height="15.0" fill="rgb(254,18,32)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.InstrumentedType$Factory$Default$1.represent (1 samples, 2.00%)</title><rect x="1142.8" y="1425" width="23.6" height="15.0" fill="rgb(230,4,4)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf$PackageFragment.parseFrom (1 samples, 2.00%)</title><rect x="1001.2" y="817" width="23.6" height="15.0" fill="rgb(238,215,50)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.description.type.TypeDescription$Generic$LazyProjection$ForLoadedReturnType.(init) (1 samples, 2.00%)</title><rect x="1048.4" y="1041" width="23.6" height="15.0" fill="rgb(237,126,22)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com.sun.proxy.$Proxy3.started (1 samples, 2.00%)</title><rect x="954.0" y="1441" width="23.6" height="15.0" fill="rgb(223,73,9)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1451.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>java.util.concurrent.locks.ReentrantLock.unlock (1 samples, 2.00%)</title><rect x="954.0" y="1393" width="23.6" height="15.0" fill="rgb(249,171,0)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1403.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>kotlin.reflect.jvm.internal.KClassImpl$Data$declaredNonStaticMembers$2.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1153" width="70.8" height="15.0" fill="rgb(253,215,12)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.builtins.jvm.JvmBuiltIns.(init) (2 samples, 4.00%)</title><rect x="977.6" y="913" width="47.2" height="15.0" fill="rgb(221,184,45)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.JvmMockKGateway.(init) (1 samples, 2.00%)</title><rect x="1119.2" y="1617" width="23.6" height="15.0" fill="rgb(205,19,44)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.locks.AbstractQueuedSynchronizer.release (1 samples, 2.00%)</title><rect x="954.0" y="1377" width="23.6" height="15.0" fill="rgb(240,219,4)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1387.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>io.mockk.proxy.jvm.transformation.SubclassInstrumentation$subclass$1.call (2 samples, 4.00%)</title><rect x="1072.0" y="1201" width="47.2" height="15.0" fill="rgb(229,122,4)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KClassImpl$Data$descriptor$2.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1041" width="70.8" height="15.0" fill="rgb(251,54,36)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.JvmMockKGateway.(clinit) (1 samples, 2.00%)</title><rect x="1119.2" y="1633" width="23.6" height="15.0" fill="rgb(233,82,2)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.DynamicType$Builder$AbstractBase.make (1 samples, 2.00%)</title><rect x="1095.6" y="1121" width="23.6" height="15.0" fill="rgb(236,157,46)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com.sun.proxy.$Proxy2.processTestClass (10 samples, 20.00%)</title><rect x="954.0" y="2161" width="236.0" height="15.0" fill="rgb(208,108,10)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com.sun.proxy.$Proxy2.processTe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.transformation.InliningClassTransformer.transform (1 samples, 2.00%)</title><rect x="1048.4" y="1169" width="23.6" height="15.0" fill="rgb(245,148,19)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke (1 samples, 2.00%)</title><rect x="954.0" y="1649" width="23.6" height="15.0" fill="rgb(216,219,10)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.metadata.deserialization.Flags.(clinit) (1 samples, 2.00%)</title><rect x="1024.8" y="721" width="23.6" height="15.0" fill="rgb(216,203,6)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.protobuf.GeneratedMessageLite.parseUnknownField (1 samples, 2.00%)</title><rect x="1001.2" y="417" width="23.6" height="15.0" fill="rgb(226,207,45)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.dynamic.scaffold.TypeWriter$MethodPool$Record$ForDefinedMethod$WithBody.applyCode (1 samples, 2.00%)</title><rect x="1095.6" y="1009" width="23.6" height="15.0" fill="rgb(239,211,25)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.KClassImpl$Data$allNonStaticMembers$2.invoke (3 samples, 6.00%)</title><rect x="977.6" y="1233" width="70.8" height="15.0" fill="rgb(223,192,47)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kotlin.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.serialization.deserialization.builtins.BuiltInsPackageFragmentImpl$Companion.create (1 samples, 2.00%)</title><rect x="1001.2" y="833" width="23.6" height="15.0" fill="rgb(250,193,10)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.misc.Unsafe.unpark (1 samples, 2.00%)</title><rect x="954.0" y="1329" width="23.6" height="15.0" fill="rgb(212,28,28)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.implementation.MethodDelegation$Appender.apply (1 samples, 2.00%)</title><rect x="1095.6" y="993" width="23.6" height="15.0" fill="rgb(219,98,29)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.impl.recording.JvmAutoHinter.autoHint (6 samples, 12.00%)</title><rect x="977.6" y="1569" width="141.6" height="15.0" fill="rgb(225,123,19)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk.impl.reco..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.asm.Advice$AdviceVisitor$WithExitAdvice.(init) (1 samples, 2.00%)</title><rect x="1166.4" y="1217" width="23.6" height="15.0" fill="rgb(211,152,20)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun.reflect.NativeMethodAccessorImpl.invoke (10 samples, 20.00%)</title><rect x="954.0" y="2209" width="236.0" height="15.0" fill="rgb(253,205,18)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="2219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun.reflect.NativeMethodAccesso..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net.bytebuddy.asm.AsmVisitorWrapper$ForDeclaredMethods$DispatchingVisitor.visitMethod (1 samples, 2.00%)</title><rect x="1166.4" y="1297" width="23.6" height="15.0" fill="rgb(254,73,8)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.serialization.deserialization.ClassDeserializer$classes$1.invoke (1 samples, 2.00%)</title><rect x="1024.8" y="785" width="23.6" height="15.0" fill="rgb(226,112,7)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com.sun.proxy.$Proxy3.started (1 samples, 2.00%)</title><rect x="954.0" y="1665" width="23.6" height="15.0" fill="rgb(223,73,9)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="1675.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>net.bytebuddy.asm.AsmVisitorWrapper$ForDeclaredMethods$Entry.wrap (1 samples, 2.00%)</title><rect x="1166.4" y="1281" width="23.6" height="15.0" fill="rgb(241,179,41)" rx="2" ry="2" />
<text text-anchor="" x="1169.40" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader$1.run (1 samples, 2.00%)</title><rect x="1001.2" y="289" width="23.6" height="15.0" fill="rgb(233,15,47)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="299.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>java.net.URLClassLoader.defineClass (1 samples, 2.00%)</title><rect x="1119.2" y="1425" width="23.6" height="15.0" fill="rgb(237,155,28)" rx="2" ry="2" />
<text text-anchor="" x="1122.20" y="1435.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>net.bytebuddy.implementation.bytecode.assign.primitive.VoidAwareAssigner.assign (1 samples, 2.00%)</title><rect x="1095.6" y="913" width="23.6" height="15.0" fill="rgb(221,226,28)" rx="2" ry="2" />
<text text-anchor="" x="1098.60" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kotlin.reflect.jvm.internal.impl.serialization.deserialization.ClassDeserializer.access$createClass (1 samples, 2.00%)</title><rect x="1024.8" y="769" width="23.6" height="15.0" fill="rgb(227,2,26)" rx="2" ry="2" />
<text text-anchor="" x="1027.80" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.advice.Interceptor.call (6 samples, 12.00%)</title><rect x="977.6" y="1473" width="141.6" height="15.0" fill="rgb(251,184,31)" rx="2" ry="2" />
<text text-anchor="" x="980.60" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.mockk.proxy.jvm..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.mockk.proxy.jvm.transformation.InliningClassTransformer.transform (1 samples, 2.00%)</title><rect x="1001.2" y="145" width="23.6" height="15.0" fill="rgb(245,148,19)" rx="2" ry="2" />
<text text-anchor="" x="1004.20" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment