414 lines
No EOL
431 KiB
XML
414 lines
No EOL
431 KiB
XML
<?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="1094" onload="init(evt)" viewBox="0 0 1200 1094" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
|
|
text { font-family:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
|
|
#title { text-anchor:middle; font-size:17px; }
|
|
#search { opacity:0.1; cursor:pointer; }
|
|
#search:hover, #search.show { opacity:1; }
|
|
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
|
|
#unzoom { cursor:pointer; }
|
|
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
|
|
.hide { display:none; }
|
|
.parent { opacity:0.5; }
|
|
</style><script type="text/ecmascript"><![CDATA[
|
|
var nametype = 'Function:';
|
|
var fontsize = 12;
|
|
var fontwidth = 0.59;
|
|
var xpad = 10;
|
|
var inverted = false;
|
|
var searchcolor = 'rgb(230,0,230)';
|
|
var fluiddrawing = true;
|
|
var truncate_text_right = false;
|
|
]]><![CDATA["use strict";
|
|
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames;
|
|
function init(evt) {
|
|
details = document.getElementById("details").firstChild;
|
|
searchbtn = document.getElementById("search");
|
|
unzoombtn = document.getElementById("unzoom");
|
|
matchedtxt = document.getElementById("matched");
|
|
svg = document.getElementsByTagName("svg")[0];
|
|
frames = document.getElementById("frames");
|
|
total_samples = parseInt(frames.attributes.total_samples.value);
|
|
searching = 0;
|
|
|
|
// Use GET parameters to restore a flamegraph's state.
|
|
var restore_state = function() {
|
|
var params = get_params();
|
|
if (params.x && params.y)
|
|
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
|
|
if (params.s)
|
|
search(params.s);
|
|
};
|
|
|
|
if (fluiddrawing) {
|
|
// Make width dynamic so the SVG fits its parent's width.
|
|
svg.removeAttribute("width");
|
|
// Edge requires us to have a viewBox that gets updated with size changes.
|
|
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
|
|
var update_for_width_change = function() {
|
|
if (isEdge) {
|
|
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
|
|
}
|
|
|
|
// Keep consistent padding on left and right of frames container.
|
|
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
|
|
|
|
// Text truncation needs to be adjusted for the current width.
|
|
var el = frames.children;
|
|
for(var i = 0; i < el.length; i++) {
|
|
update_text(el[i]);
|
|
}
|
|
|
|
// Keep search elements at a fixed distance from right edge.
|
|
var svgWidth = svg.width.baseVal.value;
|
|
searchbtn.attributes.x.value = svgWidth - xpad - 100;
|
|
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
|
|
};
|
|
window.addEventListener('resize', function() {
|
|
update_for_width_change();
|
|
});
|
|
// This needs to be done asynchronously for Safari to work.
|
|
setTimeout(function() {
|
|
unzoom();
|
|
update_for_width_change();
|
|
restore_state();
|
|
if (!isEdge) {
|
|
svg.removeAttribute("viewBox");
|
|
}
|
|
}, 0);
|
|
} else {
|
|
restore_state();
|
|
}
|
|
}
|
|
// event listeners
|
|
window.addEventListener("click", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) {
|
|
if (target.nodeName == "a") {
|
|
if (e.ctrlKey === false) return;
|
|
e.preventDefault();
|
|
}
|
|
if (target.classList.contains("parent")) unzoom();
|
|
zoom(target);
|
|
|
|
// set parameters for zoom state
|
|
var el = target.querySelector("rect");
|
|
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
|
|
var params = get_params()
|
|
params.x = el.attributes["fg:x"].value;
|
|
params.y = el.attributes.y.value;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
}
|
|
else if (e.target.id == "unzoom") {
|
|
unzoom();
|
|
|
|
// remove zoom state
|
|
var params = get_params();
|
|
if (params.x) delete params.x;
|
|
if (params.y) delete params.y;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
else if (e.target.id == "search") search_prompt();
|
|
}, false)
|
|
// mouse-over for info
|
|
// show
|
|
window.addEventListener("mouseover", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = nametype + " " + g_to_text(target);
|
|
}, false)
|
|
// clear
|
|
window.addEventListener("mouseout", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = ' ';
|
|
}, false)
|
|
// ctrl-F for search
|
|
window.addEventListener("keydown",function (e) {
|
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
|
|
e.preventDefault();
|
|
search_prompt();
|
|
}
|
|
}, false)
|
|
// functions
|
|
function get_params() {
|
|
var params = {};
|
|
var paramsarr = window.location.search.substr(1).split('&');
|
|
for (var i = 0; i < paramsarr.length; ++i) {
|
|
var tmp = paramsarr[i].split("=");
|
|
if (!tmp[0] || !tmp[1]) continue;
|
|
params[tmp[0]] = decodeURIComponent(tmp[1]);
|
|
}
|
|
return params;
|
|
}
|
|
function parse_params(params) {
|
|
var uri = "?";
|
|
for (var key in params) {
|
|
uri += key + '=' + encodeURIComponent(params[key]) + '&';
|
|
}
|
|
if (uri.slice(-1) == "&")
|
|
uri = uri.substring(0, uri.length - 1);
|
|
if (uri == '?')
|
|
uri = window.location.href.split('?')[0];
|
|
return uri;
|
|
}
|
|
function find_child(node, selector) {
|
|
var children = node.querySelectorAll(selector);
|
|
if (children.length) return children[0];
|
|
return;
|
|
}
|
|
function find_group(node) {
|
|
var parent = node.parentElement;
|
|
if (!parent) return;
|
|
if (parent.id == "frames") return node;
|
|
return find_group(parent);
|
|
}
|
|
function orig_save(e, attr, val) {
|
|
if (e.attributes["fg:orig_" + attr] != undefined) return;
|
|
if (e.attributes[attr] == undefined) return;
|
|
if (val == undefined) val = e.attributes[attr].value;
|
|
e.setAttribute("fg:orig_" + attr, val);
|
|
}
|
|
function orig_load(e, attr) {
|
|
if (e.attributes["fg:orig_"+attr] == undefined) return;
|
|
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
|
|
e.removeAttribute("fg:orig_" + attr);
|
|
}
|
|
function g_to_text(e) {
|
|
var text = find_child(e, "title").firstChild.nodeValue;
|
|
return (text)
|
|
}
|
|
function g_to_func(e) {
|
|
var func = g_to_text(e);
|
|
// if there's any manipulation we want to do to the function
|
|
// name before it's searched, do it here before returning.
|
|
return (func);
|
|
}
|
|
function update_text(e) {
|
|
var r = find_child(e, "rect");
|
|
var t = find_child(e, "text");
|
|
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
|
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
|
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * fontsize * fontwidth) {
|
|
t.textContent = "";
|
|
return;
|
|
}
|
|
t.textContent = txt;
|
|
// Fit in full text width
|
|
if (/^ *\$/.test(txt) || t.getComputedTextLength() < w)
|
|
return;
|
|
if (truncate_text_right) {
|
|
// Truncate the right side of the text.
|
|
for (var x = txt.length - 2; x > 0; x--) {
|
|
if (t.getSubStringLength(0, x + 2) <= w) {
|
|
t.textContent = txt.substring(0, x) + "..";
|
|
return;
|
|
}
|
|
}
|
|
} else {
|
|
// Truncate the left side of the text.
|
|
for (var x = 2; x < txt.length; x++) {
|
|
if (t.getSubStringLength(x - 2, txt.length) <= w) {
|
|
t.textContent = ".." + txt.substring(x, txt.length);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
t.textContent = "";
|
|
}
|
|
// zoom
|
|
function zoom_reset(e) {
|
|
if (e.tagName == "rect") {
|
|
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
|
|
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
|
|
}
|
|
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, zoomed_width_samples) {
|
|
if (e.tagName == "text") {
|
|
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
|
|
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
|
|
} else if (e.tagName == "rect") {
|
|
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
|
|
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_child(c[i], x, zoomed_width_samples);
|
|
}
|
|
}
|
|
function zoom_parent(e) {
|
|
if (e.attributes) {
|
|
if (e.attributes.x != undefined) {
|
|
e.attributes.x.value = "0.0%";
|
|
}
|
|
if (e.attributes.width != undefined) {
|
|
e.attributes.width.value = "100.0%";
|
|
}
|
|
}
|
|
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 = parseInt(attr["fg:w"].value);
|
|
var xmin = parseInt(attr["fg:x"].value);
|
|
var xmax = xmin + width;
|
|
var ymin = parseFloat(attr.y.value);
|
|
unzoombtn.classList.remove("hide");
|
|
var el = frames.children;
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
var a = find_child(e, "rect").attributes;
|
|
var ex = parseInt(a["fg:x"].value);
|
|
var ew = parseInt(a["fg:w"].value);
|
|
// Is it an ancestor
|
|
if (!inverted) {
|
|
var upstack = parseFloat(a.y.value) > ymin;
|
|
} else {
|
|
var upstack = parseFloat(a.y.value) < ymin;
|
|
}
|
|
if (upstack) {
|
|
// Direct ancestor
|
|
if (ex <= xmin && (ex+ew) >= xmax) {
|
|
e.classList.add("parent");
|
|
zoom_parent(e);
|
|
update_text(e);
|
|
}
|
|
// not in current path
|
|
else
|
|
e.classList.add("hide");
|
|
}
|
|
// Children maybe
|
|
else {
|
|
// no common path
|
|
if (ex < xmin || ex >= xmax) {
|
|
e.classList.add("hide");
|
|
}
|
|
else {
|
|
zoom_child(e, xmin, width);
|
|
update_text(e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function unzoom() {
|
|
unzoombtn.classList.add("hide");
|
|
var el = frames.children;
|
|
for(var i = 0; i < el.length; i++) {
|
|
el[i].classList.remove("parent");
|
|
el[i].classList.remove("hide");
|
|
zoom_reset(el[i]);
|
|
update_text(el[i]);
|
|
}
|
|
}
|
|
// search
|
|
function reset_search() {
|
|
var el = document.querySelectorAll("#frames rect");
|
|
for (var i = 0; i < el.length; i++) {
|
|
orig_load(el[i], "fill")
|
|
}
|
|
var params = get_params();
|
|
delete params.s;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
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.classList.remove("show");
|
|
searchbtn.firstChild.nodeValue = "Search"
|
|
matchedtxt.classList.add("hide");
|
|
matchedtxt.firstChild.nodeValue = ""
|
|
}
|
|
}
|
|
function search(term) {
|
|
var re = new RegExp(term);
|
|
var el = frames.children;
|
|
var matches = new Object();
|
|
var maxwidth = 0;
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
// Skip over frames which are either not visible, or below the zoomed-to frame
|
|
if (e.classList.contains("hide") || e.classList.contains("parent")) {
|
|
continue;
|
|
}
|
|
var func = g_to_func(e);
|
|
var rect = find_child(e, "rect");
|
|
if (func == null || rect == null)
|
|
continue;
|
|
// Save max width. Only works as we have a root frame
|
|
var w = parseInt(rect.attributes["fg:w"].value);
|
|
if (w > maxwidth)
|
|
maxwidth = w;
|
|
if (func.match(re)) {
|
|
// highlight
|
|
var x = parseInt(rect.attributes["fg:x"].value);
|
|
orig_save(rect, "fill");
|
|
rect.attributes.fill.value = searchcolor;
|
|
// 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;
|
|
var params = get_params();
|
|
params.s = term;
|
|
history.replaceState(null, null, parse_params(params));
|
|
|
|
searchbtn.classList.add("show");
|
|
searchbtn.firstChild.nodeValue = "Reset Search";
|
|
// calculate percent matched, excluding vertical overlap
|
|
var count = 0;
|
|
var lastx = -1;
|
|
var lastw = 0;
|
|
var keys = Array();
|
|
for (k in matches) {
|
|
if (matches.hasOwnProperty(k))
|
|
keys.push(k);
|
|
}
|
|
// sort the matched frames by their x location
|
|
// ascending, then width descending
|
|
keys.sort(function(a, b){
|
|
return a - b;
|
|
});
|
|
// Step through frames saving only the biggest bottom-up frames
|
|
// thanks to the sort order. This relies on the tree property
|
|
// where children are always smaller than their parents.
|
|
for (var k in keys) {
|
|
var x = parseInt(keys[k]);
|
|
var w = matches[keys[k]];
|
|
if (x >= lastx + lastw) {
|
|
count += w;
|
|
lastx = x;
|
|
lastw = w;
|
|
}
|
|
}
|
|
// display matched percent
|
|
matchedtxt.classList.remove("hide");
|
|
var pct = 100 * count / maxwidth;
|
|
if (pct != 100) pct = pct.toFixed(1);
|
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
|
|
}
|
|
function format_percent(n) {
|
|
return n.toFixed(4) + "%";
|
|
}
|
|
]]></script><rect x="0" y="0" width="100%" height="1094" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="1077.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="1077.00"> </text><svg id="frames" x="10" width="1180" total_samples="24223"><g><title>WTF::base64Decode (65 samples, 0.27%)</title><rect x="0.0083%" y="837" width="0.2683%" height="15" fill="rgb(227,0,7)" fg:x="2" fg:w="65"/><text x="0.2583%" y="847.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (65 samples, 0.27%)</title><rect x="0.0083%" y="821" width="0.2683%" height="15" fill="rgb(217,0,24)" fg:x="2" fg:w="65"/><text x="0.2583%" y="831.50"></text></g><g><title>DataURLDecoder (72 samples, 0.30%)</title><rect x="0.0083%" y="1029" width="0.2972%" height="15" fill="rgb(221,193,54)" fg:x="2" fg:w="72"/><text x="0.2583%" y="1039.50"></text></g><g><title>[libc.so.6] (72 samples, 0.30%)</title><rect x="0.0083%" y="1013" width="0.2972%" height="15" fill="rgb(248,212,6)" fg:x="2" fg:w="72"/><text x="0.2583%" y="1023.50"></text></g><g><title>[libc.so.6] (72 samples, 0.30%)</title><rect x="0.0083%" y="997" width="0.2972%" height="15" fill="rgb(208,68,35)" fg:x="2" fg:w="72"/><text x="0.2583%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (72 samples, 0.30%)</title><rect x="0.0083%" y="981" width="0.2972%" height="15" fill="rgb(232,128,0)" fg:x="2" fg:w="72"/><text x="0.2583%" y="991.50"></text></g><g><title>WTF::RunLoop::run (72 samples, 0.30%)</title><rect x="0.0083%" y="965" width="0.2972%" height="15" fill="rgb(207,160,47)" fg:x="2" fg:w="72"/><text x="0.2583%" y="975.50"></text></g><g><title>g_main_loop_run (72 samples, 0.30%)</title><rect x="0.0083%" y="949" width="0.2972%" height="15" fill="rgb(228,23,34)" fg:x="2" fg:w="72"/><text x="0.2583%" y="959.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (72 samples, 0.30%)</title><rect x="0.0083%" y="933" width="0.2972%" height="15" fill="rgb(218,30,26)" fg:x="2" fg:w="72"/><text x="0.2583%" y="943.50"></text></g><g><title>g_main_context_dispatch (72 samples, 0.30%)</title><rect x="0.0083%" y="917" width="0.2972%" height="15" fill="rgb(220,122,19)" fg:x="2" fg:w="72"/><text x="0.2583%" y="927.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (72 samples, 0.30%)</title><rect x="0.0083%" y="901" width="0.2972%" height="15" fill="rgb(250,228,42)" fg:x="2" fg:w="72"/><text x="0.2583%" y="911.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (72 samples, 0.30%)</title><rect x="0.0083%" y="885" width="0.2972%" height="15" fill="rgb(240,193,28)" fg:x="2" fg:w="72"/><text x="0.2583%" y="895.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (72 samples, 0.30%)</title><rect x="0.0083%" y="869" width="0.2972%" height="15" fill="rgb(216,20,37)" fg:x="2" fg:w="72"/><text x="0.2583%" y="879.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (72 samples, 0.30%)</title><rect x="0.0083%" y="853" width="0.2972%" height="15" fill="rgb(206,188,39)" fg:x="2" fg:w="72"/><text x="0.2583%" y="863.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="0.2766%" y="837" width="0.0289%" height="15" fill="rgb(217,207,13)" fg:x="67" fg:w="7"/><text x="0.5266%" y="847.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="0.2849%" y="821" width="0.0206%" height="15" fill="rgb(231,73,38)" fg:x="69" fg:w="5"/><text x="0.5349%" y="831.50"></text></g><g><title>WTF::ParkingLot::parkConditionallyImpl (13 samples, 0.05%)</title><rect x="0.3138%" y="949" width="0.0537%" height="15" fill="rgb(225,20,46)" fg:x="76" fg:w="13"/><text x="0.5638%" y="959.50"></text></g><g><title>WTF::ThreadCondition::timedWait (12 samples, 0.05%)</title><rect x="0.3179%" y="933" width="0.0495%" height="15" fill="rgb(210,31,41)" fg:x="77" fg:w="12"/><text x="0.5679%" y="943.50"></text></g><g><title>pthread_cond_timedwait (12 samples, 0.05%)</title><rect x="0.3179%" y="917" width="0.0495%" height="15" fill="rgb(221,200,47)" fg:x="77" fg:w="12"/><text x="0.5679%" y="927.50"></text></g><g><title>[libc.so.6] (12 samples, 0.05%)</title><rect x="0.3179%" y="901" width="0.0495%" height="15" fill="rgb(226,26,5)" fg:x="77" fg:w="12"/><text x="0.5679%" y="911.50"></text></g><g><title>WTF::ThreadCondition::timedWait (18 samples, 0.07%)</title><rect x="0.3674%" y="917" width="0.0743%" height="15" fill="rgb(249,33,26)" fg:x="89" fg:w="18"/><text x="0.6174%" y="927.50"></text></g><g><title>pthread_cond_wait (18 samples, 0.07%)</title><rect x="0.3674%" y="901" width="0.0743%" height="15" fill="rgb(235,183,28)" fg:x="89" fg:w="18"/><text x="0.6174%" y="911.50"></text></g><g><title>[libc.so.6] (17 samples, 0.07%)</title><rect x="0.3715%" y="885" width="0.0702%" height="15" fill="rgb(221,5,38)" fg:x="90" fg:w="17"/><text x="0.6215%" y="895.50"></text></g><g><title>WTF::ParkingLot::parkConditionallyImpl (19 samples, 0.08%)</title><rect x="0.3674%" y="933" width="0.0784%" height="15" fill="rgb(247,18,42)" fg:x="89" fg:w="19"/><text x="0.6174%" y="943.50"></text></g><g><title>WTF::ThreadCondition::timedWait (46 samples, 0.19%)</title><rect x="0.4541%" y="869" width="0.1899%" height="15" fill="rgb(241,131,45)" fg:x="110" fg:w="46"/><text x="0.7041%" y="879.50"></text></g><g><title>pthread_cond_wait (46 samples, 0.19%)</title><rect x="0.4541%" y="853" width="0.1899%" height="15" fill="rgb(249,31,29)" fg:x="110" fg:w="46"/><text x="0.7041%" y="863.50"></text></g><g><title>[libc.so.6] (46 samples, 0.19%)</title><rect x="0.4541%" y="837" width="0.1899%" height="15" fill="rgb(225,111,53)" fg:x="110" fg:w="46"/><text x="0.7041%" y="847.50"></text></g><g><title>WTF::ParkingLot::parkConditionallyImpl (47 samples, 0.19%)</title><rect x="0.4541%" y="885" width="0.1940%" height="15" fill="rgb(238,160,17)" fg:x="110" fg:w="47"/><text x="0.7041%" y="895.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (8 samples, 0.03%)</title><rect x="0.6894%" y="869" width="0.0330%" height="15" fill="rgb(214,148,48)" fg:x="167" fg:w="8"/><text x="0.9394%" y="879.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="0.7101%" y="853" width="0.0124%" height="15" fill="rgb(232,36,49)" fg:x="172" fg:w="3"/><text x="0.9601%" y="863.50"></text></g><g><title>JSC::JSObject::visitChildren (3 samples, 0.01%)</title><rect x="0.7101%" y="837" width="0.0124%" height="15" fill="rgb(209,103,24)" fg:x="172" fg:w="3"/><text x="0.9601%" y="847.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (106 samples, 0.44%)</title><rect x="0.3138%" y="965" width="0.4376%" height="15" fill="rgb(229,88,8)" fg:x="76" fg:w="106"/><text x="0.5638%" y="975.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (93 samples, 0.38%)</title><rect x="0.3674%" y="949" width="0.3839%" height="15" fill="rgb(213,181,19)" fg:x="89" fg:w="93"/><text x="0.6174%" y="959.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (74 samples, 0.31%)</title><rect x="0.4459%" y="933" width="0.3055%" height="15" fill="rgb(254,191,54)" fg:x="108" fg:w="74"/><text x="0.6959%" y="943.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (74 samples, 0.31%)</title><rect x="0.4459%" y="917" width="0.3055%" height="15" fill="rgb(241,83,37)" fg:x="108" fg:w="74"/><text x="0.6959%" y="927.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (74 samples, 0.31%)</title><rect x="0.4459%" y="901" width="0.3055%" height="15" fill="rgb(233,36,39)" fg:x="108" fg:w="74"/><text x="0.6959%" y="911.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (25 samples, 0.10%)</title><rect x="0.6481%" y="885" width="0.1032%" height="15" fill="rgb(226,3,54)" fg:x="157" fg:w="25"/><text x="0.8981%" y="895.50"></text></g><g><title>__sched_yield (6 samples, 0.02%)</title><rect x="0.7266%" y="869" width="0.0248%" height="15" fill="rgb(245,192,40)" fg:x="176" fg:w="6"/><text x="0.9766%" y="879.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (110 samples, 0.45%)</title><rect x="0.3138%" y="981" width="0.4541%" height="15" fill="rgb(238,167,29)" fg:x="76" fg:w="110"/><text x="0.5638%" y="991.50"></text></g><g><title>pas_try_deallocate_slow_no_cache (4 samples, 0.02%)</title><rect x="0.7514%" y="965" width="0.0165%" height="15" fill="rgb(232,182,51)" fg:x="182" fg:w="4"/><text x="1.0014%" y="975.50"></text></g><g><title>pas_thread_local_cache_get_slow (4 samples, 0.02%)</title><rect x="0.7514%" y="949" width="0.0165%" height="15" fill="rgb(231,60,39)" fg:x="182" fg:w="4"/><text x="1.0014%" y="959.50"></text></g><g><title>pas_thread_local_cache_create (3 samples, 0.01%)</title><rect x="0.7555%" y="933" width="0.0124%" height="15" fill="rgb(208,69,12)" fg:x="183" fg:w="3"/><text x="1.0055%" y="943.50"></text></g><g><title>HeapHelper (112 samples, 0.46%)</title><rect x="0.3096%" y="1029" width="0.4624%" height="15" fill="rgb(235,93,37)" fg:x="75" fg:w="112"/><text x="0.5596%" y="1039.50"></text></g><g><title>[libc.so.6] (112 samples, 0.46%)</title><rect x="0.3096%" y="1013" width="0.4624%" height="15" fill="rgb(213,116,39)" fg:x="75" fg:w="112"/><text x="0.5596%" y="1023.50"></text></g><g><title>[libc.so.6] (112 samples, 0.46%)</title><rect x="0.3096%" y="997" width="0.4624%" height="15" fill="rgb(222,207,29)" fg:x="75" fg:w="112"/><text x="0.5596%" y="1007.50"></text></g><g><title>[anon] (4 samples, 0.02%)</title><rect x="0.7761%" y="1013" width="0.0165%" height="15" fill="rgb(206,96,30)" fg:x="188" fg:w="4"/><text x="1.0261%" y="1023.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="0.7803%" y="997" width="0.0124%" height="15" fill="rgb(218,138,4)" fg:x="189" fg:w="3"/><text x="1.0303%" y="1007.50"></text></g><g><title>WTF::fastRealloc (6 samples, 0.02%)</title><rect x="0.8050%" y="821" width="0.0248%" height="15" fill="rgb(250,191,14)" fg:x="195" fg:w="6"/><text x="1.0550%" y="831.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="0.8050%" y="805" width="0.0248%" height="15" fill="rgb(239,60,40)" fg:x="195" fg:w="6"/><text x="1.0550%" y="815.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="0.8050%" y="789" width="0.0248%" height="15" fill="rgb(206,27,48)" fg:x="195" fg:w="6"/><text x="1.0550%" y="799.50"></text></g><g><title>bmalloc_heap_config_specialized_local_allocator_try_allocate_small_segregated_slow (6 samples, 0.02%)</title><rect x="0.8050%" y="773" width="0.0248%" height="15" fill="rgb(225,35,8)" fg:x="195" fg:w="6"/><text x="1.0550%" y="783.50"></text></g><g><title>pas_segregated_page_construct (6 samples, 0.02%)</title><rect x="0.8050%" y="757" width="0.0248%" height="15" fill="rgb(250,213,24)" fg:x="195" fg:w="6"/><text x="1.0550%" y="767.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (9 samples, 0.04%)</title><rect x="0.8009%" y="869" width="0.0372%" height="15" fill="rgb(247,123,22)" fg:x="194" fg:w="9"/><text x="1.0509%" y="879.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (8 samples, 0.03%)</title><rect x="0.8050%" y="853" width="0.0330%" height="15" fill="rgb(231,138,38)" fg:x="195" fg:w="8"/><text x="1.0550%" y="863.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (8 samples, 0.03%)</title><rect x="0.8050%" y="837" width="0.0330%" height="15" fill="rgb(231,145,46)" fg:x="195" fg:w="8"/><text x="1.0550%" y="847.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (12 samples, 0.05%)</title><rect x="0.7926%" y="965" width="0.0495%" height="15" fill="rgb(251,118,11)" fg:x="192" fg:w="12"/><text x="1.0426%" y="975.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (11 samples, 0.05%)</title><rect x="0.7968%" y="949" width="0.0454%" height="15" fill="rgb(217,147,25)" fg:x="193" fg:w="11"/><text x="1.0468%" y="959.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (11 samples, 0.05%)</title><rect x="0.7968%" y="933" width="0.0454%" height="15" fill="rgb(247,81,37)" fg:x="193" fg:w="11"/><text x="1.0468%" y="943.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (11 samples, 0.05%)</title><rect x="0.7968%" y="917" width="0.0454%" height="15" fill="rgb(209,12,38)" fg:x="193" fg:w="11"/><text x="1.0468%" y="927.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (11 samples, 0.05%)</title><rect x="0.7968%" y="901" width="0.0454%" height="15" fill="rgb(227,1,9)" fg:x="193" fg:w="11"/><text x="1.0468%" y="911.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (11 samples, 0.05%)</title><rect x="0.7968%" y="885" width="0.0454%" height="15" fill="rgb(248,47,43)" fg:x="193" fg:w="11"/><text x="1.0468%" y="895.50"></text></g><g><title>[libc.so.6] (14 samples, 0.06%)</title><rect x="0.7926%" y="1013" width="0.0578%" height="15" fill="rgb(221,10,30)" fg:x="192" fg:w="14"/><text x="1.0426%" y="1023.50"></text></g><g><title>[libc.so.6] (14 samples, 0.06%)</title><rect x="0.7926%" y="997" width="0.0578%" height="15" fill="rgb(210,229,1)" fg:x="192" fg:w="14"/><text x="1.0426%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (14 samples, 0.06%)</title><rect x="0.7926%" y="981" width="0.0578%" height="15" fill="rgb(222,148,37)" fg:x="192" fg:w="14"/><text x="1.0426%" y="991.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (5 samples, 0.02%)</title><rect x="0.9702%" y="901" width="0.0206%" height="15" fill="rgb(234,67,33)" fg:x="235" fg:w="5"/><text x="1.2202%" y="911.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (14 samples, 0.06%)</title><rect x="0.9371%" y="933" width="0.0578%" height="15" fill="rgb(247,98,35)" fg:x="227" fg:w="14"/><text x="1.1871%" y="943.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (9 samples, 0.04%)</title><rect x="0.9578%" y="917" width="0.0372%" height="15" fill="rgb(247,138,52)" fg:x="232" fg:w="9"/><text x="1.2078%" y="927.50"></text></g><g><title>JITWorker (55 samples, 0.23%)</title><rect x="0.7761%" y="1029" width="0.2271%" height="15" fill="rgb(213,79,30)" fg:x="188" fg:w="55"/><text x="1.0261%" y="1039.50"></text></g><g><title>[unknown] (36 samples, 0.15%)</title><rect x="0.8546%" y="1013" width="0.1486%" height="15" fill="rgb(246,177,23)" fg:x="207" fg:w="36"/><text x="1.1046%" y="1023.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (36 samples, 0.15%)</title><rect x="0.8546%" y="997" width="0.1486%" height="15" fill="rgb(230,62,27)" fg:x="207" fg:w="36"/><text x="1.1046%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (36 samples, 0.15%)</title><rect x="0.8546%" y="981" width="0.1486%" height="15" fill="rgb(216,154,8)" fg:x="207" fg:w="36"/><text x="1.1046%" y="991.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (31 samples, 0.13%)</title><rect x="0.8752%" y="965" width="0.1280%" height="15" fill="rgb(244,35,45)" fg:x="212" fg:w="31"/><text x="1.1252%" y="975.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (22 samples, 0.09%)</title><rect x="0.9124%" y="949" width="0.0908%" height="15" fill="rgb(251,115,12)" fg:x="221" fg:w="22"/><text x="1.1624%" y="959.50"></text></g><g><title>PressureMonitor (3 samples, 0.01%)</title><rect x="1.0032%" y="1029" width="0.0124%" height="15" fill="rgb(240,54,50)" fg:x="243" fg:w="3"/><text x="1.2532%" y="1039.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="1.0032%" y="1013" width="0.0124%" height="15" fill="rgb(233,84,52)" fg:x="243" fg:w="3"/><text x="1.2532%" y="1023.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="1.0032%" y="997" width="0.0124%" height="15" fill="rgb(207,117,47)" fg:x="243" fg:w="3"/><text x="1.2532%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="1.0032%" y="981" width="0.0124%" height="15" fill="rgb(249,43,39)" fg:x="243" fg:w="3"/><text x="1.2532%" y="991.50"></text></g><g><title>[anon] (4 samples, 0.02%)</title><rect x="1.0321%" y="1013" width="0.0165%" height="15" fill="rgb(209,38,44)" fg:x="250" fg:w="4"/><text x="1.2821%" y="1023.50"></text></g><g><title>__poll (68 samples, 0.28%)</title><rect x="1.3004%" y="917" width="0.2807%" height="15" fill="rgb(236,212,23)" fg:x="315" fg:w="68"/><text x="1.5504%" y="927.50"></text></g><g><title>WTF::setCloseOnExec (4 samples, 0.02%)</title><rect x="1.6018%" y="853" width="0.0165%" height="15" fill="rgb(242,79,21)" fg:x="388" fg:w="4"/><text x="1.8518%" y="863.50"></text></g><g><title>__libc_fcntl64 (4 samples, 0.02%)</title><rect x="1.6018%" y="837" width="0.0165%" height="15" fill="rgb(211,96,35)" fg:x="388" fg:w="4"/><text x="1.8518%" y="847.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="1.6018%" y="821" width="0.0165%" height="15" fill="rgb(253,215,40)" fg:x="388" fg:w="4"/><text x="1.8518%" y="831.50"></text></g><g><title>WTF::tryFastMalloc (3 samples, 0.01%)</title><rect x="1.6266%" y="837" width="0.0124%" height="15" fill="rgb(211,81,21)" fg:x="394" fg:w="3"/><text x="1.8766%" y="847.50"></text></g><g><title>bmalloc_try_allocate_casual (3 samples, 0.01%)</title><rect x="1.6266%" y="821" width="0.0124%" height="15" fill="rgb(208,190,38)" fg:x="394" fg:w="3"/><text x="1.8766%" y="831.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="1.6266%" y="805" width="0.0124%" height="15" fill="rgb(235,213,38)" fg:x="394" fg:w="3"/><text x="1.8766%" y="815.50"></text></g><g><title>[libc.so.6] (35 samples, 0.14%)</title><rect x="1.6389%" y="837" width="0.1445%" height="15" fill="rgb(237,122,38)" fg:x="397" fg:w="35"/><text x="1.8889%" y="847.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (4 samples, 0.02%)</title><rect x="1.7834%" y="837" width="0.0165%" height="15" fill="rgb(244,218,35)" fg:x="432" fg:w="4"/><text x="2.0334%" y="847.50"></text></g><g><title>__close (3 samples, 0.01%)</title><rect x="1.7999%" y="837" width="0.0124%" height="15" fill="rgb(240,68,47)" fg:x="436" fg:w="3"/><text x="2.0499%" y="847.50"></text></g><g><title>__mmap (16 samples, 0.07%)</title><rect x="1.8123%" y="837" width="0.0661%" height="15" fill="rgb(210,16,53)" fg:x="439" fg:w="16"/><text x="2.0623%" y="847.50"></text></g><g><title>__munmap (39 samples, 0.16%)</title><rect x="1.8784%" y="837" width="0.1610%" height="15" fill="rgb(235,124,12)" fg:x="455" fg:w="39"/><text x="2.1284%" y="847.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (103 samples, 0.43%)</title><rect x="1.6183%" y="853" width="0.4252%" height="15" fill="rgb(224,169,11)" fg:x="392" fg:w="103"/><text x="1.8683%" y="863.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (117 samples, 0.48%)</title><rect x="1.5977%" y="901" width="0.4830%" height="15" fill="rgb(250,166,2)" fg:x="387" fg:w="117"/><text x="1.8477%" y="911.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (116 samples, 0.48%)</title><rect x="1.6018%" y="885" width="0.4789%" height="15" fill="rgb(242,216,29)" fg:x="388" fg:w="116"/><text x="1.8518%" y="895.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (116 samples, 0.48%)</title><rect x="1.6018%" y="869" width="0.4789%" height="15" fill="rgb(230,116,27)" fg:x="388" fg:w="116"/><text x="1.8518%" y="879.50"></text></g><g><title>recvmsg (9 samples, 0.04%)</title><rect x="2.0435%" y="853" width="0.0372%" height="15" fill="rgb(228,99,48)" fg:x="495" fg:w="9"/><text x="2.2935%" y="863.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="2.0807%" y="901" width="0.0248%" height="15" fill="rgb(253,11,6)" fg:x="504" fg:w="6"/><text x="2.3307%" y="911.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="2.0807%" y="885" width="0.0248%" height="15" fill="rgb(247,143,39)" fg:x="504" fg:w="6"/><text x="2.3307%" y="895.50"></text></g><g><title>write (5 samples, 0.02%)</title><rect x="2.0848%" y="869" width="0.0206%" height="15" fill="rgb(236,97,10)" fg:x="505" fg:w="5"/><text x="2.3348%" y="879.50"></text></g><g><title>[libc.so.6] (68 samples, 0.28%)</title><rect x="2.1096%" y="853" width="0.2807%" height="15" fill="rgb(233,208,19)" fg:x="511" fg:w="68"/><text x="2.3596%" y="863.50"></text></g><g><title>__munmap (4 samples, 0.02%)</title><rect x="2.3903%" y="837" width="0.0165%" height="15" fill="rgb(216,164,2)" fg:x="579" fg:w="4"/><text x="2.6403%" y="847.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (77 samples, 0.32%)</title><rect x="2.1054%" y="885" width="0.3179%" height="15" fill="rgb(220,129,5)" fg:x="510" fg:w="77"/><text x="2.3554%" y="895.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (76 samples, 0.31%)</title><rect x="2.1096%" y="869" width="0.3138%" height="15" fill="rgb(242,17,10)" fg:x="511" fg:w="76"/><text x="2.3596%" y="879.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="2.3903%" y="853" width="0.0330%" height="15" fill="rgb(242,107,0)" fg:x="579" fg:w="8"/><text x="2.6403%" y="863.50"></text></g><g><title>sendmsg (4 samples, 0.02%)</title><rect x="2.4068%" y="837" width="0.0165%" height="15" fill="rgb(251,28,31)" fg:x="583" fg:w="4"/><text x="2.6568%" y="847.50"></text></g><g><title>WTF::RunLoop::run (276 samples, 1.14%)</title><rect x="1.2880%" y="965" width="1.1394%" height="15" fill="rgb(233,223,10)" fg:x="312" fg:w="276"/><text x="1.5380%" y="975.50"></text></g><g><title>g_main_loop_run (276 samples, 1.14%)</title><rect x="1.2880%" y="949" width="1.1394%" height="15" fill="rgb(215,21,27)" fg:x="312" fg:w="276"/><text x="1.5380%" y="959.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (276 samples, 1.14%)</title><rect x="1.2880%" y="933" width="1.1394%" height="15" fill="rgb(232,23,21)" fg:x="312" fg:w="276"/><text x="1.5380%" y="943.50"></text></g><g><title>g_main_context_dispatch (202 samples, 0.83%)</title><rect x="1.5935%" y="917" width="0.8339%" height="15" fill="rgb(244,5,23)" fg:x="386" fg:w="202"/><text x="1.8435%" y="927.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (78 samples, 0.32%)</title><rect x="2.1054%" y="901" width="0.3220%" height="15" fill="rgb(226,81,46)" fg:x="510" fg:w="78"/><text x="2.3554%" y="911.50"></text></g><g><title>[libc.so.6] (336 samples, 1.39%)</title><rect x="1.0486%" y="1013" width="1.3871%" height="15" fill="rgb(247,70,30)" fg:x="254" fg:w="336"/><text x="1.2986%" y="1023.50"></text></g><g><title>[libc.so.6] (278 samples, 1.15%)</title><rect x="1.2880%" y="997" width="1.1477%" height="15" fill="rgb(212,68,19)" fg:x="312" fg:w="278"/><text x="1.5380%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (278 samples, 1.15%)</title><rect x="1.2880%" y="981" width="1.1477%" height="15" fill="rgb(240,187,13)" fg:x="312" fg:w="278"/><text x="1.5380%" y="991.50"></text></g><g><title>__mmap (16 samples, 0.07%)</title><rect x="2.4563%" y="1013" width="0.0661%" height="15" fill="rgb(223,113,26)" fg:x="595" fg:w="16"/><text x="2.7063%" y="1023.50"></text></g><g><title>__munmap (21 samples, 0.09%)</title><rect x="2.5224%" y="1013" width="0.0867%" height="15" fill="rgb(206,192,2)" fg:x="611" fg:w="21"/><text x="2.7724%" y="1023.50"></text></g><g><title>__poll (19 samples, 0.08%)</title><rect x="2.6091%" y="1013" width="0.0784%" height="15" fill="rgb(241,108,4)" fg:x="632" fg:w="19"/><text x="2.8591%" y="1023.50"></text></g><g><title>ftruncate64 (5 samples, 0.02%)</title><rect x="2.6999%" y="1013" width="0.0206%" height="15" fill="rgb(247,173,49)" fg:x="654" fg:w="5"/><text x="2.9499%" y="1023.50"></text></g><g><title>sendmsg (8 samples, 0.03%)</title><rect x="2.7288%" y="1013" width="0.0330%" height="15" fill="rgb(224,114,35)" fg:x="661" fg:w="8"/><text x="2.9788%" y="1023.50"></text></g><g><title>ReceiveQueue (435 samples, 1.80%)</title><rect x="1.0156%" y="1029" width="1.7958%" height="15" fill="rgb(245,159,27)" fg:x="246" fg:w="435"/><text x="1.2656%" y="1039.50">R..</text></g><g><title>syscall (12 samples, 0.05%)</title><rect x="2.7618%" y="1013" width="0.0495%" height="15" fill="rgb(245,172,44)" fg:x="669" fg:w="12"/><text x="3.0118%" y="1023.50"></text></g><g><title>WTF::SHA1::addBytes (51 samples, 0.21%)</title><rect x="2.8155%" y="1013" width="0.2105%" height="15" fill="rgb(236,23,11)" fg:x="682" fg:w="51"/><text x="3.0655%" y="1023.50"></text></g><g><title>[anon] (5 samples, 0.02%)</title><rect x="3.0260%" y="1013" width="0.0206%" height="15" fill="rgb(205,117,38)" fg:x="733" fg:w="5"/><text x="3.2760%" y="1023.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="3.0260%" y="997" width="0.0206%" height="15" fill="rgb(237,72,25)" fg:x="733" fg:w="5"/><text x="3.2760%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (123 samples, 0.51%)</title><rect x="3.0591%" y="1013" width="0.5078%" height="15" fill="rgb(244,70,9)" fg:x="741" fg:w="123"/><text x="3.3091%" y="1023.50"></text></g><g><title>[unknown] (3 samples, 0.01%)</title><rect x="3.5669%" y="1013" width="0.0124%" height="15" fill="rgb(217,125,39)" fg:x="864" fg:w="3"/><text x="3.8169%" y="1023.50"></text></g><g><title>__poll (5 samples, 0.02%)</title><rect x="3.5792%" y="1013" width="0.0206%" height="15" fill="rgb(235,36,10)" fg:x="867" fg:w="5"/><text x="3.8292%" y="1023.50"></text></g><g><title>Storage (198 samples, 0.82%)</title><rect x="2.8114%" y="1029" width="0.8174%" height="15" fill="rgb(251,123,47)" fg:x="681" fg:w="198"/><text x="3.0614%" y="1039.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="3.6081%" y="1013" width="0.0206%" height="15" fill="rgb(221,13,13)" fg:x="874" fg:w="5"/><text x="3.8581%" y="1023.50"></text></g><g><title>[[heap]] (36 samples, 0.15%)</title><rect x="3.6412%" y="1013" width="0.1486%" height="15" fill="rgb(238,131,9)" fg:x="882" fg:w="36"/><text x="3.8912%" y="1023.50"></text></g><g><title>[libc.so.6] (36 samples, 0.15%)</title><rect x="3.6412%" y="997" width="0.1486%" height="15" fill="rgb(211,50,8)" fg:x="882" fg:w="36"/><text x="3.8912%" y="1007.50"></text></g><g><title>[ld-linux-x86-64.so.2] (54 samples, 0.22%)</title><rect x="3.7939%" y="1013" width="0.2229%" height="15" fill="rgb(245,182,24)" fg:x="919" fg:w="54"/><text x="4.0439%" y="1023.50"></text></g><g><title>[ld-linux-x86-64.so.2] (15 samples, 0.06%)</title><rect x="3.9549%" y="997" width="0.0619%" height="15" fill="rgb(242,14,37)" fg:x="958" fg:w="15"/><text x="4.2049%" y="1007.50"></text></g><g><title>[ld-linux-x86-64.so.2] (8 samples, 0.03%)</title><rect x="3.9838%" y="981" width="0.0330%" height="15" fill="rgb(246,228,12)" fg:x="965" fg:w="8"/><text x="4.2338%" y="991.50"></text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 0.03%)</title><rect x="3.9879%" y="965" width="0.0289%" height="15" fill="rgb(213,55,15)" fg:x="966" fg:w="7"/><text x="4.2379%" y="975.50"></text></g><g><title>[libc.so.6] (51 samples, 0.21%)</title><rect x="4.0210%" y="1013" width="0.2105%" height="15" fill="rgb(209,9,3)" fg:x="974" fg:w="51"/><text x="4.2710%" y="1023.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (53 samples, 0.22%)</title><rect x="4.2563%" y="1013" width="0.2188%" height="15" fill="rgb(230,59,30)" fg:x="1031" fg:w="53"/><text x="4.5063%" y="1023.50"></text></g><g><title>__madvise (4 samples, 0.02%)</title><rect x="4.4833%" y="1013" width="0.0165%" height="15" fill="rgb(209,121,21)" fg:x="1086" fg:w="4"/><text x="4.7333%" y="1023.50"></text></g><g><title>__poll (16 samples, 0.07%)</title><rect x="4.5122%" y="1013" width="0.0661%" height="15" fill="rgb(220,109,13)" fg:x="1093" fg:w="16"/><text x="4.7622%" y="1023.50"></text></g><g><title>recv (12 samples, 0.05%)</title><rect x="4.6856%" y="1013" width="0.0495%" height="15" fill="rgb(232,18,1)" fg:x="1135" fg:w="12"/><text x="4.9356%" y="1023.50"></text></g><g><title>WebKitNetworkPr (273 samples, 1.13%)</title><rect x="3.6288%" y="1029" width="1.1270%" height="15" fill="rgb(215,41,42)" fg:x="879" fg:w="273"/><text x="3.8788%" y="1039.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="4.7352%" y="1013" width="0.0206%" height="15" fill="rgb(224,123,36)" fg:x="1147" fg:w="5"/><text x="4.9852%" y="1023.50"></text></g><g><title>__poll (26 samples, 0.11%)</title><rect x="4.7682%" y="901" width="0.1073%" height="15" fill="rgb(240,125,3)" fg:x="1155" fg:w="26"/><text x="5.0182%" y="911.50"></text></g><g><title>g_source_ref (5 samples, 0.02%)</title><rect x="4.9086%" y="869" width="0.0206%" height="15" fill="rgb(205,98,50)" fg:x="1189" fg:w="5"/><text x="5.1586%" y="879.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (15 samples, 0.06%)</title><rect x="4.9003%" y="885" width="0.0619%" height="15" fill="rgb(205,185,37)" fg:x="1187" fg:w="15"/><text x="5.1503%" y="895.50"></text></g><g><title>read (8 samples, 0.03%)</title><rect x="4.9292%" y="869" width="0.0330%" height="15" fill="rgb(238,207,15)" fg:x="1194" fg:w="8"/><text x="5.1792%" y="879.50"></text></g><g><title>g_main_context_check (24 samples, 0.10%)</title><rect x="4.8755%" y="901" width="0.0991%" height="15" fill="rgb(213,199,42)" fg:x="1181" fg:w="24"/><text x="5.1255%" y="911.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (5 samples, 0.02%)</title><rect x="4.9829%" y="885" width="0.0206%" height="15" fill="rgb(235,201,11)" fg:x="1207" fg:w="5"/><text x="5.2329%" y="895.50"></text></g><g><title>JSC::Heap::stopIfNecessarySlow (6 samples, 0.02%)</title><rect x="5.0118%" y="837" width="0.0248%" height="15" fill="rgb(207,46,11)" fg:x="1214" fg:w="6"/><text x="5.2618%" y="847.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="5.0118%" y="821" width="0.0248%" height="15" fill="rgb(241,35,35)" fg:x="1214" fg:w="6"/><text x="5.2618%" y="831.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="5.0118%" y="805" width="0.0248%" height="15" fill="rgb(243,32,47)" fg:x="1214" fg:w="6"/><text x="5.2618%" y="815.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (5 samples, 0.02%)</title><rect x="5.0159%" y="789" width="0.0206%" height="15" fill="rgb(247,202,23)" fg:x="1215" fg:w="5"/><text x="5.2659%" y="799.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (5 samples, 0.02%)</title><rect x="5.0159%" y="773" width="0.0206%" height="15" fill="rgb(219,102,11)" fg:x="1215" fg:w="5"/><text x="5.2659%" y="783.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (5 samples, 0.02%)</title><rect x="5.0159%" y="757" width="0.0206%" height="15" fill="rgb(243,110,44)" fg:x="1215" fg:w="5"/><text x="5.2659%" y="767.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="5.0242%" y="741" width="0.0124%" height="15" fill="rgb(222,74,54)" fg:x="1217" fg:w="3"/><text x="5.2742%" y="751.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (7 samples, 0.03%)</title><rect x="5.0118%" y="853" width="0.0289%" height="15" fill="rgb(216,99,12)" fg:x="1214" fg:w="7"/><text x="5.2618%" y="863.50"></text></g><g><title>WTF::equal (3 samples, 0.01%)</title><rect x="5.0861%" y="821" width="0.0124%" height="15" fill="rgb(226,22,26)" fg:x="1232" fg:w="3"/><text x="5.3361%" y="831.50"></text></g><g><title>WTF::fastFree (3 samples, 0.01%)</title><rect x="5.2925%" y="773" width="0.0124%" height="15" fill="rgb(217,163,10)" fg:x="1282" fg:w="3"/><text x="5.5425%" y="783.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="5.3214%" y="725" width="0.0124%" height="15" fill="rgb(213,25,53)" fg:x="1289" fg:w="3"/><text x="5.5714%" y="735.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="5.3214%" y="709" width="0.0124%" height="15" fill="rgb(252,105,26)" fg:x="1289" fg:w="3"/><text x="5.5714%" y="719.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="5.3214%" y="693" width="0.0124%" height="15" fill="rgb(220,39,43)" fg:x="1289" fg:w="3"/><text x="5.5714%" y="703.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="5.3214%" y="677" width="0.0124%" height="15" fill="rgb(229,68,48)" fg:x="1289" fg:w="3"/><text x="5.5714%" y="687.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="5.3214%" y="661" width="0.0124%" height="15" fill="rgb(252,8,32)" fg:x="1289" fg:w="3"/><text x="5.5714%" y="671.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (3 samples, 0.01%)</title><rect x="5.3338%" y="725" width="0.0124%" height="15" fill="rgb(223,20,43)" fg:x="1292" fg:w="3"/><text x="5.5838%" y="735.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (7 samples, 0.03%)</title><rect x="5.3214%" y="773" width="0.0289%" height="15" fill="rgb(229,81,49)" fg:x="1289" fg:w="7"/><text x="5.5714%" y="783.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (7 samples, 0.03%)</title><rect x="5.3214%" y="757" width="0.0289%" height="15" fill="rgb(236,28,36)" fg:x="1289" fg:w="7"/><text x="5.5714%" y="767.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (7 samples, 0.03%)</title><rect x="5.3214%" y="741" width="0.0289%" height="15" fill="rgb(249,185,26)" fg:x="1289" fg:w="7"/><text x="5.5714%" y="751.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="5.3627%" y="677" width="0.0124%" height="15" fill="rgb(249,174,33)" fg:x="1299" fg:w="3"/><text x="5.6127%" y="687.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="5.3627%" y="661" width="0.0124%" height="15" fill="rgb(233,201,37)" fg:x="1299" fg:w="3"/><text x="5.6127%" y="671.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="5.3627%" y="645" width="0.0124%" height="15" fill="rgb(221,78,26)" fg:x="1299" fg:w="3"/><text x="5.6127%" y="655.50"></text></g><g><title>[ld-linux-x86-64.so.2] (24 samples, 0.10%)</title><rect x="5.4081%" y="485" width="0.0991%" height="15" fill="rgb(250,127,30)" fg:x="1310" fg:w="24"/><text x="5.6581%" y="495.50"></text></g><g><title>[ld-linux-x86-64.so.2] (22 samples, 0.09%)</title><rect x="5.4163%" y="469" width="0.0908%" height="15" fill="rgb(230,49,44)" fg:x="1312" fg:w="22"/><text x="5.6663%" y="479.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (37 samples, 0.15%)</title><rect x="5.3627%" y="693" width="0.1527%" height="15" fill="rgb(229,67,23)" fg:x="1299" fg:w="37"/><text x="5.6127%" y="703.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (34 samples, 0.14%)</title><rect x="5.3751%" y="677" width="0.1404%" height="15" fill="rgb(249,83,47)" fg:x="1302" fg:w="34"/><text x="5.6251%" y="687.50"></text></g><g><title>dlopen (31 samples, 0.13%)</title><rect x="5.3874%" y="661" width="0.1280%" height="15" fill="rgb(215,43,3)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="671.50"></text></g><g><title>[libc.so.6] (31 samples, 0.13%)</title><rect x="5.3874%" y="645" width="0.1280%" height="15" fill="rgb(238,154,13)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="655.50"></text></g><g><title>[ld-linux-x86-64.so.2] (31 samples, 0.13%)</title><rect x="5.3874%" y="629" width="0.1280%" height="15" fill="rgb(219,56,2)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="639.50"></text></g><g><title>_dl_catch_exception (31 samples, 0.13%)</title><rect x="5.3874%" y="613" width="0.1280%" height="15" fill="rgb(233,0,4)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="623.50"></text></g><g><title>[libc.so.6] (31 samples, 0.13%)</title><rect x="5.3874%" y="597" width="0.1280%" height="15" fill="rgb(235,30,7)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="607.50"></text></g><g><title>[ld-linux-x86-64.so.2] (31 samples, 0.13%)</title><rect x="5.3874%" y="581" width="0.1280%" height="15" fill="rgb(250,79,13)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="591.50"></text></g><g><title>_dl_catch_exception (31 samples, 0.13%)</title><rect x="5.3874%" y="565" width="0.1280%" height="15" fill="rgb(211,146,34)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="575.50"></text></g><g><title>[ld-linux-x86-64.so.2] (31 samples, 0.13%)</title><rect x="5.3874%" y="549" width="0.1280%" height="15" fill="rgb(228,22,38)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="559.50"></text></g><g><title>_dl_catch_exception (31 samples, 0.13%)</title><rect x="5.3874%" y="533" width="0.1280%" height="15" fill="rgb(235,168,5)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="543.50"></text></g><g><title>[ld-linux-x86-64.so.2] (31 samples, 0.13%)</title><rect x="5.3874%" y="517" width="0.1280%" height="15" fill="rgb(221,155,16)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="527.50"></text></g><g><title>[ld-linux-x86-64.so.2] (31 samples, 0.13%)</title><rect x="5.3874%" y="501" width="0.1280%" height="15" fill="rgb(215,215,53)" fg:x="1305" fg:w="31"/><text x="5.6374%" y="511.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (38 samples, 0.16%)</title><rect x="5.3627%" y="725" width="0.1569%" height="15" fill="rgb(223,4,10)" fg:x="1299" fg:w="38"/><text x="5.6127%" y="735.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (38 samples, 0.16%)</title><rect x="5.3627%" y="709" width="0.1569%" height="15" fill="rgb(234,103,6)" fg:x="1299" fg:w="38"/><text x="5.6127%" y="719.50"></text></g><g><title>[libc.so.6] (46 samples, 0.19%)</title><rect x="5.3503%" y="773" width="0.1899%" height="15" fill="rgb(227,97,0)" fg:x="1296" fg:w="46"/><text x="5.6003%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (43 samples, 0.18%)</title><rect x="5.3627%" y="757" width="0.1775%" height="15" fill="rgb(234,150,53)" fg:x="1299" fg:w="43"/><text x="5.6127%" y="767.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (43 samples, 0.18%)</title><rect x="5.3627%" y="741" width="0.1775%" height="15" fill="rgb(228,201,54)" fg:x="1299" fg:w="43"/><text x="5.6127%" y="751.50"></text></g><g><title>wl_display_roundtrip_queue (4 samples, 0.02%)</title><rect x="5.5237%" y="725" width="0.0165%" height="15" fill="rgb(222,22,37)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="735.50"></text></g><g><title>wl_display_dispatch_queue_pending (4 samples, 0.02%)</title><rect x="5.5237%" y="709" width="0.0165%" height="15" fill="rgb(237,53,32)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="719.50"></text></g><g><title>[libwayland-client.so.0.22.0] (4 samples, 0.02%)</title><rect x="5.5237%" y="693" width="0.0165%" height="15" fill="rgb(233,25,53)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="703.50"></text></g><g><title>[libwayland-client.so.0.22.0] (4 samples, 0.02%)</title><rect x="5.5237%" y="677" width="0.0165%" height="15" fill="rgb(210,40,34)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="687.50"></text></g><g><title>ffi_call (4 samples, 0.02%)</title><rect x="5.5237%" y="661" width="0.0165%" height="15" fill="rgb(241,220,44)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="671.50"></text></g><g><title>[libffi.so.8.1.2] (4 samples, 0.02%)</title><rect x="5.5237%" y="645" width="0.0165%" height="15" fill="rgb(235,28,35)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="655.50"></text></g><g><title>[libffi.so.8.1.2] (4 samples, 0.02%)</title><rect x="5.5237%" y="629" width="0.0165%" height="15" fill="rgb(210,56,17)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="639.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="5.5237%" y="613" width="0.0165%" height="15" fill="rgb(224,130,29)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="623.50"></text></g><g><title>xkb_keymap_new_from_buffer (4 samples, 0.02%)</title><rect x="5.5237%" y="597" width="0.0165%" height="15" fill="rgb(235,212,8)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="607.50"></text></g><g><title>[libxkbcommon.so.0.0.0] (4 samples, 0.02%)</title><rect x="5.5237%" y="581" width="0.0165%" height="15" fill="rgb(223,33,50)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="591.50"></text></g><g><title>[libxkbcommon.so.0.0.0] (4 samples, 0.02%)</title><rect x="5.5237%" y="565" width="0.0165%" height="15" fill="rgb(219,149,13)" fg:x="1338" fg:w="4"/><text x="5.7737%" y="575.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="5.6393%" y="757" width="0.0206%" height="15" fill="rgb(250,156,29)" fg:x="1366" fg:w="5"/><text x="5.8893%" y="767.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="741" width="0.0165%" height="15" fill="rgb(216,193,19)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="751.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="725" width="0.0165%" height="15" fill="rgb(216,135,14)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="735.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="709" width="0.0165%" height="15" fill="rgb(241,47,5)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="719.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="693" width="0.0165%" height="15" fill="rgb(233,42,35)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="703.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="677" width="0.0165%" height="15" fill="rgb(231,13,6)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="687.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="661" width="0.0165%" height="15" fill="rgb(207,181,40)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="671.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="645" width="0.0165%" height="15" fill="rgb(254,173,49)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="655.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="629" width="0.0165%" height="15" fill="rgb(221,1,38)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="639.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="613" width="0.0165%" height="15" fill="rgb(206,124,46)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="623.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="597" width="0.0165%" height="15" fill="rgb(249,21,11)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="607.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="581" width="0.0165%" height="15" fill="rgb(222,201,40)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="591.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="565" width="0.0165%" height="15" fill="rgb(235,61,29)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="575.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="5.7260%" y="549" width="0.0165%" height="15" fill="rgb(219,207,3)" fg:x="1387" fg:w="4"/><text x="5.9760%" y="559.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="5.7301%" y="533" width="0.0124%" height="15" fill="rgb(222,56,46)" fg:x="1388" fg:w="3"/><text x="5.9801%" y="543.50"></text></g><g><title>[libc.so.6] (8 samples, 0.03%)</title><rect x="5.7425%" y="741" width="0.0330%" height="15" fill="rgb(239,76,54)" fg:x="1391" fg:w="8"/><text x="5.9925%" y="751.50"></text></g><g><title>JSC::call (6 samples, 0.02%)</title><rect x="6.0356%" y="725" width="0.0248%" height="15" fill="rgb(231,124,27)" fg:x="1462" fg:w="6"/><text x="6.2856%" y="735.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="6.0356%" y="709" width="0.0248%" height="15" fill="rgb(249,195,6)" fg:x="1462" fg:w="6"/><text x="6.2856%" y="719.50"></text></g><g><title>__getdelim (6 samples, 0.02%)</title><rect x="6.1347%" y="677" width="0.0248%" height="15" fill="rgb(237,174,47)" fg:x="1486" fg:w="6"/><text x="6.3847%" y="687.50"></text></g><g><title>_IO_file_underflow (5 samples, 0.02%)</title><rect x="6.1388%" y="661" width="0.0206%" height="15" fill="rgb(206,201,31)" fg:x="1487" fg:w="5"/><text x="6.3888%" y="671.50"></text></g><g><title>read (5 samples, 0.02%)</title><rect x="6.1388%" y="645" width="0.0206%" height="15" fill="rgb(231,57,52)" fg:x="1487" fg:w="5"/><text x="6.3888%" y="655.50"></text></g><g><title>WTF::MemoryPressureHandler::currentMemoryUsagePolicy (7 samples, 0.03%)</title><rect x="6.1347%" y="709" width="0.0289%" height="15" fill="rgb(248,177,22)" fg:x="1486" fg:w="7"/><text x="6.3847%" y="719.50"></text></g><g><title>WTF::memoryFootprint (7 samples, 0.03%)</title><rect x="6.1347%" y="693" width="0.0289%" height="15" fill="rgb(215,211,37)" fg:x="1486" fg:w="7"/><text x="6.3847%" y="703.50"></text></g><g><title>WTF::String::make8Bit (3 samples, 0.01%)</title><rect x="6.7622%" y="629" width="0.0124%" height="15" fill="rgb(241,128,51)" fg:x="1638" fg:w="3"/><text x="7.0122%" y="639.50"></text></g><g><title>WTF::StringImpl::hashSlowCase (16 samples, 0.07%)</title><rect x="6.7828%" y="565" width="0.0661%" height="15" fill="rgb(227,165,31)" fg:x="1643" fg:w="16"/><text x="7.0328%" y="575.50"></text></g><g><title>JSC::evaluate (18 samples, 0.07%)</title><rect x="6.7828%" y="613" width="0.0743%" height="15" fill="rgb(228,167,24)" fg:x="1643" fg:w="18"/><text x="7.0328%" y="623.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (18 samples, 0.07%)</title><rect x="6.7828%" y="597" width="0.0743%" height="15" fill="rgb(228,143,12)" fg:x="1643" fg:w="18"/><text x="7.0328%" y="607.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (18 samples, 0.07%)</title><rect x="6.7828%" y="581" width="0.0743%" height="15" fill="rgb(249,149,8)" fg:x="1643" fg:w="18"/><text x="7.0328%" y="591.50"></text></g><g><title>WTF::fastFree (3 samples, 0.01%)</title><rect x="6.8612%" y="613" width="0.0124%" height="15" fill="rgb(243,35,44)" fg:x="1662" fg:w="3"/><text x="7.1112%" y="623.50"></text></g><g><title>WTF::fastMalloc (4 samples, 0.02%)</title><rect x="6.8736%" y="613" width="0.0165%" height="15" fill="rgb(246,89,9)" fg:x="1665" fg:w="4"/><text x="7.1236%" y="623.50"></text></g><g><title>[libc.so.6] (16 samples, 0.07%)</title><rect x="6.8901%" y="613" width="0.0661%" height="15" fill="rgb(233,213,13)" fg:x="1669" fg:w="16"/><text x="7.1401%" y="623.50"></text></g><g><title>WTF::CString::CString (4 samples, 0.02%)</title><rect x="7.0057%" y="533" width="0.0165%" height="15" fill="rgb(233,141,41)" fg:x="1697" fg:w="4"/><text x="7.2557%" y="543.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="7.0057%" y="517" width="0.0165%" height="15" fill="rgb(239,167,4)" fg:x="1697" fg:w="4"/><text x="7.2557%" y="527.50"></text></g><g><title>WTF::StringView::utf8 (21 samples, 0.09%)</title><rect x="7.0057%" y="597" width="0.0867%" height="15" fill="rgb(209,217,16)" fg:x="1697" fg:w="21"/><text x="7.2557%" y="607.50"></text></g><g><title>WTF::StringView::tryGetUTF8 (21 samples, 0.09%)</title><rect x="7.0057%" y="581" width="0.0867%" height="15" fill="rgb(219,88,35)" fg:x="1697" fg:w="21"/><text x="7.2557%" y="591.50"></text></g><g><title>WTF::StringImpl::utf8ForCharacters (21 samples, 0.09%)</title><rect x="7.0057%" y="565" width="0.0867%" height="15" fill="rgb(220,193,23)" fg:x="1697" fg:w="21"/><text x="7.2557%" y="575.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (21 samples, 0.09%)</title><rect x="7.0057%" y="549" width="0.0867%" height="15" fill="rgb(230,90,52)" fg:x="1697" fg:w="21"/><text x="7.2557%" y="559.50"></text></g><g><title>WTF::Unicode::convertLatin1ToUTF8 (17 samples, 0.07%)</title><rect x="7.0223%" y="533" width="0.0702%" height="15" fill="rgb(252,106,19)" fg:x="1701" fg:w="17"/><text x="7.2723%" y="543.50"></text></g><g><title>pas_bootstrap_free_heap_try_allocate_with_manual_alignment (24 samples, 0.10%)</title><rect x="7.1420%" y="373" width="0.0991%" height="15" fill="rgb(206,74,20)" fg:x="1730" fg:w="24"/><text x="7.3920%" y="383.50"></text></g><g><title>pas_simple_free_heap_helpers_try_allocate_with_manual_alignment (24 samples, 0.10%)</title><rect x="7.1420%" y="357" width="0.0991%" height="15" fill="rgb(230,138,44)" fg:x="1730" fg:w="24"/><text x="7.3920%" y="367.50"></text></g><g><title>pas_simple_large_free_heap_try_allocate (23 samples, 0.09%)</title><rect x="7.1461%" y="341" width="0.0950%" height="15" fill="rgb(235,182,43)" fg:x="1731" fg:w="23"/><text x="7.3961%" y="351.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (23 samples, 0.09%)</title><rect x="7.1461%" y="325" width="0.0950%" height="15" fill="rgb(242,16,51)" fg:x="1731" fg:w="23"/><text x="7.3961%" y="335.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (22 samples, 0.09%)</title><rect x="7.1502%" y="309" width="0.0908%" height="15" fill="rgb(248,9,4)" fg:x="1732" fg:w="22"/><text x="7.4002%" y="319.50"></text></g><g><title>pas_enumerable_page_malloc_try_allocate_without_deallocating_padding (22 samples, 0.09%)</title><rect x="7.1502%" y="293" width="0.0908%" height="15" fill="rgb(210,31,22)" fg:x="1732" fg:w="22"/><text x="7.4002%" y="303.50"></text></g><g><title>pas_page_malloc_try_allocate_without_deallocating_padding (21 samples, 0.09%)</title><rect x="7.1544%" y="277" width="0.0867%" height="15" fill="rgb(239,54,39)" fg:x="1733" fg:w="21"/><text x="7.4044%" y="287.50"></text></g><g><title>__mmap (20 samples, 0.08%)</title><rect x="7.1585%" y="261" width="0.0826%" height="15" fill="rgb(230,99,41)" fg:x="1734" fg:w="20"/><text x="7.4085%" y="271.50"></text></g><g><title>pas_fast_large_free_heap_try_allocate (39 samples, 0.16%)</title><rect x="7.0966%" y="501" width="0.1610%" height="15" fill="rgb(253,106,12)" fg:x="1719" fg:w="39"/><text x="7.3466%" y="511.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (39 samples, 0.16%)</title><rect x="7.0966%" y="485" width="0.1610%" height="15" fill="rgb(213,46,41)" fg:x="1719" fg:w="39"/><text x="7.3466%" y="495.50"></text></g><g><title>bmalloc_aligned_allocator (39 samples, 0.16%)</title><rect x="7.0966%" y="469" width="0.1610%" height="15" fill="rgb(215,133,35)" fg:x="1719" fg:w="39"/><text x="7.3466%" y="479.50"></text></g><g><title>pas_heap_config_utils_allocate_aligned (39 samples, 0.16%)</title><rect x="7.0966%" y="453" width="0.1610%" height="15" fill="rgb(213,28,5)" fg:x="1719" fg:w="39"/><text x="7.3466%" y="463.50"></text></g><g><title>pas_large_heap_physical_page_sharing_cache_try_allocate_with_alignment (39 samples, 0.16%)</title><rect x="7.0966%" y="437" width="0.1610%" height="15" fill="rgb(215,77,49)" fg:x="1719" fg:w="39"/><text x="7.3466%" y="447.50"></text></g><g><title>pas_simple_large_free_heap_try_allocate (39 samples, 0.16%)</title><rect x="7.0966%" y="421" width="0.1610%" height="15" fill="rgb(248,100,22)" fg:x="1719" fg:w="39"/><text x="7.3466%" y="431.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (39 samples, 0.16%)</title><rect x="7.0966%" y="405" width="0.1610%" height="15" fill="rgb(208,67,9)" fg:x="1719" fg:w="39"/><text x="7.3466%" y="415.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (32 samples, 0.13%)</title><rect x="7.1255%" y="389" width="0.1321%" height="15" fill="rgb(219,133,21)" fg:x="1726" fg:w="32"/><text x="7.3755%" y="399.50"></text></g><g><title>pas_large_sharing_pool_boot_free (4 samples, 0.02%)</title><rect x="7.2411%" y="373" width="0.0165%" height="15" fill="rgb(246,46,29)" fg:x="1754" fg:w="4"/><text x="7.4911%" y="383.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="7.2411%" y="357" width="0.0165%" height="15" fill="rgb(246,185,52)" fg:x="1754" fg:w="4"/><text x="7.4911%" y="367.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="7.2411%" y="341" width="0.0165%" height="15" fill="rgb(252,136,11)" fg:x="1754" fg:w="4"/><text x="7.4911%" y="351.50"></text></g><g><title>pas_large_heap_try_allocate (45 samples, 0.19%)</title><rect x="7.0966%" y="517" width="0.1858%" height="15" fill="rgb(219,138,53)" fg:x="1719" fg:w="45"/><text x="7.3466%" y="527.50"></text></g><g><title>pas_large_sharing_pool_allocate_and_commit (4 samples, 0.02%)</title><rect x="7.2658%" y="501" width="0.0165%" height="15" fill="rgb(211,51,23)" fg:x="1760" fg:w="4"/><text x="7.5158%" y="511.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="7.2700%" y="485" width="0.0124%" height="15" fill="rgb(247,221,28)" fg:x="1761" fg:w="3"/><text x="7.5200%" y="495.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="7.2700%" y="469" width="0.0124%" height="15" fill="rgb(251,222,45)" fg:x="1761" fg:w="3"/><text x="7.5200%" y="479.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (49 samples, 0.20%)</title><rect x="7.0924%" y="549" width="0.2023%" height="15" fill="rgb(217,162,53)" fg:x="1718" fg:w="49"/><text x="7.3424%" y="559.50"></text></g><g><title>bmalloc_heap_config_specialized_try_allocate_common_impl_slow (49 samples, 0.20%)</title><rect x="7.0924%" y="533" width="0.2023%" height="15" fill="rgb(229,93,14)" fg:x="1718" fg:w="49"/><text x="7.3424%" y="543.50"></text></g><g><title>WTF::tryFastMalloc (50 samples, 0.21%)</title><rect x="7.0924%" y="597" width="0.2064%" height="15" fill="rgb(209,67,49)" fg:x="1718" fg:w="50"/><text x="7.3424%" y="607.50"></text></g><g><title>bmalloc_try_allocate_casual (50 samples, 0.21%)</title><rect x="7.0924%" y="581" width="0.2064%" height="15" fill="rgb(213,87,29)" fg:x="1718" fg:w="50"/><text x="7.3424%" y="591.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (50 samples, 0.21%)</title><rect x="7.0924%" y="565" width="0.2064%" height="15" fill="rgb(205,151,52)" fg:x="1718" fg:w="50"/><text x="7.3424%" y="575.50"></text></g><g><title>[libc.so.6] (5,568 samples, 22.99%)</title><rect x="7.2988%" y="597" width="22.9864%" height="15" fill="rgb(253,215,39)" fg:x="1768" fg:w="5568"/><text x="7.5488%" y="607.50">[libc.so.6]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="30.3554%" y="453" width="0.0124%" height="15" fill="rgb(221,220,41)" fg:x="7353" fg:w="3"/><text x="30.6054%" y="463.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="30.3554%" y="437" width="0.0124%" height="15" fill="rgb(218,133,21)" fg:x="7353" fg:w="3"/><text x="30.6054%" y="447.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="30.3554%" y="421" width="0.0124%" height="15" fill="rgb(221,193,43)" fg:x="7353" fg:w="3"/><text x="30.6054%" y="431.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="30.3224%" y="517" width="0.0495%" height="15" fill="rgb(240,128,52)" fg:x="7345" fg:w="12"/><text x="30.5724%" y="527.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (11 samples, 0.05%)</title><rect x="30.3265%" y="501" width="0.0454%" height="15" fill="rgb(253,114,12)" fg:x="7346" fg:w="11"/><text x="30.5765%" y="511.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="30.3472%" y="485" width="0.0248%" height="15" fill="rgb(215,223,47)" fg:x="7351" fg:w="6"/><text x="30.5972%" y="495.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="30.3472%" y="469" width="0.0248%" height="15" fill="rgb(248,225,23)" fg:x="7351" fg:w="6"/><text x="30.5972%" y="479.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (15 samples, 0.06%)</title><rect x="30.3142%" y="533" width="0.0619%" height="15" fill="rgb(250,108,0)" fg:x="7343" fg:w="15"/><text x="30.5642%" y="543.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,674 samples, 23.42%)</title><rect x="6.9562%" y="613" width="23.4240%" height="15" fill="rgb(228,208,7)" fg:x="1685" fg:w="5674"/><text x="7.2062%" y="623.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (23 samples, 0.09%)</title><rect x="30.2853%" y="597" width="0.0950%" height="15" fill="rgb(244,45,10)" fg:x="7336" fg:w="23"/><text x="30.5353%" y="607.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (20 samples, 0.08%)</title><rect x="30.2977%" y="581" width="0.0826%" height="15" fill="rgb(207,125,25)" fg:x="7339" fg:w="20"/><text x="30.5477%" y="591.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (18 samples, 0.07%)</title><rect x="30.3059%" y="565" width="0.0743%" height="15" fill="rgb(210,195,18)" fg:x="7341" fg:w="18"/><text x="30.5559%" y="575.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (18 samples, 0.07%)</title><rect x="30.3059%" y="549" width="0.0743%" height="15" fill="rgb(249,80,12)" fg:x="7341" fg:w="18"/><text x="30.5559%" y="559.50"></text></g><g><title>bmalloc_allocate_casual (4 samples, 0.02%)</title><rect x="30.3802%" y="613" width="0.0165%" height="15" fill="rgb(221,65,9)" fg:x="7359" fg:w="4"/><text x="30.6302%" y="623.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="30.3802%" y="597" width="0.0165%" height="15" fill="rgb(235,49,36)" fg:x="7359" fg:w="4"/><text x="30.6302%" y="607.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="30.4174%" y="597" width="0.0248%" height="15" fill="rgb(225,32,20)" fg:x="7368" fg:w="6"/><text x="30.6674%" y="607.50"></text></g><g><title>bmalloc_heap_config_specialized_try_deallocate_not_small_exclusive_segregated (12 samples, 0.05%)</title><rect x="30.3967%" y="613" width="0.0495%" height="15" fill="rgb(215,141,46)" fg:x="7363" fg:w="12"/><text x="30.6467%" y="623.50"></text></g><g><title>pas_fast_large_free_heap_deallocate (4 samples, 0.02%)</title><rect x="30.4463%" y="581" width="0.0165%" height="15" fill="rgb(250,160,47)" fg:x="7375" fg:w="4"/><text x="30.6963%" y="591.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="30.4463%" y="565" width="0.0165%" height="15" fill="rgb(216,222,40)" fg:x="7375" fg:w="4"/><text x="30.6963%" y="575.50"></text></g><g><title>pas_try_deallocate_known_large (8 samples, 0.03%)</title><rect x="30.4463%" y="613" width="0.0330%" height="15" fill="rgb(234,217,39)" fg:x="7375" fg:w="8"/><text x="30.6963%" y="623.50"></text></g><g><title>pas_large_heap_try_deallocate (8 samples, 0.03%)</title><rect x="30.4463%" y="597" width="0.0330%" height="15" fill="rgb(207,178,40)" fg:x="7375" fg:w="8"/><text x="30.6963%" y="607.50"></text></g><g><title>pas_large_sharing_pool_free (4 samples, 0.02%)</title><rect x="30.4628%" y="581" width="0.0165%" height="15" fill="rgb(221,136,13)" fg:x="7379" fg:w="4"/><text x="30.7128%" y="591.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="30.4628%" y="565" width="0.0165%" height="15" fill="rgb(249,199,10)" fg:x="7379" fg:w="4"/><text x="30.7128%" y="575.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,743 samples, 23.71%)</title><rect x="6.7746%" y="629" width="23.7089%" height="15" fill="rgb(249,222,13)" fg:x="1641" fg:w="5743"/><text x="7.0246%" y="639.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,860 samples, 24.19%)</title><rect x="6.2957%" y="661" width="24.1919%" height="15" fill="rgb(244,185,38)" fg:x="1525" fg:w="5860"/><text x="6.5457%" y="671.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,819 samples, 24.02%)</title><rect x="6.4649%" y="645" width="24.0226%" height="15" fill="rgb(236,202,9)" fg:x="1566" fg:w="5819"/><text x="6.7149%" y="655.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,883 samples, 24.29%)</title><rect x="6.2131%" y="693" width="24.2868%" height="15" fill="rgb(250,229,37)" fg:x="1505" fg:w="5883"/><text x="6.4631%" y="703.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,874 samples, 24.25%)</title><rect x="6.2503%" y="677" width="24.2497%" height="15" fill="rgb(206,174,23)" fg:x="1514" fg:w="5874"/><text x="6.5003%" y="687.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,923 samples, 24.45%)</title><rect x="6.0727%" y="725" width="24.4520%" height="15" fill="rgb(211,33,43)" fg:x="1471" fg:w="5923"/><text x="6.3227%" y="735.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,901 samples, 24.36%)</title><rect x="6.1636%" y="709" width="24.3611%" height="15" fill="rgb(245,58,50)" fg:x="1493" fg:w="5901"/><text x="6.4136%" y="719.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>g_source_set_ready_time (6 samples, 0.02%)</title><rect x="30.4999%" y="693" width="0.0248%" height="15" fill="rgb(244,68,36)" fg:x="7388" fg:w="6"/><text x="30.7499%" y="703.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="30.4999%" y="677" width="0.0248%" height="15" fill="rgb(232,229,15)" fg:x="7388" fg:w="6"/><text x="30.7499%" y="687.50"></text></g><g><title>write (6 samples, 0.02%)</title><rect x="30.4999%" y="661" width="0.0248%" height="15" fill="rgb(254,30,23)" fg:x="7388" fg:w="6"/><text x="30.7499%" y="671.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6,093 samples, 25.15%)</title><rect x="5.7755%" y="741" width="25.1538%" height="15" fill="rgb(235,160,14)" fg:x="1399" fg:w="6093"/><text x="6.0255%" y="751.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>bmalloc_allocate_casual (98 samples, 0.40%)</title><rect x="30.5247%" y="725" width="0.4046%" height="15" fill="rgb(212,155,44)" fg:x="7394" fg:w="98"/><text x="30.7747%" y="735.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (98 samples, 0.40%)</title><rect x="30.5247%" y="709" width="0.4046%" height="15" fill="rgb(226,2,50)" fg:x="7394" fg:w="98"/><text x="30.7747%" y="719.50"></text></g><g><title>bmalloc_heap_config_specialized_local_allocator_try_allocate_slow (97 samples, 0.40%)</title><rect x="30.5288%" y="693" width="0.4004%" height="15" fill="rgb(234,177,6)" fg:x="7395" fg:w="97"/><text x="30.7788%" y="703.50"></text></g><g><title>bmalloc_marge_bitfit_page_config_specialized_allocator_try_allocate (96 samples, 0.40%)</title><rect x="30.5330%" y="677" width="0.3963%" height="15" fill="rgb(217,24,9)" fg:x="7396" fg:w="96"/><text x="30.7830%" y="687.50"></text></g><g><title>pas_lock_lock_slow (95 samples, 0.39%)</title><rect x="30.5371%" y="661" width="0.3922%" height="15" fill="rgb(220,13,46)" fg:x="7397" fg:w="95"/><text x="30.7871%" y="671.50"></text></g><g><title>__sched_yield (95 samples, 0.39%)</title><rect x="30.5371%" y="645" width="0.3922%" height="15" fill="rgb(239,221,27)" fg:x="7397" fg:w="95"/><text x="30.7871%" y="655.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6,123 samples, 25.28%)</title><rect x="5.6599%" y="757" width="25.2776%" height="15" fill="rgb(222,198,25)" fg:x="1371" fg:w="6123"/><text x="5.9099%" y="767.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>bmalloc_allocate_casual (5 samples, 0.02%)</title><rect x="30.9375%" y="757" width="0.0206%" height="15" fill="rgb(211,99,13)" fg:x="7494" fg:w="5"/><text x="31.1875%" y="767.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (5 samples, 0.02%)</title><rect x="30.9375%" y="741" width="0.0206%" height="15" fill="rgb(232,111,31)" fg:x="7494" fg:w="5"/><text x="31.1875%" y="751.50"></text></g><g><title>bmalloc_heap_config_specialized_local_allocator_try_allocate_small_segregated_slow (3 samples, 0.01%)</title><rect x="30.9458%" y="725" width="0.0124%" height="15" fill="rgb(245,82,37)" fg:x="7496" fg:w="3"/><text x="31.1958%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6,163 samples, 25.44%)</title><rect x="5.5443%" y="773" width="25.4428%" height="15" fill="rgb(227,149,46)" fg:x="1343" fg:w="6163"/><text x="5.7943%" y="783.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>g_source_set_ready_time (6 samples, 0.02%)</title><rect x="30.9623%" y="757" width="0.0248%" height="15" fill="rgb(218,36,50)" fg:x="7500" fg:w="6"/><text x="31.2123%" y="767.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="30.9623%" y="741" width="0.0248%" height="15" fill="rgb(226,80,48)" fg:x="7500" fg:w="6"/><text x="31.2123%" y="751.50"></text></g><g><title>write (5 samples, 0.02%)</title><rect x="30.9664%" y="725" width="0.0206%" height="15" fill="rgb(238,224,15)" fg:x="7501" fg:w="5"/><text x="31.2164%" y="735.50"></text></g><g><title>bmalloc_heap_config_specialized_try_deallocate_not_small_exclusive_segregated (3 samples, 0.01%)</title><rect x="30.9912%" y="773" width="0.0124%" height="15" fill="rgb(241,136,10)" fg:x="7507" fg:w="3"/><text x="31.2412%" y="783.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="31.0449%" y="229" width="0.0124%" height="15" fill="rgb(208,32,45)" fg:x="7520" fg:w="3"/><text x="31.2949%" y="239.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="31.0449%" y="213" width="0.0124%" height="15" fill="rgb(207,135,9)" fg:x="7520" fg:w="3"/><text x="31.2949%" y="223.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="31.0449%" y="197" width="0.0124%" height="15" fill="rgb(206,86,44)" fg:x="7520" fg:w="3"/><text x="31.2949%" y="207.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="31.0449%" y="261" width="0.0165%" height="15" fill="rgb(245,177,15)" fg:x="7520" fg:w="4"/><text x="31.2949%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="31.0449%" y="245" width="0.0165%" height="15" fill="rgb(206,64,50)" fg:x="7520" fg:w="4"/><text x="31.2949%" y="255.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="31.0449%" y="293" width="0.0206%" height="15" fill="rgb(234,36,40)" fg:x="7520" fg:w="5"/><text x="31.2949%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="31.0449%" y="277" width="0.0206%" height="15" fill="rgb(213,64,8)" fg:x="7520" fg:w="5"/><text x="31.2949%" y="287.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="31.0449%" y="309" width="0.0248%" height="15" fill="rgb(210,75,36)" fg:x="7520" fg:w="6"/><text x="31.2949%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="31.0449%" y="325" width="0.0289%" height="15" fill="rgb(229,88,21)" fg:x="7520" fg:w="7"/><text x="31.2949%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="31.0449%" y="357" width="0.0330%" height="15" fill="rgb(252,204,47)" fg:x="7520" fg:w="8"/><text x="31.2949%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="31.0449%" y="341" width="0.0330%" height="15" fill="rgb(208,77,27)" fg:x="7520" fg:w="8"/><text x="31.2949%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="31.0449%" y="389" width="0.0372%" height="15" fill="rgb(221,76,26)" fg:x="7520" fg:w="9"/><text x="31.2949%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="31.0449%" y="373" width="0.0372%" height="15" fill="rgb(225,139,18)" fg:x="7520" fg:w="9"/><text x="31.2949%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="31.0449%" y="405" width="0.0413%" height="15" fill="rgb(230,137,11)" fg:x="7520" fg:w="10"/><text x="31.2949%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (11 samples, 0.05%)</title><rect x="31.0449%" y="437" width="0.0454%" height="15" fill="rgb(212,28,1)" fg:x="7520" fg:w="11"/><text x="31.2949%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (11 samples, 0.05%)</title><rect x="31.0449%" y="421" width="0.0454%" height="15" fill="rgb(248,164,17)" fg:x="7520" fg:w="11"/><text x="31.2949%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="31.0449%" y="501" width="0.0495%" height="15" fill="rgb(222,171,42)" fg:x="7520" fg:w="12"/><text x="31.2949%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="31.0449%" y="485" width="0.0495%" height="15" fill="rgb(243,84,45)" fg:x="7520" fg:w="12"/><text x="31.2949%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="31.0449%" y="469" width="0.0495%" height="15" fill="rgb(252,49,23)" fg:x="7520" fg:w="12"/><text x="31.2949%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="31.0449%" y="453" width="0.0495%" height="15" fill="rgb(215,19,7)" fg:x="7520" fg:w="12"/><text x="31.2949%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="31.0449%" y="533" width="0.0537%" height="15" fill="rgb(238,81,41)" fg:x="7520" fg:w="13"/><text x="31.2949%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="31.0449%" y="517" width="0.0537%" height="15" fill="rgb(210,199,37)" fg:x="7520" fg:w="13"/><text x="31.2949%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (17 samples, 0.07%)</title><rect x="31.0325%" y="549" width="0.0702%" height="15" fill="rgb(244,192,49)" fg:x="7517" fg:w="17"/><text x="31.2825%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (26 samples, 0.11%)</title><rect x="31.0160%" y="565" width="0.1073%" height="15" fill="rgb(226,211,11)" fg:x="7513" fg:w="26"/><text x="31.2660%" y="575.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6,275 samples, 25.91%)</title><rect x="5.2347%" y="789" width="25.9051%" height="15" fill="rgb(236,162,54)" fg:x="1268" fg:w="6275"/><text x="5.4847%" y="799.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>g_object_set (33 samples, 0.14%)</title><rect x="31.0036%" y="773" width="0.1362%" height="15" fill="rgb(220,229,9)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="783.50"></text></g><g><title>g_object_set_valist (33 samples, 0.14%)</title><rect x="31.0036%" y="757" width="0.1362%" height="15" fill="rgb(250,87,22)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="767.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (33 samples, 0.14%)</title><rect x="31.0036%" y="741" width="0.1362%" height="15" fill="rgb(239,43,17)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="751.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (33 samples, 0.14%)</title><rect x="31.0036%" y="725" width="0.1362%" height="15" fill="rgb(231,177,25)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="735.50"></text></g><g><title>g_signal_emit (33 samples, 0.14%)</title><rect x="31.0036%" y="709" width="0.1362%" height="15" fill="rgb(219,179,1)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="719.50"></text></g><g><title>g_signal_emit_valist (33 samples, 0.14%)</title><rect x="31.0036%" y="693" width="0.1362%" height="15" fill="rgb(238,219,53)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="703.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (33 samples, 0.14%)</title><rect x="31.0036%" y="677" width="0.1362%" height="15" fill="rgb(232,167,36)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="687.50"></text></g><g><title>g_closure_invoke (33 samples, 0.14%)</title><rect x="31.0036%" y="661" width="0.1362%" height="15" fill="rgb(244,19,51)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (33 samples, 0.14%)</title><rect x="31.0036%" y="645" width="0.1362%" height="15" fill="rgb(224,6,22)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (33 samples, 0.14%)</title><rect x="31.0036%" y="629" width="0.1362%" height="15" fill="rgb(224,145,5)" fg:x="7510" fg:w="33"/><text x="31.2536%" y="639.50"></text></g><g><title>gtk_css_provider_load_from_path (32 samples, 0.13%)</title><rect x="31.0077%" y="613" width="0.1321%" height="15" fill="rgb(234,130,49)" fg:x="7511" fg:w="32"/><text x="31.2577%" y="623.50"></text></g><g><title>gtk_css_provider_load_from_file (32 samples, 0.13%)</title><rect x="31.0077%" y="597" width="0.1321%" height="15" fill="rgb(254,6,2)" fg:x="7511" fg:w="32"/><text x="31.2577%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (32 samples, 0.13%)</title><rect x="31.0077%" y="581" width="0.1321%" height="15" fill="rgb(208,96,46)" fg:x="7511" fg:w="32"/><text x="31.2577%" y="591.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6,333 samples, 26.14%)</title><rect x="5.0035%" y="885" width="26.1446%" height="15" fill="rgb(239,3,39)" fg:x="1212" fg:w="6333"/><text x="5.2535%" y="895.50">[libjavascriptcoregtk-4.1.so.0.3.9]</text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6,333 samples, 26.14%)</title><rect x="5.0035%" y="869" width="26.1446%" height="15" fill="rgb(233,210,1)" fg:x="1212" fg:w="6333"/><text x="5.2535%" y="879.50">[libjavascriptcoregtk-4.1.so.0.3.9]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6,324 samples, 26.11%)</title><rect x="5.0407%" y="853" width="26.1074%" height="15" fill="rgb(244,137,37)" fg:x="1221" fg:w="6324"/><text x="5.2907%" y="863.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6,321 samples, 26.10%)</title><rect x="5.0530%" y="837" width="26.0950%" height="15" fill="rgb(240,136,2)" fg:x="1224" fg:w="6321"/><text x="5.3030%" y="847.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6,309 samples, 26.05%)</title><rect x="5.1026%" y="821" width="26.0455%" height="15" fill="rgb(239,18,37)" fg:x="1236" fg:w="6309"/><text x="5.3526%" y="831.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6,295 samples, 25.99%)</title><rect x="5.1604%" y="805" width="25.9877%" height="15" fill="rgb(218,185,22)" fg:x="1250" fg:w="6295"/><text x="5.4104%" y="815.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>g_main_context_dispatch (6,341 samples, 26.18%)</title><rect x="4.9746%" y="901" width="26.1776%" height="15" fill="rgb(225,218,4)" fg:x="1205" fg:w="6341"/><text x="5.2246%" y="911.50">g_main_context_dispatch</text></g><g><title>WTF::RunLoop::run (6,406 samples, 26.45%)</title><rect x="4.7641%" y="949" width="26.4459%" height="15" fill="rgb(230,182,32)" fg:x="1154" fg:w="6406"/><text x="5.0141%" y="959.50">WTF::RunLoop::run</text></g><g><title>g_main_loop_run (6,406 samples, 26.45%)</title><rect x="4.7641%" y="933" width="26.4459%" height="15" fill="rgb(242,56,43)" fg:x="1154" fg:w="6406"/><text x="5.0141%" y="943.50">g_main_loop_run</text></g><g><title>[libglib-2.0.so.0.7600.1] (6,406 samples, 26.45%)</title><rect x="4.7641%" y="917" width="26.4459%" height="15" fill="rgb(233,99,24)" fg:x="1154" fg:w="6406"/><text x="5.0141%" y="927.50">[libglib-2.0.so.0.7600.1]</text></g><g><title>g_main_context_prepare (14 samples, 0.06%)</title><rect x="31.1522%" y="901" width="0.0578%" height="15" fill="rgb(234,209,42)" fg:x="7546" fg:w="14"/><text x="31.4022%" y="911.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="31.1852%" y="885" width="0.0248%" height="15" fill="rgb(227,7,12)" fg:x="7554" fg:w="6"/><text x="31.4352%" y="895.50"></text></g><g><title>g_source_ref (5 samples, 0.02%)</title><rect x="31.1894%" y="869" width="0.0206%" height="15" fill="rgb(245,203,43)" fg:x="7555" fg:w="5"/><text x="31.4394%" y="879.50"></text></g><g><title>_IO_fread (11 samples, 0.05%)</title><rect x="31.2348%" y="805" width="0.0454%" height="15" fill="rgb(238,205,33)" fg:x="7566" fg:w="11"/><text x="31.4848%" y="815.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="31.2595%" y="789" width="0.0206%" height="15" fill="rgb(231,56,7)" fg:x="7572" fg:w="5"/><text x="31.5095%" y="799.50"></text></g><g><title>[libwayland-cursor.so.0.22.0] (15 samples, 0.06%)</title><rect x="31.2265%" y="821" width="0.0619%" height="15" fill="rgb(244,186,29)" fg:x="7564" fg:w="15"/><text x="31.4765%" y="831.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (19 samples, 0.08%)</title><rect x="31.2141%" y="885" width="0.0784%" height="15" fill="rgb(234,111,31)" fg:x="7561" fg:w="19"/><text x="31.4641%" y="895.50"></text></g><g><title>gdk_wayland_display_set_cursor_theme (17 samples, 0.07%)</title><rect x="31.2224%" y="869" width="0.0702%" height="15" fill="rgb(241,149,10)" fg:x="7563" fg:w="17"/><text x="31.4724%" y="879.50"></text></g><g><title>wl_cursor_theme_load (17 samples, 0.07%)</title><rect x="31.2224%" y="853" width="0.0702%" height="15" fill="rgb(249,206,44)" fg:x="7563" fg:w="17"/><text x="31.4724%" y="863.50"></text></g><g><title>[libwayland-cursor.so.0.22.0] (17 samples, 0.07%)</title><rect x="31.2224%" y="837" width="0.0702%" height="15" fill="rgb(251,153,30)" fg:x="7563" fg:w="17"/><text x="31.4724%" y="847.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="31.3132%" y="693" width="0.0124%" height="15" fill="rgb(239,152,38)" fg:x="7585" fg:w="3"/><text x="31.5632%" y="703.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="31.3132%" y="677" width="0.0124%" height="15" fill="rgb(249,139,47)" fg:x="7585" fg:w="3"/><text x="31.5632%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="31.3380%" y="293" width="0.0124%" height="15" fill="rgb(244,64,35)" fg:x="7591" fg:w="3"/><text x="31.5880%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="31.3380%" y="277" width="0.0124%" height="15" fill="rgb(216,46,15)" fg:x="7591" fg:w="3"/><text x="31.5880%" y="287.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="31.3380%" y="261" width="0.0124%" height="15" fill="rgb(250,74,19)" fg:x="7591" fg:w="3"/><text x="31.5880%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="31.3380%" y="245" width="0.0124%" height="15" fill="rgb(249,42,33)" fg:x="7591" fg:w="3"/><text x="31.5880%" y="255.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="31.3380%" y="309" width="0.0165%" height="15" fill="rgb(242,149,17)" fg:x="7591" fg:w="4"/><text x="31.5880%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="31.3380%" y="373" width="0.0206%" height="15" fill="rgb(244,29,21)" fg:x="7591" fg:w="5"/><text x="31.5880%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="31.3380%" y="357" width="0.0206%" height="15" fill="rgb(220,130,37)" fg:x="7591" fg:w="5"/><text x="31.5880%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="31.3380%" y="341" width="0.0206%" height="15" fill="rgb(211,67,2)" fg:x="7591" fg:w="5"/><text x="31.5880%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="31.3380%" y="325" width="0.0206%" height="15" fill="rgb(235,68,52)" fg:x="7591" fg:w="5"/><text x="31.5880%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="31.3380%" y="469" width="0.0248%" height="15" fill="rgb(246,142,3)" fg:x="7591" fg:w="6"/><text x="31.5880%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="31.3380%" y="453" width="0.0248%" height="15" fill="rgb(241,25,7)" fg:x="7591" fg:w="6"/><text x="31.5880%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="31.3380%" y="437" width="0.0248%" height="15" fill="rgb(242,119,39)" fg:x="7591" fg:w="6"/><text x="31.5880%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="31.3380%" y="421" width="0.0248%" height="15" fill="rgb(241,98,45)" fg:x="7591" fg:w="6"/><text x="31.5880%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="31.3380%" y="405" width="0.0248%" height="15" fill="rgb(254,28,30)" fg:x="7591" fg:w="6"/><text x="31.5880%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="31.3380%" y="389" width="0.0248%" height="15" fill="rgb(241,142,54)" fg:x="7591" fg:w="6"/><text x="31.5880%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="31.3380%" y="485" width="0.0330%" height="15" fill="rgb(222,85,15)" fg:x="7591" fg:w="8"/><text x="31.5880%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="31.3380%" y="517" width="0.0372%" height="15" fill="rgb(210,85,47)" fg:x="7591" fg:w="9"/><text x="31.5880%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="31.3380%" y="501" width="0.0372%" height="15" fill="rgb(224,206,25)" fg:x="7591" fg:w="9"/><text x="31.5880%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="31.3380%" y="549" width="0.0413%" height="15" fill="rgb(243,201,19)" fg:x="7591" fg:w="10"/><text x="31.5880%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="31.3380%" y="533" width="0.0413%" height="15" fill="rgb(236,59,4)" fg:x="7591" fg:w="10"/><text x="31.5880%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (11 samples, 0.05%)</title><rect x="31.3380%" y="597" width="0.0454%" height="15" fill="rgb(254,179,45)" fg:x="7591" fg:w="11"/><text x="31.5880%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (11 samples, 0.05%)</title><rect x="31.3380%" y="581" width="0.0454%" height="15" fill="rgb(226,14,10)" fg:x="7591" fg:w="11"/><text x="31.5880%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (11 samples, 0.05%)</title><rect x="31.3380%" y="565" width="0.0454%" height="15" fill="rgb(244,27,41)" fg:x="7591" fg:w="11"/><text x="31.5880%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="31.3380%" y="613" width="0.0495%" height="15" fill="rgb(235,35,32)" fg:x="7591" fg:w="12"/><text x="31.5880%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="31.3380%" y="629" width="0.0537%" height="15" fill="rgb(218,68,31)" fg:x="7591" fg:w="13"/><text x="31.5880%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (16 samples, 0.07%)</title><rect x="31.3339%" y="645" width="0.0661%" height="15" fill="rgb(207,120,37)" fg:x="7590" fg:w="16"/><text x="31.5839%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (18 samples, 0.07%)</title><rect x="31.3339%" y="661" width="0.0743%" height="15" fill="rgb(227,98,0)" fg:x="7590" fg:w="18"/><text x="31.5839%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (20 samples, 0.08%)</title><rect x="31.3339%" y="677" width="0.0826%" height="15" fill="rgb(207,7,3)" fg:x="7590" fg:w="20"/><text x="31.5839%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (27 samples, 0.11%)</title><rect x="31.3256%" y="693" width="0.1115%" height="15" fill="rgb(206,98,19)" fg:x="7588" fg:w="27"/><text x="31.5756%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (33 samples, 0.14%)</title><rect x="31.3091%" y="757" width="0.1362%" height="15" fill="rgb(217,5,26)" fg:x="7584" fg:w="33"/><text x="31.5591%" y="767.50"></text></g><g><title>gtk_css_provider_load_from_path (33 samples, 0.14%)</title><rect x="31.3091%" y="741" width="0.1362%" height="15" fill="rgb(235,190,38)" fg:x="7584" fg:w="33"/><text x="31.5591%" y="751.50"></text></g><g><title>gtk_css_provider_load_from_file (33 samples, 0.14%)</title><rect x="31.3091%" y="725" width="0.1362%" height="15" fill="rgb(247,86,24)" fg:x="7584" fg:w="33"/><text x="31.5591%" y="735.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (33 samples, 0.14%)</title><rect x="31.3091%" y="709" width="0.1362%" height="15" fill="rgb(205,101,16)" fg:x="7584" fg:w="33"/><text x="31.5591%" y="719.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (34 samples, 0.14%)</title><rect x="31.3091%" y="773" width="0.1404%" height="15" fill="rgb(246,168,33)" fg:x="7584" fg:w="34"/><text x="31.5591%" y="783.50"></text></g><g><title>gdk_display_manager_open_display (60 samples, 0.25%)</title><rect x="31.2141%" y="917" width="0.2477%" height="15" fill="rgb(231,114,1)" fg:x="7561" fg:w="60"/><text x="31.4641%" y="927.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (60 samples, 0.25%)</title><rect x="31.2141%" y="901" width="0.2477%" height="15" fill="rgb(207,184,53)" fg:x="7561" fg:w="60"/><text x="31.4641%" y="911.50"></text></g><g><title>g_signal_emit_by_name (38 samples, 0.16%)</title><rect x="31.3050%" y="885" width="0.1569%" height="15" fill="rgb(224,95,51)" fg:x="7583" fg:w="38"/><text x="31.5550%" y="895.50"></text></g><g><title>g_signal_emit_valist (38 samples, 0.16%)</title><rect x="31.3050%" y="869" width="0.1569%" height="15" fill="rgb(212,188,45)" fg:x="7583" fg:w="38"/><text x="31.5550%" y="879.50"></text></g><g><title>g_signal_emit (37 samples, 0.15%)</title><rect x="31.3091%" y="853" width="0.1527%" height="15" fill="rgb(223,154,38)" fg:x="7584" fg:w="37"/><text x="31.5591%" y="863.50"></text></g><g><title>g_signal_emit_valist (37 samples, 0.15%)</title><rect x="31.3091%" y="837" width="0.1527%" height="15" fill="rgb(251,22,52)" fg:x="7584" fg:w="37"/><text x="31.5591%" y="847.50"></text></g><g><title>g_cclosure_marshal_VOID__OBJECTv (37 samples, 0.15%)</title><rect x="31.3091%" y="821" width="0.1527%" height="15" fill="rgb(229,209,22)" fg:x="7584" fg:w="37"/><text x="31.5591%" y="831.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (37 samples, 0.15%)</title><rect x="31.3091%" y="805" width="0.1527%" height="15" fill="rgb(234,138,34)" fg:x="7584" fg:w="37"/><text x="31.5591%" y="815.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (37 samples, 0.15%)</title><rect x="31.3091%" y="789" width="0.1527%" height="15" fill="rgb(212,95,11)" fg:x="7584" fg:w="37"/><text x="31.5591%" y="799.50"></text></g><g><title>[WebKitWebProcess] (6,470 samples, 26.71%)</title><rect x="4.7558%" y="1013" width="26.7102%" height="15" fill="rgb(240,179,47)" fg:x="1152" fg:w="6470"/><text x="5.0058%" y="1023.50">[WebKitWebProcess]</text></g><g><title>__libc_start_main (6,470 samples, 26.71%)</title><rect x="4.7558%" y="997" width="26.7102%" height="15" fill="rgb(240,163,11)" fg:x="1152" fg:w="6470"/><text x="5.0058%" y="1007.50">__libc_start_main</text></g><g><title>[libc.so.6] (6,470 samples, 26.71%)</title><rect x="4.7558%" y="981" width="26.7102%" height="15" fill="rgb(236,37,12)" fg:x="1152" fg:w="6470"/><text x="5.0058%" y="991.50">[libc.so.6]</text></g><g><title>WebKit::WebProcessMain (6,470 samples, 26.71%)</title><rect x="4.7558%" y="965" width="26.7102%" height="15" fill="rgb(232,164,16)" fg:x="1152" fg:w="6470"/><text x="5.0058%" y="975.50">WebKit::WebProcessMain</text></g><g><title>gtk_init (61 samples, 0.25%)</title><rect x="31.2141%" y="949" width="0.2518%" height="15" fill="rgb(244,205,15)" fg:x="7561" fg:w="61"/><text x="31.4641%" y="959.50"></text></g><g><title>gtk_init_check (61 samples, 0.25%)</title><rect x="31.2141%" y="933" width="0.2518%" height="15" fill="rgb(223,117,47)" fg:x="7561" fg:w="61"/><text x="31.4641%" y="943.50"></text></g><g><title>[libc.so.6] (95 samples, 0.39%)</title><rect x="31.4701%" y="997" width="0.3922%" height="15" fill="rgb(244,107,35)" fg:x="7623" fg:w="95"/><text x="31.7201%" y="1007.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="31.8664%" y="997" width="0.0248%" height="15" fill="rgb(205,140,8)" fg:x="7719" fg:w="6"/><text x="32.1164%" y="1007.50"></text></g><g><title>[libpixman-1.so.0.42.2] (9 samples, 0.04%)</title><rect x="31.8953%" y="997" width="0.0372%" height="15" fill="rgb(228,84,46)" fg:x="7726" fg:w="9"/><text x="32.1453%" y="1007.50"></text></g><g><title>[libwebp.so.7.1.6] (38 samples, 0.16%)</title><rect x="31.9325%" y="997" width="0.1569%" height="15" fill="rgb(254,188,9)" fg:x="7735" fg:w="38"/><text x="32.1825%" y="1007.50"></text></g><g><title>g_hash_table_lookup (3 samples, 0.01%)</title><rect x="32.1017%" y="997" width="0.0124%" height="15" fill="rgb(206,112,54)" fg:x="7776" fg:w="3"/><text x="32.3517%" y="1007.50"></text></g><g><title>g_hash_table_replace (3 samples, 0.01%)</title><rect x="32.1182%" y="997" width="0.0124%" height="15" fill="rgb(216,84,49)" fg:x="7780" fg:w="3"/><text x="32.3682%" y="1007.50"></text></g><g><title>[[heap]] (162 samples, 0.67%)</title><rect x="31.4660%" y="1013" width="0.6688%" height="15" fill="rgb(214,194,35)" fg:x="7622" fg:w="162"/><text x="31.7160%" y="1023.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="32.1595%" y="997" width="0.0124%" height="15" fill="rgb(249,28,3)" fg:x="7790" fg:w="3"/><text x="32.4095%" y="1007.50"></text></g><g><title>[[stack]] (17 samples, 0.07%)</title><rect x="32.1347%" y="1013" width="0.0702%" height="15" fill="rgb(222,56,52)" fg:x="7784" fg:w="17"/><text x="32.3847%" y="1023.50"></text></g><g><title>[libc.so.6] (9 samples, 0.04%)</title><rect x="32.2586%" y="837" width="0.0372%" height="15" fill="rgb(245,217,50)" fg:x="7814" fg:w="9"/><text x="32.5086%" y="847.50"></text></g><g><title>JSC::PropertySlot::customGetter (124 samples, 0.51%)</title><rect x="32.2586%" y="917" width="0.5119%" height="15" fill="rgb(213,201,24)" fg:x="7814" fg:w="124"/><text x="32.5086%" y="927.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (124 samples, 0.51%)</title><rect x="32.2586%" y="901" width="0.5119%" height="15" fill="rgb(248,116,28)" fg:x="7814" fg:w="124"/><text x="32.5086%" y="911.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (124 samples, 0.51%)</title><rect x="32.2586%" y="885" width="0.5119%" height="15" fill="rgb(219,72,43)" fg:x="7814" fg:w="124"/><text x="32.5086%" y="895.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (124 samples, 0.51%)</title><rect x="32.2586%" y="869" width="0.5119%" height="15" fill="rgb(209,138,14)" fg:x="7814" fg:w="124"/><text x="32.5086%" y="879.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (124 samples, 0.51%)</title><rect x="32.2586%" y="853" width="0.5119%" height="15" fill="rgb(222,18,33)" fg:x="7814" fg:w="124"/><text x="32.5086%" y="863.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (115 samples, 0.47%)</title><rect x="32.2958%" y="837" width="0.4748%" height="15" fill="rgb(213,199,7)" fg:x="7823" fg:w="115"/><text x="32.5458%" y="847.50"></text></g><g><title>__getdelim (8 samples, 0.03%)</title><rect x="32.7829%" y="741" width="0.0330%" height="15" fill="rgb(250,110,10)" fg:x="7941" fg:w="8"/><text x="33.0329%" y="751.50"></text></g><g><title>_IO_file_underflow (7 samples, 0.03%)</title><rect x="32.7870%" y="725" width="0.0289%" height="15" fill="rgb(248,123,6)" fg:x="7942" fg:w="7"/><text x="33.0370%" y="735.50"></text></g><g><title>read (7 samples, 0.03%)</title><rect x="32.7870%" y="709" width="0.0289%" height="15" fill="rgb(206,91,31)" fg:x="7942" fg:w="7"/><text x="33.0370%" y="719.50"></text></g><g><title>WTF::MemoryPressureHandler::currentMemoryUsagePolicy (11 samples, 0.05%)</title><rect x="32.7788%" y="773" width="0.0454%" height="15" fill="rgb(211,154,13)" fg:x="7940" fg:w="11"/><text x="33.0288%" y="783.50"></text></g><g><title>WTF::memoryFootprint (11 samples, 0.05%)</title><rect x="32.7788%" y="757" width="0.0454%" height="15" fill="rgb(225,148,7)" fg:x="7940" fg:w="11"/><text x="33.0288%" y="767.50"></text></g><g><title>JSC::PropertySlot::customGetter (12 samples, 0.05%)</title><rect x="32.7788%" y="885" width="0.0495%" height="15" fill="rgb(220,160,43)" fg:x="7940" fg:w="12"/><text x="33.0288%" y="895.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="32.7788%" y="869" width="0.0495%" height="15" fill="rgb(213,52,39)" fg:x="7940" fg:w="12"/><text x="33.0288%" y="879.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="32.7788%" y="853" width="0.0495%" height="15" fill="rgb(243,137,7)" fg:x="7940" fg:w="12"/><text x="33.0288%" y="863.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="32.7788%" y="837" width="0.0495%" height="15" fill="rgb(230,79,13)" fg:x="7940" fg:w="12"/><text x="33.0288%" y="847.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="32.7788%" y="821" width="0.0495%" height="15" fill="rgb(247,105,23)" fg:x="7940" fg:w="12"/><text x="33.0288%" y="831.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="32.7788%" y="805" width="0.0495%" height="15" fill="rgb(223,179,41)" fg:x="7940" fg:w="12"/><text x="33.0288%" y="815.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="32.7788%" y="789" width="0.0495%" height="15" fill="rgb(218,9,34)" fg:x="7940" fg:w="12"/><text x="33.0288%" y="799.50"></text></g><g><title>JSC::JSObject::putInlineSlow (80 samples, 0.33%)</title><rect x="32.8283%" y="869" width="0.3303%" height="15" fill="rgb(222,106,8)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="879.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (80 samples, 0.33%)</title><rect x="32.8283%" y="853" width="0.3303%" height="15" fill="rgb(211,220,0)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="863.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (80 samples, 0.33%)</title><rect x="32.8283%" y="837" width="0.3303%" height="15" fill="rgb(229,52,16)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="847.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (80 samples, 0.33%)</title><rect x="32.8283%" y="821" width="0.3303%" height="15" fill="rgb(212,155,18)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="831.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (80 samples, 0.33%)</title><rect x="32.8283%" y="805" width="0.3303%" height="15" fill="rgb(242,21,14)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="815.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (80 samples, 0.33%)</title><rect x="32.8283%" y="789" width="0.3303%" height="15" fill="rgb(222,19,48)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="799.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (80 samples, 0.33%)</title><rect x="32.8283%" y="773" width="0.3303%" height="15" fill="rgb(232,45,27)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (80 samples, 0.33%)</title><rect x="32.8283%" y="757" width="0.3303%" height="15" fill="rgb(249,103,42)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="767.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (80 samples, 0.33%)</title><rect x="32.8283%" y="741" width="0.3303%" height="15" fill="rgb(246,81,33)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="751.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (80 samples, 0.33%)</title><rect x="32.8283%" y="725" width="0.3303%" height="15" fill="rgb(252,33,42)" fg:x="7952" fg:w="80"/><text x="33.0783%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (78 samples, 0.32%)</title><rect x="32.8366%" y="709" width="0.3220%" height="15" fill="rgb(209,212,41)" fg:x="7954" fg:w="78"/><text x="33.0866%" y="719.50"></text></g><g><title>WTF::tryFastCalloc (78 samples, 0.32%)</title><rect x="32.8366%" y="693" width="0.3220%" height="15" fill="rgb(207,154,6)" fg:x="7954" fg:w="78"/><text x="33.0866%" y="703.50"></text></g><g><title>WTF::tryFastZeroedMalloc (78 samples, 0.32%)</title><rect x="32.8366%" y="677" width="0.3220%" height="15" fill="rgb(223,64,47)" fg:x="7954" fg:w="78"/><text x="33.0866%" y="687.50"></text></g><g><title>[libc.so.6] (78 samples, 0.32%)</title><rect x="32.8366%" y="661" width="0.3220%" height="15" fill="rgb(211,161,38)" fg:x="7954" fg:w="78"/><text x="33.0866%" y="671.50"></text></g><g><title>__getdelim (10 samples, 0.04%)</title><rect x="33.1586%" y="741" width="0.0413%" height="15" fill="rgb(219,138,40)" fg:x="8032" fg:w="10"/><text x="33.4086%" y="751.50"></text></g><g><title>_IO_file_underflow (9 samples, 0.04%)</title><rect x="33.1627%" y="725" width="0.0372%" height="15" fill="rgb(241,228,46)" fg:x="8033" fg:w="9"/><text x="33.4127%" y="735.50"></text></g><g><title>read (9 samples, 0.04%)</title><rect x="33.1627%" y="709" width="0.0372%" height="15" fill="rgb(223,209,38)" fg:x="8033" fg:w="9"/><text x="33.4127%" y="719.50"></text></g><g><title>JSC::PropertySlot::customGetter (12 samples, 0.05%)</title><rect x="33.1586%" y="869" width="0.0495%" height="15" fill="rgb(236,164,45)" fg:x="8032" fg:w="12"/><text x="33.4086%" y="879.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="33.1586%" y="853" width="0.0495%" height="15" fill="rgb(231,15,5)" fg:x="8032" fg:w="12"/><text x="33.4086%" y="863.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="33.1586%" y="837" width="0.0495%" height="15" fill="rgb(252,35,15)" fg:x="8032" fg:w="12"/><text x="33.4086%" y="847.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="33.1586%" y="821" width="0.0495%" height="15" fill="rgb(248,181,18)" fg:x="8032" fg:w="12"/><text x="33.4086%" y="831.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="33.1586%" y="805" width="0.0495%" height="15" fill="rgb(233,39,42)" fg:x="8032" fg:w="12"/><text x="33.4086%" y="815.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="33.1586%" y="789" width="0.0495%" height="15" fill="rgb(238,110,33)" fg:x="8032" fg:w="12"/><text x="33.4086%" y="799.50"></text></g><g><title>WTF::MemoryPressureHandler::currentMemoryUsagePolicy (12 samples, 0.05%)</title><rect x="33.1586%" y="773" width="0.0495%" height="15" fill="rgb(233,195,10)" fg:x="8032" fg:w="12"/><text x="33.4086%" y="783.50"></text></g><g><title>WTF::memoryFootprint (12 samples, 0.05%)</title><rect x="33.1586%" y="757" width="0.0495%" height="15" fill="rgb(254,105,3)" fg:x="8032" fg:w="12"/><text x="33.4086%" y="767.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (247 samples, 1.02%)</title><rect x="32.2173%" y="997" width="1.0197%" height="15" fill="rgb(221,225,9)" fg:x="7804" fg:w="247"/><text x="32.4673%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (238 samples, 0.98%)</title><rect x="32.2545%" y="981" width="0.9825%" height="15" fill="rgb(224,227,45)" fg:x="7813" fg:w="238"/><text x="32.5045%" y="991.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (238 samples, 0.98%)</title><rect x="32.2545%" y="965" width="0.9825%" height="15" fill="rgb(229,198,43)" fg:x="7813" fg:w="238"/><text x="32.5045%" y="975.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (238 samples, 0.98%)</title><rect x="32.2545%" y="949" width="0.9825%" height="15" fill="rgb(206,209,35)" fg:x="7813" fg:w="238"/><text x="32.5045%" y="959.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (237 samples, 0.98%)</title><rect x="32.2586%" y="933" width="0.9784%" height="15" fill="rgb(245,195,53)" fg:x="7814" fg:w="237"/><text x="32.5086%" y="943.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (113 samples, 0.47%)</title><rect x="32.7705%" y="917" width="0.4665%" height="15" fill="rgb(240,92,26)" fg:x="7938" fg:w="113"/><text x="33.0205%" y="927.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (112 samples, 0.46%)</title><rect x="32.7746%" y="901" width="0.4624%" height="15" fill="rgb(207,40,23)" fg:x="7939" fg:w="112"/><text x="33.0246%" y="911.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (99 samples, 0.41%)</title><rect x="32.8283%" y="885" width="0.4087%" height="15" fill="rgb(223,111,35)" fg:x="7952" fg:w="99"/><text x="33.0783%" y="895.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (7 samples, 0.03%)</title><rect x="33.2081%" y="869" width="0.0289%" height="15" fill="rgb(229,147,28)" fg:x="8044" fg:w="7"/><text x="33.4581%" y="879.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="33.2205%" y="853" width="0.0165%" height="15" fill="rgb(211,29,28)" fg:x="8047" fg:w="4"/><text x="33.4705%" y="863.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="33.2246%" y="837" width="0.0124%" height="15" fill="rgb(228,72,33)" fg:x="8048" fg:w="3"/><text x="33.4746%" y="847.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="33.2246%" y="821" width="0.0124%" height="15" fill="rgb(205,214,31)" fg:x="8048" fg:w="3"/><text x="33.4746%" y="831.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (15 samples, 0.06%)</title><rect x="33.2370%" y="997" width="0.0619%" height="15" fill="rgb(224,111,15)" fg:x="8051" fg:w="15"/><text x="33.4870%" y="1007.50"></text></g><g><title>[libwebp.so.7.1.6] (5 samples, 0.02%)</title><rect x="33.2989%" y="997" width="0.0206%" height="15" fill="rgb(253,21,26)" fg:x="8066" fg:w="5"/><text x="33.5489%" y="1007.50"></text></g><g><title>[anon] (275 samples, 1.14%)</title><rect x="32.2049%" y="1013" width="1.1353%" height="15" fill="rgb(245,139,43)" fg:x="7801" fg:w="275"/><text x="32.4549%" y="1023.50"></text></g><g><title>[ld-linux-x86-64.so.2] (40 samples, 0.17%)</title><rect x="33.3732%" y="933" width="0.1651%" height="15" fill="rgb(252,170,7)" fg:x="8084" fg:w="40"/><text x="33.6232%" y="943.50"></text></g><g><title>[ld-linux-x86-64.so.2] (37 samples, 0.15%)</title><rect x="33.3856%" y="917" width="0.1527%" height="15" fill="rgb(231,118,14)" fg:x="8087" fg:w="37"/><text x="33.6356%" y="927.50"></text></g><g><title>[ld-linux-x86-64.so.2] (4 samples, 0.02%)</title><rect x="33.5219%" y="901" width="0.0165%" height="15" fill="rgb(238,83,0)" fg:x="8120" fg:w="4"/><text x="33.7719%" y="911.50"></text></g><g><title>[ld-linux-x86-64.so.2] (52 samples, 0.21%)</title><rect x="33.3443%" y="1013" width="0.2147%" height="15" fill="rgb(221,39,39)" fg:x="8077" fg:w="52"/><text x="33.5943%" y="1023.50"></text></g><g><title>[ld-linux-x86-64.so.2] (51 samples, 0.21%)</title><rect x="33.3485%" y="997" width="0.2105%" height="15" fill="rgb(222,119,46)" fg:x="8078" fg:w="51"/><text x="33.5985%" y="1007.50"></text></g><g><title>[ld-linux-x86-64.so.2] (51 samples, 0.21%)</title><rect x="33.3485%" y="981" width="0.2105%" height="15" fill="rgb(222,165,49)" fg:x="8078" fg:w="51"/><text x="33.5985%" y="991.50"></text></g><g><title>[ld-linux-x86-64.so.2] (51 samples, 0.21%)</title><rect x="33.3485%" y="965" width="0.2105%" height="15" fill="rgb(219,113,52)" fg:x="8078" fg:w="51"/><text x="33.5985%" y="975.50"></text></g><g><title>[ld-linux-x86-64.so.2] (51 samples, 0.21%)</title><rect x="33.3485%" y="949" width="0.2105%" height="15" fill="rgb(214,7,15)" fg:x="8078" fg:w="51"/><text x="33.5985%" y="959.50"></text></g><g><title>_dl_catch_exception (5 samples, 0.02%)</title><rect x="33.5384%" y="933" width="0.0206%" height="15" fill="rgb(235,32,4)" fg:x="8124" fg:w="5"/><text x="33.7884%" y="943.50"></text></g><g><title>[ld-linux-x86-64.so.2] (5 samples, 0.02%)</title><rect x="33.5384%" y="917" width="0.0206%" height="15" fill="rgb(238,90,54)" fg:x="8124" fg:w="5"/><text x="33.7884%" y="927.50"></text></g><g><title>[ld-linux-x86-64.so.2] (5 samples, 0.02%)</title><rect x="33.5384%" y="901" width="0.0206%" height="15" fill="rgb(213,208,19)" fg:x="8124" fg:w="5"/><text x="33.7884%" y="911.50"></text></g><g><title>[ld-linux-x86-64.so.2] (5 samples, 0.02%)</title><rect x="33.5384%" y="885" width="0.0206%" height="15" fill="rgb(233,156,4)" fg:x="8124" fg:w="5"/><text x="33.7884%" y="895.50"></text></g><g><title>[ld-linux-x86-64.so.2] (4 samples, 0.02%)</title><rect x="33.5425%" y="869" width="0.0165%" height="15" fill="rgb(207,194,5)" fg:x="8125" fg:w="4"/><text x="33.7925%" y="879.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (79 samples, 0.33%)</title><rect x="33.6168%" y="949" width="0.3261%" height="15" fill="rgb(206,111,30)" fg:x="8143" fg:w="79"/><text x="33.8668%" y="959.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (79 samples, 0.33%)</title><rect x="33.6168%" y="933" width="0.3261%" height="15" fill="rgb(243,70,54)" fg:x="8143" fg:w="79"/><text x="33.8668%" y="943.50"></text></g><g><title>__madvise (79 samples, 0.33%)</title><rect x="33.6168%" y="917" width="0.3261%" height="15" fill="rgb(242,28,8)" fg:x="8143" fg:w="79"/><text x="33.8668%" y="927.50"></text></g><g><title>pas_physical_page_sharing_pool_scavenge (84 samples, 0.35%)</title><rect x="33.6168%" y="965" width="0.3468%" height="15" fill="rgb(219,106,18)" fg:x="8143" fg:w="84"/><text x="33.8668%" y="975.50"></text></g><g><title>pas_page_sharing_pool_take_least_recently_used (5 samples, 0.02%)</title><rect x="33.9429%" y="949" width="0.0206%" height="15" fill="rgb(244,222,10)" fg:x="8222" fg:w="5"/><text x="34.1929%" y="959.50"></text></g><g><title>pas_segregated_size_directory_take_last_empty (3 samples, 0.01%)</title><rect x="33.9512%" y="933" width="0.0124%" height="15" fill="rgb(236,179,52)" fg:x="8224" fg:w="3"/><text x="34.2012%" y="943.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (15 samples, 0.06%)</title><rect x="33.9966%" y="949" width="0.0619%" height="15" fill="rgb(213,23,39)" fg:x="8235" fg:w="15"/><text x="34.2466%" y="959.50"></text></g><g><title>pas_thread_local_cache_for_all (24 samples, 0.10%)</title><rect x="33.9636%" y="965" width="0.0991%" height="15" fill="rgb(238,48,10)" fg:x="8227" fg:w="24"/><text x="34.2136%" y="975.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (111 samples, 0.46%)</title><rect x="33.6086%" y="981" width="0.4582%" height="15" fill="rgb(251,196,23)" fg:x="8141" fg:w="111"/><text x="33.8586%" y="991.50"></text></g><g><title>[libc.so.6] (123 samples, 0.51%)</title><rect x="33.5631%" y="1013" width="0.5078%" height="15" fill="rgb(250,152,24)" fg:x="8130" fg:w="123"/><text x="33.8131%" y="1023.50"></text></g><g><title>[libc.so.6] (121 samples, 0.50%)</title><rect x="33.5714%" y="997" width="0.4995%" height="15" fill="rgb(209,150,17)" fg:x="8132" fg:w="121"/><text x="33.8214%" y="1007.50"></text></g><g><title>JSC::JSObject::putInlineSlow (5 samples, 0.02%)</title><rect x="34.0874%" y="853" width="0.0206%" height="15" fill="rgb(234,202,34)" fg:x="8257" fg:w="5"/><text x="34.3374%" y="863.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (5 samples, 0.02%)</title><rect x="34.0874%" y="837" width="0.0206%" height="15" fill="rgb(253,148,53)" fg:x="8257" fg:w="5"/><text x="34.3374%" y="847.50"></text></g><g><title>JSC::Structure::addNewPropertyTransition (5 samples, 0.02%)</title><rect x="34.0874%" y="821" width="0.0206%" height="15" fill="rgb(218,129,16)" fg:x="8257" fg:w="5"/><text x="34.3374%" y="831.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="34.1122%" y="549" width="0.0124%" height="15" fill="rgb(216,85,19)" fg:x="8263" fg:w="3"/><text x="34.3622%" y="559.50"></text></g><g><title>ioctl (3 samples, 0.01%)</title><rect x="34.1122%" y="533" width="0.0124%" height="15" fill="rgb(235,228,7)" fg:x="8263" fg:w="3"/><text x="34.3622%" y="543.50"></text></g><g><title>[crocus_dri.so] (5 samples, 0.02%)</title><rect x="34.1122%" y="629" width="0.0206%" height="15" fill="rgb(245,175,0)" fg:x="8263" fg:w="5"/><text x="34.3622%" y="639.50"></text></g><g><title>[crocus_dri.so] (5 samples, 0.02%)</title><rect x="34.1122%" y="613" width="0.0206%" height="15" fill="rgb(208,168,36)" fg:x="8263" fg:w="5"/><text x="34.3622%" y="623.50"></text></g><g><title>[crocus_dri.so] (5 samples, 0.02%)</title><rect x="34.1122%" y="597" width="0.0206%" height="15" fill="rgb(246,171,24)" fg:x="8263" fg:w="5"/><text x="34.3622%" y="607.50"></text></g><g><title>[crocus_dri.so] (5 samples, 0.02%)</title><rect x="34.1122%" y="581" width="0.0206%" height="15" fill="rgb(215,142,24)" fg:x="8263" fg:w="5"/><text x="34.3622%" y="591.50"></text></g><g><title>[crocus_dri.so] (5 samples, 0.02%)</title><rect x="34.1122%" y="565" width="0.0206%" height="15" fill="rgb(250,187,7)" fg:x="8263" fg:w="5"/><text x="34.3622%" y="575.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (15 samples, 0.06%)</title><rect x="34.0751%" y="997" width="0.0619%" height="15" fill="rgb(228,66,33)" fg:x="8254" fg:w="15"/><text x="34.3251%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (15 samples, 0.06%)</title><rect x="34.0751%" y="981" width="0.0619%" height="15" fill="rgb(234,215,21)" fg:x="8254" fg:w="15"/><text x="34.3251%" y="991.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (15 samples, 0.06%)</title><rect x="34.0751%" y="965" width="0.0619%" height="15" fill="rgb(222,191,20)" fg:x="8254" fg:w="15"/><text x="34.3251%" y="975.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (15 samples, 0.06%)</title><rect x="34.0751%" y="949" width="0.0619%" height="15" fill="rgb(245,79,54)" fg:x="8254" fg:w="15"/><text x="34.3251%" y="959.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (15 samples, 0.06%)</title><rect x="34.0751%" y="933" width="0.0619%" height="15" fill="rgb(240,10,37)" fg:x="8254" fg:w="15"/><text x="34.3251%" y="943.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (14 samples, 0.06%)</title><rect x="34.0792%" y="917" width="0.0578%" height="15" fill="rgb(214,192,32)" fg:x="8255" fg:w="14"/><text x="34.3292%" y="927.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (13 samples, 0.05%)</title><rect x="34.0833%" y="901" width="0.0537%" height="15" fill="rgb(209,36,54)" fg:x="8256" fg:w="13"/><text x="34.3333%" y="911.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (13 samples, 0.05%)</title><rect x="34.0833%" y="885" width="0.0537%" height="15" fill="rgb(220,10,11)" fg:x="8256" fg:w="13"/><text x="34.3333%" y="895.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (13 samples, 0.05%)</title><rect x="34.0833%" y="869" width="0.0537%" height="15" fill="rgb(221,106,17)" fg:x="8256" fg:w="13"/><text x="34.3333%" y="879.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="34.1122%" y="853" width="0.0248%" height="15" fill="rgb(251,142,44)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="863.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="34.1122%" y="837" width="0.0248%" height="15" fill="rgb(238,13,15)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="847.50"></text></g><g><title>JSC::JSObject::putInlineSlow (6 samples, 0.02%)</title><rect x="34.1122%" y="821" width="0.0248%" height="15" fill="rgb(208,107,27)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="831.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="805" width="0.0248%" height="15" fill="rgb(205,136,37)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="815.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="789" width="0.0248%" height="15" fill="rgb(250,205,27)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="799.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="773" width="0.0248%" height="15" fill="rgb(210,80,43)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="757" width="0.0248%" height="15" fill="rgb(247,160,36)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="767.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="741" width="0.0248%" height="15" fill="rgb(234,13,49)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="751.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="725" width="0.0248%" height="15" fill="rgb(234,122,0)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="709" width="0.0248%" height="15" fill="rgb(207,146,38)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="719.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="693" width="0.0248%" height="15" fill="rgb(207,177,25)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="703.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="677" width="0.0248%" height="15" fill="rgb(211,178,42)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="687.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="661" width="0.0248%" height="15" fill="rgb(230,69,54)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="671.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="34.1122%" y="645" width="0.0248%" height="15" fill="rgb(214,135,41)" fg:x="8263" fg:w="6"/><text x="34.3622%" y="655.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (18 samples, 0.07%)</title><rect x="34.0751%" y="1013" width="0.0743%" height="15" fill="rgb(237,67,25)" fg:x="8254" fg:w="18"/><text x="34.3251%" y="1023.50"></text></g><g><title>JSC::LocalAllocator::allocateSlowCase (4 samples, 0.02%)</title><rect x="34.3228%" y="981" width="0.0165%" height="15" fill="rgb(222,189,50)" fg:x="8314" fg:w="4"/><text x="34.5728%" y="991.50"></text></g><g><title>WTF::StringView::find (32 samples, 0.13%)</title><rect x="34.3475%" y="981" width="0.1321%" height="15" fill="rgb(245,148,34)" fg:x="8320" fg:w="32"/><text x="34.5975%" y="991.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (32 samples, 0.13%)</title><rect x="34.3475%" y="965" width="0.1321%" height="15" fill="rgb(222,29,6)" fg:x="8320" fg:w="32"/><text x="34.5975%" y="975.50"></text></g><g><title>JSC::JSArray::tryCreateUninitializedRestricted (4 samples, 0.02%)</title><rect x="34.5539%" y="965" width="0.0165%" height="15" fill="rgb(221,189,43)" fg:x="8370" fg:w="4"/><text x="34.8039%" y="975.50"></text></g><g><title>JSC::JSObject::defineOwnProperty (5 samples, 0.02%)</title><rect x="34.5746%" y="965" width="0.0206%" height="15" fill="rgb(207,36,27)" fg:x="8375" fg:w="5"/><text x="34.8246%" y="975.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (17 samples, 0.07%)</title><rect x="34.7108%" y="917" width="0.0702%" height="15" fill="rgb(217,90,24)" fg:x="8408" fg:w="17"/><text x="34.9608%" y="927.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (10 samples, 0.04%)</title><rect x="34.7397%" y="901" width="0.0413%" height="15" fill="rgb(224,66,35)" fg:x="8415" fg:w="10"/><text x="34.9897%" y="911.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (10 samples, 0.04%)</title><rect x="34.7397%" y="885" width="0.0413%" height="15" fill="rgb(221,13,50)" fg:x="8415" fg:w="10"/><text x="34.9897%" y="895.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (9 samples, 0.04%)</title><rect x="34.7438%" y="869" width="0.0372%" height="15" fill="rgb(236,68,49)" fg:x="8416" fg:w="9"/><text x="34.9938%" y="879.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (8 samples, 0.03%)</title><rect x="34.7480%" y="853" width="0.0330%" height="15" fill="rgb(229,146,28)" fg:x="8417" fg:w="8"/><text x="34.9980%" y="863.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="34.7562%" y="837" width="0.0248%" height="15" fill="rgb(225,31,38)" fg:x="8419" fg:w="6"/><text x="35.0062%" y="847.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (5 samples, 0.02%)</title><rect x="34.7604%" y="821" width="0.0206%" height="15" fill="rgb(250,208,3)" fg:x="8420" fg:w="5"/><text x="35.0104%" y="831.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="34.7645%" y="805" width="0.0165%" height="15" fill="rgb(246,54,23)" fg:x="8421" fg:w="4"/><text x="35.0145%" y="815.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="34.7686%" y="789" width="0.0124%" height="15" fill="rgb(243,76,11)" fg:x="8422" fg:w="3"/><text x="35.0186%" y="799.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (43 samples, 0.18%)</title><rect x="34.6076%" y="965" width="0.1775%" height="15" fill="rgb(245,21,50)" fg:x="8383" fg:w="43"/><text x="34.8576%" y="975.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (31 samples, 0.13%)</title><rect x="34.6571%" y="949" width="0.1280%" height="15" fill="rgb(228,9,43)" fg:x="8395" fg:w="31"/><text x="34.9071%" y="959.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (22 samples, 0.09%)</title><rect x="34.6943%" y="933" width="0.0908%" height="15" fill="rgb(208,100,47)" fg:x="8404" fg:w="22"/><text x="34.9443%" y="943.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (129 samples, 0.53%)</title><rect x="34.2567%" y="997" width="0.5326%" height="15" fill="rgb(232,26,8)" fg:x="8298" fg:w="129"/><text x="34.5067%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (75 samples, 0.31%)</title><rect x="34.4796%" y="981" width="0.3096%" height="15" fill="rgb(216,166,38)" fg:x="8352" fg:w="75"/><text x="34.7296%" y="991.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="34.8140%" y="965" width="0.0206%" height="15" fill="rgb(251,202,51)" fg:x="8433" fg:w="5"/><text x="35.0640%" y="975.50"></text></g><g><title>WTF::URL::URL (47 samples, 0.19%)</title><rect x="34.8388%" y="949" width="0.1940%" height="15" fill="rgb(254,216,34)" fg:x="8439" fg:w="47"/><text x="35.0888%" y="959.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (47 samples, 0.19%)</title><rect x="34.8388%" y="933" width="0.1940%" height="15" fill="rgb(251,32,27)" fg:x="8439" fg:w="47"/><text x="35.0888%" y="943.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (47 samples, 0.19%)</title><rect x="34.8388%" y="917" width="0.1940%" height="15" fill="rgb(208,127,28)" fg:x="8439" fg:w="47"/><text x="35.0888%" y="927.50"></text></g><g><title>[libc.so.6] (7 samples, 0.03%)</title><rect x="35.0452%" y="933" width="0.0289%" height="15" fill="rgb(224,137,22)" fg:x="8489" fg:w="7"/><text x="35.2952%" y="943.50"></text></g><g><title>[libc.so.6] (10 samples, 0.04%)</title><rect x="35.0947%" y="917" width="0.0413%" height="15" fill="rgb(254,70,32)" fg:x="8501" fg:w="10"/><text x="35.3447%" y="927.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="35.1402%" y="901" width="0.0165%" height="15" fill="rgb(229,75,37)" fg:x="8512" fg:w="4"/><text x="35.3902%" y="911.50"></text></g><g><title>WTF::tryFastCalloc (77 samples, 0.32%)</title><rect x="37.3488%" y="869" width="0.3179%" height="15" fill="rgb(252,64,23)" fg:x="9047" fg:w="77"/><text x="37.5988%" y="879.50"></text></g><g><title>WTF::tryFastZeroedMalloc (77 samples, 0.32%)</title><rect x="37.3488%" y="853" width="0.3179%" height="15" fill="rgb(232,162,48)" fg:x="9047" fg:w="77"/><text x="37.5988%" y="863.50"></text></g><g><title>[libc.so.6] (77 samples, 0.32%)</title><rect x="37.3488%" y="837" width="0.3179%" height="15" fill="rgb(246,160,12)" fg:x="9047" fg:w="77"/><text x="37.5988%" y="847.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="37.6749%" y="869" width="0.0124%" height="15" fill="rgb(247,166,0)" fg:x="9126" fg:w="3"/><text x="37.9249%" y="879.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="37.6749%" y="853" width="0.0124%" height="15" fill="rgb(249,219,21)" fg:x="9126" fg:w="3"/><text x="37.9249%" y="863.50"></text></g><g><title>gbm_create_device (3 samples, 0.01%)</title><rect x="37.6749%" y="837" width="0.0124%" height="15" fill="rgb(205,209,3)" fg:x="9126" fg:w="3"/><text x="37.9249%" y="847.50"></text></g><g><title>[libgbm.so.1.0.0] (3 samples, 0.01%)</title><rect x="37.6749%" y="821" width="0.0124%" height="15" fill="rgb(243,44,1)" fg:x="9126" fg:w="3"/><text x="37.9249%" y="831.50"></text></g><g><title>[libgbm.so.1.0.0] (3 samples, 0.01%)</title><rect x="37.6749%" y="805" width="0.0124%" height="15" fill="rgb(206,159,16)" fg:x="9126" fg:w="3"/><text x="37.9249%" y="815.50"></text></g><g><title>[libgbm.so.1.0.0] (3 samples, 0.01%)</title><rect x="37.6749%" y="789" width="0.0124%" height="15" fill="rgb(244,77,30)" fg:x="9126" fg:w="3"/><text x="37.9249%" y="799.50"></text></g><g><title>[crocus_dri.so] (143 samples, 0.59%)</title><rect x="37.6873%" y="741" width="0.5903%" height="15" fill="rgb(218,69,12)" fg:x="9129" fg:w="143"/><text x="37.9373%" y="751.50"></text></g><g><title>[crocus_dri.so] (140 samples, 0.58%)</title><rect x="37.6997%" y="725" width="0.5780%" height="15" fill="rgb(212,87,7)" fg:x="9132" fg:w="140"/><text x="37.9497%" y="735.50"></text></g><g><title>[crocus_dri.so] (144 samples, 0.59%)</title><rect x="37.6873%" y="773" width="0.5945%" height="15" fill="rgb(245,114,25)" fg:x="9129" fg:w="144"/><text x="37.9373%" y="783.50"></text></g><g><title>[crocus_dri.so] (144 samples, 0.59%)</title><rect x="37.6873%" y="757" width="0.5945%" height="15" fill="rgb(210,61,42)" fg:x="9129" fg:w="144"/><text x="37.9373%" y="767.50"></text></g><g><title>[crocus_dri.so] (299 samples, 1.23%)</title><rect x="37.6873%" y="853" width="1.2344%" height="15" fill="rgb(211,52,33)" fg:x="9129" fg:w="299"/><text x="37.9373%" y="863.50"></text></g><g><title>[crocus_dri.so] (299 samples, 1.23%)</title><rect x="37.6873%" y="837" width="1.2344%" height="15" fill="rgb(234,58,33)" fg:x="9129" fg:w="299"/><text x="37.9373%" y="847.50"></text></g><g><title>[crocus_dri.so] (299 samples, 1.23%)</title><rect x="37.6873%" y="821" width="1.2344%" height="15" fill="rgb(220,115,36)" fg:x="9129" fg:w="299"/><text x="37.9373%" y="831.50"></text></g><g><title>[crocus_dri.so] (299 samples, 1.23%)</title><rect x="37.6873%" y="805" width="1.2344%" height="15" fill="rgb(243,153,54)" fg:x="9129" fg:w="299"/><text x="37.9373%" y="815.50"></text></g><g><title>[crocus_dri.so] (299 samples, 1.23%)</title><rect x="37.6873%" y="789" width="1.2344%" height="15" fill="rgb(251,47,18)" fg:x="9129" fg:w="299"/><text x="37.9373%" y="799.50"></text></g><g><title>[libc.so.6] (155 samples, 0.64%)</title><rect x="38.2818%" y="773" width="0.6399%" height="15" fill="rgb(242,102,42)" fg:x="9273" fg:w="155"/><text x="38.5318%" y="783.50"></text></g><g><title>[libc.so.6] (33 samples, 0.14%)</title><rect x="38.9217%" y="853" width="0.1362%" height="15" fill="rgb(234,31,38)" fg:x="9428" fg:w="33"/><text x="39.1717%" y="863.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (4 samples, 0.02%)</title><rect x="40.3088%" y="837" width="0.0165%" height="15" fill="rgb(221,117,51)" fg:x="9764" fg:w="4"/><text x="40.5588%" y="847.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (4 samples, 0.02%)</title><rect x="40.3088%" y="821" width="0.0165%" height="15" fill="rgb(212,20,18)" fg:x="9764" fg:w="4"/><text x="40.5588%" y="831.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (4 samples, 0.02%)</title><rect x="40.3088%" y="805" width="0.0165%" height="15" fill="rgb(245,133,36)" fg:x="9764" fg:w="4"/><text x="40.5588%" y="815.50"></text></g><g><title>[libc.so.6] (34 samples, 0.14%)</title><rect x="40.3253%" y="837" width="0.1404%" height="15" fill="rgb(212,6,19)" fg:x="9768" fg:w="34"/><text x="40.5753%" y="847.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="40.4698%" y="725" width="0.0165%" height="15" fill="rgb(218,1,36)" fg:x="9803" fg:w="4"/><text x="40.7198%" y="735.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="40.4863%" y="709" width="0.0206%" height="15" fill="rgb(246,84,54)" fg:x="9807" fg:w="5"/><text x="40.7363%" y="719.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="40.5070%" y="693" width="0.0124%" height="15" fill="rgb(242,110,6)" fg:x="9812" fg:w="3"/><text x="40.7570%" y="703.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="40.5070%" y="677" width="0.0124%" height="15" fill="rgb(214,47,5)" fg:x="9812" fg:w="3"/><text x="40.7570%" y="687.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="40.5070%" y="661" width="0.0124%" height="15" fill="rgb(218,159,25)" fg:x="9812" fg:w="3"/><text x="40.7570%" y="671.50"></text></g><g><title>WTF::URL::isolatedCopy (3 samples, 0.01%)</title><rect x="40.5070%" y="645" width="0.0124%" height="15" fill="rgb(215,211,28)" fg:x="9812" fg:w="3"/><text x="40.7570%" y="655.50"></text></g><g><title>WTF::String::isolatedCopy (3 samples, 0.01%)</title><rect x="40.5070%" y="629" width="0.0124%" height="15" fill="rgb(238,59,32)" fg:x="9812" fg:w="3"/><text x="40.7570%" y="639.50"></text></g><g><title>WTF::StringImpl::create (3 samples, 0.01%)</title><rect x="40.5070%" y="613" width="0.0124%" height="15" fill="rgb(226,82,3)" fg:x="9812" fg:w="3"/><text x="40.7570%" y="623.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="40.5070%" y="597" width="0.0124%" height="15" fill="rgb(240,164,32)" fg:x="9812" fg:w="3"/><text x="40.7570%" y="607.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (13 samples, 0.05%)</title><rect x="40.4698%" y="821" width="0.0537%" height="15" fill="rgb(232,46,7)" fg:x="9803" fg:w="13"/><text x="40.7198%" y="831.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (13 samples, 0.05%)</title><rect x="40.4698%" y="805" width="0.0537%" height="15" fill="rgb(229,129,53)" fg:x="9803" fg:w="13"/><text x="40.7198%" y="815.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (13 samples, 0.05%)</title><rect x="40.4698%" y="789" width="0.0537%" height="15" fill="rgb(234,188,29)" fg:x="9803" fg:w="13"/><text x="40.7198%" y="799.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (13 samples, 0.05%)</title><rect x="40.4698%" y="773" width="0.0537%" height="15" fill="rgb(246,141,4)" fg:x="9803" fg:w="13"/><text x="40.7198%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (13 samples, 0.05%)</title><rect x="40.4698%" y="757" width="0.0537%" height="15" fill="rgb(229,23,39)" fg:x="9803" fg:w="13"/><text x="40.7198%" y="767.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (13 samples, 0.05%)</title><rect x="40.4698%" y="741" width="0.0537%" height="15" fill="rgb(206,12,3)" fg:x="9803" fg:w="13"/><text x="40.7198%" y="751.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (9 samples, 0.04%)</title><rect x="40.4863%" y="725" width="0.0372%" height="15" fill="rgb(252,226,20)" fg:x="9807" fg:w="9"/><text x="40.7363%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (4 samples, 0.02%)</title><rect x="40.5070%" y="709" width="0.0165%" height="15" fill="rgb(216,123,35)" fg:x="9812" fg:w="4"/><text x="40.7570%" y="719.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (15 samples, 0.06%)</title><rect x="40.4657%" y="837" width="0.0619%" height="15" fill="rgb(212,68,40)" fg:x="9802" fg:w="15"/><text x="40.7157%" y="847.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (358 samples, 1.48%)</title><rect x="39.0579%" y="853" width="1.4779%" height="15" fill="rgb(254,125,32)" fg:x="9461" fg:w="358"/><text x="39.3079%" y="863.50"></text></g><g><title>[libwebp.so.7.1.6] (1,103 samples, 4.55%)</title><rect x="40.5359%" y="853" width="4.5535%" height="15" fill="rgb(253,97,22)" fg:x="9819" fg:w="1103"/><text x="40.7859%" y="863.50">[libw..</text></g><g><title>[libwebp.so.7.1.6] (1,102 samples, 4.55%)</title><rect x="40.5400%" y="837" width="4.5494%" height="15" fill="rgb(241,101,14)" fg:x="9820" fg:w="1102"/><text x="40.7900%" y="847.50">[libw..</text></g><g><title>[libwebp.so.7.1.6] (1,035 samples, 4.27%)</title><rect x="40.8166%" y="821" width="4.2728%" height="15" fill="rgb(238,103,29)" fg:x="9887" fg:w="1035"/><text x="41.0666%" y="831.50">[libw..</text></g><g><title>[libwebp.so.7.1.6] (304 samples, 1.26%)</title><rect x="43.8344%" y="805" width="1.2550%" height="15" fill="rgb(233,195,47)" fg:x="10618" fg:w="304"/><text x="44.0844%" y="815.50"></text></g><g><title>[libwebp.so.7.1.6] (57 samples, 0.24%)</title><rect x="44.8541%" y="789" width="0.2353%" height="15" fill="rgb(246,218,30)" fg:x="10865" fg:w="57"/><text x="45.1041%" y="799.50"></text></g><g><title>[libwebp.so.7.1.6] (35 samples, 0.14%)</title><rect x="44.9449%" y="773" width="0.1445%" height="15" fill="rgb(219,145,47)" fg:x="10887" fg:w="35"/><text x="45.1949%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (1,909 samples, 7.88%)</title><rect x="37.6873%" y="869" width="7.8809%" height="15" fill="rgb(243,12,26)" fg:x="9129" fg:w="1909"/><text x="37.9373%" y="879.50">[libwebkit2..</text></g><g><title>cairo_paint (116 samples, 0.48%)</title><rect x="45.0894%" y="853" width="0.4789%" height="15" fill="rgb(214,87,16)" fg:x="10922" fg:w="116"/><text x="45.3394%" y="863.50"></text></g><g><title>[libcairo.so.2.11708.0] (116 samples, 0.48%)</title><rect x="45.0894%" y="837" width="0.4789%" height="15" fill="rgb(208,99,42)" fg:x="10922" fg:w="116"/><text x="45.3394%" y="847.50"></text></g><g><title>[libcairo.so.2.11708.0] (116 samples, 0.48%)</title><rect x="45.0894%" y="821" width="0.4789%" height="15" fill="rgb(253,99,2)" fg:x="10922" fg:w="116"/><text x="45.3394%" y="831.50"></text></g><g><title>[libcairo.so.2.11708.0] (116 samples, 0.48%)</title><rect x="45.0894%" y="805" width="0.4789%" height="15" fill="rgb(220,168,23)" fg:x="10922" fg:w="116"/><text x="45.3394%" y="815.50"></text></g><g><title>[libcairo.so.2.11708.0] (116 samples, 0.48%)</title><rect x="45.0894%" y="789" width="0.4789%" height="15" fill="rgb(242,38,24)" fg:x="10922" fg:w="116"/><text x="45.3394%" y="799.50"></text></g><g><title>[libcairo.so.2.11708.0] (116 samples, 0.48%)</title><rect x="45.0894%" y="773" width="0.4789%" height="15" fill="rgb(225,182,9)" fg:x="10922" fg:w="116"/><text x="45.3394%" y="783.50"></text></g><g><title>[libcairo.so.2.11708.0] (116 samples, 0.48%)</title><rect x="45.0894%" y="757" width="0.4789%" height="15" fill="rgb(243,178,37)" fg:x="10922" fg:w="116"/><text x="45.3394%" y="767.50"></text></g><g><title>pixman_blt (116 samples, 0.48%)</title><rect x="45.0894%" y="741" width="0.4789%" height="15" fill="rgb(232,139,19)" fg:x="10922" fg:w="116"/><text x="45.3394%" y="751.50"></text></g><g><title>[libpixman-1.so.0.42.2] (116 samples, 0.48%)</title><rect x="45.0894%" y="725" width="0.4789%" height="15" fill="rgb(225,201,24)" fg:x="10922" fg:w="116"/><text x="45.3394%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (2,682 samples, 11.07%)</title><rect x="35.0824%" y="933" width="11.0721%" height="15" fill="rgb(221,47,46)" fg:x="8498" fg:w="2682"/><text x="35.3324%" y="943.50">[libwebkit2gtk-4..</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (2,669 samples, 11.02%)</title><rect x="35.1360%" y="917" width="11.0185%" height="15" fill="rgb(249,23,13)" fg:x="8511" fg:w="2669"/><text x="35.3860%" y="927.50">[libwebkit2gtk-4..</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (2,664 samples, 11.00%)</title><rect x="35.1567%" y="901" width="10.9978%" height="15" fill="rgb(219,9,5)" fg:x="8516" fg:w="2664"/><text x="35.4067%" y="911.50">[libwebkit2gtk-4..</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (2,133 samples, 8.81%)</title><rect x="37.3488%" y="885" width="8.8057%" height="15" fill="rgb(254,171,16)" fg:x="9047" fg:w="2133"/><text x="37.5988%" y="895.50">[libwebkit2g..</text></g><g><title>cairo_paint_with_alpha (142 samples, 0.59%)</title><rect x="45.5683%" y="869" width="0.5862%" height="15" fill="rgb(230,171,20)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="879.50"></text></g><g><title>[libcairo.so.2.11708.0] (142 samples, 0.59%)</title><rect x="45.5683%" y="853" width="0.5862%" height="15" fill="rgb(210,71,41)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="863.50"></text></g><g><title>[libcairo.so.2.11708.0] (142 samples, 0.59%)</title><rect x="45.5683%" y="837" width="0.5862%" height="15" fill="rgb(206,173,20)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="847.50"></text></g><g><title>[libcairo.so.2.11708.0] (142 samples, 0.59%)</title><rect x="45.5683%" y="821" width="0.5862%" height="15" fill="rgb(233,88,34)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="831.50"></text></g><g><title>[libcairo.so.2.11708.0] (142 samples, 0.59%)</title><rect x="45.5683%" y="805" width="0.5862%" height="15" fill="rgb(223,209,46)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="815.50"></text></g><g><title>[libcairo.so.2.11708.0] (142 samples, 0.59%)</title><rect x="45.5683%" y="789" width="0.5862%" height="15" fill="rgb(250,43,18)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="799.50"></text></g><g><title>[libcairo.so.2.11708.0] (142 samples, 0.59%)</title><rect x="45.5683%" y="773" width="0.5862%" height="15" fill="rgb(208,13,10)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="783.50"></text></g><g><title>[libcairo.so.2.11708.0] (142 samples, 0.59%)</title><rect x="45.5683%" y="757" width="0.5862%" height="15" fill="rgb(212,200,36)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="767.50"></text></g><g><title>[libcairo.so.2.11708.0] (142 samples, 0.59%)</title><rect x="45.5683%" y="741" width="0.5862%" height="15" fill="rgb(225,90,30)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="751.50"></text></g><g><title>[libcairo.so.2.11708.0] (142 samples, 0.59%)</title><rect x="45.5683%" y="725" width="0.5862%" height="15" fill="rgb(236,182,39)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="735.50"></text></g><g><title>pixman_image_composite32 (142 samples, 0.59%)</title><rect x="45.5683%" y="709" width="0.5862%" height="15" fill="rgb(212,144,35)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="719.50"></text></g><g><title>[libpixman-1.so.0.42.2] (142 samples, 0.59%)</title><rect x="45.5683%" y="693" width="0.5862%" height="15" fill="rgb(228,63,44)" fg:x="11038" fg:w="142"/><text x="45.8183%" y="703.50"></text></g><g><title>[perf-52069.map] (2,908 samples, 12.01%)</title><rect x="34.1535%" y="1013" width="12.0051%" height="15" fill="rgb(228,109,6)" fg:x="8273" fg:w="2908"/><text x="34.4035%" y="1023.50">[perf-52069.map]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (2,754 samples, 11.37%)</title><rect x="34.7892%" y="997" width="11.3694%" height="15" fill="rgb(238,117,24)" fg:x="8427" fg:w="2754"/><text x="35.0392%" y="1007.50">[libwebkit2gtk-4...</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (2,753 samples, 11.37%)</title><rect x="34.7934%" y="981" width="11.3652%" height="15" fill="rgb(242,26,26)" fg:x="8428" fg:w="2753"/><text x="35.0434%" y="991.50">[libwebkit2gtk-4...</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (2,743 samples, 11.32%)</title><rect x="34.8347%" y="965" width="11.3239%" height="15" fill="rgb(221,92,48)" fg:x="8438" fg:w="2743"/><text x="35.0847%" y="975.50">[libwebkit2gtk-4...</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (2,695 samples, 11.13%)</title><rect x="35.0328%" y="949" width="11.1258%" height="15" fill="rgb(209,209,32)" fg:x="8486" fg:w="2695"/><text x="35.2828%" y="959.50">[libwebkit2gtk-4..</text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="46.1710%" y="997" width="0.0206%" height="15" fill="rgb(221,70,22)" fg:x="11184" fg:w="5"/><text x="46.4210%" y="1007.50"></text></g><g><title>[libfontconfig.so.1.13.0] (5 samples, 0.02%)</title><rect x="46.2040%" y="981" width="0.0206%" height="15" fill="rgb(248,145,5)" fg:x="11192" fg:w="5"/><text x="46.4540%" y="991.50"></text></g><g><title>XML_ParseBuffer (3 samples, 0.01%)</title><rect x="46.2123%" y="965" width="0.0124%" height="15" fill="rgb(226,116,26)" fg:x="11194" fg:w="3"/><text x="46.4623%" y="975.50"></text></g><g><title>[libexpat.so.1.8.10] (3 samples, 0.01%)</title><rect x="46.2123%" y="949" width="0.0124%" height="15" fill="rgb(244,5,17)" fg:x="11194" fg:w="3"/><text x="46.4623%" y="959.50"></text></g><g><title>[libfontconfig.so.1.13.0] (8 samples, 0.03%)</title><rect x="46.1958%" y="997" width="0.0330%" height="15" fill="rgb(252,159,33)" fg:x="11190" fg:w="8"/><text x="46.4458%" y="1007.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (4 samples, 0.02%)</title><rect x="46.2288%" y="997" width="0.0165%" height="15" fill="rgb(206,71,0)" fg:x="11198" fg:w="4"/><text x="46.4788%" y="1007.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="46.2494%" y="53" width="0.0289%" height="15" fill="rgb(233,118,54)" fg:x="11203" fg:w="7"/><text x="46.4994%" y="63.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="997" width="0.0330%" height="15" fill="rgb(234,83,48)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="1007.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="981" width="0.0330%" height="15" fill="rgb(228,3,54)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="991.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="965" width="0.0330%" height="15" fill="rgb(226,155,13)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="975.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="949" width="0.0330%" height="15" fill="rgb(241,28,37)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="959.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="933" width="0.0330%" height="15" fill="rgb(233,93,10)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="943.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="917" width="0.0330%" height="15" fill="rgb(225,113,19)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="927.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="901" width="0.0330%" height="15" fill="rgb(241,2,18)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="911.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="885" width="0.0330%" height="15" fill="rgb(228,207,21)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="895.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="869" width="0.0330%" height="15" fill="rgb(213,211,35)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="879.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="853" width="0.0330%" height="15" fill="rgb(209,83,10)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="863.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="837" width="0.0330%" height="15" fill="rgb(209,164,1)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="847.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="821" width="0.0330%" height="15" fill="rgb(213,184,43)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="831.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="805" width="0.0330%" height="15" fill="rgb(231,61,34)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="815.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="789" width="0.0330%" height="15" fill="rgb(235,75,3)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="799.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="773" width="0.0330%" height="15" fill="rgb(220,106,47)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="783.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="757" width="0.0330%" height="15" fill="rgb(210,196,33)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="767.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="741" width="0.0330%" height="15" fill="rgb(229,154,42)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="751.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="725" width="0.0330%" height="15" fill="rgb(228,114,26)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="735.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="709" width="0.0330%" height="15" fill="rgb(208,144,1)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="719.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="693" width="0.0330%" height="15" fill="rgb(239,112,37)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="677" width="0.0330%" height="15" fill="rgb(210,96,50)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="661" width="0.0330%" height="15" fill="rgb(222,178,2)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="645" width="0.0330%" height="15" fill="rgb(226,74,18)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="629" width="0.0330%" height="15" fill="rgb(225,67,54)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="613" width="0.0330%" height="15" fill="rgb(251,92,32)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="597" width="0.0330%" height="15" fill="rgb(228,149,22)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="581" width="0.0330%" height="15" fill="rgb(243,54,13)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="565" width="0.0330%" height="15" fill="rgb(243,180,28)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="549" width="0.0330%" height="15" fill="rgb(208,167,24)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="533" width="0.0330%" height="15" fill="rgb(245,73,45)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="517" width="0.0330%" height="15" fill="rgb(237,203,48)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="501" width="0.0330%" height="15" fill="rgb(211,197,16)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="485" width="0.0330%" height="15" fill="rgb(243,99,51)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="469" width="0.0330%" height="15" fill="rgb(215,123,29)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="453" width="0.0330%" height="15" fill="rgb(239,186,37)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="437" width="0.0330%" height="15" fill="rgb(252,136,39)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="421" width="0.0330%" height="15" fill="rgb(223,213,32)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="405" width="0.0330%" height="15" fill="rgb(233,115,5)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="389" width="0.0330%" height="15" fill="rgb(207,226,44)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="373" width="0.0330%" height="15" fill="rgb(208,126,0)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="357" width="0.0330%" height="15" fill="rgb(244,66,21)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="341" width="0.0330%" height="15" fill="rgb(222,97,12)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="325" width="0.0330%" height="15" fill="rgb(219,213,19)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="309" width="0.0330%" height="15" fill="rgb(252,169,30)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="293" width="0.0330%" height="15" fill="rgb(206,32,51)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="277" width="0.0330%" height="15" fill="rgb(250,172,42)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="287.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="261" width="0.0330%" height="15" fill="rgb(209,34,43)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="245" width="0.0330%" height="15" fill="rgb(223,11,35)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="255.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="229" width="0.0330%" height="15" fill="rgb(251,219,26)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="239.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="213" width="0.0330%" height="15" fill="rgb(231,119,3)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="223.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="197" width="0.0330%" height="15" fill="rgb(216,97,11)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="207.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="181" width="0.0330%" height="15" fill="rgb(223,59,9)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="191.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="165" width="0.0330%" height="15" fill="rgb(233,93,31)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="175.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="149" width="0.0330%" height="15" fill="rgb(239,81,33)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="159.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="133" width="0.0330%" height="15" fill="rgb(213,120,34)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="143.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="117" width="0.0330%" height="15" fill="rgb(243,49,53)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="127.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="101" width="0.0330%" height="15" fill="rgb(247,216,33)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="111.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="85" width="0.0330%" height="15" fill="rgb(226,26,14)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="95.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="46.2494%" y="69" width="0.0330%" height="15" fill="rgb(215,49,53)" fg:x="11203" fg:w="8"/><text x="46.4994%" y="79.50"></text></g><g><title>WTF::AtomStringImpl::add (17 samples, 0.07%)</title><rect x="46.4641%" y="709" width="0.0702%" height="15" fill="rgb(245,162,40)" fg:x="11255" fg:w="17"/><text x="46.7141%" y="719.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (75 samples, 0.31%)</title><rect x="46.3114%" y="933" width="0.3096%" height="15" fill="rgb(229,68,17)" fg:x="11218" fg:w="75"/><text x="46.5614%" y="943.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (75 samples, 0.31%)</title><rect x="46.3114%" y="917" width="0.3096%" height="15" fill="rgb(213,182,10)" fg:x="11218" fg:w="75"/><text x="46.5614%" y="927.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (74 samples, 0.31%)</title><rect x="46.3155%" y="901" width="0.3055%" height="15" fill="rgb(245,125,30)" fg:x="11219" fg:w="74"/><text x="46.5655%" y="911.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (73 samples, 0.30%)</title><rect x="46.3196%" y="885" width="0.3014%" height="15" fill="rgb(232,202,2)" fg:x="11220" fg:w="73"/><text x="46.5696%" y="895.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (73 samples, 0.30%)</title><rect x="46.3196%" y="869" width="0.3014%" height="15" fill="rgb(237,140,51)" fg:x="11220" fg:w="73"/><text x="46.5696%" y="879.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (72 samples, 0.30%)</title><rect x="46.3237%" y="853" width="0.2972%" height="15" fill="rgb(236,157,25)" fg:x="11221" fg:w="72"/><text x="46.5737%" y="863.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (72 samples, 0.30%)</title><rect x="46.3237%" y="837" width="0.2972%" height="15" fill="rgb(219,209,0)" fg:x="11221" fg:w="72"/><text x="46.5737%" y="847.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (71 samples, 0.29%)</title><rect x="46.3279%" y="821" width="0.2931%" height="15" fill="rgb(240,116,54)" fg:x="11222" fg:w="71"/><text x="46.5779%" y="831.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (69 samples, 0.28%)</title><rect x="46.3361%" y="805" width="0.2849%" height="15" fill="rgb(216,10,36)" fg:x="11224" fg:w="69"/><text x="46.5861%" y="815.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (69 samples, 0.28%)</title><rect x="46.3361%" y="789" width="0.2849%" height="15" fill="rgb(222,72,44)" fg:x="11224" fg:w="69"/><text x="46.5861%" y="799.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (66 samples, 0.27%)</title><rect x="46.3485%" y="773" width="0.2725%" height="15" fill="rgb(232,159,9)" fg:x="11227" fg:w="66"/><text x="46.5985%" y="783.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (64 samples, 0.26%)</title><rect x="46.3568%" y="757" width="0.2642%" height="15" fill="rgb(210,39,32)" fg:x="11229" fg:w="64"/><text x="46.6068%" y="767.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (62 samples, 0.26%)</title><rect x="46.3650%" y="741" width="0.2560%" height="15" fill="rgb(216,194,45)" fg:x="11231" fg:w="62"/><text x="46.6150%" y="751.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (39 samples, 0.16%)</title><rect x="46.4600%" y="725" width="0.1610%" height="15" fill="rgb(218,18,35)" fg:x="11254" fg:w="39"/><text x="46.7100%" y="735.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (21 samples, 0.09%)</title><rect x="46.5343%" y="709" width="0.0867%" height="15" fill="rgb(207,83,51)" fg:x="11272" fg:w="21"/><text x="46.7843%" y="719.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (21 samples, 0.09%)</title><rect x="46.5343%" y="693" width="0.0867%" height="15" fill="rgb(225,63,43)" fg:x="11272" fg:w="21"/><text x="46.7843%" y="703.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (21 samples, 0.09%)</title><rect x="46.5343%" y="677" width="0.0867%" height="15" fill="rgb(207,57,36)" fg:x="11272" fg:w="21"/><text x="46.7843%" y="687.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (20 samples, 0.08%)</title><rect x="46.5384%" y="661" width="0.0826%" height="15" fill="rgb(216,99,33)" fg:x="11273" fg:w="20"/><text x="46.7884%" y="671.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (20 samples, 0.08%)</title><rect x="46.5384%" y="645" width="0.0826%" height="15" fill="rgb(225,42,16)" fg:x="11273" fg:w="20"/><text x="46.7884%" y="655.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (18 samples, 0.07%)</title><rect x="46.5467%" y="629" width="0.0743%" height="15" fill="rgb(220,201,45)" fg:x="11275" fg:w="18"/><text x="46.7967%" y="639.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (14 samples, 0.06%)</title><rect x="46.5632%" y="613" width="0.0578%" height="15" fill="rgb(225,33,4)" fg:x="11279" fg:w="14"/><text x="46.8132%" y="623.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (14 samples, 0.06%)</title><rect x="46.5632%" y="597" width="0.0578%" height="15" fill="rgb(224,33,50)" fg:x="11279" fg:w="14"/><text x="46.8132%" y="607.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (14 samples, 0.06%)</title><rect x="46.5632%" y="581" width="0.0578%" height="15" fill="rgb(246,198,51)" fg:x="11279" fg:w="14"/><text x="46.8132%" y="591.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (14 samples, 0.06%)</title><rect x="46.5632%" y="565" width="0.0578%" height="15" fill="rgb(205,22,4)" fg:x="11279" fg:w="14"/><text x="46.8132%" y="575.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (13 samples, 0.05%)</title><rect x="46.5673%" y="549" width="0.0537%" height="15" fill="rgb(206,3,8)" fg:x="11280" fg:w="13"/><text x="46.8173%" y="559.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (11 samples, 0.05%)</title><rect x="46.5756%" y="533" width="0.0454%" height="15" fill="rgb(251,23,15)" fg:x="11282" fg:w="11"/><text x="46.8256%" y="543.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (10 samples, 0.04%)</title><rect x="46.5797%" y="517" width="0.0413%" height="15" fill="rgb(252,88,28)" fg:x="11283" fg:w="10"/><text x="46.8297%" y="527.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (9 samples, 0.04%)</title><rect x="46.5838%" y="501" width="0.0372%" height="15" fill="rgb(212,127,14)" fg:x="11284" fg:w="9"/><text x="46.8338%" y="511.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (8 samples, 0.03%)</title><rect x="46.5880%" y="485" width="0.0330%" height="15" fill="rgb(247,145,37)" fg:x="11285" fg:w="8"/><text x="46.8380%" y="495.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (8 samples, 0.03%)</title><rect x="46.5880%" y="469" width="0.0330%" height="15" fill="rgb(209,117,53)" fg:x="11285" fg:w="8"/><text x="46.8380%" y="479.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (8 samples, 0.03%)</title><rect x="46.5880%" y="453" width="0.0330%" height="15" fill="rgb(212,90,42)" fg:x="11285" fg:w="8"/><text x="46.8380%" y="463.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (7 samples, 0.03%)</title><rect x="46.5921%" y="437" width="0.0289%" height="15" fill="rgb(218,164,37)" fg:x="11286" fg:w="7"/><text x="46.8421%" y="447.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="46.5962%" y="421" width="0.0248%" height="15" fill="rgb(246,65,34)" fg:x="11287" fg:w="6"/><text x="46.8462%" y="431.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (6 samples, 0.02%)</title><rect x="46.5962%" y="405" width="0.0248%" height="15" fill="rgb(231,100,33)" fg:x="11287" fg:w="6"/><text x="46.8462%" y="415.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="46.6045%" y="389" width="0.0165%" height="15" fill="rgb(228,126,14)" fg:x="11289" fg:w="4"/><text x="46.8545%" y="399.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="46.6045%" y="373" width="0.0165%" height="15" fill="rgb(215,173,21)" fg:x="11289" fg:w="4"/><text x="46.8545%" y="383.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="46.6045%" y="357" width="0.0165%" height="15" fill="rgb(210,6,40)" fg:x="11289" fg:w="4"/><text x="46.8545%" y="367.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="46.6086%" y="341" width="0.0124%" height="15" fill="rgb(212,48,18)" fg:x="11290" fg:w="3"/><text x="46.8586%" y="351.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (3 samples, 0.01%)</title><rect x="46.6086%" y="325" width="0.0124%" height="15" fill="rgb(230,214,11)" fg:x="11290" fg:w="3"/><text x="46.8586%" y="335.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (76 samples, 0.31%)</title><rect x="46.3114%" y="949" width="0.3138%" height="15" fill="rgb(254,105,39)" fg:x="11218" fg:w="76"/><text x="46.5614%" y="959.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (84 samples, 0.35%)</title><rect x="46.2825%" y="997" width="0.3468%" height="15" fill="rgb(245,158,5)" fg:x="11211" fg:w="84"/><text x="46.5325%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (80 samples, 0.33%)</title><rect x="46.2990%" y="981" width="0.3303%" height="15" fill="rgb(249,208,11)" fg:x="11215" fg:w="80"/><text x="46.5490%" y="991.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (79 samples, 0.33%)</title><rect x="46.3031%" y="965" width="0.3261%" height="15" fill="rgb(210,39,28)" fg:x="11216" fg:w="79"/><text x="46.5531%" y="975.50"></text></g><g><title>[libpixman-1.so.0.42.2] (148 samples, 0.61%)</title><rect x="46.6292%" y="997" width="0.6110%" height="15" fill="rgb(211,56,53)" fg:x="11295" fg:w="148"/><text x="46.8792%" y="1007.50"></text></g><g><title>[libpixman-1.so.0.42.2] (140 samples, 0.58%)</title><rect x="46.6623%" y="981" width="0.5780%" height="15" fill="rgb(226,201,30)" fg:x="11303" fg:w="140"/><text x="46.9123%" y="991.50"></text></g><g><title>[libpixman-1.so.0.42.2] (86 samples, 0.36%)</title><rect x="46.8852%" y="965" width="0.3550%" height="15" fill="rgb(239,101,34)" fg:x="11357" fg:w="86"/><text x="47.1352%" y="975.50"></text></g><g><title>[libpixman-1.so.0.42.2] (54 samples, 0.22%)</title><rect x="47.0173%" y="949" width="0.2229%" height="15" fill="rgb(226,209,5)" fg:x="11389" fg:w="54"/><text x="47.2673%" y="959.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5 samples, 0.02%)</title><rect x="47.3930%" y="469" width="0.0206%" height="15" fill="rgb(250,105,47)" fg:x="11480" fg:w="5"/><text x="47.6430%" y="479.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5 samples, 0.02%)</title><rect x="47.3930%" y="453" width="0.0206%" height="15" fill="rgb(230,72,3)" fg:x="11480" fg:w="5"/><text x="47.6430%" y="463.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="47.4012%" y="437" width="0.0124%" height="15" fill="rgb(232,218,39)" fg:x="11482" fg:w="3"/><text x="47.6512%" y="447.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="47.4012%" y="421" width="0.0124%" height="15" fill="rgb(248,166,6)" fg:x="11482" fg:w="3"/><text x="47.6512%" y="431.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="47.4012%" y="405" width="0.0124%" height="15" fill="rgb(247,89,20)" fg:x="11482" fg:w="3"/><text x="47.6512%" y="415.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="47.4012%" y="389" width="0.0124%" height="15" fill="rgb(248,130,54)" fg:x="11482" fg:w="3"/><text x="47.6512%" y="399.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="47.4012%" y="373" width="0.0124%" height="15" fill="rgb(234,196,4)" fg:x="11482" fg:w="3"/><text x="47.6512%" y="383.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="47.4012%" y="357" width="0.0124%" height="15" fill="rgb(250,143,31)" fg:x="11482" fg:w="3"/><text x="47.6512%" y="367.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="47.4012%" y="341" width="0.0124%" height="15" fill="rgb(211,110,34)" fg:x="11482" fg:w="3"/><text x="47.6512%" y="351.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="47.3930%" y="517" width="0.0248%" height="15" fill="rgb(215,124,48)" fg:x="11480" fg:w="6"/><text x="47.6430%" y="527.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="47.3930%" y="501" width="0.0248%" height="15" fill="rgb(216,46,13)" fg:x="11480" fg:w="6"/><text x="47.6430%" y="511.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (6 samples, 0.02%)</title><rect x="47.3930%" y="485" width="0.0248%" height="15" fill="rgb(205,184,25)" fg:x="11480" fg:w="6"/><text x="47.6430%" y="495.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="47.3888%" y="917" width="0.0330%" height="15" fill="rgb(228,1,10)" fg:x="11479" fg:w="8"/><text x="47.6388%" y="927.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="47.3888%" y="901" width="0.0330%" height="15" fill="rgb(213,116,27)" fg:x="11479" fg:w="8"/><text x="47.6388%" y="911.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="47.3888%" y="885" width="0.0330%" height="15" fill="rgb(241,95,50)" fg:x="11479" fg:w="8"/><text x="47.6388%" y="895.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="47.3888%" y="869" width="0.0330%" height="15" fill="rgb(238,48,32)" fg:x="11479" fg:w="8"/><text x="47.6388%" y="879.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="47.3888%" y="853" width="0.0330%" height="15" fill="rgb(235,113,49)" fg:x="11479" fg:w="8"/><text x="47.6388%" y="863.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="47.3888%" y="837" width="0.0330%" height="15" fill="rgb(205,127,43)" fg:x="11479" fg:w="8"/><text x="47.6388%" y="847.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="47.3888%" y="821" width="0.0330%" height="15" fill="rgb(250,162,2)" fg:x="11479" fg:w="8"/><text x="47.6388%" y="831.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="47.3888%" y="805" width="0.0330%" height="15" fill="rgb(220,13,41)" fg:x="11479" fg:w="8"/><text x="47.6388%" y="815.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="789" width="0.0289%" height="15" fill="rgb(249,221,25)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="799.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="773" width="0.0289%" height="15" fill="rgb(215,208,19)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="757" width="0.0289%" height="15" fill="rgb(236,175,2)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="767.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="741" width="0.0289%" height="15" fill="rgb(241,52,2)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="751.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="725" width="0.0289%" height="15" fill="rgb(248,140,14)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="709" width="0.0289%" height="15" fill="rgb(253,22,42)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="719.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="693" width="0.0289%" height="15" fill="rgb(234,61,47)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="703.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="677" width="0.0289%" height="15" fill="rgb(208,226,15)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="687.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="661" width="0.0289%" height="15" fill="rgb(217,221,4)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="671.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="645" width="0.0289%" height="15" fill="rgb(212,174,34)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="655.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="629" width="0.0289%" height="15" fill="rgb(253,83,4)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="639.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="613" width="0.0289%" height="15" fill="rgb(250,195,49)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="623.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="597" width="0.0289%" height="15" fill="rgb(241,192,25)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="607.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="581" width="0.0289%" height="15" fill="rgb(208,124,10)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="591.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="565" width="0.0289%" height="15" fill="rgb(222,33,0)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="575.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="549" width="0.0289%" height="15" fill="rgb(234,209,28)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="559.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="47.3930%" y="533" width="0.0289%" height="15" fill="rgb(224,11,23)" fg:x="11480" fg:w="7"/><text x="47.6430%" y="543.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (10 samples, 0.04%)</title><rect x="47.3847%" y="933" width="0.0413%" height="15" fill="rgb(232,99,1)" fg:x="11478" fg:w="10"/><text x="47.6347%" y="943.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (11 samples, 0.05%)</title><rect x="47.3847%" y="949" width="0.0454%" height="15" fill="rgb(237,95,45)" fg:x="11478" fg:w="11"/><text x="47.6347%" y="959.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (47 samples, 0.19%)</title><rect x="47.2402%" y="997" width="0.1940%" height="15" fill="rgb(208,109,11)" fg:x="11443" fg:w="47"/><text x="47.4902%" y="1007.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="47.3847%" y="981" width="0.0495%" height="15" fill="rgb(216,190,48)" fg:x="11478" fg:w="12"/><text x="47.6347%" y="991.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="47.3847%" y="965" width="0.0495%" height="15" fill="rgb(251,171,36)" fg:x="11478" fg:w="12"/><text x="47.6347%" y="975.50"></text></g><g><title>[libwebp.so.7.1.6] (16 samples, 0.07%)</title><rect x="47.4343%" y="997" width="0.0661%" height="15" fill="rgb(230,62,22)" fg:x="11490" fg:w="16"/><text x="47.6843%" y="1007.50"></text></g><g><title>_IO_fread (3 samples, 0.01%)</title><rect x="47.5044%" y="997" width="0.0124%" height="15" fill="rgb(225,114,35)" fg:x="11507" fg:w="3"/><text x="47.7544%" y="1007.50"></text></g><g><title>__vdso_clock_gettime (4 samples, 0.02%)</title><rect x="47.5168%" y="997" width="0.0165%" height="15" fill="rgb(215,118,42)" fg:x="11510" fg:w="4"/><text x="47.7668%" y="1007.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (4 samples, 0.02%)</title><rect x="47.5168%" y="981" width="0.0165%" height="15" fill="rgb(243,119,21)" fg:x="11510" fg:w="4"/><text x="47.7668%" y="991.50"></text></g><g><title>[unknown] (348 samples, 1.44%)</title><rect x="46.1586%" y="1013" width="1.4367%" height="15" fill="rgb(252,177,53)" fg:x="11181" fg:w="348"/><text x="46.4086%" y="1023.50"></text></g><g><title>WebKitWebProces (10,380 samples, 42.85%)</title><rect x="4.7558%" y="1029" width="42.8518%" height="15" fill="rgb(237,209,29)" fg:x="1152" fg:w="10380"/><text x="5.0058%" y="1039.50">WebKitWebProces</text></g><g><title>FcConfigGetFilename (3 samples, 0.01%)</title><rect x="47.6242%" y="981" width="0.0124%" height="15" fill="rgb(212,65,23)" fg:x="11536" fg:w="3"/><text x="47.8742%" y="991.50"></text></g><g><title>[libfontconfig.so.1.13.0] (3 samples, 0.01%)</title><rect x="47.6242%" y="965" width="0.0124%" height="15" fill="rgb(230,222,46)" fg:x="11536" fg:w="3"/><text x="47.8742%" y="975.50"></text></g><g><title>access (3 samples, 0.01%)</title><rect x="47.6242%" y="949" width="0.0124%" height="15" fill="rgb(215,135,32)" fg:x="11536" fg:w="3"/><text x="47.8742%" y="959.50"></text></g><g><title>[libexpat.so.1.8.10] (5 samples, 0.02%)</title><rect x="47.6572%" y="917" width="0.0206%" height="15" fill="rgb(246,101,22)" fg:x="11544" fg:w="5"/><text x="47.9072%" y="927.50"></text></g><g><title>[libfontconfig.so.1.13.0] (3 samples, 0.01%)</title><rect x="47.6654%" y="901" width="0.0124%" height="15" fill="rgb(206,107,13)" fg:x="11546" fg:w="3"/><text x="47.9154%" y="911.50"></text></g><g><title>[libfontconfig.so.1.13.0] (11 samples, 0.05%)</title><rect x="47.6365%" y="981" width="0.0454%" height="15" fill="rgb(250,100,44)" fg:x="11539" fg:w="11"/><text x="47.8865%" y="991.50"></text></g><g><title>XML_ParseBuffer (7 samples, 0.03%)</title><rect x="47.6531%" y="965" width="0.0289%" height="15" fill="rgb(231,147,38)" fg:x="11543" fg:w="7"/><text x="47.9031%" y="975.50"></text></g><g><title>[libexpat.so.1.8.10] (7 samples, 0.03%)</title><rect x="47.6531%" y="949" width="0.0289%" height="15" fill="rgb(229,8,40)" fg:x="11543" fg:w="7"/><text x="47.9031%" y="959.50"></text></g><g><title>[libexpat.so.1.8.10] (6 samples, 0.02%)</title><rect x="47.6572%" y="933" width="0.0248%" height="15" fill="rgb(221,135,30)" fg:x="11544" fg:w="6"/><text x="47.9072%" y="943.50"></text></g><g><title>[pango]_FcInit (19 samples, 0.08%)</title><rect x="47.6076%" y="1029" width="0.0784%" height="15" fill="rgb(249,193,18)" fg:x="11532" fg:w="19"/><text x="47.8576%" y="1039.50"></text></g><g><title>[unknown] (17 samples, 0.07%)</title><rect x="47.6159%" y="1013" width="0.0702%" height="15" fill="rgb(209,133,39)" fg:x="11534" fg:w="17"/><text x="47.8659%" y="1023.50"></text></g><g><title>[libfontconfig.so.1.13.0] (17 samples, 0.07%)</title><rect x="47.6159%" y="997" width="0.0702%" height="15" fill="rgb(232,100,14)" fg:x="11534" fg:w="17"/><text x="47.8659%" y="1007.50"></text></g><g><title>WTF::SHA1::addBytes (48 samples, 0.20%)</title><rect x="47.6861%" y="1013" width="0.1982%" height="15" fill="rgb(224,185,1)" fg:x="11551" fg:w="48"/><text x="47.9361%" y="1023.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="47.8842%" y="1013" width="0.0206%" height="15" fill="rgb(223,139,8)" fg:x="11599" fg:w="5"/><text x="48.1342%" y="1023.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (147 samples, 0.61%)</title><rect x="47.9049%" y="1013" width="0.6069%" height="15" fill="rgb(232,213,38)" fg:x="11604" fg:w="147"/><text x="48.1549%" y="1023.50"></text></g><g><title>[unknown] (8 samples, 0.03%)</title><rect x="48.5117%" y="1013" width="0.0330%" height="15" fill="rgb(207,94,22)" fg:x="11751" fg:w="8"/><text x="48.7617%" y="1023.50"></text></g><g><title>fstatat64 (6 samples, 0.02%)</title><rect x="48.5200%" y="997" width="0.0248%" height="15" fill="rgb(219,183,54)" fg:x="11753" fg:w="6"/><text x="48.7700%" y="1007.50"></text></g><g><title>background (209 samples, 0.86%)</title><rect x="47.6861%" y="1029" width="0.8628%" height="15" fill="rgb(216,185,54)" fg:x="11551" fg:w="209"/><text x="47.9361%" y="1039.50"></text></g><g><title>g_dbus_connection_call_sync (6 samples, 0.02%)</title><rect x="48.5489%" y="837" width="0.0248%" height="15" fill="rgb(254,217,39)" fg:x="11760" fg:w="6"/><text x="48.7989%" y="847.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="48.5489%" y="821" width="0.0248%" height="15" fill="rgb(240,178,23)" fg:x="11760" fg:w="6"/><text x="48.7989%" y="831.50"></text></g><g><title>g_dbus_connection_send_message_with_reply_sync (6 samples, 0.02%)</title><rect x="48.5489%" y="805" width="0.0248%" height="15" fill="rgb(218,11,47)" fg:x="11760" fg:w="6"/><text x="48.7989%" y="815.50"></text></g><g><title>g_main_loop_run (6 samples, 0.02%)</title><rect x="48.5489%" y="789" width="0.0248%" height="15" fill="rgb(218,51,51)" fg:x="11760" fg:w="6"/><text x="48.7989%" y="799.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="48.5489%" y="773" width="0.0248%" height="15" fill="rgb(238,126,27)" fg:x="11760" fg:w="6"/><text x="48.7989%" y="783.50"></text></g><g><title>__poll (5 samples, 0.02%)</title><rect x="48.5530%" y="757" width="0.0206%" height="15" fill="rgb(249,202,22)" fg:x="11761" fg:w="5"/><text x="48.8030%" y="767.50"></text></g><g><title>[libdconfsettings.so] (7 samples, 0.03%)</title><rect x="48.5489%" y="885" width="0.0289%" height="15" fill="rgb(254,195,49)" fg:x="11760" fg:w="7"/><text x="48.7989%" y="895.50"></text></g><g><title>g_bus_get_sync (7 samples, 0.03%)</title><rect x="48.5489%" y="869" width="0.0289%" height="15" fill="rgb(208,123,14)" fg:x="11760" fg:w="7"/><text x="48.7989%" y="879.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="48.5489%" y="853" width="0.0289%" height="15" fill="rgb(224,200,8)" fg:x="11760" fg:w="7"/><text x="48.7989%" y="863.50"></text></g><g><title>dconf_worker (9 samples, 0.04%)</title><rect x="48.5489%" y="1029" width="0.0372%" height="15" fill="rgb(217,61,36)" fg:x="11760" fg:w="9"/><text x="48.7989%" y="1039.50"></text></g><g><title>[libc.so.6] (9 samples, 0.04%)</title><rect x="48.5489%" y="1013" width="0.0372%" height="15" fill="rgb(206,35,45)" fg:x="11760" fg:w="9"/><text x="48.7989%" y="1023.50"></text></g><g><title>[libc.so.6] (9 samples, 0.04%)</title><rect x="48.5489%" y="997" width="0.0372%" height="15" fill="rgb(217,65,33)" fg:x="11760" fg:w="9"/><text x="48.7989%" y="1007.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (9 samples, 0.04%)</title><rect x="48.5489%" y="981" width="0.0372%" height="15" fill="rgb(222,158,48)" fg:x="11760" fg:w="9"/><text x="48.7989%" y="991.50"></text></g><g><title>[libdconfsettings.so] (9 samples, 0.04%)</title><rect x="48.5489%" y="965" width="0.0372%" height="15" fill="rgb(254,2,54)" fg:x="11760" fg:w="9"/><text x="48.7989%" y="975.50"></text></g><g><title>g_main_context_iteration (9 samples, 0.04%)</title><rect x="48.5489%" y="949" width="0.0372%" height="15" fill="rgb(250,143,38)" fg:x="11760" fg:w="9"/><text x="48.7989%" y="959.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (9 samples, 0.04%)</title><rect x="48.5489%" y="933" width="0.0372%" height="15" fill="rgb(248,25,0)" fg:x="11760" fg:w="9"/><text x="48.7989%" y="943.50"></text></g><g><title>g_main_context_dispatch (9 samples, 0.04%)</title><rect x="48.5489%" y="917" width="0.0372%" height="15" fill="rgb(206,152,27)" fg:x="11760" fg:w="9"/><text x="48.7989%" y="927.50"></text></g><g><title>[libdconfsettings.so] (9 samples, 0.04%)</title><rect x="48.5489%" y="901" width="0.0372%" height="15" fill="rgb(240,77,30)" fg:x="11760" fg:w="9"/><text x="48.7989%" y="911.50"></text></g><g><title>[[heap]] (4 samples, 0.02%)</title><rect x="48.5861%" y="1013" width="0.0165%" height="15" fill="rgb(231,5,3)" fg:x="11769" fg:w="4"/><text x="48.8361%" y="1023.50"></text></g><g><title>[crocus_dri.so] (9 samples, 0.04%)</title><rect x="48.6026%" y="997" width="0.0372%" height="15" fill="rgb(207,226,32)" fg:x="11773" fg:w="9"/><text x="48.8526%" y="1007.50"></text></g><g><title>[libc.so.6] (10 samples, 0.04%)</title><rect x="48.6480%" y="997" width="0.0413%" height="15" fill="rgb(222,207,47)" fg:x="11784" fg:w="10"/><text x="48.8980%" y="1007.50"></text></g><g><title>[libffi.so.8.1.2] (3 samples, 0.01%)</title><rect x="48.6893%" y="997" width="0.0124%" height="15" fill="rgb(229,115,45)" fg:x="11794" fg:w="3"/><text x="48.9393%" y="1007.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (8 samples, 0.03%)</title><rect x="48.7140%" y="997" width="0.0330%" height="15" fill="rgb(224,191,6)" fg:x="11800" fg:w="8"/><text x="48.9640%" y="1007.50"></text></g><g><title>[anon] (40 samples, 0.17%)</title><rect x="48.6026%" y="1013" width="0.1651%" height="15" fill="rgb(230,227,24)" fg:x="11773" fg:w="40"/><text x="48.8526%" y="1023.50"></text></g><g><title>__poll (50 samples, 0.21%)</title><rect x="48.7966%" y="917" width="0.2064%" height="15" fill="rgb(228,80,19)" fg:x="11820" fg:w="50"/><text x="49.0466%" y="927.50"></text></g><g><title>g_main_context_acquire (3 samples, 0.01%)</title><rect x="49.0030%" y="917" width="0.0124%" height="15" fill="rgb(247,229,0)" fg:x="11870" fg:w="3"/><text x="49.2530%" y="927.50"></text></g><g><title>[libwayland-client.so.0.22.0] (4 samples, 0.02%)</title><rect x="49.0402%" y="869" width="0.0165%" height="15" fill="rgb(237,194,15)" fg:x="11879" fg:w="4"/><text x="49.2902%" y="879.50"></text></g><g><title>[libWPEBackend-fdo-1.0.so.1.9.4] (19 samples, 0.08%)</title><rect x="49.0237%" y="901" width="0.0784%" height="15" fill="rgb(219,203,20)" fg:x="11875" fg:w="19"/><text x="49.2737%" y="911.50"></text></g><g><title>wl_display_read_events (17 samples, 0.07%)</title><rect x="49.0319%" y="885" width="0.0702%" height="15" fill="rgb(234,128,8)" fg:x="11877" fg:w="17"/><text x="49.2819%" y="895.50"></text></g><g><title>recvmsg (11 samples, 0.05%)</title><rect x="49.0567%" y="869" width="0.0454%" height="15" fill="rgb(248,202,8)" fg:x="11883" fg:w="11"/><text x="49.3067%" y="879.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (18 samples, 0.07%)</title><rect x="49.1021%" y="901" width="0.0743%" height="15" fill="rgb(206,104,37)" fg:x="11894" fg:w="18"/><text x="49.3521%" y="911.50"></text></g><g><title>read (12 samples, 0.05%)</title><rect x="49.1269%" y="885" width="0.0495%" height="15" fill="rgb(223,8,27)" fg:x="11900" fg:w="12"/><text x="49.3769%" y="895.50"></text></g><g><title>g_main_context_check (41 samples, 0.17%)</title><rect x="49.0154%" y="917" width="0.1693%" height="15" fill="rgb(216,217,28)" fg:x="11873" fg:w="41"/><text x="49.2654%" y="927.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (20 samples, 0.08%)</title><rect x="49.2094%" y="789" width="0.0826%" height="15" fill="rgb(249,199,1)" fg:x="11920" fg:w="20"/><text x="49.4594%" y="799.50"></text></g><g><title>g_source_set_ready_time (16 samples, 0.07%)</title><rect x="49.2259%" y="773" width="0.0661%" height="15" fill="rgb(240,85,17)" fg:x="11924" fg:w="16"/><text x="49.4759%" y="783.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (12 samples, 0.05%)</title><rect x="49.2425%" y="757" width="0.0495%" height="15" fill="rgb(206,108,45)" fg:x="11928" fg:w="12"/><text x="49.4925%" y="767.50"></text></g><g><title>write (12 samples, 0.05%)</title><rect x="49.2425%" y="741" width="0.0495%" height="15" fill="rgb(245,210,41)" fg:x="11928" fg:w="12"/><text x="49.4925%" y="751.50"></text></g><g><title>[libwayland-client.so.0.22.0] (25 samples, 0.10%)</title><rect x="49.1929%" y="869" width="0.1032%" height="15" fill="rgb(206,13,37)" fg:x="11916" fg:w="25"/><text x="49.4429%" y="879.50"></text></g><g><title>[libwayland-client.so.0.22.0] (25 samples, 0.10%)</title><rect x="49.1929%" y="853" width="0.1032%" height="15" fill="rgb(250,61,18)" fg:x="11916" fg:w="25"/><text x="49.4429%" y="863.50"></text></g><g><title>ffi_call (25 samples, 0.10%)</title><rect x="49.1929%" y="837" width="0.1032%" height="15" fill="rgb(235,172,48)" fg:x="11916" fg:w="25"/><text x="49.4429%" y="847.50"></text></g><g><title>[libffi.so.8.1.2] (23 samples, 0.09%)</title><rect x="49.2012%" y="821" width="0.0950%" height="15" fill="rgb(249,201,17)" fg:x="11918" fg:w="23"/><text x="49.4512%" y="831.50"></text></g><g><title>[libffi.so.8.1.2] (22 samples, 0.09%)</title><rect x="49.2053%" y="805" width="0.0908%" height="15" fill="rgb(219,208,6)" fg:x="11919" fg:w="22"/><text x="49.4553%" y="815.50"></text></g><g><title>[libWPEBackend-fdo-1.0.so.1.9.4] (27 samples, 0.11%)</title><rect x="49.1888%" y="901" width="0.1115%" height="15" fill="rgb(248,31,23)" fg:x="11915" fg:w="27"/><text x="49.4388%" y="911.50"></text></g><g><title>wl_display_dispatch_queue_pending (27 samples, 0.11%)</title><rect x="49.1888%" y="885" width="0.1115%" height="15" fill="rgb(245,15,42)" fg:x="11915" fg:w="27"/><text x="49.4388%" y="895.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="49.3003%" y="901" width="0.0124%" height="15" fill="rgb(222,217,39)" fg:x="11942" fg:w="3"/><text x="49.5503%" y="911.50"></text></g><g><title>[crocus_dri.so] (15 samples, 0.06%)</title><rect x="49.3580%" y="821" width="0.0619%" height="15" fill="rgb(210,219,27)" fg:x="11956" fg:w="15"/><text x="49.6080%" y="831.50"></text></g><g><title>[crocus_dri.so] (14 samples, 0.06%)</title><rect x="49.3622%" y="805" width="0.0578%" height="15" fill="rgb(252,166,36)" fg:x="11957" fg:w="14"/><text x="49.6122%" y="815.50"></text></g><g><title>[crocus_dri.so] (13 samples, 0.05%)</title><rect x="49.3663%" y="789" width="0.0537%" height="15" fill="rgb(245,132,34)" fg:x="11958" fg:w="13"/><text x="49.6163%" y="799.50"></text></g><g><title>[crocus_dri.so] (10 samples, 0.04%)</title><rect x="49.3787%" y="773" width="0.0413%" height="15" fill="rgb(236,54,3)" fg:x="11961" fg:w="10"/><text x="49.6287%" y="783.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="49.3869%" y="757" width="0.0330%" height="15" fill="rgb(241,173,43)" fg:x="11963" fg:w="8"/><text x="49.6369%" y="767.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (3 samples, 0.01%)</title><rect x="49.4076%" y="741" width="0.0124%" height="15" fill="rgb(215,190,9)" fg:x="11968" fg:w="3"/><text x="49.6576%" y="751.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (3 samples, 0.01%)</title><rect x="49.4076%" y="725" width="0.0124%" height="15" fill="rgb(242,101,16)" fg:x="11968" fg:w="3"/><text x="49.6576%" y="735.50"></text></g><g><title>[crocus_dri.so] (23 samples, 0.09%)</title><rect x="49.3291%" y="853" width="0.0950%" height="15" fill="rgb(223,190,21)" fg:x="11949" fg:w="23"/><text x="49.5791%" y="863.50"></text></g><g><title>[crocus_dri.so] (20 samples, 0.08%)</title><rect x="49.3415%" y="837" width="0.0826%" height="15" fill="rgb(215,228,25)" fg:x="11952" fg:w="20"/><text x="49.5915%" y="847.50"></text></g><g><title>[crocus_dri.so] (33 samples, 0.14%)</title><rect x="49.7668%" y="645" width="0.1362%" height="15" fill="rgb(225,36,22)" fg:x="12055" fg:w="33"/><text x="50.0168%" y="655.50"></text></g><g><title>[crocus_dri.so] (19 samples, 0.08%)</title><rect x="49.8245%" y="629" width="0.0784%" height="15" fill="rgb(251,106,46)" fg:x="12069" fg:w="19"/><text x="50.0745%" y="639.50"></text></g><g><title>[crocus_dri.so] (11 samples, 0.05%)</title><rect x="49.8576%" y="613" width="0.0454%" height="15" fill="rgb(208,90,1)" fg:x="12077" fg:w="11"/><text x="50.1076%" y="623.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="49.8865%" y="597" width="0.0165%" height="15" fill="rgb(243,10,4)" fg:x="12084" fg:w="4"/><text x="50.1365%" y="607.50"></text></g><g><title>[crocus_dri.so] (59 samples, 0.24%)</title><rect x="49.6635%" y="661" width="0.2436%" height="15" fill="rgb(212,137,27)" fg:x="12030" fg:w="59"/><text x="49.9135%" y="671.50"></text></g><g><title>[crocus_dri.so] (93 samples, 0.38%)</title><rect x="49.5314%" y="693" width="0.3839%" height="15" fill="rgb(231,220,49)" fg:x="11998" fg:w="93"/><text x="49.7814%" y="703.50"></text></g><g><title>[crocus_dri.so] (78 samples, 0.32%)</title><rect x="49.5934%" y="677" width="0.3220%" height="15" fill="rgb(237,96,20)" fg:x="12013" fg:w="78"/><text x="49.8434%" y="687.50"></text></g><g><title>[crocus_dri.so] (122 samples, 0.50%)</title><rect x="49.4571%" y="709" width="0.5037%" height="15" fill="rgb(239,229,30)" fg:x="11980" fg:w="122"/><text x="49.7071%" y="719.50"></text></g><g><title>ioctl (10 samples, 0.04%)</title><rect x="49.9195%" y="693" width="0.0413%" height="15" fill="rgb(219,65,33)" fg:x="12092" fg:w="10"/><text x="50.1695%" y="703.50"></text></g><g><title>[crocus_dri.so] (135 samples, 0.56%)</title><rect x="49.4489%" y="725" width="0.5573%" height="15" fill="rgb(243,134,7)" fg:x="11978" fg:w="135"/><text x="49.6989%" y="735.50"></text></g><g><title>ioctl (11 samples, 0.05%)</title><rect x="49.9608%" y="709" width="0.0454%" height="15" fill="rgb(216,177,54)" fg:x="12102" fg:w="11"/><text x="50.2108%" y="719.50"></text></g><g><title>[crocus_dri.so] (142 samples, 0.59%)</title><rect x="49.4406%" y="741" width="0.5862%" height="15" fill="rgb(211,160,20)" fg:x="11976" fg:w="142"/><text x="49.6906%" y="751.50"></text></g><g><title>ioctl (4 samples, 0.02%)</title><rect x="50.0103%" y="725" width="0.0165%" height="15" fill="rgb(239,85,39)" fg:x="12114" fg:w="4"/><text x="50.2603%" y="735.50"></text></g><g><title>[crocus_dri.so] (289 samples, 1.19%)</title><rect x="49.4282%" y="773" width="1.1931%" height="15" fill="rgb(232,125,22)" fg:x="11973" fg:w="289"/><text x="49.6782%" y="783.50"></text></g><g><title>[crocus_dri.so] (289 samples, 1.19%)</title><rect x="49.4282%" y="757" width="1.1931%" height="15" fill="rgb(244,57,34)" fg:x="11973" fg:w="289"/><text x="49.6782%" y="767.50"></text></g><g><title>ioctl (144 samples, 0.59%)</title><rect x="50.0268%" y="741" width="0.5945%" height="15" fill="rgb(214,203,32)" fg:x="12118" fg:w="144"/><text x="50.2768%" y="751.50"></text></g><g><title>[crocus_dri.so] (295 samples, 1.22%)</title><rect x="49.4282%" y="805" width="1.2179%" height="15" fill="rgb(207,58,43)" fg:x="11973" fg:w="295"/><text x="49.6782%" y="815.50"></text></g><g><title>[crocus_dri.so] (295 samples, 1.22%)</title><rect x="49.4282%" y="789" width="1.2179%" height="15" fill="rgb(215,193,15)" fg:x="11973" fg:w="295"/><text x="49.6782%" y="799.50"></text></g><g><title>ioctl (6 samples, 0.02%)</title><rect x="50.6213%" y="773" width="0.0248%" height="15" fill="rgb(232,15,44)" fg:x="12262" fg:w="6"/><text x="50.8713%" y="783.50"></text></g><g><title>wl_display_flush (8 samples, 0.03%)</title><rect x="50.6461%" y="805" width="0.0330%" height="15" fill="rgb(212,3,48)" fg:x="12268" fg:w="8"/><text x="50.8961%" y="815.50"></text></g><g><title>[libwayland-client.so.0.22.0] (8 samples, 0.03%)</title><rect x="50.6461%" y="789" width="0.0330%" height="15" fill="rgb(218,128,7)" fg:x="12268" fg:w="8"/><text x="50.8961%" y="799.50"></text></g><g><title>sendmsg (8 samples, 0.03%)</title><rect x="50.6461%" y="773" width="0.0330%" height="15" fill="rgb(226,216,39)" fg:x="12268" fg:w="8"/><text x="50.8961%" y="783.50"></text></g><g><title>[libwayland-client.so.0.22.0] (3 samples, 0.01%)</title><rect x="50.6832%" y="789" width="0.0124%" height="15" fill="rgb(243,47,51)" fg:x="12277" fg:w="3"/><text x="50.9332%" y="799.50"></text></g><g><title>[libwayland-client.so.0.22.0] (3 samples, 0.01%)</title><rect x="50.7039%" y="773" width="0.0124%" height="15" fill="rgb(241,183,40)" fg:x="12282" fg:w="3"/><text x="50.9539%" y="783.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (314 samples, 1.30%)</title><rect x="49.4241%" y="853" width="1.2963%" height="15" fill="rgb(231,217,32)" fg:x="11972" fg:w="314"/><text x="49.6741%" y="863.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (314 samples, 1.30%)</title><rect x="49.4241%" y="837" width="1.2963%" height="15" fill="rgb(229,61,38)" fg:x="11972" fg:w="314"/><text x="49.6741%" y="847.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (313 samples, 1.29%)</title><rect x="49.4282%" y="821" width="1.2922%" height="15" fill="rgb(225,210,5)" fg:x="11973" fg:w="313"/><text x="49.6782%" y="831.50"></text></g><g><title>wl_proxy_marshal_flags (9 samples, 0.04%)</title><rect x="50.6832%" y="805" width="0.0372%" height="15" fill="rgb(231,79,45)" fg:x="12277" fg:w="9"/><text x="50.9332%" y="815.50"></text></g><g><title>wl_proxy_marshal_array_flags (6 samples, 0.02%)</title><rect x="50.6956%" y="789" width="0.0248%" height="15" fill="rgb(224,100,7)" fg:x="12280" fg:w="6"/><text x="50.9456%" y="799.50"></text></g><g><title>[libwayland-client.so.0.22.0] (3 samples, 0.01%)</title><rect x="50.7286%" y="805" width="0.0124%" height="15" fill="rgb(241,198,18)" fg:x="12288" fg:w="3"/><text x="50.9786%" y="815.50"></text></g><g><title>[libWPEBackend-fdo-1.0.so.1.9.4] (6 samples, 0.02%)</title><rect x="50.7204%" y="853" width="0.0248%" height="15" fill="rgb(252,97,53)" fg:x="12286" fg:w="6"/><text x="50.9704%" y="863.50"></text></g><g><title>wl_proxy_marshal_flags (5 samples, 0.02%)</title><rect x="50.7245%" y="837" width="0.0206%" height="15" fill="rgb(220,88,7)" fg:x="12287" fg:w="5"/><text x="50.9745%" y="847.50"></text></g><g><title>wl_proxy_marshal_array_flags (4 samples, 0.02%)</title><rect x="50.7286%" y="821" width="0.0165%" height="15" fill="rgb(213,176,14)" fg:x="12288" fg:w="4"/><text x="50.9786%" y="831.50"></text></g><g><title>[crocus_dri.so] (9 samples, 0.04%)</title><rect x="50.7823%" y="837" width="0.0372%" height="15" fill="rgb(246,73,7)" fg:x="12301" fg:w="9"/><text x="51.0323%" y="847.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="50.8030%" y="821" width="0.0165%" height="15" fill="rgb(245,64,36)" fg:x="12306" fg:w="4"/><text x="51.0530%" y="831.50"></text></g><g><title>[crocus_dri.so] (13 samples, 0.05%)</title><rect x="50.9227%" y="709" width="0.0537%" height="15" fill="rgb(245,80,10)" fg:x="12335" fg:w="13"/><text x="51.1727%" y="719.50"></text></g><g><title>[crocus_dri.so] (13 samples, 0.05%)</title><rect x="50.9227%" y="693" width="0.0537%" height="15" fill="rgb(232,107,50)" fg:x="12335" fg:w="13"/><text x="51.1727%" y="703.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="50.9640%" y="677" width="0.0124%" height="15" fill="rgb(253,3,0)" fg:x="12345" fg:w="3"/><text x="51.2140%" y="687.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="50.9640%" y="661" width="0.0124%" height="15" fill="rgb(212,99,53)" fg:x="12345" fg:w="3"/><text x="51.2140%" y="671.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="50.9640%" y="645" width="0.0124%" height="15" fill="rgb(249,111,54)" fg:x="12345" fg:w="3"/><text x="51.2140%" y="655.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="50.9640%" y="629" width="0.0124%" height="15" fill="rgb(249,55,30)" fg:x="12345" fg:w="3"/><text x="51.2140%" y="639.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="50.9640%" y="613" width="0.0124%" height="15" fill="rgb(237,47,42)" fg:x="12345" fg:w="3"/><text x="51.2140%" y="623.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="50.9640%" y="597" width="0.0124%" height="15" fill="rgb(211,20,18)" fg:x="12345" fg:w="3"/><text x="51.2140%" y="607.50"></text></g><g><title>[crocus_dri.so] (17 samples, 0.07%)</title><rect x="50.9227%" y="725" width="0.0702%" height="15" fill="rgb(231,203,46)" fg:x="12335" fg:w="17"/><text x="51.1727%" y="735.50"></text></g><g><title>ioctl (4 samples, 0.02%)</title><rect x="50.9763%" y="709" width="0.0165%" height="15" fill="rgb(237,142,3)" fg:x="12348" fg:w="4"/><text x="51.2263%" y="719.50"></text></g><g><title>[crocus_dri.so] (18 samples, 0.07%)</title><rect x="50.9227%" y="741" width="0.0743%" height="15" fill="rgb(241,107,1)" fg:x="12335" fg:w="18"/><text x="51.1727%" y="751.50"></text></g><g><title>[crocus_dri.so] (29 samples, 0.12%)</title><rect x="50.9185%" y="821" width="0.1197%" height="15" fill="rgb(229,83,13)" fg:x="12334" fg:w="29"/><text x="51.1685%" y="831.50"></text></g><g><title>[crocus_dri.so] (28 samples, 0.12%)</title><rect x="50.9227%" y="805" width="0.1156%" height="15" fill="rgb(241,91,40)" fg:x="12335" fg:w="28"/><text x="51.1727%" y="815.50"></text></g><g><title>[crocus_dri.so] (28 samples, 0.12%)</title><rect x="50.9227%" y="789" width="0.1156%" height="15" fill="rgb(225,3,45)" fg:x="12335" fg:w="28"/><text x="51.1727%" y="799.50"></text></g><g><title>[crocus_dri.so] (28 samples, 0.12%)</title><rect x="50.9227%" y="773" width="0.1156%" height="15" fill="rgb(244,223,14)" fg:x="12335" fg:w="28"/><text x="51.1727%" y="783.50"></text></g><g><title>[crocus_dri.so] (28 samples, 0.12%)</title><rect x="50.9227%" y="757" width="0.1156%" height="15" fill="rgb(224,124,37)" fg:x="12335" fg:w="28"/><text x="51.1727%" y="767.50"></text></g><g><title>[libc.so.6] (10 samples, 0.04%)</title><rect x="50.9970%" y="741" width="0.0413%" height="15" fill="rgb(251,171,30)" fg:x="12353" fg:w="10"/><text x="51.2470%" y="751.50"></text></g><g><title>[crocus_dri.so] (15 samples, 0.06%)</title><rect x="51.3025%" y="613" width="0.0619%" height="15" fill="rgb(236,46,54)" fg:x="12427" fg:w="15"/><text x="51.5525%" y="623.50"></text></g><g><title>[crocus_dri.so] (15 samples, 0.06%)</title><rect x="51.3025%" y="597" width="0.0619%" height="15" fill="rgb(245,213,5)" fg:x="12427" fg:w="15"/><text x="51.5525%" y="607.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="51.3314%" y="581" width="0.0330%" height="15" fill="rgb(230,144,27)" fg:x="12434" fg:w="8"/><text x="51.5814%" y="591.50"></text></g><g><title>[crocus_dri.so] (6 samples, 0.02%)</title><rect x="51.3396%" y="565" width="0.0248%" height="15" fill="rgb(220,86,6)" fg:x="12436" fg:w="6"/><text x="51.5896%" y="575.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="51.5295%" y="501" width="0.0124%" height="15" fill="rgb(240,20,13)" fg:x="12482" fg:w="3"/><text x="51.7795%" y="511.50"></text></g><g><title>[crocus_dri.so] (5 samples, 0.02%)</title><rect x="51.5295%" y="517" width="0.0206%" height="15" fill="rgb(217,89,34)" fg:x="12482" fg:w="5"/><text x="51.7795%" y="527.50"></text></g><g><title>[crocus_dri.so] (10 samples, 0.04%)</title><rect x="51.5213%" y="533" width="0.0413%" height="15" fill="rgb(229,13,5)" fg:x="12480" fg:w="10"/><text x="51.7713%" y="543.50"></text></g><g><title>[crocus_dri.so] (23 samples, 0.09%)</title><rect x="51.4717%" y="549" width="0.0950%" height="15" fill="rgb(244,67,35)" fg:x="12468" fg:w="23"/><text x="51.7217%" y="559.50"></text></g><g><title>[crocus_dri.so] (50 samples, 0.21%)</title><rect x="51.3644%" y="597" width="0.2064%" height="15" fill="rgb(221,40,2)" fg:x="12442" fg:w="50"/><text x="51.6144%" y="607.50"></text></g><g><title>[crocus_dri.so] (45 samples, 0.19%)</title><rect x="51.3850%" y="581" width="0.1858%" height="15" fill="rgb(237,157,21)" fg:x="12447" fg:w="45"/><text x="51.6350%" y="591.50"></text></g><g><title>[crocus_dri.so] (38 samples, 0.16%)</title><rect x="51.4139%" y="565" width="0.1569%" height="15" fill="rgb(222,94,11)" fg:x="12454" fg:w="38"/><text x="51.6639%" y="575.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="51.5791%" y="581" width="0.0165%" height="15" fill="rgb(249,113,6)" fg:x="12494" fg:w="4"/><text x="51.8291%" y="591.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="51.5791%" y="565" width="0.0165%" height="15" fill="rgb(238,137,36)" fg:x="12494" fg:w="4"/><text x="51.8291%" y="575.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (95 samples, 0.39%)</title><rect x="51.2406%" y="677" width="0.3922%" height="15" fill="rgb(210,102,26)" fg:x="12412" fg:w="95"/><text x="51.4906%" y="687.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (93 samples, 0.38%)</title><rect x="51.2488%" y="661" width="0.3839%" height="15" fill="rgb(218,30,30)" fg:x="12414" fg:w="93"/><text x="51.4988%" y="671.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (92 samples, 0.38%)</title><rect x="51.2529%" y="645" width="0.3798%" height="15" fill="rgb(214,67,26)" fg:x="12415" fg:w="92"/><text x="51.5029%" y="655.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (86 samples, 0.36%)</title><rect x="51.2777%" y="629" width="0.3550%" height="15" fill="rgb(251,9,53)" fg:x="12421" fg:w="86"/><text x="51.5277%" y="639.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (65 samples, 0.27%)</title><rect x="51.3644%" y="613" width="0.2683%" height="15" fill="rgb(228,204,25)" fg:x="12442" fg:w="65"/><text x="51.6144%" y="623.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (15 samples, 0.06%)</title><rect x="51.5708%" y="597" width="0.0619%" height="15" fill="rgb(207,153,8)" fg:x="12492" fg:w="15"/><text x="51.8208%" y="607.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (9 samples, 0.04%)</title><rect x="51.5956%" y="581" width="0.0372%" height="15" fill="rgb(242,9,16)" fg:x="12498" fg:w="9"/><text x="51.8456%" y="591.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="51.5997%" y="565" width="0.0330%" height="15" fill="rgb(217,211,10)" fg:x="12499" fg:w="8"/><text x="51.8497%" y="575.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="51.5997%" y="549" width="0.0330%" height="15" fill="rgb(219,228,52)" fg:x="12499" fg:w="8"/><text x="51.8497%" y="559.50"></text></g><g><title>[crocus_dri.so] (5 samples, 0.02%)</title><rect x="51.6121%" y="533" width="0.0206%" height="15" fill="rgb(231,92,29)" fg:x="12502" fg:w="5"/><text x="51.8621%" y="543.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="51.6162%" y="517" width="0.0165%" height="15" fill="rgb(232,8,23)" fg:x="12503" fg:w="4"/><text x="51.8662%" y="527.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (97 samples, 0.40%)</title><rect x="51.2364%" y="693" width="0.4004%" height="15" fill="rgb(216,211,34)" fg:x="12411" fg:w="97"/><text x="51.4864%" y="703.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (113 samples, 0.47%)</title><rect x="51.1745%" y="789" width="0.4665%" height="15" fill="rgb(236,151,0)" fg:x="12396" fg:w="113"/><text x="51.4245%" y="799.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (109 samples, 0.45%)</title><rect x="51.1910%" y="773" width="0.4500%" height="15" fill="rgb(209,168,3)" fg:x="12400" fg:w="109"/><text x="51.4410%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (109 samples, 0.45%)</title><rect x="51.1910%" y="757" width="0.4500%" height="15" fill="rgb(208,129,28)" fg:x="12400" fg:w="109"/><text x="51.4410%" y="767.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (109 samples, 0.45%)</title><rect x="51.1910%" y="741" width="0.4500%" height="15" fill="rgb(229,78,22)" fg:x="12400" fg:w="109"/><text x="51.4410%" y="751.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (107 samples, 0.44%)</title><rect x="51.1993%" y="725" width="0.4417%" height="15" fill="rgb(228,187,13)" fg:x="12402" fg:w="107"/><text x="51.4493%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (103 samples, 0.43%)</title><rect x="51.2158%" y="709" width="0.4252%" height="15" fill="rgb(240,119,24)" fg:x="12406" fg:w="103"/><text x="51.4658%" y="719.50"></text></g><g><title>bmalloc_heap_config_specialized_local_allocator_try_allocate_slow (3 samples, 0.01%)</title><rect x="51.6493%" y="757" width="0.0124%" height="15" fill="rgb(209,194,42)" fg:x="12511" fg:w="3"/><text x="51.8993%" y="767.50"></text></g><g><title>bmalloc_medium_segregated_page_config_specialized_local_allocator_refill (3 samples, 0.01%)</title><rect x="51.6493%" y="741" width="0.0124%" height="15" fill="rgb(247,200,46)" fg:x="12511" fg:w="3"/><text x="51.8993%" y="751.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (127 samples, 0.52%)</title><rect x="51.1415%" y="805" width="0.5243%" height="15" fill="rgb(218,76,16)" fg:x="12388" fg:w="127"/><text x="51.3915%" y="815.50"></text></g><g><title>bmalloc_allocate_casual (6 samples, 0.02%)</title><rect x="51.6410%" y="789" width="0.0248%" height="15" fill="rgb(225,21,48)" fg:x="12509" fg:w="6"/><text x="51.8910%" y="799.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (4 samples, 0.02%)</title><rect x="51.6493%" y="773" width="0.0165%" height="15" fill="rgb(239,223,50)" fg:x="12511" fg:w="4"/><text x="51.8993%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (151 samples, 0.62%)</title><rect x="51.0465%" y="821" width="0.6234%" height="15" fill="rgb(244,45,21)" fg:x="12365" fg:w="151"/><text x="51.2965%" y="831.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (208 samples, 0.86%)</title><rect x="50.8195%" y="837" width="0.8587%" height="15" fill="rgb(232,33,43)" fg:x="12310" fg:w="208"/><text x="51.0695%" y="847.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (229 samples, 0.95%)</title><rect x="50.7452%" y="853" width="0.9454%" height="15" fill="rgb(209,8,3)" fg:x="12292" fg:w="229"/><text x="50.9952%" y="863.50"></text></g><g><title>eglGetCurrentContext (3 samples, 0.01%)</title><rect x="51.6782%" y="837" width="0.0124%" height="15" fill="rgb(214,25,53)" fg:x="12518" fg:w="3"/><text x="51.9282%" y="847.50"></text></g><g><title>__getpid (3 samples, 0.01%)</title><rect x="51.6988%" y="805" width="0.0124%" height="15" fill="rgb(254,186,54)" fg:x="12523" fg:w="3"/><text x="51.9488%" y="815.50"></text></g><g><title>g_main_context_dispatch (613 samples, 2.53%)</title><rect x="49.1847%" y="917" width="2.5307%" height="15" fill="rgb(208,174,49)" fg:x="11914" fg:w="613"/><text x="49.4347%" y="927.50">g_..</text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (582 samples, 2.40%)</title><rect x="49.3126%" y="901" width="2.4027%" height="15" fill="rgb(233,191,51)" fg:x="11945" fg:w="582"/><text x="49.5626%" y="911.50">[l..</text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (582 samples, 2.40%)</title><rect x="49.3126%" y="885" width="2.4027%" height="15" fill="rgb(222,134,10)" fg:x="11945" fg:w="582"/><text x="49.5626%" y="895.50">[l..</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (581 samples, 2.40%)</title><rect x="49.3168%" y="869" width="2.3985%" height="15" fill="rgb(230,226,20)" fg:x="11946" fg:w="581"/><text x="49.5668%" y="879.50">[l..</text></g><g><title>eglSwapBuffers (6 samples, 0.02%)</title><rect x="51.6905%" y="853" width="0.0248%" height="15" fill="rgb(251,111,25)" fg:x="12521" fg:w="6"/><text x="51.9405%" y="863.50"></text></g><g><title>[libEGL.so.1.1.0] (6 samples, 0.02%)</title><rect x="51.6905%" y="837" width="0.0248%" height="15" fill="rgb(224,40,46)" fg:x="12521" fg:w="6"/><text x="51.9405%" y="847.50"></text></g><g><title>[libEGL.so.1.1.0] (6 samples, 0.02%)</title><rect x="51.6905%" y="821" width="0.0248%" height="15" fill="rgb(236,108,47)" fg:x="12521" fg:w="6"/><text x="51.9405%" y="831.50"></text></g><g><title>[libWPEBackend-fdo-1.0.so.1.9.4] (6 samples, 0.02%)</title><rect x="51.7194%" y="901" width="0.0248%" height="15" fill="rgb(234,93,0)" fg:x="12528" fg:w="6"/><text x="51.9694%" y="911.50"></text></g><g><title>wl_display_prepare_read_queue (4 samples, 0.02%)</title><rect x="51.7277%" y="885" width="0.0165%" height="15" fill="rgb(224,213,32)" fg:x="12530" fg:w="4"/><text x="51.9777%" y="895.50"></text></g><g><title>g_main_context_prepare (9 samples, 0.04%)</title><rect x="51.7153%" y="917" width="0.0372%" height="15" fill="rgb(251,11,48)" fg:x="12527" fg:w="9"/><text x="51.9653%" y="927.50"></text></g><g><title>[libc.so.6] (721 samples, 2.98%)</title><rect x="48.7842%" y="1013" width="2.9765%" height="15" fill="rgb(236,173,5)" fg:x="11817" fg:w="721"/><text x="49.0342%" y="1023.50">[li..</text></g><g><title>[libc.so.6] (721 samples, 2.98%)</title><rect x="48.7842%" y="997" width="2.9765%" height="15" fill="rgb(230,95,12)" fg:x="11817" fg:w="721"/><text x="49.0342%" y="1007.50">[li..</text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (719 samples, 2.97%)</title><rect x="48.7925%" y="981" width="2.9683%" height="15" fill="rgb(232,209,1)" fg:x="11819" fg:w="719"/><text x="49.0425%" y="991.50">[li..</text></g><g><title>WTF::RunLoop::run (719 samples, 2.97%)</title><rect x="48.7925%" y="965" width="2.9683%" height="15" fill="rgb(232,6,1)" fg:x="11819" fg:w="719"/><text x="49.0425%" y="975.50">WTF..</text></g><g><title>g_main_loop_run (719 samples, 2.97%)</title><rect x="48.7925%" y="949" width="2.9683%" height="15" fill="rgb(210,224,50)" fg:x="11819" fg:w="719"/><text x="49.0425%" y="959.50">g_m..</text></g><g><title>[libglib-2.0.so.0.7600.1] (719 samples, 2.97%)</title><rect x="48.7925%" y="933" width="2.9683%" height="15" fill="rgb(228,127,35)" fg:x="11819" fg:w="719"/><text x="49.0425%" y="943.50">[li..</text></g><g><title>[libglapi.so.0.0.0] (7 samples, 0.03%)</title><rect x="51.7649%" y="1013" width="0.0289%" height="15" fill="rgb(245,102,45)" fg:x="12539" fg:w="7"/><text x="52.0149%" y="1023.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="51.8020%" y="997" width="0.0330%" height="15" fill="rgb(214,1,49)" fg:x="12548" fg:w="8"/><text x="52.0520%" y="1007.50"></text></g><g><title>[unknown] (14 samples, 0.06%)</title><rect x="51.7979%" y="1013" width="0.0578%" height="15" fill="rgb(226,163,40)" fg:x="12547" fg:w="14"/><text x="52.0479%" y="1023.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (4 samples, 0.02%)</title><rect x="51.8392%" y="997" width="0.0165%" height="15" fill="rgb(239,212,28)" fg:x="12557" fg:w="4"/><text x="52.0892%" y="1007.50"></text></g><g><title>eadedCompositor (797 samples, 3.29%)</title><rect x="48.5861%" y="1029" width="3.2903%" height="15" fill="rgb(220,20,13)" fg:x="11769" fg:w="797"/><text x="48.8361%" y="1039.50">ead..</text></g><g><title>__poll (6 samples, 0.02%)</title><rect x="51.8804%" y="917" width="0.0248%" height="15" fill="rgb(210,164,35)" fg:x="12567" fg:w="6"/><text x="52.1304%" y="927.50"></text></g><g><title>WTF::RunLoop::run (7 samples, 0.03%)</title><rect x="51.8804%" y="965" width="0.0289%" height="15" fill="rgb(248,109,41)" fg:x="12567" fg:w="7"/><text x="52.1304%" y="975.50"></text></g><g><title>g_main_loop_run (7 samples, 0.03%)</title><rect x="51.8804%" y="949" width="0.0289%" height="15" fill="rgb(238,23,50)" fg:x="12567" fg:w="7"/><text x="52.1304%" y="959.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="51.8804%" y="933" width="0.0289%" height="15" fill="rgb(211,48,49)" fg:x="12567" fg:w="7"/><text x="52.1304%" y="943.50"></text></g><g><title>ebsiteDataStore (9 samples, 0.04%)</title><rect x="51.8763%" y="1029" width="0.0372%" height="15" fill="rgb(223,36,21)" fg:x="12566" fg:w="9"/><text x="52.1263%" y="1039.50"></text></g><g><title>[libc.so.6] (8 samples, 0.03%)</title><rect x="51.8804%" y="1013" width="0.0330%" height="15" fill="rgb(207,123,46)" fg:x="12567" fg:w="8"/><text x="52.1304%" y="1023.50"></text></g><g><title>[libc.so.6] (8 samples, 0.03%)</title><rect x="51.8804%" y="997" width="0.0330%" height="15" fill="rgb(240,218,32)" fg:x="12567" fg:w="8"/><text x="52.1304%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (8 samples, 0.03%)</title><rect x="51.8804%" y="981" width="0.0330%" height="15" fill="rgb(252,5,43)" fg:x="12567" fg:w="8"/><text x="52.1304%" y="991.50"></text></g><g><title>__poll (17 samples, 0.07%)</title><rect x="51.9217%" y="917" width="0.0702%" height="15" fill="rgb(252,84,19)" fg:x="12577" fg:w="17"/><text x="52.1717%" y="927.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="52.0002%" y="853" width="0.0124%" height="15" fill="rgb(243,152,39)" fg:x="12596" fg:w="3"/><text x="52.2502%" y="863.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="52.0002%" y="837" width="0.0124%" height="15" fill="rgb(234,160,15)" fg:x="12596" fg:w="3"/><text x="52.2502%" y="847.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="52.0002%" y="869" width="0.0248%" height="15" fill="rgb(237,34,20)" fg:x="12596" fg:w="6"/><text x="52.2502%" y="879.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="52.0002%" y="885" width="0.0289%" height="15" fill="rgb(229,97,13)" fg:x="12596" fg:w="7"/><text x="52.2502%" y="895.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (12 samples, 0.05%)</title><rect x="52.0002%" y="901" width="0.0495%" height="15" fill="rgb(234,71,50)" fg:x="12596" fg:w="12"/><text x="52.2502%" y="911.50"></text></g><g><title>g_source_query_unix_fd (5 samples, 0.02%)</title><rect x="52.0291%" y="885" width="0.0206%" height="15" fill="rgb(253,155,4)" fg:x="12603" fg:w="5"/><text x="52.2791%" y="895.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (33 samples, 0.14%)</title><rect x="51.9217%" y="965" width="0.1362%" height="15" fill="rgb(222,185,37)" fg:x="12577" fg:w="33"/><text x="52.1717%" y="975.50"></text></g><g><title>g_main_loop_run (33 samples, 0.14%)</title><rect x="51.9217%" y="949" width="0.1362%" height="15" fill="rgb(251,177,13)" fg:x="12577" fg:w="33"/><text x="52.1717%" y="959.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (33 samples, 0.14%)</title><rect x="51.9217%" y="933" width="0.1362%" height="15" fill="rgb(250,179,40)" fg:x="12577" fg:w="33"/><text x="52.1717%" y="943.50"></text></g><g><title>g_main_context_dispatch (14 samples, 0.06%)</title><rect x="52.0002%" y="917" width="0.0578%" height="15" fill="rgb(242,44,2)" fg:x="12596" fg:w="14"/><text x="52.2502%" y="927.50"></text></g><g><title>[libc.so.6] (35 samples, 0.14%)</title><rect x="51.9176%" y="1013" width="0.1445%" height="15" fill="rgb(216,177,13)" fg:x="12576" fg:w="35"/><text x="52.1676%" y="1023.50"></text></g><g><title>[libc.so.6] (34 samples, 0.14%)</title><rect x="51.9217%" y="997" width="0.1404%" height="15" fill="rgb(216,106,43)" fg:x="12577" fg:w="34"/><text x="52.1717%" y="1007.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (34 samples, 0.14%)</title><rect x="51.9217%" y="981" width="0.1404%" height="15" fill="rgb(216,183,2)" fg:x="12577" fg:w="34"/><text x="52.1717%" y="991.50"></text></g><g><title>[unknown] (5 samples, 0.02%)</title><rect x="52.0621%" y="1013" width="0.0206%" height="15" fill="rgb(249,75,3)" fg:x="12611" fg:w="5"/><text x="52.3121%" y="1023.50"></text></g><g><title>__poll (13 samples, 0.05%)</title><rect x="52.0827%" y="1013" width="0.0537%" height="15" fill="rgb(219,67,39)" fg:x="12616" fg:w="13"/><text x="52.3327%" y="1023.50"></text></g><g><title>gdbus (55 samples, 0.23%)</title><rect x="51.9176%" y="1029" width="0.2271%" height="15" fill="rgb(253,228,2)" fg:x="12576" fg:w="55"/><text x="52.1676%" y="1039.50"></text></g><g><title>__poll (11 samples, 0.05%)</title><rect x="52.1447%" y="917" width="0.0454%" height="15" fill="rgb(235,138,27)" fg:x="12631" fg:w="11"/><text x="52.3947%" y="927.50"></text></g><g><title>[libc.so.6] (12 samples, 0.05%)</title><rect x="52.1447%" y="1013" width="0.0495%" height="15" fill="rgb(236,97,51)" fg:x="12631" fg:w="12"/><text x="52.3947%" y="1023.50"></text></g><g><title>[libc.so.6] (12 samples, 0.05%)</title><rect x="52.1447%" y="997" width="0.0495%" height="15" fill="rgb(240,80,30)" fg:x="12631" fg:w="12"/><text x="52.3947%" y="1007.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (12 samples, 0.05%)</title><rect x="52.1447%" y="981" width="0.0495%" height="15" fill="rgb(230,178,19)" fg:x="12631" fg:w="12"/><text x="52.3947%" y="991.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (12 samples, 0.05%)</title><rect x="52.1447%" y="965" width="0.0495%" height="15" fill="rgb(210,190,27)" fg:x="12631" fg:w="12"/><text x="52.3947%" y="975.50"></text></g><g><title>g_main_context_iteration (12 samples, 0.05%)</title><rect x="52.1447%" y="949" width="0.0495%" height="15" fill="rgb(222,107,31)" fg:x="12631" fg:w="12"/><text x="52.3947%" y="959.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (12 samples, 0.05%)</title><rect x="52.1447%" y="933" width="0.0495%" height="15" fill="rgb(216,127,34)" fg:x="12631" fg:w="12"/><text x="52.3947%" y="943.50"></text></g><g><title>gmain (13 samples, 0.05%)</title><rect x="52.1447%" y="1029" width="0.0537%" height="15" fill="rgb(234,116,52)" fg:x="12631" fg:w="13"/><text x="52.3947%" y="1039.50"></text></g><g><title>[anon] (5 samples, 0.02%)</title><rect x="52.1983%" y="1013" width="0.0206%" height="15" fill="rgb(222,124,15)" fg:x="12644" fg:w="5"/><text x="52.4483%" y="1023.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="52.1983%" y="997" width="0.0206%" height="15" fill="rgb(231,179,28)" fg:x="12644" fg:w="5"/><text x="52.4483%" y="1007.50"></text></g><g><title>g_main_loop_run (6 samples, 0.02%)</title><rect x="52.2272%" y="853" width="0.0248%" height="15" fill="rgb(226,93,45)" fg:x="12651" fg:w="6"/><text x="52.4772%" y="863.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="52.2272%" y="837" width="0.0248%" height="15" fill="rgb(215,8,51)" fg:x="12651" fg:w="6"/><text x="52.4772%" y="847.50"></text></g><g><title>__poll (6 samples, 0.02%)</title><rect x="52.2272%" y="821" width="0.0248%" height="15" fill="rgb(223,106,5)" fg:x="12651" fg:w="6"/><text x="52.4772%" y="831.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (8 samples, 0.03%)</title><rect x="52.2231%" y="949" width="0.0330%" height="15" fill="rgb(250,191,5)" fg:x="12650" fg:w="8"/><text x="52.4731%" y="959.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (8 samples, 0.03%)</title><rect x="52.2231%" y="933" width="0.0330%" height="15" fill="rgb(242,132,44)" fg:x="12650" fg:w="8"/><text x="52.4731%" y="943.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (8 samples, 0.03%)</title><rect x="52.2231%" y="917" width="0.0330%" height="15" fill="rgb(251,152,29)" fg:x="12650" fg:w="8"/><text x="52.4731%" y="927.50"></text></g><g><title>g_dbus_connection_call_sync (7 samples, 0.03%)</title><rect x="52.2272%" y="901" width="0.0289%" height="15" fill="rgb(218,179,5)" fg:x="12651" fg:w="7"/><text x="52.4772%" y="911.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="52.2272%" y="885" width="0.0289%" height="15" fill="rgb(227,67,19)" fg:x="12651" fg:w="7"/><text x="52.4772%" y="895.50"></text></g><g><title>g_dbus_connection_send_message_with_reply_sync (7 samples, 0.03%)</title><rect x="52.2272%" y="869" width="0.0289%" height="15" fill="rgb(233,119,31)" fg:x="12651" fg:w="7"/><text x="52.4772%" y="879.50"></text></g><g><title>pool-WebKitWebP (15 samples, 0.06%)</title><rect x="52.1983%" y="1029" width="0.0619%" height="15" fill="rgb(241,120,22)" fg:x="12644" fg:w="15"/><text x="52.4483%" y="1039.50"></text></g><g><title>[libc.so.6] (10 samples, 0.04%)</title><rect x="52.2190%" y="1013" width="0.0413%" height="15" fill="rgb(224,102,30)" fg:x="12649" fg:w="10"/><text x="52.4690%" y="1023.50"></text></g><g><title>[libc.so.6] (10 samples, 0.04%)</title><rect x="52.2190%" y="997" width="0.0413%" height="15" fill="rgb(210,164,37)" fg:x="12649" fg:w="10"/><text x="52.4690%" y="1007.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (9 samples, 0.04%)</title><rect x="52.2231%" y="981" width="0.0372%" height="15" fill="rgb(226,191,16)" fg:x="12650" fg:w="9"/><text x="52.4731%" y="991.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (9 samples, 0.04%)</title><rect x="52.2231%" y="965" width="0.0372%" height="15" fill="rgb(214,40,45)" fg:x="12650" fg:w="9"/><text x="52.4731%" y="975.50"></text></g><g><title>[anon] (5 samples, 0.02%)</title><rect x="52.2602%" y="1013" width="0.0206%" height="15" fill="rgb(244,29,26)" fg:x="12659" fg:w="5"/><text x="52.5102%" y="1023.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="52.2602%" y="997" width="0.0206%" height="15" fill="rgb(216,16,5)" fg:x="12659" fg:w="5"/><text x="52.5102%" y="1007.50"></text></g><g><title>pool-spawner (8 samples, 0.03%)</title><rect x="52.2602%" y="1029" width="0.0330%" height="15" fill="rgb(249,76,35)" fg:x="12659" fg:w="8"/><text x="52.5102%" y="1039.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="52.2809%" y="1013" width="0.0124%" height="15" fill="rgb(207,11,44)" fg:x="12664" fg:w="3"/><text x="52.5309%" y="1023.50"></text></g><g><title>__poll (5 samples, 0.02%)</title><rect x="52.3015%" y="821" width="0.0206%" height="15" fill="rgb(228,190,49)" fg:x="12669" fg:w="5"/><text x="52.5515%" y="831.50"></text></g><g><title>pool-zenity (8 samples, 0.03%)</title><rect x="52.2933%" y="1029" width="0.0330%" height="15" fill="rgb(214,173,12)" fg:x="12667" fg:w="8"/><text x="52.5433%" y="1039.50"></text></g><g><title>[libc.so.6] (8 samples, 0.03%)</title><rect x="52.2933%" y="1013" width="0.0330%" height="15" fill="rgb(218,26,35)" fg:x="12667" fg:w="8"/><text x="52.5433%" y="1023.50"></text></g><g><title>[libc.so.6] (8 samples, 0.03%)</title><rect x="52.2933%" y="997" width="0.0330%" height="15" fill="rgb(220,200,19)" fg:x="12667" fg:w="8"/><text x="52.5433%" y="1007.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="52.2974%" y="981" width="0.0289%" height="15" fill="rgb(239,95,49)" fg:x="12668" fg:w="7"/><text x="52.5474%" y="991.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="52.2974%" y="965" width="0.0289%" height="15" fill="rgb(235,85,53)" fg:x="12668" fg:w="7"/><text x="52.5474%" y="975.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="52.2974%" y="949" width="0.0289%" height="15" fill="rgb(233,133,31)" fg:x="12668" fg:w="7"/><text x="52.5474%" y="959.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="52.2974%" y="933" width="0.0289%" height="15" fill="rgb(218,25,20)" fg:x="12668" fg:w="7"/><text x="52.5474%" y="943.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="52.2974%" y="917" width="0.0289%" height="15" fill="rgb(252,210,38)" fg:x="12668" fg:w="7"/><text x="52.5474%" y="927.50"></text></g><g><title>g_dbus_connection_call_sync (6 samples, 0.02%)</title><rect x="52.3015%" y="901" width="0.0248%" height="15" fill="rgb(242,134,21)" fg:x="12669" fg:w="6"/><text x="52.5515%" y="911.50"></text></g><g><title>[libgio-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="52.3015%" y="885" width="0.0248%" height="15" fill="rgb(213,28,48)" fg:x="12669" fg:w="6"/><text x="52.5515%" y="895.50"></text></g><g><title>g_dbus_connection_send_message_with_reply_sync (6 samples, 0.02%)</title><rect x="52.3015%" y="869" width="0.0248%" height="15" fill="rgb(250,196,2)" fg:x="12669" fg:w="6"/><text x="52.5515%" y="879.50"></text></g><g><title>g_main_loop_run (6 samples, 0.02%)</title><rect x="52.3015%" y="853" width="0.0248%" height="15" fill="rgb(227,5,17)" fg:x="12669" fg:w="6"/><text x="52.5515%" y="863.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="52.3015%" y="837" width="0.0248%" height="15" fill="rgb(221,226,24)" fg:x="12669" fg:w="6"/><text x="52.5515%" y="847.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="52.3387%" y="997" width="0.0330%" height="15" fill="rgb(211,5,48)" fg:x="12678" fg:w="8"/><text x="52.5887%" y="1007.50"></text></g><g><title>[libc.so.6] (76 samples, 0.31%)</title><rect x="52.3882%" y="997" width="0.3138%" height="15" fill="rgb(219,150,6)" fg:x="12690" fg:w="76"/><text x="52.6382%" y="1007.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="52.7020%" y="997" width="0.0124%" height="15" fill="rgb(251,46,16)" fg:x="12766" fg:w="3"/><text x="52.9520%" y="1007.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="52.7185%" y="997" width="0.0248%" height="15" fill="rgb(220,204,40)" fg:x="12770" fg:w="6"/><text x="52.9685%" y="1007.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="52.7515%" y="997" width="0.0124%" height="15" fill="rgb(211,85,2)" fg:x="12778" fg:w="3"/><text x="53.0015%" y="1007.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="52.7639%" y="997" width="0.0330%" height="15" fill="rgb(229,17,7)" fg:x="12781" fg:w="8"/><text x="53.0139%" y="1007.50"></text></g><g><title>[libwayland-client.so.0.22.0] (3 samples, 0.01%)</title><rect x="52.8052%" y="997" width="0.0124%" height="15" fill="rgb(239,72,28)" fg:x="12791" fg:w="3"/><text x="53.0552%" y="1007.50"></text></g><g><title>[[heap]] (136 samples, 0.56%)</title><rect x="52.3346%" y="1013" width="0.5614%" height="15" fill="rgb(230,47,54)" fg:x="12677" fg:w="136"/><text x="52.5846%" y="1023.50"></text></g><g><title>[libWPEBackend-fdo-1.0.so.1.9.4] (3 samples, 0.01%)</title><rect x="53.0405%" y="997" width="0.0124%" height="15" fill="rgb(214,50,8)" fg:x="12848" fg:w="3"/><text x="53.2905%" y="1007.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="53.0611%" y="997" width="0.0124%" height="15" fill="rgb(216,198,43)" fg:x="12853" fg:w="3"/><text x="53.3111%" y="1007.50"></text></g><g><title>[[stack]] (52 samples, 0.21%)</title><rect x="52.8960%" y="1013" width="0.2147%" height="15" fill="rgb(234,20,35)" fg:x="12813" fg:w="52"/><text x="53.1460%" y="1023.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="53.1313%" y="997" width="0.0124%" height="15" fill="rgb(254,45,19)" fg:x="12870" fg:w="3"/><text x="53.3813%" y="1007.50"></text></g><g><title>[anon] (13 samples, 0.05%)</title><rect x="53.1107%" y="1013" width="0.0537%" height="15" fill="rgb(219,14,44)" fg:x="12865" fg:w="13"/><text x="53.3607%" y="1023.50"></text></g><g><title>[anon_inode:i915.gem] (7 samples, 0.03%)</title><rect x="53.1643%" y="1013" width="0.0289%" height="15" fill="rgb(217,220,26)" fg:x="12878" fg:w="7"/><text x="53.4143%" y="1023.50"></text></g><g><title>[crocus_dri.so] (7 samples, 0.03%)</title><rect x="53.1643%" y="997" width="0.0289%" height="15" fill="rgb(213,158,28)" fg:x="12878" fg:w="7"/><text x="53.4143%" y="1007.50"></text></g><g><title>[ld-linux-x86-64.so.2] (27 samples, 0.11%)</title><rect x="53.2510%" y="933" width="0.1115%" height="15" fill="rgb(252,51,52)" fg:x="12899" fg:w="27"/><text x="53.5010%" y="943.50"></text></g><g><title>[ld-linux-x86-64.so.2] (27 samples, 0.11%)</title><rect x="53.2510%" y="917" width="0.1115%" height="15" fill="rgb(246,89,16)" fg:x="12899" fg:w="27"/><text x="53.5010%" y="927.50"></text></g><g><title>[ld-linux-x86-64.so.2] (6 samples, 0.02%)</title><rect x="53.3377%" y="901" width="0.0248%" height="15" fill="rgb(216,158,49)" fg:x="12920" fg:w="6"/><text x="53.5877%" y="911.50"></text></g><g><title>[ld-linux-x86-64.so.2] (4 samples, 0.02%)</title><rect x="53.3460%" y="885" width="0.0165%" height="15" fill="rgb(236,107,19)" fg:x="12922" fg:w="4"/><text x="53.5960%" y="895.50"></text></g><g><title>[ld-linux-x86-64.so.2] (42 samples, 0.17%)</title><rect x="53.2015%" y="1013" width="0.1734%" height="15" fill="rgb(228,185,30)" fg:x="12887" fg:w="42"/><text x="53.4515%" y="1023.50"></text></g><g><title>[ld-linux-x86-64.so.2] (37 samples, 0.15%)</title><rect x="53.2221%" y="997" width="0.1527%" height="15" fill="rgb(246,134,8)" fg:x="12892" fg:w="37"/><text x="53.4721%" y="1007.50"></text></g><g><title>[ld-linux-x86-64.so.2] (36 samples, 0.15%)</title><rect x="53.2263%" y="981" width="0.1486%" height="15" fill="rgb(214,143,50)" fg:x="12893" fg:w="36"/><text x="53.4763%" y="991.50"></text></g><g><title>[ld-linux-x86-64.so.2] (36 samples, 0.15%)</title><rect x="53.2263%" y="965" width="0.1486%" height="15" fill="rgb(228,75,8)" fg:x="12893" fg:w="36"/><text x="53.4763%" y="975.50"></text></g><g><title>[ld-linux-x86-64.so.2] (36 samples, 0.15%)</title><rect x="53.2263%" y="949" width="0.1486%" height="15" fill="rgb(207,175,4)" fg:x="12893" fg:w="36"/><text x="53.4763%" y="959.50"></text></g><g><title>_dl_catch_exception (3 samples, 0.01%)</title><rect x="53.3625%" y="933" width="0.0124%" height="15" fill="rgb(205,108,24)" fg:x="12926" fg:w="3"/><text x="53.6125%" y="943.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="53.3625%" y="917" width="0.0124%" height="15" fill="rgb(244,120,49)" fg:x="12926" fg:w="3"/><text x="53.6125%" y="927.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="53.3625%" y="901" width="0.0124%" height="15" fill="rgb(223,47,38)" fg:x="12926" fg:w="3"/><text x="53.6125%" y="911.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="53.3625%" y="885" width="0.0124%" height="15" fill="rgb(229,179,11)" fg:x="12926" fg:w="3"/><text x="53.6125%" y="895.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="53.3625%" y="869" width="0.0124%" height="15" fill="rgb(231,122,1)" fg:x="12926" fg:w="3"/><text x="53.6125%" y="879.50"></text></g><g><title><alloc::vec::Vec<T,A> as core::clone::Clone>::clone (7 samples, 0.03%)</title><rect x="53.4327%" y="949" width="0.0289%" height="15" fill="rgb(245,119,9)" fg:x="12943" fg:w="7"/><text x="53.6827%" y="959.50"></text></g><g><title>alloc::slice::<impl [T]>::to_vec_in (7 samples, 0.03%)</title><rect x="53.4327%" y="933" width="0.0289%" height="15" fill="rgb(241,163,25)" fg:x="12943" fg:w="7"/><text x="53.6827%" y="943.50"></text></g><g><title>alloc::slice::hack::to_vec (7 samples, 0.03%)</title><rect x="53.4327%" y="917" width="0.0289%" height="15" fill="rgb(217,214,3)" fg:x="12943" fg:w="7"/><text x="53.6827%" y="927.50"></text></g><g><title><T as alloc::slice::hack::ConvertVec>::to_vec (7 samples, 0.03%)</title><rect x="53.4327%" y="901" width="0.0289%" height="15" fill="rgb(240,86,28)" fg:x="12943" fg:w="7"/><text x="53.6827%" y="911.50"></text></g><g><title>core::ptr::const_ptr::<impl *const T>::copy_to_nonoverlapping (7 samples, 0.03%)</title><rect x="53.4327%" y="885" width="0.0289%" height="15" fill="rgb(215,47,9)" fg:x="12943" fg:w="7"/><text x="53.6827%" y="895.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (7 samples, 0.03%)</title><rect x="53.4327%" y="869" width="0.0289%" height="15" fill="rgb(252,25,45)" fg:x="12943" fg:w="7"/><text x="53.6827%" y="879.50"></text></g><g><title>[libc.so.6] (7 samples, 0.03%)</title><rect x="53.4327%" y="853" width="0.0289%" height="15" fill="rgb(251,164,9)" fg:x="12943" fg:w="7"/><text x="53.6827%" y="863.50"></text></g><g><title>epoll_wait (10 samples, 0.04%)</title><rect x="53.4616%" y="949" width="0.0413%" height="15" fill="rgb(233,194,0)" fg:x="12950" fg:w="10"/><text x="53.7116%" y="959.50"></text></g><g><title><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once (21 samples, 0.09%)</title><rect x="53.4327%" y="981" width="0.0867%" height="15" fill="rgb(249,111,24)" fg:x="12943" fg:w="21"/><text x="53.6827%" y="991.50"></text></g><g><title><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once (21 samples, 0.09%)</title><rect x="53.4327%" y="965" width="0.0867%" height="15" fill="rgb(250,223,3)" fg:x="12943" fg:w="21"/><text x="53.6827%" y="975.50"></text></g><g><title>std::sys_common::net::TcpStream::write_vectored (3 samples, 0.01%)</title><rect x="53.5070%" y="949" width="0.0124%" height="15" fill="rgb(236,178,37)" fg:x="12961" fg:w="3"/><text x="53.7570%" y="959.50"></text></g><g><title>std::sys::unix::net::Socket::write_vectored (3 samples, 0.01%)</title><rect x="53.5070%" y="933" width="0.0124%" height="15" fill="rgb(241,158,50)" fg:x="12961" fg:w="3"/><text x="53.7570%" y="943.50"></text></g><g><title>std::sys::unix::fd::FileDesc::write_vectored (3 samples, 0.01%)</title><rect x="53.5070%" y="917" width="0.0124%" height="15" fill="rgb(213,121,41)" fg:x="12961" fg:w="3"/><text x="53.7570%" y="927.50"></text></g><g><title>writev (3 samples, 0.01%)</title><rect x="53.5070%" y="901" width="0.0124%" height="15" fill="rgb(240,92,3)" fg:x="12961" fg:w="3"/><text x="53.7570%" y="911.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="53.5194%" y="981" width="0.0124%" height="15" fill="rgb(205,123,3)" fg:x="12964" fg:w="3"/><text x="53.7694%" y="991.50"></text></g><g><title>cfree (3 samples, 0.01%)</title><rect x="53.5194%" y="965" width="0.0124%" height="15" fill="rgb(205,97,47)" fg:x="12964" fg:w="3"/><text x="53.7694%" y="975.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="53.5194%" y="949" width="0.0124%" height="15" fill="rgb(247,152,14)" fg:x="12964" fg:w="3"/><text x="53.7694%" y="959.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="53.5194%" y="933" width="0.0124%" height="15" fill="rgb(248,195,53)" fg:x="12964" fg:w="3"/><text x="53.7694%" y="943.50"></text></g><g><title>[libpangoft2-1.0.so.0.5000.14] (5 samples, 0.02%)</title><rect x="53.5318%" y="965" width="0.0206%" height="15" fill="rgb(226,201,16)" fg:x="12967" fg:w="5"/><text x="53.7818%" y="975.50"></text></g><g><title>FcFontSetSort (3 samples, 0.01%)</title><rect x="53.5400%" y="949" width="0.0124%" height="15" fill="rgb(205,98,0)" fg:x="12969" fg:w="3"/><text x="53.7900%" y="959.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (7 samples, 0.03%)</title><rect x="53.5318%" y="981" width="0.0289%" height="15" fill="rgb(214,191,48)" fg:x="12967" fg:w="7"/><text x="53.7818%" y="991.50"></text></g><g><title>pas_thread_local_cache_for_all (3 samples, 0.01%)</title><rect x="53.5731%" y="965" width="0.0124%" height="15" fill="rgb(237,112,39)" fg:x="12977" fg:w="3"/><text x="53.8231%" y="975.50"></text></g><g><title>[libc.so.6] (66 samples, 0.27%)</title><rect x="53.3873%" y="1013" width="0.2725%" height="15" fill="rgb(247,203,27)" fg:x="12932" fg:w="66"/><text x="53.6373%" y="1023.50"></text></g><g><title>[libc.so.6] (59 samples, 0.24%)</title><rect x="53.4162%" y="997" width="0.2436%" height="15" fill="rgb(235,124,28)" fg:x="12939" fg:w="59"/><text x="53.6662%" y="1007.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (24 samples, 0.10%)</title><rect x="53.5607%" y="981" width="0.0991%" height="15" fill="rgb(208,207,46)" fg:x="12974" fg:w="24"/><text x="53.8107%" y="991.50"></text></g><g><title>pthread_cond_timedwait (17 samples, 0.07%)</title><rect x="53.5896%" y="965" width="0.0702%" height="15" fill="rgb(234,176,4)" fg:x="12981" fg:w="17"/><text x="53.8396%" y="975.50"></text></g><g><title>[libc.so.6] (17 samples, 0.07%)</title><rect x="53.5896%" y="949" width="0.0702%" height="15" fill="rgb(230,133,28)" fg:x="12981" fg:w="17"/><text x="53.8396%" y="959.50"></text></g><g><title>[libglapi.so.0.0.0] (7 samples, 0.03%)</title><rect x="53.6763%" y="1013" width="0.0289%" height="15" fill="rgb(211,137,40)" fg:x="13002" fg:w="7"/><text x="53.9263%" y="1023.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (4 samples, 0.02%)</title><rect x="53.7052%" y="1013" width="0.0165%" height="15" fill="rgb(254,35,13)" fg:x="13009" fg:w="4"/><text x="53.9552%" y="1023.50"></text></g><g><title>[crocus_dri.so] (23 samples, 0.09%)</title><rect x="62.7627%" y="997" width="0.0950%" height="15" fill="rgb(225,49,51)" fg:x="15203" fg:w="23"/><text x="63.0127%" y="1007.50"></text></g><g><title>[libc.so.6] (42 samples, 0.17%)</title><rect x="62.8700%" y="997" width="0.1734%" height="15" fill="rgb(251,10,15)" fg:x="15229" fg:w="42"/><text x="63.1200%" y="1007.50"></text></g><g><title>[libglapi.so.0.0.0] (5 samples, 0.02%)</title><rect x="63.0682%" y="997" width="0.0206%" height="15" fill="rgb(228,207,15)" fg:x="15277" fg:w="5"/><text x="63.3182%" y="1007.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="63.0888%" y="997" width="0.0124%" height="15" fill="rgb(241,99,19)" fg:x="15282" fg:w="3"/><text x="63.3388%" y="1007.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="63.1053%" y="997" width="0.0330%" height="15" fill="rgb(207,104,49)" fg:x="15286" fg:w="8"/><text x="63.3553%" y="1007.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="981" width="0.0206%" height="15" fill="rgb(234,99,18)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="991.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="965" width="0.0206%" height="15" fill="rgb(213,191,49)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="975.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="949" width="0.0206%" height="15" fill="rgb(210,226,19)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="959.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="933" width="0.0206%" height="15" fill="rgb(229,97,18)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="943.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="917" width="0.0206%" height="15" fill="rgb(211,167,15)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="927.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="901" width="0.0206%" height="15" fill="rgb(210,169,34)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="911.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="885" width="0.0206%" height="15" fill="rgb(241,121,31)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="895.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="869" width="0.0206%" height="15" fill="rgb(232,40,11)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="879.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="853" width="0.0206%" height="15" fill="rgb(205,86,26)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="863.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="837" width="0.0206%" height="15" fill="rgb(231,126,28)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="847.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="821" width="0.0206%" height="15" fill="rgb(219,221,18)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="831.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="805" width="0.0206%" height="15" fill="rgb(211,40,0)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="815.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="789" width="0.0206%" height="15" fill="rgb(239,85,43)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="799.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="773" width="0.0206%" height="15" fill="rgb(231,55,21)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="783.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="757" width="0.0206%" height="15" fill="rgb(225,184,43)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="767.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="741" width="0.0206%" height="15" fill="rgb(251,158,41)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="751.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="725" width="0.0206%" height="15" fill="rgb(234,159,37)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="735.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="709" width="0.0206%" height="15" fill="rgb(216,204,22)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="719.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="693" width="0.0206%" height="15" fill="rgb(214,17,3)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="677" width="0.0206%" height="15" fill="rgb(212,111,17)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="661" width="0.0206%" height="15" fill="rgb(221,157,24)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="645" width="0.0206%" height="15" fill="rgb(252,16,13)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="629" width="0.0206%" height="15" fill="rgb(221,62,2)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="613" width="0.0206%" height="15" fill="rgb(247,87,22)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="597" width="0.0206%" height="15" fill="rgb(215,73,9)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="581" width="0.0206%" height="15" fill="rgb(207,175,33)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="565" width="0.0206%" height="15" fill="rgb(243,129,54)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="549" width="0.0206%" height="15" fill="rgb(227,119,45)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="533" width="0.0206%" height="15" fill="rgb(205,109,36)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="517" width="0.0206%" height="15" fill="rgb(205,6,39)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="501" width="0.0206%" height="15" fill="rgb(221,32,16)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="485" width="0.0206%" height="15" fill="rgb(228,144,50)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="469" width="0.0206%" height="15" fill="rgb(229,201,53)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="453" width="0.0206%" height="15" fill="rgb(249,153,27)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="437" width="0.0206%" height="15" fill="rgb(227,106,25)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="421" width="0.0206%" height="15" fill="rgb(230,65,29)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="405" width="0.0206%" height="15" fill="rgb(221,57,46)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="389" width="0.0206%" height="15" fill="rgb(229,161,17)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="373" width="0.0206%" height="15" fill="rgb(222,213,11)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="357" width="0.0206%" height="15" fill="rgb(235,35,13)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="341" width="0.0206%" height="15" fill="rgb(233,158,34)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="325" width="0.0206%" height="15" fill="rgb(215,151,48)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="309" width="0.0206%" height="15" fill="rgb(229,84,14)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="293" width="0.0206%" height="15" fill="rgb(229,68,14)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="277" width="0.0206%" height="15" fill="rgb(243,106,26)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="287.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="261" width="0.0206%" height="15" fill="rgb(206,45,38)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="245" width="0.0206%" height="15" fill="rgb(226,6,15)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="255.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="229" width="0.0206%" height="15" fill="rgb(232,22,54)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="239.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="213" width="0.0206%" height="15" fill="rgb(229,222,32)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="223.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="197" width="0.0206%" height="15" fill="rgb(228,62,29)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="207.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="181" width="0.0206%" height="15" fill="rgb(251,103,34)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="191.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="165" width="0.0206%" height="15" fill="rgb(233,12,30)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="175.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="149" width="0.0206%" height="15" fill="rgb(238,52,0)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="159.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="133" width="0.0206%" height="15" fill="rgb(223,98,5)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="143.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="117" width="0.0206%" height="15" fill="rgb(228,75,37)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="127.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="101" width="0.0206%" height="15" fill="rgb(205,115,49)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="111.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="85" width="0.0206%" height="15" fill="rgb(250,154,43)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="95.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="69" width="0.0206%" height="15" fill="rgb(226,43,29)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="79.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.1177%" y="53" width="0.0206%" height="15" fill="rgb(249,228,39)" fg:x="15289" fg:w="5"/><text x="63.3677%" y="63.50"></text></g><g><title>cfree (3 samples, 0.01%)</title><rect x="63.1631%" y="997" width="0.0124%" height="15" fill="rgb(216,79,43)" fg:x="15300" fg:w="3"/><text x="63.4131%" y="1007.50"></text></g><g><title>[ld-linux-x86-64.so.2] (25 samples, 0.10%)</title><rect x="63.2250%" y="581" width="0.1032%" height="15" fill="rgb(228,95,12)" fg:x="15315" fg:w="25"/><text x="63.4750%" y="591.50"></text></g><g><title>[ld-linux-x86-64.so.2] (22 samples, 0.09%)</title><rect x="63.2374%" y="565" width="0.0908%" height="15" fill="rgb(249,221,15)" fg:x="15318" fg:w="22"/><text x="63.4874%" y="575.50"></text></g><g><title>dlopen (33 samples, 0.14%)</title><rect x="63.2003%" y="757" width="0.1362%" height="15" fill="rgb(233,34,13)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="767.50"></text></g><g><title>[libc.so.6] (33 samples, 0.14%)</title><rect x="63.2003%" y="741" width="0.1362%" height="15" fill="rgb(214,103,39)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="751.50"></text></g><g><title>[ld-linux-x86-64.so.2] (33 samples, 0.14%)</title><rect x="63.2003%" y="725" width="0.1362%" height="15" fill="rgb(251,126,39)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="735.50"></text></g><g><title>_dl_catch_exception (33 samples, 0.14%)</title><rect x="63.2003%" y="709" width="0.1362%" height="15" fill="rgb(214,216,36)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="719.50"></text></g><g><title>[libc.so.6] (33 samples, 0.14%)</title><rect x="63.2003%" y="693" width="0.1362%" height="15" fill="rgb(220,221,8)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="703.50"></text></g><g><title>[ld-linux-x86-64.so.2] (33 samples, 0.14%)</title><rect x="63.2003%" y="677" width="0.1362%" height="15" fill="rgb(240,216,3)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="687.50"></text></g><g><title>_dl_catch_exception (33 samples, 0.14%)</title><rect x="63.2003%" y="661" width="0.1362%" height="15" fill="rgb(232,218,17)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="671.50"></text></g><g><title>[ld-linux-x86-64.so.2] (33 samples, 0.14%)</title><rect x="63.2003%" y="645" width="0.1362%" height="15" fill="rgb(229,163,45)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="655.50"></text></g><g><title>_dl_catch_exception (33 samples, 0.14%)</title><rect x="63.2003%" y="629" width="0.1362%" height="15" fill="rgb(231,110,42)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="639.50"></text></g><g><title>[ld-linux-x86-64.so.2] (33 samples, 0.14%)</title><rect x="63.2003%" y="613" width="0.1362%" height="15" fill="rgb(208,170,48)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="623.50"></text></g><g><title>[ld-linux-x86-64.so.2] (33 samples, 0.14%)</title><rect x="63.2003%" y="597" width="0.1362%" height="15" fill="rgb(239,116,25)" fg:x="15309" fg:w="33"/><text x="63.4503%" y="607.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (36 samples, 0.15%)</title><rect x="63.1920%" y="821" width="0.1486%" height="15" fill="rgb(219,200,50)" fg:x="15307" fg:w="36"/><text x="63.4420%" y="831.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (36 samples, 0.15%)</title><rect x="63.1920%" y="805" width="0.1486%" height="15" fill="rgb(245,200,0)" fg:x="15307" fg:w="36"/><text x="63.4420%" y="815.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (36 samples, 0.15%)</title><rect x="63.1920%" y="789" width="0.1486%" height="15" fill="rgb(245,119,33)" fg:x="15307" fg:w="36"/><text x="63.4420%" y="799.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (34 samples, 0.14%)</title><rect x="63.2003%" y="773" width="0.1404%" height="15" fill="rgb(231,125,12)" fg:x="15309" fg:w="34"/><text x="63.4503%" y="783.50"></text></g><g><title>g_object_new_with_properties (37 samples, 0.15%)</title><rect x="63.1920%" y="997" width="0.1527%" height="15" fill="rgb(216,96,41)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="1007.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (37 samples, 0.15%)</title><rect x="63.1920%" y="981" width="0.1527%" height="15" fill="rgb(248,43,45)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="991.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (37 samples, 0.15%)</title><rect x="63.1920%" y="965" width="0.1527%" height="15" fill="rgb(217,222,7)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="975.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (37 samples, 0.15%)</title><rect x="63.1920%" y="949" width="0.1527%" height="15" fill="rgb(233,28,6)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="959.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (37 samples, 0.15%)</title><rect x="63.1920%" y="933" width="0.1527%" height="15" fill="rgb(231,218,15)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="943.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (37 samples, 0.15%)</title><rect x="63.1920%" y="917" width="0.1527%" height="15" fill="rgb(226,171,48)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="927.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (37 samples, 0.15%)</title><rect x="63.1920%" y="901" width="0.1527%" height="15" fill="rgb(235,201,9)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="911.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (37 samples, 0.15%)</title><rect x="63.1920%" y="885" width="0.1527%" height="15" fill="rgb(217,80,15)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="895.50"></text></g><g><title>[libc.so.6] (37 samples, 0.15%)</title><rect x="63.1920%" y="869" width="0.1527%" height="15" fill="rgb(219,152,8)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="879.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (37 samples, 0.15%)</title><rect x="63.1920%" y="853" width="0.1527%" height="15" fill="rgb(243,107,38)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="863.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (37 samples, 0.15%)</title><rect x="63.1920%" y="837" width="0.1527%" height="15" fill="rgb(231,17,5)" fg:x="15307" fg:w="37"/><text x="63.4420%" y="847.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="773" width="0.0124%" height="15" fill="rgb(209,25,54)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="783.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="757" width="0.0124%" height="15" fill="rgb(219,0,2)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="767.50"></text></g><g><title>g_signal_emit (3 samples, 0.01%)</title><rect x="63.3571%" y="741" width="0.0124%" height="15" fill="rgb(246,9,5)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="751.50"></text></g><g><title>g_signal_emit_valist (3 samples, 0.01%)</title><rect x="63.3571%" y="725" width="0.0124%" height="15" fill="rgb(226,159,4)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="735.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="63.3571%" y="709" width="0.0124%" height="15" fill="rgb(219,175,34)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="719.50"></text></g><g><title>g_closure_invoke (3 samples, 0.01%)</title><rect x="63.3571%" y="693" width="0.0124%" height="15" fill="rgb(236,10,46)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="677" width="0.0124%" height="15" fill="rgb(240,211,16)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="661" width="0.0124%" height="15" fill="rgb(205,3,43)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="645" width="0.0124%" height="15" fill="rgb(245,7,22)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="655.50"></text></g><g><title>gtk_container_propagate_draw (3 samples, 0.01%)</title><rect x="63.3571%" y="629" width="0.0124%" height="15" fill="rgb(239,132,32)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="613" width="0.0124%" height="15" fill="rgb(228,202,34)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="597" width="0.0124%" height="15" fill="rgb(254,200,22)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="581" width="0.0124%" height="15" fill="rgb(219,10,39)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="565" width="0.0124%" height="15" fill="rgb(226,210,39)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="549" width="0.0124%" height="15" fill="rgb(208,219,16)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="533" width="0.0124%" height="15" fill="rgb(216,158,51)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="543.50"></text></g><g><title>gtk_container_propagate_draw (3 samples, 0.01%)</title><rect x="63.3571%" y="517" width="0.0124%" height="15" fill="rgb(233,14,44)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="501" width="0.0124%" height="15" fill="rgb(237,97,39)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="485" width="0.0124%" height="15" fill="rgb(218,198,43)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="469" width="0.0124%" height="15" fill="rgb(231,104,20)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="453" width="0.0124%" height="15" fill="rgb(254,36,13)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="437" width="0.0124%" height="15" fill="rgb(248,14,50)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="421" width="0.0124%" height="15" fill="rgb(217,107,29)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="431.50"></text></g><g><title>gtk_container_propagate_draw (3 samples, 0.01%)</title><rect x="63.3571%" y="405" width="0.0124%" height="15" fill="rgb(251,169,33)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="389" width="0.0124%" height="15" fill="rgb(217,108,32)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="373" width="0.0124%" height="15" fill="rgb(219,66,42)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="357" width="0.0124%" height="15" fill="rgb(206,180,7)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="63.3571%" y="341" width="0.0124%" height="15" fill="rgb(208,226,31)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="351.50"></text></g><g><title>cairo_fill (3 samples, 0.01%)</title><rect x="63.3571%" y="325" width="0.0124%" height="15" fill="rgb(218,26,49)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="335.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="63.3571%" y="309" width="0.0124%" height="15" fill="rgb(233,197,48)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="319.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="63.3571%" y="293" width="0.0124%" height="15" fill="rgb(252,181,51)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="303.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="63.3571%" y="277" width="0.0124%" height="15" fill="rgb(253,90,19)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="287.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="63.3571%" y="261" width="0.0124%" height="15" fill="rgb(215,171,30)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="271.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="63.3571%" y="245" width="0.0124%" height="15" fill="rgb(214,222,9)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="255.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="63.3571%" y="229" width="0.0124%" height="15" fill="rgb(223,3,22)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="239.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="63.3571%" y="213" width="0.0124%" height="15" fill="rgb(225,196,46)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="223.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="63.3571%" y="197" width="0.0124%" height="15" fill="rgb(209,110,37)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="207.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="63.3571%" y="181" width="0.0124%" height="15" fill="rgb(249,89,12)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="191.50"></text></g><g><title>pixman_image_composite32 (3 samples, 0.01%)</title><rect x="63.3571%" y="165" width="0.0124%" height="15" fill="rgb(226,27,33)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="175.50"></text></g><g><title>[libpixman-1.so.0.42.2] (3 samples, 0.01%)</title><rect x="63.3571%" y="149" width="0.0124%" height="15" fill="rgb(213,82,22)" fg:x="15347" fg:w="3"/><text x="63.6071%" y="159.50"></text></g><g><title>gtk_main_iteration_do (5 samples, 0.02%)</title><rect x="63.3571%" y="997" width="0.0206%" height="15" fill="rgb(248,140,0)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="1007.50"></text></g><g><title>g_main_context_iteration (5 samples, 0.02%)</title><rect x="63.3571%" y="981" width="0.0206%" height="15" fill="rgb(228,106,3)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="991.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (5 samples, 0.02%)</title><rect x="63.3571%" y="965" width="0.0206%" height="15" fill="rgb(209,23,37)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="975.50"></text></g><g><title>g_main_context_dispatch (5 samples, 0.02%)</title><rect x="63.3571%" y="949" width="0.0206%" height="15" fill="rgb(241,93,50)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="959.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (5 samples, 0.02%)</title><rect x="63.3571%" y="933" width="0.0206%" height="15" fill="rgb(253,46,43)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="943.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.3571%" y="917" width="0.0206%" height="15" fill="rgb(226,206,43)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="927.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.3571%" y="901" width="0.0206%" height="15" fill="rgb(217,54,7)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="911.50"></text></g><g><title>g_signal_emit (5 samples, 0.02%)</title><rect x="63.3571%" y="885" width="0.0206%" height="15" fill="rgb(223,5,52)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="895.50"></text></g><g><title>g_signal_emit_valist (5 samples, 0.02%)</title><rect x="63.3571%" y="869" width="0.0206%" height="15" fill="rgb(206,52,46)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="879.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.3571%" y="853" width="0.0206%" height="15" fill="rgb(253,136,11)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="863.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.3571%" y="837" width="0.0206%" height="15" fill="rgb(208,106,33)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="847.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.3571%" y="821" width="0.0206%" height="15" fill="rgb(206,54,4)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="831.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="63.3571%" y="805" width="0.0206%" height="15" fill="rgb(213,3,15)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="815.50"></text></g><g><title>gtk_main_do_event (5 samples, 0.02%)</title><rect x="63.3571%" y="789" width="0.0206%" height="15" fill="rgb(252,211,39)" fg:x="15347" fg:w="5"/><text x="63.6071%" y="799.50"></text></g><g><title>[libc.so.6] (24 samples, 0.10%)</title><rect x="65.5286%" y="869" width="0.0991%" height="15" fill="rgb(223,6,36)" fg:x="15873" fg:w="24"/><text x="65.7786%" y="879.50"></text></g><g><title>std::panic::catch_unwind (543 samples, 2.24%)</title><rect x="63.3943%" y="997" width="2.2417%" height="15" fill="rgb(252,169,45)" fg:x="15356" fg:w="543"/><text x="63.6443%" y="1007.50">s..</text></g><g><title>std::panicking::try (543 samples, 2.24%)</title><rect x="63.3943%" y="981" width="2.2417%" height="15" fill="rgb(212,48,26)" fg:x="15356" fg:w="543"/><text x="63.6443%" y="991.50">s..</text></g><g><title>std::panicking::try::do_call (543 samples, 2.24%)</title><rect x="63.3943%" y="965" width="2.2417%" height="15" fill="rgb(251,102,48)" fg:x="15356" fg:w="543"/><text x="63.6443%" y="975.50">s..</text></g><g><title>std::rt::lang_start_internal::{{closure}} (543 samples, 2.24%)</title><rect x="63.3943%" y="949" width="2.2417%" height="15" fill="rgb(243,208,16)" fg:x="15356" fg:w="543"/><text x="63.6443%" y="959.50">s..</text></g><g><title>std::panic::catch_unwind (543 samples, 2.24%)</title><rect x="63.3943%" y="933" width="2.2417%" height="15" fill="rgb(219,96,24)" fg:x="15356" fg:w="543"/><text x="63.6443%" y="943.50">s..</text></g><g><title>std::panicking::try (543 samples, 2.24%)</title><rect x="63.3943%" y="917" width="2.2417%" height="15" fill="rgb(219,33,29)" fg:x="15356" fg:w="543"/><text x="63.6443%" y="927.50">s..</text></g><g><title>std::panicking::try::do_call (543 samples, 2.24%)</title><rect x="63.3943%" y="901" width="2.2417%" height="15" fill="rgb(223,176,5)" fg:x="15356" fg:w="543"/><text x="63.6443%" y="911.50">s..</text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once (543 samples, 2.24%)</title><rect x="63.3943%" y="885" width="2.2417%" height="15" fill="rgb(228,140,14)" fg:x="15356" fg:w="543"/><text x="63.6443%" y="895.50">c..</text></g><g><title>std::sys::unix::fs::File::read_buf (5 samples, 0.02%)</title><rect x="65.6360%" y="997" width="0.0206%" height="15" fill="rgb(217,179,31)" fg:x="15899" fg:w="5"/><text x="65.8860%" y="1007.50"></text></g><g><title>std::sys::unix::fd::FileDesc::read_buf (5 samples, 0.02%)</title><rect x="65.6360%" y="981" width="0.0206%" height="15" fill="rgb(230,9,30)" fg:x="15899" fg:w="5"/><text x="65.8860%" y="991.50"></text></g><g><title>read (5 samples, 0.02%)</title><rect x="65.6360%" y="965" width="0.0206%" height="15" fill="rgb(230,136,20)" fg:x="15899" fg:w="5"/><text x="65.8860%" y="975.50"></text></g><g><title>[unknown] (2,890 samples, 11.93%)</title><rect x="53.7299%" y="1013" width="11.9308%" height="15" fill="rgb(215,210,22)" fg:x="13015" fg:w="2890"/><text x="53.9799%" y="1023.50">[unknown]</text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="65.7309%" y="853" width="0.0206%" height="15" fill="rgb(218,43,5)" fg:x="15922" fg:w="5"/><text x="65.9809%" y="863.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="65.7598%" y="741" width="0.0165%" height="15" fill="rgb(216,11,5)" fg:x="15929" fg:w="4"/><text x="66.0098%" y="751.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="65.7598%" y="725" width="0.0165%" height="15" fill="rgb(209,82,29)" fg:x="15929" fg:w="4"/><text x="66.0098%" y="735.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="65.7598%" y="709" width="0.0165%" height="15" fill="rgb(244,115,12)" fg:x="15929" fg:w="4"/><text x="66.0098%" y="719.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="65.7598%" y="693" width="0.0165%" height="15" fill="rgb(222,82,18)" fg:x="15929" fg:w="4"/><text x="66.0098%" y="703.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="65.7598%" y="677" width="0.0165%" height="15" fill="rgb(249,227,8)" fg:x="15929" fg:w="4"/><text x="66.0098%" y="687.50"></text></g><g><title>cfree (3 samples, 0.01%)</title><rect x="65.7639%" y="661" width="0.0124%" height="15" fill="rgb(253,141,45)" fg:x="15930" fg:w="3"/><text x="66.0139%" y="671.50"></text></g><g><title>exit (6 samples, 0.02%)</title><rect x="65.7557%" y="853" width="0.0248%" height="15" fill="rgb(234,184,4)" fg:x="15928" fg:w="6"/><text x="66.0057%" y="863.50"></text></g><g><title>[libc.so.6] (6 samples, 0.02%)</title><rect x="65.7557%" y="837" width="0.0248%" height="15" fill="rgb(218,194,23)" fg:x="15928" fg:w="6"/><text x="66.0057%" y="847.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5 samples, 0.02%)</title><rect x="65.7598%" y="821" width="0.0206%" height="15" fill="rgb(235,66,41)" fg:x="15929" fg:w="5"/><text x="66.0098%" y="831.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5 samples, 0.02%)</title><rect x="65.7598%" y="805" width="0.0206%" height="15" fill="rgb(245,217,1)" fg:x="15929" fg:w="5"/><text x="66.0098%" y="815.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (5 samples, 0.02%)</title><rect x="65.7598%" y="789" width="0.0206%" height="15" fill="rgb(229,91,1)" fg:x="15929" fg:w="5"/><text x="66.0098%" y="799.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (5 samples, 0.02%)</title><rect x="65.7598%" y="773" width="0.0206%" height="15" fill="rgb(207,101,30)" fg:x="15929" fg:w="5"/><text x="66.0098%" y="783.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (5 samples, 0.02%)</title><rect x="65.7598%" y="757" width="0.0206%" height="15" fill="rgb(223,82,49)" fg:x="15929" fg:w="5"/><text x="66.0098%" y="767.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (3 samples, 0.01%)</title><rect x="65.7887%" y="677" width="0.0124%" height="15" fill="rgb(218,167,17)" fg:x="15936" fg:w="3"/><text x="66.0387%" y="687.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (3 samples, 0.01%)</title><rect x="65.7887%" y="661" width="0.0124%" height="15" fill="rgb(208,103,14)" fg:x="15936" fg:w="3"/><text x="66.0387%" y="671.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (3 samples, 0.01%)</title><rect x="65.7887%" y="645" width="0.0124%" height="15" fill="rgb(238,20,8)" fg:x="15936" fg:w="3"/><text x="66.0387%" y="655.50"></text></g><g><title>[libc.so.6] (7 samples, 0.03%)</title><rect x="65.7887%" y="725" width="0.0289%" height="15" fill="rgb(218,80,54)" fg:x="15936" fg:w="7"/><text x="66.0387%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="65.7887%" y="709" width="0.0289%" height="15" fill="rgb(240,144,17)" fg:x="15936" fg:w="7"/><text x="66.0387%" y="719.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="65.7887%" y="693" width="0.0289%" height="15" fill="rgb(245,27,50)" fg:x="15936" fg:w="7"/><text x="66.0387%" y="703.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (11 samples, 0.05%)</title><rect x="65.7846%" y="805" width="0.0454%" height="15" fill="rgb(251,51,7)" fg:x="15935" fg:w="11"/><text x="66.0346%" y="815.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (11 samples, 0.05%)</title><rect x="65.7846%" y="789" width="0.0454%" height="15" fill="rgb(245,217,29)" fg:x="15935" fg:w="11"/><text x="66.0346%" y="799.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (10 samples, 0.04%)</title><rect x="65.7887%" y="773" width="0.0413%" height="15" fill="rgb(221,176,29)" fg:x="15936" fg:w="10"/><text x="66.0387%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (10 samples, 0.04%)</title><rect x="65.7887%" y="757" width="0.0413%" height="15" fill="rgb(212,180,24)" fg:x="15936" fg:w="10"/><text x="66.0387%" y="767.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (10 samples, 0.04%)</title><rect x="65.7887%" y="741" width="0.0413%" height="15" fill="rgb(254,24,2)" fg:x="15936" fg:w="10"/><text x="66.0387%" y="751.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (3 samples, 0.01%)</title><rect x="65.8176%" y="725" width="0.0124%" height="15" fill="rgb(230,100,2)" fg:x="15943" fg:w="3"/><text x="66.0676%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (12 samples, 0.05%)</title><rect x="65.7846%" y="821" width="0.0495%" height="15" fill="rgb(219,142,25)" fg:x="15935" fg:w="12"/><text x="66.0346%" y="831.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (14 samples, 0.06%)</title><rect x="65.7805%" y="837" width="0.0578%" height="15" fill="rgb(240,73,43)" fg:x="15934" fg:w="14"/><text x="66.0305%" y="847.50"></text></g><g><title>g_object_new_with_properties (16 samples, 0.07%)</title><rect x="65.7805%" y="853" width="0.0661%" height="15" fill="rgb(214,114,15)" fg:x="15934" fg:w="16"/><text x="66.0305%" y="863.50"></text></g><g><title>__poll (84 samples, 0.35%)</title><rect x="65.8589%" y="805" width="0.3468%" height="15" fill="rgb(207,130,4)" fg:x="15953" fg:w="84"/><text x="66.1089%" y="815.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="66.1933%" y="789" width="0.0124%" height="15" fill="rgb(221,25,40)" fg:x="16034" fg:w="3"/><text x="66.4433%" y="799.50"></text></g><g><title>wl_display_cancel_read (3 samples, 0.01%)</title><rect x="66.2924%" y="773" width="0.0124%" height="15" fill="rgb(241,184,7)" fg:x="16058" fg:w="3"/><text x="66.5424%" y="783.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (26 samples, 0.11%)</title><rect x="66.2800%" y="789" width="0.1073%" height="15" fill="rgb(235,159,4)" fg:x="16055" fg:w="26"/><text x="66.5300%" y="799.50"></text></g><g><title>wl_display_read_events (20 samples, 0.08%)</title><rect x="66.3048%" y="773" width="0.0826%" height="15" fill="rgb(214,87,48)" fg:x="16061" fg:w="20"/><text x="66.5548%" y="783.50"></text></g><g><title>recvmsg (13 samples, 0.05%)</title><rect x="66.3336%" y="757" width="0.0537%" height="15" fill="rgb(246,198,24)" fg:x="16068" fg:w="13"/><text x="66.5836%" y="767.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (11 samples, 0.05%)</title><rect x="66.3873%" y="789" width="0.0454%" height="15" fill="rgb(209,66,40)" fg:x="16081" fg:w="11"/><text x="66.6373%" y="799.50"></text></g><g><title>g_source_ref (4 samples, 0.02%)</title><rect x="66.4162%" y="773" width="0.0165%" height="15" fill="rgb(233,147,39)" fg:x="16088" fg:w="4"/><text x="66.6662%" y="783.50"></text></g><g><title>g_main_context_check (58 samples, 0.24%)</title><rect x="66.2057%" y="805" width="0.2394%" height="15" fill="rgb(231,145,52)" fg:x="16037" fg:w="58"/><text x="66.4557%" y="815.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="66.4699%" y="741" width="0.0124%" height="15" fill="rgb(206,20,26)" fg:x="16101" fg:w="3"/><text x="66.7199%" y="751.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="66.5401%" y="629" width="0.0124%" height="15" fill="rgb(238,220,4)" fg:x="16118" fg:w="3"/><text x="66.7901%" y="639.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="66.5401%" y="613" width="0.0124%" height="15" fill="rgb(252,195,42)" fg:x="16118" fg:w="3"/><text x="66.7901%" y="623.50"></text></g><g><title>[libwayland-server.so.0.22.0] (18 samples, 0.07%)</title><rect x="66.4823%" y="741" width="0.0743%" height="15" fill="rgb(209,10,6)" fg:x="16104" fg:w="18"/><text x="66.7323%" y="751.50"></text></g><g><title>ffi_call (12 samples, 0.05%)</title><rect x="66.5070%" y="725" width="0.0495%" height="15" fill="rgb(229,3,52)" fg:x="16110" fg:w="12"/><text x="66.7570%" y="735.50"></text></g><g><title>[libffi.so.8.1.2] (11 samples, 0.05%)</title><rect x="66.5112%" y="709" width="0.0454%" height="15" fill="rgb(253,49,37)" fg:x="16111" fg:w="11"/><text x="66.7612%" y="719.50"></text></g><g><title>[libffi.so.8.1.2] (11 samples, 0.05%)</title><rect x="66.5112%" y="693" width="0.0454%" height="15" fill="rgb(240,103,49)" fg:x="16111" fg:w="11"/><text x="66.7612%" y="703.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (7 samples, 0.03%)</title><rect x="66.5277%" y="677" width="0.0289%" height="15" fill="rgb(250,182,30)" fg:x="16115" fg:w="7"/><text x="66.7777%" y="687.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (4 samples, 0.02%)</title><rect x="66.5401%" y="661" width="0.0165%" height="15" fill="rgb(248,8,30)" fg:x="16118" fg:w="4"/><text x="66.7901%" y="671.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="66.5401%" y="645" width="0.0165%" height="15" fill="rgb(237,120,30)" fg:x="16118" fg:w="4"/><text x="66.7901%" y="655.50"></text></g><g><title>[libwayland-server.so.0.22.0] (30 samples, 0.12%)</title><rect x="66.4534%" y="757" width="0.1238%" height="15" fill="rgb(221,146,34)" fg:x="16097" fg:w="30"/><text x="66.7034%" y="767.50"></text></g><g><title>recvmsg (4 samples, 0.02%)</title><rect x="66.5607%" y="741" width="0.0165%" height="15" fill="rgb(242,55,13)" fg:x="16123" fg:w="4"/><text x="66.8107%" y="751.50"></text></g><g><title>[libWPEBackend-fdo-1.0.so.1.9.4] (34 samples, 0.14%)</title><rect x="66.4451%" y="789" width="0.1404%" height="15" fill="rgb(242,112,31)" fg:x="16095" fg:w="34"/><text x="66.6951%" y="799.50"></text></g><g><title>wl_event_loop_dispatch (33 samples, 0.14%)</title><rect x="66.4492%" y="773" width="0.1362%" height="15" fill="rgb(249,192,27)" fg:x="16096" fg:w="33"/><text x="66.6992%" y="783.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="66.5896%" y="741" width="0.0165%" height="15" fill="rgb(208,204,44)" fg:x="16130" fg:w="4"/><text x="66.8396%" y="751.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="66.5855%" y="773" width="0.0248%" height="15" fill="rgb(208,93,54)" fg:x="16129" fg:w="6"/><text x="66.8355%" y="783.50"></text></g><g><title>gtk_main_do_event (5 samples, 0.02%)</title><rect x="66.5896%" y="757" width="0.0206%" height="15" fill="rgb(242,1,31)" fg:x="16130" fg:w="5"/><text x="66.8396%" y="767.50"></text></g><g><title>[libwayland-client.so.0.22.0] (4 samples, 0.02%)</title><rect x="66.6144%" y="725" width="0.0165%" height="15" fill="rgb(241,83,25)" fg:x="16136" fg:w="4"/><text x="66.8644%" y="735.50"></text></g><g><title>[libwayland-client.so.0.22.0] (4 samples, 0.02%)</title><rect x="66.6144%" y="709" width="0.0165%" height="15" fill="rgb(205,169,50)" fg:x="16136" fg:w="4"/><text x="66.8644%" y="719.50"></text></g><g><title>gdk_display_get_event (7 samples, 0.03%)</title><rect x="66.6102%" y="773" width="0.0289%" height="15" fill="rgb(239,186,37)" fg:x="16135" fg:w="7"/><text x="66.8602%" y="783.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="66.6144%" y="757" width="0.0248%" height="15" fill="rgb(205,221,10)" fg:x="16136" fg:w="6"/><text x="66.8644%" y="767.50"></text></g><g><title>wl_display_dispatch_queue_pending (6 samples, 0.02%)</title><rect x="66.6144%" y="741" width="0.0248%" height="15" fill="rgb(218,196,15)" fg:x="16136" fg:w="6"/><text x="66.8644%" y="751.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (14 samples, 0.06%)</title><rect x="66.5855%" y="789" width="0.0578%" height="15" fill="rgb(218,196,35)" fg:x="16129" fg:w="14"/><text x="66.8355%" y="799.50"></text></g><g><title>[libwayland-client.so.0.22.0] (4 samples, 0.02%)</title><rect x="66.7258%" y="581" width="0.0165%" height="15" fill="rgb(233,63,24)" fg:x="16163" fg:w="4"/><text x="66.9758%" y="591.50"></text></g><g><title>[libwayland-client.so.0.22.0] (4 samples, 0.02%)</title><rect x="66.7258%" y="565" width="0.0165%" height="15" fill="rgb(225,8,4)" fg:x="16163" fg:w="4"/><text x="66.9758%" y="575.50"></text></g><g><title>wl_display_dispatch_queue_pending (5 samples, 0.02%)</title><rect x="66.7258%" y="597" width="0.0206%" height="15" fill="rgb(234,105,35)" fg:x="16163" fg:w="5"/><text x="66.9758%" y="607.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (10 samples, 0.04%)</title><rect x="66.7093%" y="661" width="0.0413%" height="15" fill="rgb(236,21,32)" fg:x="16159" fg:w="10"/><text x="66.9593%" y="671.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (10 samples, 0.04%)</title><rect x="66.7093%" y="645" width="0.0413%" height="15" fill="rgb(228,109,6)" fg:x="16159" fg:w="10"/><text x="66.9593%" y="655.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (9 samples, 0.04%)</title><rect x="66.7135%" y="629" width="0.0372%" height="15" fill="rgb(229,215,31)" fg:x="16160" fg:w="9"/><text x="66.9635%" y="639.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (9 samples, 0.04%)</title><rect x="66.7135%" y="613" width="0.0372%" height="15" fill="rgb(221,52,54)" fg:x="16160" fg:w="9"/><text x="66.9635%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="66.8001%" y="469" width="0.0289%" height="15" fill="rgb(252,129,43)" fg:x="16181" fg:w="7"/><text x="67.0501%" y="479.50"></text></g><g><title>[libcairo.so.2.11708.0] (46 samples, 0.19%)</title><rect x="66.8414%" y="341" width="0.1899%" height="15" fill="rgb(248,183,27)" fg:x="16191" fg:w="46"/><text x="67.0914%" y="351.50"></text></g><g><title>pixman_fill (46 samples, 0.19%)</title><rect x="66.8414%" y="325" width="0.1899%" height="15" fill="rgb(250,0,22)" fg:x="16191" fg:w="46"/><text x="67.0914%" y="335.50"></text></g><g><title>[libpixman-1.so.0.42.2] (46 samples, 0.19%)</title><rect x="66.8414%" y="309" width="0.1899%" height="15" fill="rgb(213,166,10)" fg:x="16191" fg:w="46"/><text x="67.0914%" y="319.50"></text></g><g><title>cairo_fill (1,188 samples, 4.90%)</title><rect x="66.8332%" y="469" width="4.9044%" height="15" fill="rgb(207,163,36)" fg:x="16189" fg:w="1188"/><text x="67.0832%" y="479.50">cairo_..</text></g><g><title>[libcairo.so.2.11708.0] (1,188 samples, 4.90%)</title><rect x="66.8332%" y="453" width="4.9044%" height="15" fill="rgb(208,122,22)" fg:x="16189" fg:w="1188"/><text x="67.0832%" y="463.50">[libca..</text></g><g><title>[libcairo.so.2.11708.0] (1,188 samples, 4.90%)</title><rect x="66.8332%" y="437" width="4.9044%" height="15" fill="rgb(207,104,49)" fg:x="16189" fg:w="1188"/><text x="67.0832%" y="447.50">[libca..</text></g><g><title>[libcairo.so.2.11708.0] (1,188 samples, 4.90%)</title><rect x="66.8332%" y="421" width="4.9044%" height="15" fill="rgb(248,211,50)" fg:x="16189" fg:w="1188"/><text x="67.0832%" y="431.50">[libca..</text></g><g><title>[libcairo.so.2.11708.0] (1,188 samples, 4.90%)</title><rect x="66.8332%" y="405" width="4.9044%" height="15" fill="rgb(217,13,45)" fg:x="16189" fg:w="1188"/><text x="67.0832%" y="415.50">[libca..</text></g><g><title>[libcairo.so.2.11708.0] (1,188 samples, 4.90%)</title><rect x="66.8332%" y="389" width="4.9044%" height="15" fill="rgb(211,216,49)" fg:x="16189" fg:w="1188"/><text x="67.0832%" y="399.50">[libca..</text></g><g><title>[libcairo.so.2.11708.0] (1,188 samples, 4.90%)</title><rect x="66.8332%" y="373" width="4.9044%" height="15" fill="rgb(221,58,53)" fg:x="16189" fg:w="1188"/><text x="67.0832%" y="383.50">[libca..</text></g><g><title>[libcairo.so.2.11708.0] (1,187 samples, 4.90%)</title><rect x="66.8373%" y="357" width="4.9003%" height="15" fill="rgb(220,112,41)" fg:x="16190" fg:w="1187"/><text x="67.0873%" y="367.50">[libca..</text></g><g><title>pixman_fill (1,140 samples, 4.71%)</title><rect x="67.0313%" y="341" width="4.7063%" height="15" fill="rgb(236,38,28)" fg:x="16237" fg:w="1140"/><text x="67.2813%" y="351.50">pixma..</text></g><g><title>[libpixman-1.so.0.42.2] (1,140 samples, 4.71%)</title><rect x="67.0313%" y="325" width="4.7063%" height="15" fill="rgb(227,195,22)" fg:x="16237" fg:w="1140"/><text x="67.2813%" y="335.50">[libp..</text></g><g><title>[libgtk-3.so.0.2405.32] (1,203 samples, 4.97%)</title><rect x="66.7878%" y="485" width="4.9664%" height="15" fill="rgb(214,55,33)" fg:x="16178" fg:w="1203"/><text x="67.0378%" y="495.50">[libgt..</text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="71.7871%" y="373" width="0.0206%" height="15" fill="rgb(248,80,13)" fg:x="17389" fg:w="5"/><text x="72.0371%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="71.7871%" y="357" width="0.0206%" height="15" fill="rgb(238,52,6)" fg:x="17389" fg:w="5"/><text x="72.0371%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="71.8160%" y="341" width="0.0537%" height="15" fill="rgb(224,198,47)" fg:x="17396" fg:w="13"/><text x="72.0660%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="71.8160%" y="325" width="0.0537%" height="15" fill="rgb(233,171,20)" fg:x="17396" fg:w="13"/><text x="72.0660%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="71.8160%" y="309" width="0.0537%" height="15" fill="rgb(241,30,25)" fg:x="17396" fg:w="13"/><text x="72.0660%" y="319.50"></text></g><g><title>cairo_fill (9 samples, 0.04%)</title><rect x="71.8326%" y="293" width="0.0372%" height="15" fill="rgb(207,171,38)" fg:x="17400" fg:w="9"/><text x="72.0826%" y="303.50"></text></g><g><title>[libcairo.so.2.11708.0] (9 samples, 0.04%)</title><rect x="71.8326%" y="277" width="0.0372%" height="15" fill="rgb(234,70,1)" fg:x="17400" fg:w="9"/><text x="72.0826%" y="287.50"></text></g><g><title>[libcairo.so.2.11708.0] (9 samples, 0.04%)</title><rect x="71.8326%" y="261" width="0.0372%" height="15" fill="rgb(232,178,18)" fg:x="17400" fg:w="9"/><text x="72.0826%" y="271.50"></text></g><g><title>[libcairo.so.2.11708.0] (9 samples, 0.04%)</title><rect x="71.8326%" y="245" width="0.0372%" height="15" fill="rgb(241,78,40)" fg:x="17400" fg:w="9"/><text x="72.0826%" y="255.50"></text></g><g><title>[libcairo.so.2.11708.0] (8 samples, 0.03%)</title><rect x="71.8367%" y="229" width="0.0330%" height="15" fill="rgb(222,35,25)" fg:x="17401" fg:w="8"/><text x="72.0867%" y="239.50"></text></g><g><title>[libcairo.so.2.11708.0] (8 samples, 0.03%)</title><rect x="71.8367%" y="213" width="0.0330%" height="15" fill="rgb(207,92,16)" fg:x="17401" fg:w="8"/><text x="72.0867%" y="223.50"></text></g><g><title>[libcairo.so.2.11708.0] (8 samples, 0.03%)</title><rect x="71.8367%" y="197" width="0.0330%" height="15" fill="rgb(216,59,51)" fg:x="17401" fg:w="8"/><text x="72.0867%" y="207.50"></text></g><g><title>[libcairo.so.2.11708.0] (6 samples, 0.02%)</title><rect x="71.8449%" y="181" width="0.0248%" height="15" fill="rgb(213,80,28)" fg:x="17403" fg:w="6"/><text x="72.0949%" y="191.50"></text></g><g><title>[libcairo.so.2.11708.0] (4 samples, 0.02%)</title><rect x="71.8532%" y="165" width="0.0165%" height="15" fill="rgb(220,93,7)" fg:x="17405" fg:w="4"/><text x="72.1032%" y="175.50"></text></g><g><title>[crocus_dri.so] (10 samples, 0.04%)</title><rect x="71.8862%" y="309" width="0.0413%" height="15" fill="rgb(225,24,44)" fg:x="17413" fg:w="10"/><text x="72.1362%" y="319.50"></text></g><g><title>[crocus_dri.so] (9 samples, 0.04%)</title><rect x="71.8904%" y="293" width="0.0372%" height="15" fill="rgb(243,74,40)" fg:x="17414" fg:w="9"/><text x="72.1404%" y="303.50"></text></g><g><title>[crocus_dri.so] (5 samples, 0.02%)</title><rect x="71.9069%" y="277" width="0.0206%" height="15" fill="rgb(228,39,7)" fg:x="17418" fg:w="5"/><text x="72.1569%" y="287.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="71.9110%" y="261" width="0.0165%" height="15" fill="rgb(227,79,8)" fg:x="17419" fg:w="4"/><text x="72.1610%" y="271.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="71.9151%" y="245" width="0.0124%" height="15" fill="rgb(236,58,11)" fg:x="17420" fg:w="3"/><text x="72.1651%" y="255.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="71.9151%" y="229" width="0.0124%" height="15" fill="rgb(249,63,35)" fg:x="17420" fg:w="3"/><text x="72.1651%" y="239.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="71.9151%" y="213" width="0.0124%" height="15" fill="rgb(252,114,16)" fg:x="17420" fg:w="3"/><text x="72.1651%" y="223.50"></text></g><g><title>[libwayland-server.so.0.22.0] (23 samples, 0.09%)</title><rect x="71.9275%" y="293" width="0.0950%" height="15" fill="rgb(254,151,24)" fg:x="17423" fg:w="23"/><text x="72.1775%" y="303.50"></text></g><g><title>sendmsg (23 samples, 0.09%)</title><rect x="71.9275%" y="277" width="0.0950%" height="15" fill="rgb(253,54,39)" fg:x="17423" fg:w="23"/><text x="72.1775%" y="287.50"></text></g><g><title>wl_resource_destroy (4 samples, 0.02%)</title><rect x="72.0225%" y="293" width="0.0165%" height="15" fill="rgb(243,25,45)" fg:x="17446" fg:w="4"/><text x="72.2725%" y="303.50"></text></g><g><title>wl_resource_queue_event (3 samples, 0.01%)</title><rect x="72.0266%" y="277" width="0.0124%" height="15" fill="rgb(234,134,9)" fg:x="17447" fg:w="3"/><text x="72.2766%" y="287.50"></text></g><g><title>[libwayland-server.so.0.22.0] (3 samples, 0.01%)</title><rect x="72.0266%" y="261" width="0.0124%" height="15" fill="rgb(227,166,31)" fg:x="17447" fg:w="3"/><text x="72.2766%" y="271.50"></text></g><g><title>[libwayland-server.so.0.22.0] (3 samples, 0.01%)</title><rect x="72.0266%" y="245" width="0.0124%" height="15" fill="rgb(245,143,41)" fg:x="17447" fg:w="3"/><text x="72.2766%" y="255.50"></text></g><g><title>[libWPEBackend-fdo-1.0.so.1.9.4] (31 samples, 0.13%)</title><rect x="71.9275%" y="309" width="0.1280%" height="15" fill="rgb(238,181,32)" fg:x="17423" fg:w="31"/><text x="72.1775%" y="319.50"></text></g><g><title>wl_resource_post_event (3 samples, 0.01%)</title><rect x="72.0431%" y="293" width="0.0124%" height="15" fill="rgb(224,113,18)" fg:x="17451" fg:w="3"/><text x="72.2931%" y="303.50"></text></g><g><title>[libwayland-server.so.0.22.0] (6 samples, 0.02%)</title><rect x="72.0555%" y="309" width="0.0248%" height="15" fill="rgb(240,229,28)" fg:x="17454" fg:w="6"/><text x="72.3055%" y="319.50"></text></g><g><title>sendmsg (6 samples, 0.02%)</title><rect x="72.0555%" y="293" width="0.0248%" height="15" fill="rgb(250,185,3)" fg:x="17454" fg:w="6"/><text x="72.3055%" y="303.50"></text></g><g><title>[crocus_dri.so] (6 samples, 0.02%)</title><rect x="72.1133%" y="181" width="0.0248%" height="15" fill="rgb(212,59,25)" fg:x="17468" fg:w="6"/><text x="72.3633%" y="191.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="72.1257%" y="165" width="0.0124%" height="15" fill="rgb(221,87,20)" fg:x="17471" fg:w="3"/><text x="72.3757%" y="175.50"></text></g><g><title>[crocus_dri.so] (12 samples, 0.05%)</title><rect x="72.0968%" y="213" width="0.0495%" height="15" fill="rgb(213,74,28)" fg:x="17464" fg:w="12"/><text x="72.3468%" y="223.50"></text></g><g><title>[crocus_dri.so] (11 samples, 0.05%)</title><rect x="72.1009%" y="197" width="0.0454%" height="15" fill="rgb(224,132,34)" fg:x="17465" fg:w="11"/><text x="72.3509%" y="207.50"></text></g><g><title>[libEGL.so.1.1.0] (19 samples, 0.08%)</title><rect x="72.0803%" y="261" width="0.0784%" height="15" fill="rgb(222,101,24)" fg:x="17460" fg:w="19"/><text x="72.3303%" y="271.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (19 samples, 0.08%)</title><rect x="72.0803%" y="245" width="0.0784%" height="15" fill="rgb(254,142,4)" fg:x="17460" fg:w="19"/><text x="72.3303%" y="255.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (19 samples, 0.08%)</title><rect x="72.0803%" y="229" width="0.0784%" height="15" fill="rgb(230,229,49)" fg:x="17460" fg:w="19"/><text x="72.3303%" y="239.50"></text></g><g><title>[libEGL.so.1.1.0] (6 samples, 0.02%)</title><rect x="72.1669%" y="245" width="0.0248%" height="15" fill="rgb(238,70,47)" fg:x="17481" fg:w="6"/><text x="72.4169%" y="255.50"></text></g><g><title>__getpid (5 samples, 0.02%)</title><rect x="72.1711%" y="229" width="0.0206%" height="15" fill="rgb(231,160,17)" fg:x="17482" fg:w="5"/><text x="72.4211%" y="239.50"></text></g><g><title>eglMakeCurrent (7 samples, 0.03%)</title><rect x="72.1669%" y="261" width="0.0289%" height="15" fill="rgb(218,68,53)" fg:x="17481" fg:w="7"/><text x="72.4169%" y="271.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (31 samples, 0.13%)</title><rect x="72.0803%" y="277" width="0.1280%" height="15" fill="rgb(236,111,10)" fg:x="17460" fg:w="31"/><text x="72.3303%" y="287.50"></text></g><g><title>eglSwapInterval (3 samples, 0.01%)</title><rect x="72.1958%" y="261" width="0.0124%" height="15" fill="rgb(224,34,41)" fg:x="17488" fg:w="3"/><text x="72.4458%" y="271.50"></text></g><g><title>[libEGL.so.1.1.0] (3 samples, 0.01%)</title><rect x="72.1958%" y="245" width="0.0124%" height="15" fill="rgb(241,118,19)" fg:x="17488" fg:w="3"/><text x="72.4458%" y="255.50"></text></g><g><title>[libEGL.so.1.1.0] (3 samples, 0.01%)</title><rect x="72.1958%" y="229" width="0.0124%" height="15" fill="rgb(238,129,25)" fg:x="17488" fg:w="3"/><text x="72.4458%" y="239.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (34 samples, 0.14%)</title><rect x="72.0803%" y="309" width="0.1404%" height="15" fill="rgb(238,22,31)" fg:x="17460" fg:w="34"/><text x="72.3303%" y="319.50"></text></g><g><title>gdk_gl_context_make_current (34 samples, 0.14%)</title><rect x="72.0803%" y="293" width="0.1404%" height="15" fill="rgb(222,174,48)" fg:x="17460" fg:w="34"/><text x="72.3303%" y="303.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="72.2743%" y="261" width="0.0124%" height="15" fill="rgb(206,152,40)" fg:x="17507" fg:w="3"/><text x="72.5243%" y="271.50"></text></g><g><title>[crocus_dri.so] (16 samples, 0.07%)</title><rect x="72.2247%" y="293" width="0.0661%" height="15" fill="rgb(218,99,54)" fg:x="17495" fg:w="16"/><text x="72.4747%" y="303.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="72.2578%" y="277" width="0.0330%" height="15" fill="rgb(220,174,26)" fg:x="17503" fg:w="8"/><text x="72.5078%" y="287.50"></text></g><g><title>[crocus_dri.so] (3,134 samples, 12.94%)</title><rect x="72.6747%" y="149" width="12.9381%" height="15" fill="rgb(245,116,9)" fg:x="17604" fg:w="3134"/><text x="72.9247%" y="159.50">[crocus_dri.so]</text></g><g><title>[crocus_dri.so] (3,187 samples, 13.16%)</title><rect x="72.4848%" y="165" width="13.1569%" height="15" fill="rgb(209,72,35)" fg:x="17558" fg:w="3187"/><text x="72.7348%" y="175.50">[crocus_dri.so]</text></g><g><title>ioctl (7 samples, 0.03%)</title><rect x="85.6128%" y="149" width="0.0289%" height="15" fill="rgb(226,126,21)" fg:x="20738" fg:w="7"/><text x="85.8628%" y="159.50"></text></g><g><title>ioctl (15 samples, 0.06%)</title><rect x="85.6541%" y="165" width="0.0619%" height="15" fill="rgb(227,192,1)" fg:x="20748" fg:w="15"/><text x="85.9041%" y="175.50"></text></g><g><title>[crocus_dri.so] (3,221 samples, 13.30%)</title><rect x="72.4229%" y="197" width="13.2973%" height="15" fill="rgb(237,180,29)" fg:x="17543" fg:w="3221"/><text x="72.6729%" y="207.50">[crocus_dri.so]</text></g><g><title>[crocus_dri.so] (3,209 samples, 13.25%)</title><rect x="72.4724%" y="181" width="13.2477%" height="15" fill="rgb(230,197,35)" fg:x="17555" fg:w="3209"/><text x="72.7224%" y="191.50">[crocus_dri.so]</text></g><g><title>[crocus_dri.so] (4,833 samples, 19.95%)</title><rect x="72.3981%" y="213" width="19.9521%" height="15" fill="rgb(246,193,31)" fg:x="17537" fg:w="4833"/><text x="72.6481%" y="223.50">[crocus_dri.so]</text></g><g><title>[libc.so.6] (1,606 samples, 6.63%)</title><rect x="85.7202%" y="197" width="6.6301%" height="15" fill="rgb(241,36,4)" fg:x="20764" fg:w="1606"/><text x="85.9702%" y="207.50">[libc.so...</text></g><g><title>[crocus_dri.so] (4,843 samples, 19.99%)</title><rect x="72.3610%" y="229" width="19.9934%" height="15" fill="rgb(241,130,17)" fg:x="17528" fg:w="4843"/><text x="72.6110%" y="239.50">[crocus_dri.so]</text></g><g><title>[crocus_dri.so] (4,852 samples, 20.03%)</title><rect x="72.3445%" y="245" width="20.0305%" height="15" fill="rgb(206,137,32)" fg:x="17524" fg:w="4852"/><text x="72.5945%" y="255.50">[crocus_dri.so]</text></g><g><title>__snprintf_chk (3 samples, 0.01%)</title><rect x="92.3626%" y="229" width="0.0124%" height="15" fill="rgb(237,228,51)" fg:x="22373" fg:w="3"/><text x="92.6126%" y="239.50"></text></g><g><title>[crocus_dri.so] (4,859 samples, 20.06%)</title><rect x="72.3238%" y="261" width="20.0594%" height="15" fill="rgb(243,6,42)" fg:x="17519" fg:w="4859"/><text x="72.5738%" y="271.50">[crocus_dri.so]</text></g><g><title>[crocus_dri.so] (4,865 samples, 20.08%)</title><rect x="72.3032%" y="277" width="20.0842%" height="15" fill="rgb(251,74,28)" fg:x="17514" fg:w="4865"/><text x="72.5532%" y="287.50">[crocus_dri.so]</text></g><g><title>[crocus_dri.so] (13 samples, 0.05%)</title><rect x="92.5360%" y="149" width="0.0537%" height="15" fill="rgb(218,20,49)" fg:x="22415" fg:w="13"/><text x="92.7860%" y="159.50"></text></g><g><title>ioctl (10 samples, 0.04%)</title><rect x="92.5484%" y="133" width="0.0413%" height="15" fill="rgb(238,28,14)" fg:x="22418" fg:w="10"/><text x="92.7984%" y="143.50"></text></g><g><title>[crocus_dri.so] (48 samples, 0.20%)</title><rect x="92.3957%" y="261" width="0.1982%" height="15" fill="rgb(229,40,46)" fg:x="22381" fg:w="48"/><text x="92.6457%" y="271.50"></text></g><g><title>[crocus_dri.so] (46 samples, 0.19%)</title><rect x="92.4039%" y="245" width="0.1899%" height="15" fill="rgb(244,195,20)" fg:x="22383" fg:w="46"/><text x="92.6539%" y="255.50"></text></g><g><title>[crocus_dri.so] (37 samples, 0.15%)</title><rect x="92.4411%" y="229" width="0.1527%" height="15" fill="rgb(253,56,35)" fg:x="22392" fg:w="37"/><text x="92.6911%" y="239.50"></text></g><g><title>[crocus_dri.so] (26 samples, 0.11%)</title><rect x="92.4865%" y="213" width="0.1073%" height="15" fill="rgb(210,149,44)" fg:x="22403" fg:w="26"/><text x="92.7365%" y="223.50"></text></g><g><title>[crocus_dri.so] (19 samples, 0.08%)</title><rect x="92.5154%" y="197" width="0.0784%" height="15" fill="rgb(240,135,12)" fg:x="22410" fg:w="19"/><text x="92.7654%" y="207.50"></text></g><g><title>[crocus_dri.so] (18 samples, 0.07%)</title><rect x="92.5195%" y="181" width="0.0743%" height="15" fill="rgb(251,24,50)" fg:x="22411" fg:w="18"/><text x="92.7695%" y="191.50"></text></g><g><title>[crocus_dri.so] (16 samples, 0.07%)</title><rect x="92.5278%" y="165" width="0.0661%" height="15" fill="rgb(243,200,47)" fg:x="22413" fg:w="16"/><text x="92.7778%" y="175.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (53 samples, 0.22%)</title><rect x="92.3915%" y="277" width="0.2188%" height="15" fill="rgb(224,166,26)" fg:x="22380" fg:w="53"/><text x="92.6415%" y="287.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="92.5938%" y="261" width="0.0165%" height="15" fill="rgb(233,0,47)" fg:x="22429" fg:w="4"/><text x="92.8438%" y="271.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="92.5979%" y="245" width="0.0124%" height="15" fill="rgb(253,80,5)" fg:x="22430" fg:w="3"/><text x="92.8479%" y="255.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="92.5979%" y="229" width="0.0124%" height="15" fill="rgb(214,133,25)" fg:x="22430" fg:w="3"/><text x="92.8479%" y="239.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="92.5979%" y="213" width="0.0124%" height="15" fill="rgb(209,27,14)" fg:x="22430" fg:w="3"/><text x="92.8479%" y="223.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="92.5979%" y="197" width="0.0124%" height="15" fill="rgb(219,102,51)" fg:x="22430" fg:w="3"/><text x="92.8479%" y="207.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="92.5979%" y="181" width="0.0124%" height="15" fill="rgb(237,18,16)" fg:x="22430" fg:w="3"/><text x="92.8479%" y="191.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="92.5979%" y="165" width="0.0124%" height="15" fill="rgb(241,85,17)" fg:x="22430" fg:w="3"/><text x="92.8479%" y="175.50"></text></g><g><title>cairo_region_create (3 samples, 0.01%)</title><rect x="92.6145%" y="277" width="0.0124%" height="15" fill="rgb(236,90,42)" fg:x="22434" fg:w="3"/><text x="92.8645%" y="287.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="92.6310%" y="229" width="0.0124%" height="15" fill="rgb(249,57,21)" fg:x="22438" fg:w="3"/><text x="92.8810%" y="239.50"></text></g><g><title>cairo_surface_map_to_image (5 samples, 0.02%)</title><rect x="92.6268%" y="277" width="0.0206%" height="15" fill="rgb(243,12,36)" fg:x="22437" fg:w="5"/><text x="92.8768%" y="287.50"></text></g><g><title>[libcairo.so.2.11708.0] (5 samples, 0.02%)</title><rect x="92.6268%" y="261" width="0.0206%" height="15" fill="rgb(253,128,47)" fg:x="22437" fg:w="5"/><text x="92.8768%" y="271.50"></text></g><g><title>[libcairo.so.2.11708.0] (5 samples, 0.02%)</title><rect x="92.6268%" y="245" width="0.0206%" height="15" fill="rgb(207,33,20)" fg:x="22437" fg:w="5"/><text x="92.8768%" y="255.50"></text></g><g><title>cairo_surface_unmap_image (4 samples, 0.02%)</title><rect x="92.6475%" y="277" width="0.0165%" height="15" fill="rgb(233,215,35)" fg:x="22442" fg:w="4"/><text x="92.8975%" y="287.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="92.6516%" y="261" width="0.0124%" height="15" fill="rgb(249,188,52)" fg:x="22443" fg:w="3"/><text x="92.9016%" y="271.50"></text></g><g><title>cairo_surface_finish (3 samples, 0.01%)</title><rect x="92.6516%" y="245" width="0.0124%" height="15" fill="rgb(225,12,32)" fg:x="22443" fg:w="3"/><text x="92.9016%" y="255.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (4,940 samples, 20.39%)</title><rect x="72.2908%" y="293" width="20.3938%" height="15" fill="rgb(247,98,14)" fg:x="17511" fg:w="4940"/><text x="72.5408%" y="303.50">[libgdk-3.so.0.2405.32]</text></g><g><title>[libEGL.so.1.1.0] (10 samples, 0.04%)</title><rect x="92.6970%" y="261" width="0.0413%" height="15" fill="rgb(247,219,48)" fg:x="22454" fg:w="10"/><text x="92.9470%" y="271.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (10 samples, 0.04%)</title><rect x="92.6970%" y="245" width="0.0413%" height="15" fill="rgb(253,60,48)" fg:x="22454" fg:w="10"/><text x="92.9470%" y="255.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (10 samples, 0.04%)</title><rect x="92.6970%" y="229" width="0.0413%" height="15" fill="rgb(245,15,52)" fg:x="22454" fg:w="10"/><text x="92.9470%" y="239.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="92.7053%" y="213" width="0.0330%" height="15" fill="rgb(220,133,28)" fg:x="22456" fg:w="8"/><text x="92.9553%" y="223.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="92.7053%" y="197" width="0.0330%" height="15" fill="rgb(217,180,4)" fg:x="22456" fg:w="8"/><text x="92.9553%" y="207.50"></text></g><g><title>[crocus_dri.so] (8 samples, 0.03%)</title><rect x="92.7053%" y="181" width="0.0330%" height="15" fill="rgb(251,24,1)" fg:x="22456" fg:w="8"/><text x="92.9553%" y="191.50"></text></g><g><title>[crocus_dri.so] (7 samples, 0.03%)</title><rect x="92.7094%" y="165" width="0.0289%" height="15" fill="rgb(212,185,49)" fg:x="22457" fg:w="7"/><text x="92.9594%" y="175.50"></text></g><g><title>[crocus_dri.so] (5 samples, 0.02%)</title><rect x="92.7177%" y="149" width="0.0206%" height="15" fill="rgb(215,175,22)" fg:x="22459" fg:w="5"/><text x="92.9677%" y="159.50"></text></g><g><title>[crocus_dri.so] (3 samples, 0.01%)</title><rect x="92.7259%" y="133" width="0.0124%" height="15" fill="rgb(250,205,14)" fg:x="22461" fg:w="3"/><text x="92.9759%" y="143.50"></text></g><g><title>eglMakeCurrent (4 samples, 0.02%)</title><rect x="92.7466%" y="261" width="0.0165%" height="15" fill="rgb(225,211,22)" fg:x="22466" fg:w="4"/><text x="92.9966%" y="271.50"></text></g><g><title>[libEGL.so.1.1.0] (4 samples, 0.02%)</title><rect x="92.7466%" y="245" width="0.0165%" height="15" fill="rgb(251,179,42)" fg:x="22466" fg:w="4"/><text x="92.9966%" y="255.50"></text></g><g><title>__getpid (3 samples, 0.01%)</title><rect x="92.7507%" y="229" width="0.0124%" height="15" fill="rgb(208,216,51)" fg:x="22467" fg:w="3"/><text x="93.0007%" y="239.50"></text></g><g><title>gdk_cairo_draw_from_gl (4,977 samples, 20.55%)</title><rect x="72.2247%" y="309" width="20.5466%" height="15" fill="rgb(235,36,11)" fg:x="17495" fg:w="4977"/><text x="72.4747%" y="319.50">gdk_cairo_draw_from_gl</text></g><g><title>gdk_gl_context_make_current (18 samples, 0.07%)</title><rect x="92.6970%" y="293" width="0.0743%" height="15" fill="rgb(213,189,28)" fg:x="22454" fg:w="18"/><text x="92.9470%" y="303.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (18 samples, 0.07%)</title><rect x="92.6970%" y="277" width="0.0743%" height="15" fill="rgb(227,203,42)" fg:x="22454" fg:w="18"/><text x="92.9470%" y="287.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,066 samples, 20.91%)</title><rect x="71.8697%" y="341" width="20.9140%" height="15" fill="rgb(244,72,36)" fg:x="17409" fg:w="5066"/><text x="72.1197%" y="351.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (5,064 samples, 20.91%)</title><rect x="71.8780%" y="325" width="20.9058%" height="15" fill="rgb(213,53,17)" fg:x="17411" fg:w="5064"/><text x="72.1280%" y="335.50">[libwebkit2gtk-4.1.so.0.8.1]</text></g><g><title>wpe_view_backend_exportable_fdo_egl_dispatch_release_exported_image (3 samples, 0.01%)</title><rect x="92.7713%" y="309" width="0.0124%" height="15" fill="rgb(207,167,3)" fg:x="22472" fg:w="3"/><text x="93.0213%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5,090 samples, 21.01%)</title><rect x="71.7830%" y="389" width="21.0131%" height="15" fill="rgb(216,98,30)" fg:x="17388" fg:w="5090"/><text x="72.0330%" y="399.50">[libgtk-3.so.0.2405.32]</text></g><g><title>gtk_container_propagate_draw (5,082 samples, 20.98%)</title><rect x="71.8160%" y="373" width="20.9801%" height="15" fill="rgb(236,123,15)" fg:x="17396" fg:w="5082"/><text x="72.0660%" y="383.50">gtk_container_propagate_draw</text></g><g><title>[libgtk-3.so.0.2405.32] (5,082 samples, 20.98%)</title><rect x="71.8160%" y="357" width="20.9801%" height="15" fill="rgb(248,81,50)" fg:x="17396" fg:w="5082"/><text x="72.0660%" y="367.50">[libgtk-3.so.0.2405.32]</text></g><g><title>[libgtk-3.so.0.2405.32] (5,095 samples, 21.03%)</title><rect x="71.7706%" y="405" width="21.0337%" height="15" fill="rgb(214,120,4)" fg:x="17385" fg:w="5095"/><text x="72.0206%" y="415.50">[libgtk-3.so.0.2405.32]</text></g><g><title>[libgtk-3.so.0.2405.32] (5,098 samples, 21.05%)</title><rect x="71.7665%" y="453" width="21.0461%" height="15" fill="rgb(208,179,34)" fg:x="17384" fg:w="5098"/><text x="72.0165%" y="463.50">[libgtk-3.so.0.2405.32]</text></g><g><title>[libgtk-3.so.0.2405.32] (5,097 samples, 21.04%)</title><rect x="71.7706%" y="437" width="21.0420%" height="15" fill="rgb(227,140,7)" fg:x="17385" fg:w="5097"/><text x="72.0206%" y="447.50">[libgtk-3.so.0.2405.32]</text></g><g><title>[libgtk-3.so.0.2405.32] (5,097 samples, 21.04%)</title><rect x="71.7706%" y="421" width="21.0420%" height="15" fill="rgb(214,22,6)" fg:x="17385" fg:w="5097"/><text x="72.0206%" y="431.50">[libgtk-3.so.0.2405.32]</text></g><g><title>[libgtk-3.so.0.2405.32] (5,103 samples, 21.07%)</title><rect x="71.7624%" y="469" width="21.0668%" height="15" fill="rgb(207,137,27)" fg:x="17383" fg:w="5103"/><text x="72.0124%" y="479.50">[libgtk-3.so.0.2405.32]</text></g><g><title>[libgtk-3.so.0.2405.32] (6,316 samples, 26.07%)</title><rect x="66.7836%" y="517" width="26.0744%" height="15" fill="rgb(210,8,46)" fg:x="16177" fg:w="6316"/><text x="67.0336%" y="527.50">[libgtk-3.so.0.2405.32]</text></g><g><title>[libgtk-3.so.0.2405.32] (6,316 samples, 26.07%)</title><rect x="66.7836%" y="501" width="26.0744%" height="15" fill="rgb(240,16,54)" fg:x="16177" fg:w="6316"/><text x="67.0336%" y="511.50">[libgtk-3.so.0.2405.32]</text></g><g><title>gtk_container_propagate_draw (5,110 samples, 21.10%)</title><rect x="71.7624%" y="485" width="21.0957%" height="15" fill="rgb(211,209,29)" fg:x="17383" fg:w="5110"/><text x="72.0124%" y="495.50">gtk_container_propagate_draw</text></g><g><title>gtk_cairo_should_draw_window (4 samples, 0.02%)</title><rect x="92.8415%" y="469" width="0.0165%" height="15" fill="rgb(226,228,24)" fg:x="22489" fg:w="4"/><text x="93.0915%" y="479.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (6,324 samples, 26.11%)</title><rect x="66.7630%" y="565" width="26.1074%" height="15" fill="rgb(222,84,9)" fg:x="16172" fg:w="6324"/><text x="67.0130%" y="575.50">[libgobject-2.0.so.0.7600.1]</text></g><g><title>g_closure_invoke (6,320 samples, 26.09%)</title><rect x="66.7795%" y="549" width="26.0909%" height="15" fill="rgb(234,203,30)" fg:x="16176" fg:w="6320"/><text x="67.0295%" y="559.50">g_closure_invoke</text></g><g><title>[libgtk-3.so.0.2405.32] (6,320 samples, 26.09%)</title><rect x="66.7795%" y="533" width="26.0909%" height="15" fill="rgb(238,109,14)" fg:x="16176" fg:w="6320"/><text x="67.0295%" y="543.50">[libgtk-3.so.0.2405.32]</text></g><g><title>g_signal_emit (6,325 samples, 26.11%)</title><rect x="66.7630%" y="597" width="26.1115%" height="15" fill="rgb(233,206,34)" fg:x="16172" fg:w="6325"/><text x="67.0130%" y="607.50">g_signal_emit</text></g><g><title>g_signal_emit_valist (6,325 samples, 26.11%)</title><rect x="66.7630%" y="581" width="26.1115%" height="15" fill="rgb(220,167,47)" fg:x="16172" fg:w="6325"/><text x="67.0130%" y="591.50">g_signal_emit_valist</text></g><g><title>g_signal_has_handler_pending (3 samples, 0.01%)</title><rect x="92.8745%" y="597" width="0.0124%" height="15" fill="rgb(238,105,10)" fg:x="22497" fg:w="3"/><text x="93.1245%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6,329 samples, 26.13%)</title><rect x="66.7630%" y="613" width="26.1281%" height="15" fill="rgb(213,227,17)" fg:x="16172" fg:w="6329"/><text x="67.0130%" y="623.50">[libgtk-3.so.0.2405.32]</text></g><g><title>cairo_fill (7 samples, 0.03%)</title><rect x="92.9158%" y="581" width="0.0289%" height="15" fill="rgb(217,132,38)" fg:x="22507" fg:w="7"/><text x="93.1658%" y="591.50"></text></g><g><title>[libcairo.so.2.11708.0] (7 samples, 0.03%)</title><rect x="92.9158%" y="565" width="0.0289%" height="15" fill="rgb(242,146,4)" fg:x="22507" fg:w="7"/><text x="93.1658%" y="575.50"></text></g><g><title>[libcairo.so.2.11708.0] (7 samples, 0.03%)</title><rect x="92.9158%" y="549" width="0.0289%" height="15" fill="rgb(212,61,9)" fg:x="22507" fg:w="7"/><text x="93.1658%" y="559.50"></text></g><g><title>[libcairo.so.2.11708.0] (6 samples, 0.02%)</title><rect x="92.9200%" y="533" width="0.0248%" height="15" fill="rgb(247,126,22)" fg:x="22508" fg:w="6"/><text x="93.1700%" y="543.50"></text></g><g><title>[libcairo.so.2.11708.0] (5 samples, 0.02%)</title><rect x="92.9241%" y="517" width="0.0206%" height="15" fill="rgb(220,196,2)" fg:x="22509" fg:w="5"/><text x="93.1741%" y="527.50"></text></g><g><title>[libcairo.so.2.11708.0] (5 samples, 0.02%)</title><rect x="92.9241%" y="501" width="0.0206%" height="15" fill="rgb(208,46,4)" fg:x="22509" fg:w="5"/><text x="93.1741%" y="511.50"></text></g><g><title>[libcairo.so.2.11708.0] (5 samples, 0.02%)</title><rect x="92.9241%" y="485" width="0.0206%" height="15" fill="rgb(252,104,46)" fg:x="22509" fg:w="5"/><text x="93.1741%" y="495.50"></text></g><g><title>[libcairo.so.2.11708.0] (5 samples, 0.02%)</title><rect x="92.9241%" y="469" width="0.0206%" height="15" fill="rgb(237,152,48)" fg:x="22509" fg:w="5"/><text x="93.1741%" y="479.50"></text></g><g><title>pixman_fill (5 samples, 0.02%)</title><rect x="92.9241%" y="453" width="0.0206%" height="15" fill="rgb(221,59,37)" fg:x="22509" fg:w="5"/><text x="93.1741%" y="463.50"></text></g><g><title>[libpixman-1.so.0.42.2] (5 samples, 0.02%)</title><rect x="92.9241%" y="437" width="0.0206%" height="15" fill="rgb(209,202,51)" fg:x="22509" fg:w="5"/><text x="93.1741%" y="447.50"></text></g><g><title>gdk_cairo_region (3 samples, 0.01%)</title><rect x="92.9489%" y="581" width="0.0124%" height="15" fill="rgb(228,81,30)" fg:x="22515" fg:w="3"/><text x="93.1989%" y="591.50"></text></g><g><title>cairo_rectangle (3 samples, 0.01%)</title><rect x="92.9489%" y="565" width="0.0124%" height="15" fill="rgb(227,42,39)" fg:x="22515" fg:w="3"/><text x="93.1989%" y="575.50"></text></g><g><title>[libcairo.so.2.11708.0] (3 samples, 0.01%)</title><rect x="92.9489%" y="549" width="0.0124%" height="15" fill="rgb(221,26,2)" fg:x="22515" fg:w="3"/><text x="93.1989%" y="559.50"></text></g><g><title>[libc.so.6] (824 samples, 3.40%)</title><rect x="92.9695%" y="501" width="3.4017%" height="15" fill="rgb(254,61,31)" fg:x="22520" fg:w="824"/><text x="93.2195%" y="511.50">[li..</text></g><g><title>[libcairo.so.2.11708.0] (827 samples, 3.41%)</title><rect x="92.9612%" y="549" width="3.4141%" height="15" fill="rgb(222,173,38)" fg:x="22518" fg:w="827"/><text x="93.2112%" y="559.50">[li..</text></g><g><title>[libpixman-1.so.0.42.2] (825 samples, 3.41%)</title><rect x="92.9695%" y="533" width="3.4059%" height="15" fill="rgb(218,50,12)" fg:x="22520" fg:w="825"/><text x="93.2195%" y="543.50">[li..</text></g><g><title>[libpixman-1.so.0.42.2] (825 samples, 3.41%)</title><rect x="92.9695%" y="517" width="3.4059%" height="15" fill="rgb(223,88,40)" fg:x="22520" fg:w="825"/><text x="93.2195%" y="527.50">[li..</text></g><g><title>[libgdk-3.so.0.2405.32] (843 samples, 3.48%)</title><rect x="92.8993%" y="597" width="3.4802%" height="15" fill="rgb(237,54,19)" fg:x="22503" fg:w="843"/><text x="93.1493%" y="607.50">[li..</text></g><g><title>gdk_window_create_similar_surface (828 samples, 3.42%)</title><rect x="92.9612%" y="581" width="3.4182%" height="15" fill="rgb(251,129,25)" fg:x="22518" fg:w="828"/><text x="93.2112%" y="591.50">gdk..</text></g><g><title>cairo_surface_create_similar (828 samples, 3.42%)</title><rect x="92.9612%" y="565" width="3.4182%" height="15" fill="rgb(238,97,19)" fg:x="22518" fg:w="828"/><text x="93.2112%" y="575.50">cai..</text></g><g><title>g_object_new (6 samples, 0.02%)</title><rect x="96.3795%" y="597" width="0.0248%" height="15" fill="rgb(240,169,18)" fg:x="23346" fg:w="6"/><text x="96.6295%" y="607.50"></text></g><g><title>g_object_new_valist (6 samples, 0.02%)</title><rect x="96.3795%" y="581" width="0.0248%" height="15" fill="rgb(230,187,49)" fg:x="23346" fg:w="6"/><text x="96.6295%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7,181 samples, 29.65%)</title><rect x="66.7630%" y="629" width="29.6454%" height="15" fill="rgb(209,44,26)" fg:x="16172" fg:w="7181"/><text x="67.0130%" y="639.50">[libgtk-3.so.0.2405.32]</text></g><g><title>gdk_window_begin_draw_frame (851 samples, 3.51%)</title><rect x="92.8952%" y="613" width="3.5132%" height="15" fill="rgb(244,0,6)" fg:x="22502" fg:w="851"/><text x="93.1452%" y="623.50">gdk..</text></g><g><title>[crocus_dri.so] (31 samples, 0.13%)</title><rect x="96.4249%" y="469" width="0.1280%" height="15" fill="rgb(248,18,21)" fg:x="23357" fg:w="31"/><text x="96.6749%" y="479.50"></text></g><g><title>[crocus_dri.so] (31 samples, 0.13%)</title><rect x="96.4249%" y="453" width="0.1280%" height="15" fill="rgb(245,180,19)" fg:x="23357" fg:w="31"/><text x="96.6749%" y="463.50"></text></g><g><title>[crocus_dri.so] (35 samples, 0.14%)</title><rect x="96.4208%" y="485" width="0.1445%" height="15" fill="rgb(252,118,36)" fg:x="23356" fg:w="35"/><text x="96.6708%" y="495.50"></text></g><g><title>[crocus_dri.so] (49 samples, 0.20%)</title><rect x="96.4166%" y="501" width="0.2023%" height="15" fill="rgb(210,224,19)" fg:x="23355" fg:w="49"/><text x="96.6666%" y="511.50"></text></g><g><title>[libc.so.6] (13 samples, 0.05%)</title><rect x="96.5652%" y="485" width="0.0537%" height="15" fill="rgb(218,30,24)" fg:x="23391" fg:w="13"/><text x="96.8152%" y="495.50"></text></g><g><title>[crocus_dri.so] (54 samples, 0.22%)</title><rect x="96.4125%" y="549" width="0.2229%" height="15" fill="rgb(219,75,50)" fg:x="23354" fg:w="54"/><text x="96.6625%" y="559.50"></text></g><g><title>[crocus_dri.so] (54 samples, 0.22%)</title><rect x="96.4125%" y="533" width="0.2229%" height="15" fill="rgb(234,72,50)" fg:x="23354" fg:w="54"/><text x="96.6625%" y="543.50"></text></g><g><title>[crocus_dri.so] (53 samples, 0.22%)</title><rect x="96.4166%" y="517" width="0.2188%" height="15" fill="rgb(219,100,48)" fg:x="23355" fg:w="53"/><text x="96.6666%" y="527.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="96.6189%" y="501" width="0.0165%" height="15" fill="rgb(253,5,41)" fg:x="23404" fg:w="4"/><text x="96.8689%" y="511.50"></text></g><g><title>[crocus_dri.so] (55 samples, 0.23%)</title><rect x="96.4125%" y="581" width="0.2271%" height="15" fill="rgb(247,181,11)" fg:x="23354" fg:w="55"/><text x="96.6625%" y="591.50"></text></g><g><title>[crocus_dri.so] (55 samples, 0.23%)</title><rect x="96.4125%" y="565" width="0.2271%" height="15" fill="rgb(222,223,25)" fg:x="23354" fg:w="55"/><text x="96.6625%" y="575.50"></text></g><g><title>[libEGL.so.1.1.0] (5 samples, 0.02%)</title><rect x="96.6396%" y="565" width="0.0206%" height="15" fill="rgb(214,198,28)" fg:x="23409" fg:w="5"/><text x="96.8896%" y="575.50"></text></g><g><title>[libEGL.so.1.1.0] (4 samples, 0.02%)</title><rect x="96.6437%" y="549" width="0.0165%" height="15" fill="rgb(230,46,43)" fg:x="23410" fg:w="4"/><text x="96.8937%" y="559.50"></text></g><g><title>__getpid (3 samples, 0.01%)</title><rect x="96.6478%" y="533" width="0.0124%" height="15" fill="rgb(233,65,53)" fg:x="23411" fg:w="3"/><text x="96.8978%" y="543.50"></text></g><g><title>[crocus_dri.so] (28 samples, 0.12%)</title><rect x="96.7428%" y="405" width="0.1156%" height="15" fill="rgb(221,121,27)" fg:x="23434" fg:w="28"/><text x="96.9928%" y="415.50"></text></g><g><title>[crocus_dri.so] (15 samples, 0.06%)</title><rect x="96.7964%" y="389" width="0.0619%" height="15" fill="rgb(247,70,47)" fg:x="23447" fg:w="15"/><text x="97.0464%" y="399.50"></text></g><g><title>[crocus_dri.so] (4 samples, 0.02%)</title><rect x="96.8418%" y="373" width="0.0165%" height="15" fill="rgb(228,85,35)" fg:x="23458" fg:w="4"/><text x="97.0918%" y="383.50"></text></g><g><title>[crocus_dri.so] (35 samples, 0.14%)</title><rect x="96.7263%" y="421" width="0.1445%" height="15" fill="rgb(209,50,18)" fg:x="23430" fg:w="35"/><text x="96.9763%" y="431.50"></text></g><g><title>[crocus_dri.so] (57 samples, 0.24%)</title><rect x="96.6974%" y="437" width="0.2353%" height="15" fill="rgb(250,19,35)" fg:x="23423" fg:w="57"/><text x="96.9474%" y="447.50"></text></g><g><title>ioctl (15 samples, 0.06%)</title><rect x="96.8707%" y="421" width="0.0619%" height="15" fill="rgb(253,107,29)" fg:x="23465" fg:w="15"/><text x="97.1207%" y="431.50"></text></g><g><title>[crocus_dri.so] (64 samples, 0.26%)</title><rect x="96.6932%" y="453" width="0.2642%" height="15" fill="rgb(252,179,29)" fg:x="23422" fg:w="64"/><text x="96.9432%" y="463.50"></text></g><g><title>ioctl (6 samples, 0.02%)</title><rect x="96.9327%" y="437" width="0.0248%" height="15" fill="rgb(238,194,6)" fg:x="23480" fg:w="6"/><text x="97.1827%" y="447.50"></text></g><g><title>[crocus_dri.so] (73 samples, 0.30%)</title><rect x="96.6891%" y="469" width="0.3014%" height="15" fill="rgb(238,164,29)" fg:x="23421" fg:w="73"/><text x="96.9391%" y="479.50"></text></g><g><title>ioctl (7 samples, 0.03%)</title><rect x="96.9616%" y="453" width="0.0289%" height="15" fill="rgb(224,25,9)" fg:x="23487" fg:w="7"/><text x="97.2116%" y="463.50"></text></g><g><title>[crocus_dri.so] (155 samples, 0.64%)</title><rect x="96.6767%" y="501" width="0.6399%" height="15" fill="rgb(244,153,23)" fg:x="23418" fg:w="155"/><text x="96.9267%" y="511.50"></text></g><g><title>[crocus_dri.so] (153 samples, 0.63%)</title><rect x="96.6850%" y="485" width="0.6316%" height="15" fill="rgb(212,203,14)" fg:x="23420" fg:w="153"/><text x="96.9350%" y="495.50"></text></g><g><title>ioctl (79 samples, 0.33%)</title><rect x="96.9905%" y="469" width="0.3261%" height="15" fill="rgb(220,164,20)" fg:x="23494" fg:w="79"/><text x="97.2405%" y="479.50"></text></g><g><title>[crocus_dri.so] (160 samples, 0.66%)</title><rect x="96.6726%" y="533" width="0.6605%" height="15" fill="rgb(222,203,48)" fg:x="23417" fg:w="160"/><text x="96.9226%" y="543.50"></text></g><g><title>[crocus_dri.so] (160 samples, 0.66%)</title><rect x="96.6726%" y="517" width="0.6605%" height="15" fill="rgb(215,159,22)" fg:x="23417" fg:w="160"/><text x="96.9226%" y="527.50"></text></g><g><title>ioctl (4 samples, 0.02%)</title><rect x="97.3166%" y="501" width="0.0165%" height="15" fill="rgb(216,183,47)" fg:x="23573" fg:w="4"/><text x="97.5666%" y="511.50"></text></g><g><title>wl_display_flush (11 samples, 0.05%)</title><rect x="97.3414%" y="533" width="0.0454%" height="15" fill="rgb(229,195,25)" fg:x="23579" fg:w="11"/><text x="97.5914%" y="543.50"></text></g><g><title>[libwayland-client.so.0.22.0] (11 samples, 0.05%)</title><rect x="97.3414%" y="517" width="0.0454%" height="15" fill="rgb(224,132,51)" fg:x="23579" fg:w="11"/><text x="97.5914%" y="527.50"></text></g><g><title>sendmsg (11 samples, 0.05%)</title><rect x="97.3414%" y="501" width="0.0454%" height="15" fill="rgb(240,63,7)" fg:x="23579" fg:w="11"/><text x="97.5914%" y="511.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (182 samples, 0.75%)</title><rect x="96.6643%" y="549" width="0.7514%" height="15" fill="rgb(249,182,41)" fg:x="23415" fg:w="182"/><text x="96.9143%" y="559.50"></text></g><g><title>wl_proxy_marshal_flags (7 samples, 0.03%)</title><rect x="97.3868%" y="533" width="0.0289%" height="15" fill="rgb(243,47,26)" fg:x="23590" fg:w="7"/><text x="97.6368%" y="543.50"></text></g><g><title>wl_proxy_marshal_array_flags (5 samples, 0.02%)</title><rect x="97.3950%" y="517" width="0.0206%" height="15" fill="rgb(233,48,2)" fg:x="23592" fg:w="5"/><text x="97.6450%" y="527.50"></text></g><g><title>[libwayland-client.so.0.22.0] (3 samples, 0.01%)</title><rect x="97.4033%" y="501" width="0.0124%" height="15" fill="rgb(244,165,34)" fg:x="23594" fg:w="3"/><text x="97.6533%" y="511.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (189 samples, 0.78%)</title><rect x="96.6396%" y="581" width="0.7803%" height="15" fill="rgb(207,89,7)" fg:x="23409" fg:w="189"/><text x="96.8896%" y="591.50"></text></g><g><title>[libEGL_mesa.so.0.0.0] (184 samples, 0.76%)</title><rect x="96.6602%" y="565" width="0.7596%" height="15" fill="rgb(244,117,36)" fg:x="23414" fg:w="184"/><text x="96.9102%" y="575.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="97.4198%" y="581" width="0.0165%" height="15" fill="rgb(226,144,34)" fg:x="23598" fg:w="4"/><text x="97.6698%" y="591.50"></text></g><g><title>wl_proxy_marshal_flags (4 samples, 0.02%)</title><rect x="97.4198%" y="565" width="0.0165%" height="15" fill="rgb(213,23,19)" fg:x="23598" fg:w="4"/><text x="97.6698%" y="575.50"></text></g><g><title>wl_proxy_marshal_array_flags (3 samples, 0.01%)</title><rect x="97.4239%" y="549" width="0.0124%" height="15" fill="rgb(217,75,12)" fg:x="23599" fg:w="3"/><text x="97.6739%" y="559.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (251 samples, 1.04%)</title><rect x="96.4125%" y="597" width="1.0362%" height="15" fill="rgb(224,159,17)" fg:x="23354" fg:w="251"/><text x="96.6625%" y="607.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (254 samples, 1.05%)</title><rect x="96.4084%" y="613" width="1.0486%" height="15" fill="rgb(217,118,1)" fg:x="23353" fg:w="254"/><text x="96.6584%" y="623.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="97.4570%" y="597" width="0.0289%" height="15" fill="rgb(232,180,48)" fg:x="23607" fg:w="7"/><text x="97.7070%" y="607.50"></text></g><g><title>[libcairo.so.2.11708.0] (7 samples, 0.03%)</title><rect x="97.4570%" y="581" width="0.0289%" height="15" fill="rgb(230,27,33)" fg:x="23607" fg:w="7"/><text x="97.7070%" y="591.50"></text></g><g><title>[libcairo.so.2.11708.0] (7 samples, 0.03%)</title><rect x="97.4570%" y="565" width="0.0289%" height="15" fill="rgb(205,31,21)" fg:x="23607" fg:w="7"/><text x="97.7070%" y="575.50"></text></g><g><title>cairo_surface_destroy (5 samples, 0.02%)</title><rect x="97.4652%" y="549" width="0.0206%" height="15" fill="rgb(253,59,4)" fg:x="23609" fg:w="5"/><text x="97.7152%" y="559.50"></text></g><g><title>[libcairo.so.2.11708.0] (5 samples, 0.02%)</title><rect x="97.4652%" y="533" width="0.0206%" height="15" fill="rgb(224,201,9)" fg:x="23609" fg:w="5"/><text x="97.7152%" y="543.50"></text></g><g><title>[libcairo.so.2.11708.0] (4 samples, 0.02%)</title><rect x="97.4693%" y="517" width="0.0165%" height="15" fill="rgb(229,206,30)" fg:x="23610" fg:w="4"/><text x="97.7193%" y="527.50"></text></g><g><title>pixman_image_unref (3 samples, 0.01%)</title><rect x="97.4735%" y="501" width="0.0124%" height="15" fill="rgb(212,67,47)" fg:x="23611" fg:w="3"/><text x="97.7235%" y="511.50"></text></g><g><title>[libpixman-1.so.0.42.2] (3 samples, 0.01%)</title><rect x="97.4735%" y="485" width="0.0124%" height="15" fill="rgb(211,96,50)" fg:x="23611" fg:w="3"/><text x="97.7235%" y="495.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (5 samples, 0.02%)</title><rect x="97.4859%" y="597" width="0.0206%" height="15" fill="rgb(252,114,18)" fg:x="23614" fg:w="5"/><text x="97.7359%" y="607.50"></text></g><g><title>g_signal_handlers_destroy (5 samples, 0.02%)</title><rect x="97.4859%" y="581" width="0.0206%" height="15" fill="rgb(223,58,37)" fg:x="23614" fg:w="5"/><text x="97.7359%" y="591.50"></text></g><g><title>g_hash_table_lookup (4 samples, 0.02%)</title><rect x="97.4900%" y="565" width="0.0165%" height="15" fill="rgb(237,70,4)" fg:x="23615" fg:w="4"/><text x="97.7400%" y="575.50"></text></g><g><title>g_object_unref (15 samples, 0.06%)</title><rect x="97.4570%" y="613" width="0.0619%" height="15" fill="rgb(244,85,46)" fg:x="23607" fg:w="15"/><text x="97.7070%" y="623.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (7,455 samples, 30.78%)</title><rect x="66.7506%" y="661" width="30.7765%" height="15" fill="rgb(223,39,52)" fg:x="16169" fg:w="7455"/><text x="67.0006%" y="671.50">[libgdk-3.so.0.2405.32]</text></g><g><title>gtk_main_do_event (7,452 samples, 30.76%)</title><rect x="66.7630%" y="645" width="30.7641%" height="15" fill="rgb(218,200,14)" fg:x="16172" fg:w="7452"/><text x="67.0130%" y="655.50">gtk_main_do_event</text></g><g><title>gdk_window_end_draw_frame (271 samples, 1.12%)</title><rect x="96.4084%" y="629" width="1.1188%" height="15" fill="rgb(208,171,16)" fg:x="23353" fg:w="271"/><text x="96.6584%" y="639.50"></text></g><g><title>[libEGL.so.1.1.0] (7 samples, 0.03%)</title><rect x="97.5271%" y="645" width="0.0289%" height="15" fill="rgb(234,200,18)" fg:x="23624" fg:w="7"/><text x="97.7771%" y="655.50"></text></g><g><title>[libEGL.so.1.1.0] (7 samples, 0.03%)</title><rect x="97.5271%" y="629" width="0.0289%" height="15" fill="rgb(228,45,11)" fg:x="23624" fg:w="7"/><text x="97.7771%" y="639.50"></text></g><g><title>__getpid (5 samples, 0.02%)</title><rect x="97.5354%" y="613" width="0.0206%" height="15" fill="rgb(237,182,11)" fg:x="23626" fg:w="5"/><text x="97.7854%" y="623.50"></text></g><g><title>eglQuerySurface (9 samples, 0.04%)</title><rect x="97.5271%" y="661" width="0.0372%" height="15" fill="rgb(241,175,49)" fg:x="23624" fg:w="9"/><text x="97.7771%" y="671.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (7,483 samples, 30.89%)</title><rect x="66.6846%" y="677" width="30.8921%" height="15" fill="rgb(247,38,35)" fg:x="16153" fg:w="7483"/><text x="66.9346%" y="687.50">[libgdk-3.so.0.2405.32]</text></g><g><title>[libgdk-3.so.0.2405.32] (7,486 samples, 30.90%)</title><rect x="66.6846%" y="693" width="30.9045%" height="15" fill="rgb(228,39,49)" fg:x="16153" fg:w="7486"/><text x="66.9346%" y="703.50">[libgdk-3.so.0.2405.32]</text></g><g><title>[libgdk-3.so.0.2405.32] (7,490 samples, 30.92%)</title><rect x="66.6804%" y="709" width="30.9210%" height="15" fill="rgb(226,101,26)" fg:x="16152" fg:w="7490"/><text x="66.9304%" y="719.50">[libgdk-3.so.0.2405.32]</text></g><g><title>[libgtk-3.so.0.2405.32] (15 samples, 0.06%)</title><rect x="97.6097%" y="565" width="0.0619%" height="15" fill="rgb(206,141,19)" fg:x="23644" fg:w="15"/><text x="97.8597%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="97.6345%" y="549" width="0.0372%" height="15" fill="rgb(211,200,13)" fg:x="23650" fg:w="9"/><text x="97.8845%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6510%" y="533" width="0.0206%" height="15" fill="rgb(241,121,6)" fg:x="23654" fg:w="5"/><text x="97.9010%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="97.6551%" y="517" width="0.0165%" height="15" fill="rgb(234,221,29)" fg:x="23655" fg:w="4"/><text x="97.9051%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (17 samples, 0.07%)</title><rect x="97.6056%" y="581" width="0.0702%" height="15" fill="rgb(229,136,5)" fg:x="23643" fg:w="17"/><text x="97.8556%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (18 samples, 0.07%)</title><rect x="97.6056%" y="613" width="0.0743%" height="15" fill="rgb(238,36,11)" fg:x="23643" fg:w="18"/><text x="97.8556%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (18 samples, 0.07%)</title><rect x="97.6056%" y="597" width="0.0743%" height="15" fill="rgb(251,55,41)" fg:x="23643" fg:w="18"/><text x="97.8556%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (20 samples, 0.08%)</title><rect x="97.6056%" y="629" width="0.0826%" height="15" fill="rgb(242,34,40)" fg:x="23643" fg:w="20"/><text x="97.8556%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (21 samples, 0.09%)</title><rect x="97.6056%" y="645" width="0.0867%" height="15" fill="rgb(215,42,17)" fg:x="23643" fg:w="21"/><text x="97.8556%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (22 samples, 0.09%)</title><rect x="97.6056%" y="693" width="0.0908%" height="15" fill="rgb(207,44,46)" fg:x="23643" fg:w="22"/><text x="97.8556%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (22 samples, 0.09%)</title><rect x="97.6056%" y="677" width="0.0908%" height="15" fill="rgb(211,206,28)" fg:x="23643" fg:w="22"/><text x="97.8556%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (22 samples, 0.09%)</title><rect x="97.6056%" y="661" width="0.0908%" height="15" fill="rgb(237,167,16)" fg:x="23643" fg:w="22"/><text x="97.8556%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="97.6964%" y="149" width="0.0165%" height="15" fill="rgb(233,66,6)" fg:x="23665" fg:w="4"/><text x="97.9464%" y="159.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="97.6964%" y="133" width="0.0165%" height="15" fill="rgb(246,123,29)" fg:x="23665" fg:w="4"/><text x="97.9464%" y="143.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="645" width="0.0206%" height="15" fill="rgb(209,62,40)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="629" width="0.0206%" height="15" fill="rgb(218,4,25)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="639.50"></text></g><g><title>gtk_widget_get_preferred_height_and_baseline_for_width (5 samples, 0.02%)</title><rect x="97.6964%" y="613" width="0.0206%" height="15" fill="rgb(253,91,49)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="597" width="0.0206%" height="15" fill="rgb(228,155,29)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="581" width="0.0206%" height="15" fill="rgb(243,57,37)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="565" width="0.0206%" height="15" fill="rgb(244,167,17)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="575.50"></text></g><g><title>gtk_widget_get_preferred_height (5 samples, 0.02%)</title><rect x="97.6964%" y="549" width="0.0206%" height="15" fill="rgb(207,181,38)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="533" width="0.0206%" height="15" fill="rgb(211,8,23)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="517" width="0.0206%" height="15" fill="rgb(235,11,44)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="501" width="0.0206%" height="15" fill="rgb(248,18,52)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="485" width="0.0206%" height="15" fill="rgb(208,4,7)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="469" width="0.0206%" height="15" fill="rgb(240,17,39)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="453" width="0.0206%" height="15" fill="rgb(207,170,3)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="463.50"></text></g><g><title>gtk_widget_get_preferred_height (5 samples, 0.02%)</title><rect x="97.6964%" y="437" width="0.0206%" height="15" fill="rgb(236,100,52)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="421" width="0.0206%" height="15" fill="rgb(246,78,51)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="405" width="0.0206%" height="15" fill="rgb(211,17,15)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="389" width="0.0206%" height="15" fill="rgb(209,59,46)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="373" width="0.0206%" height="15" fill="rgb(210,92,25)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="357" width="0.0206%" height="15" fill="rgb(238,174,52)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="367.50"></text></g><g><title>gtk_widget_get_preferred_height_and_baseline_for_width (5 samples, 0.02%)</title><rect x="97.6964%" y="341" width="0.0206%" height="15" fill="rgb(230,73,7)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="325" width="0.0206%" height="15" fill="rgb(243,124,40)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="309" width="0.0206%" height="15" fill="rgb(244,170,11)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="293" width="0.0206%" height="15" fill="rgb(207,114,54)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="277" width="0.0206%" height="15" fill="rgb(205,42,20)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="287.50"></text></g><g><title>gtk_widget_get_preferred_height_and_baseline_for_width (5 samples, 0.02%)</title><rect x="97.6964%" y="261" width="0.0206%" height="15" fill="rgb(230,30,28)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="245" width="0.0206%" height="15" fill="rgb(205,73,54)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="255.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="229" width="0.0206%" height="15" fill="rgb(254,227,23)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="239.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="213" width="0.0206%" height="15" fill="rgb(228,202,34)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="223.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="197" width="0.0206%" height="15" fill="rgb(222,225,37)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="207.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="181" width="0.0206%" height="15" fill="rgb(221,14,54)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="191.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="97.6964%" y="165" width="0.0206%" height="15" fill="rgb(254,102,2)" fg:x="23665" fg:w="5"/><text x="97.9464%" y="175.50"></text></g><g><title>g_signal_emit (7 samples, 0.03%)</title><rect x="97.6964%" y="693" width="0.0289%" height="15" fill="rgb(232,104,17)" fg:x="23665" fg:w="7"/><text x="97.9464%" y="703.50"></text></g><g><title>g_signal_emit_valist (7 samples, 0.03%)</title><rect x="97.6964%" y="677" width="0.0289%" height="15" fill="rgb(250,220,14)" fg:x="23665" fg:w="7"/><text x="97.9464%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="97.6964%" y="661" width="0.0289%" height="15" fill="rgb(241,158,9)" fg:x="23665" fg:w="7"/><text x="97.9464%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (30 samples, 0.12%)</title><rect x="97.6056%" y="709" width="0.1238%" height="15" fill="rgb(246,9,43)" fg:x="23643" fg:w="30"/><text x="97.8556%" y="719.50"></text></g><g><title>g_signal_emit (7,531 samples, 31.09%)</title><rect x="66.6639%" y="741" width="31.0903%" height="15" fill="rgb(206,73,33)" fg:x="16148" fg:w="7531"/><text x="66.9139%" y="751.50">g_signal_emit</text></g><g><title>g_signal_emit_valist (7,531 samples, 31.09%)</title><rect x="66.6639%" y="725" width="31.0903%" height="15" fill="rgb(222,79,8)" fg:x="16148" fg:w="7531"/><text x="66.9139%" y="735.50">g_signal_emit_valist</text></g><g><title>[libgdk-3.so.0.2405.32] (7,534 samples, 31.10%)</title><rect x="66.6557%" y="773" width="31.1027%" height="15" fill="rgb(234,8,54)" fg:x="16146" fg:w="7534"/><text x="66.9057%" y="783.50">[libgdk-3.so.0.2405.32]</text></g><g><title>[libgdk-3.so.0.2405.32] (7,534 samples, 31.10%)</title><rect x="66.6557%" y="757" width="31.1027%" height="15" fill="rgb(209,134,38)" fg:x="16146" fg:w="7534"/><text x="66.9057%" y="767.50">[libgdk-3.so.0.2405.32]</text></g><g><title>[libglib-2.0.so.0.7600.1] (5 samples, 0.02%)</title><rect x="97.7583%" y="773" width="0.0206%" height="15" fill="rgb(230,127,29)" fg:x="23680" fg:w="5"/><text x="98.0083%" y="783.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (7,543 samples, 31.14%)</title><rect x="66.6474%" y="789" width="31.1398%" height="15" fill="rgb(242,44,41)" fg:x="16144" fg:w="7543"/><text x="66.8974%" y="799.50">[libglib-2.0.so.0.7600.1]</text></g><g><title>WTF::CString::CString (3 samples, 0.01%)</title><rect x="97.7914%" y="645" width="0.0124%" height="15" fill="rgb(222,56,43)" fg:x="23688" fg:w="3"/><text x="98.0414%" y="655.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="97.7914%" y="629" width="0.0124%" height="15" fill="rgb(238,39,47)" fg:x="23688" fg:w="3"/><text x="98.0414%" y="639.50"></text></g><g><title>WTF::CString::CString (8 samples, 0.03%)</title><rect x="97.8037%" y="565" width="0.0330%" height="15" fill="rgb(226,79,43)" fg:x="23691" fg:w="8"/><text x="98.0537%" y="575.50"></text></g><g><title>[libc.so.6] (8 samples, 0.03%)</title><rect x="97.8037%" y="549" width="0.0330%" height="15" fill="rgb(242,105,53)" fg:x="23691" fg:w="8"/><text x="98.0537%" y="559.50"></text></g><g><title>WTF::String::utf8 (34 samples, 0.14%)</title><rect x="97.8037%" y="645" width="0.1404%" height="15" fill="rgb(251,132,46)" fg:x="23691" fg:w="34"/><text x="98.0537%" y="655.50"></text></g><g><title>WTF::String::tryGetUTF8 (34 samples, 0.14%)</title><rect x="97.8037%" y="629" width="0.1404%" height="15" fill="rgb(231,77,14)" fg:x="23691" fg:w="34"/><text x="98.0537%" y="639.50"></text></g><g><title>WTF::StringImpl::tryGetUTF8 (34 samples, 0.14%)</title><rect x="97.8037%" y="613" width="0.1404%" height="15" fill="rgb(240,135,9)" fg:x="23691" fg:w="34"/><text x="98.0537%" y="623.50"></text></g><g><title>WTF::StringImpl::utf8ForCharacters (34 samples, 0.14%)</title><rect x="97.8037%" y="597" width="0.1404%" height="15" fill="rgb(248,109,14)" fg:x="23691" fg:w="34"/><text x="98.0537%" y="607.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (34 samples, 0.14%)</title><rect x="97.8037%" y="581" width="0.1404%" height="15" fill="rgb(227,146,52)" fg:x="23691" fg:w="34"/><text x="98.0537%" y="591.50"></text></g><g><title>WTF::Unicode::convertLatin1ToUTF8 (26 samples, 0.11%)</title><rect x="97.8368%" y="565" width="0.1073%" height="15" fill="rgb(232,54,3)" fg:x="23699" fg:w="26"/><text x="98.0868%" y="575.50"></text></g><g><title>WTF::URL::URL (48 samples, 0.20%)</title><rect x="97.9524%" y="629" width="0.1982%" height="15" fill="rgb(229,201,43)" fg:x="23727" fg:w="48"/><text x="98.2024%" y="639.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (48 samples, 0.20%)</title><rect x="97.9524%" y="613" width="0.1982%" height="15" fill="rgb(252,161,33)" fg:x="23727" fg:w="48"/><text x="98.2024%" y="623.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (48 samples, 0.20%)</title><rect x="97.9524%" y="597" width="0.1982%" height="15" fill="rgb(226,146,40)" fg:x="23727" fg:w="48"/><text x="98.2024%" y="607.50"></text></g><g><title>WTF::URL::URL (106 samples, 0.44%)</title><rect x="98.1670%" y="613" width="0.4376%" height="15" fill="rgb(219,47,25)" fg:x="23779" fg:w="106"/><text x="98.4170%" y="623.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (106 samples, 0.44%)</title><rect x="98.1670%" y="597" width="0.4376%" height="15" fill="rgb(250,135,13)" fg:x="23779" fg:w="106"/><text x="98.4170%" y="607.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (106 samples, 0.44%)</title><rect x="98.1670%" y="581" width="0.4376%" height="15" fill="rgb(219,229,18)" fg:x="23779" fg:w="106"/><text x="98.4170%" y="591.50"></text></g><g><title>WTF::String::String (10 samples, 0.04%)</title><rect x="98.6046%" y="597" width="0.0413%" height="15" fill="rgb(217,152,27)" fg:x="23885" fg:w="10"/><text x="98.8546%" y="607.50"></text></g><g><title>WTF::StringImpl::create (10 samples, 0.04%)</title><rect x="98.6046%" y="581" width="0.0413%" height="15" fill="rgb(225,71,47)" fg:x="23885" fg:w="10"/><text x="98.8546%" y="591.50"></text></g><g><title>[libc.so.6] (10 samples, 0.04%)</title><rect x="98.6046%" y="565" width="0.0413%" height="15" fill="rgb(220,139,14)" fg:x="23885" fg:w="10"/><text x="98.8546%" y="575.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (121 samples, 0.50%)</title><rect x="98.1505%" y="629" width="0.4995%" height="15" fill="rgb(247,54,32)" fg:x="23775" fg:w="121"/><text x="98.4005%" y="639.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (11 samples, 0.05%)</title><rect x="98.6046%" y="613" width="0.0454%" height="15" fill="rgb(252,131,39)" fg:x="23885" fg:w="11"/><text x="98.8546%" y="623.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (170 samples, 0.70%)</title><rect x="97.9524%" y="645" width="0.7018%" height="15" fill="rgb(210,108,39)" fg:x="23727" fg:w="170"/><text x="98.2024%" y="655.50"></text></g><g><title>WTF::CString::CString (4 samples, 0.02%)</title><rect x="98.6583%" y="549" width="0.0165%" height="15" fill="rgb(205,23,29)" fg:x="23898" fg:w="4"/><text x="98.9083%" y="559.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="98.6583%" y="533" width="0.0165%" height="15" fill="rgb(246,139,46)" fg:x="23898" fg:w="4"/><text x="98.9083%" y="543.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (232 samples, 0.96%)</title><rect x="97.7914%" y="661" width="0.9578%" height="15" fill="rgb(250,81,26)" fg:x="23688" fg:w="232"/><text x="98.0414%" y="671.50"></text></g><g><title>webkit_uri_request_get_uri (22 samples, 0.09%)</title><rect x="98.6583%" y="645" width="0.0908%" height="15" fill="rgb(214,104,7)" fg:x="23898" fg:w="22"/><text x="98.9083%" y="655.50"></text></g><g><title>WTF::String::utf8 (22 samples, 0.09%)</title><rect x="98.6583%" y="629" width="0.0908%" height="15" fill="rgb(233,189,8)" fg:x="23898" fg:w="22"/><text x="98.9083%" y="639.50"></text></g><g><title>WTF::String::tryGetUTF8 (22 samples, 0.09%)</title><rect x="98.6583%" y="613" width="0.0908%" height="15" fill="rgb(228,141,17)" fg:x="23898" fg:w="22"/><text x="98.9083%" y="623.50"></text></g><g><title>WTF::StringImpl::tryGetUTF8 (22 samples, 0.09%)</title><rect x="98.6583%" y="597" width="0.0908%" height="15" fill="rgb(247,157,1)" fg:x="23898" fg:w="22"/><text x="98.9083%" y="607.50"></text></g><g><title>WTF::StringImpl::utf8ForCharacters (22 samples, 0.09%)</title><rect x="98.6583%" y="581" width="0.0908%" height="15" fill="rgb(249,225,5)" fg:x="23898" fg:w="22"/><text x="98.9083%" y="591.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (22 samples, 0.09%)</title><rect x="98.6583%" y="565" width="0.0908%" height="15" fill="rgb(242,55,13)" fg:x="23898" fg:w="22"/><text x="98.9083%" y="575.50"></text></g><g><title>WTF::Unicode::convertLatin1ToUTF8 (18 samples, 0.07%)</title><rect x="98.6748%" y="549" width="0.0743%" height="15" fill="rgb(230,49,50)" fg:x="23902" fg:w="18"/><text x="98.9248%" y="559.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (234 samples, 0.97%)</title><rect x="97.7872%" y="773" width="0.9660%" height="15" fill="rgb(241,111,38)" fg:x="23687" fg:w="234"/><text x="98.0372%" y="783.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (234 samples, 0.97%)</title><rect x="97.7872%" y="757" width="0.9660%" height="15" fill="rgb(252,155,4)" fg:x="23687" fg:w="234"/><text x="98.0372%" y="767.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (234 samples, 0.97%)</title><rect x="97.7872%" y="741" width="0.9660%" height="15" fill="rgb(212,69,32)" fg:x="23687" fg:w="234"/><text x="98.0372%" y="751.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (233 samples, 0.96%)</title><rect x="97.7914%" y="725" width="0.9619%" height="15" fill="rgb(243,107,47)" fg:x="23688" fg:w="233"/><text x="98.0414%" y="735.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (233 samples, 0.96%)</title><rect x="97.7914%" y="709" width="0.9619%" height="15" fill="rgb(247,130,12)" fg:x="23688" fg:w="233"/><text x="98.0414%" y="719.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (233 samples, 0.96%)</title><rect x="97.7914%" y="693" width="0.9619%" height="15" fill="rgb(233,74,16)" fg:x="23688" fg:w="233"/><text x="98.0414%" y="703.50"></text></g><g><title>[libwebkit2gtk-4.1.so.0.8.1] (233 samples, 0.96%)</title><rect x="97.7914%" y="677" width="0.9619%" height="15" fill="rgb(208,58,18)" fg:x="23688" fg:w="233"/><text x="98.0414%" y="687.50"></text></g><g><title>[libjavascriptcoregtk-4.1.so.0.3.9] (235 samples, 0.97%)</title><rect x="97.7872%" y="789" width="0.9702%" height="15" fill="rgb(242,225,1)" fg:x="23687" fg:w="235"/><text x="98.0372%" y="799.50"></text></g><g><title>g_main_context_dispatch (7,833 samples, 32.34%)</title><rect x="66.4451%" y="805" width="32.3370%" height="15" fill="rgb(249,39,40)" fg:x="16095" fg:w="7833"/><text x="66.6951%" y="815.50">g_main_context_dispatch</text></g><g><title>[libatspi.so.0.0.1] (5 samples, 0.02%)</title><rect x="98.8110%" y="789" width="0.0206%" height="15" fill="rgb(207,72,44)" fg:x="23935" fg:w="5"/><text x="99.0610%" y="799.50"></text></g><g><title>dbus_connection_get_dispatch_status (4 samples, 0.02%)</title><rect x="98.8152%" y="773" width="0.0165%" height="15" fill="rgb(215,193,12)" fg:x="23936" fg:w="4"/><text x="99.0652%" y="783.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (5 samples, 0.02%)</title><rect x="98.8482%" y="789" width="0.0206%" height="15" fill="rgb(248,41,39)" fg:x="23944" fg:w="5"/><text x="99.0982%" y="799.50"></text></g><g><title>g_source_ref (3 samples, 0.01%)</title><rect x="98.8565%" y="773" width="0.0124%" height="15" fill="rgb(253,85,4)" fg:x="23946" fg:w="3"/><text x="99.1065%" y="783.50"></text></g><g><title>g_main_context_prepare (23 samples, 0.09%)</title><rect x="98.7821%" y="805" width="0.0950%" height="15" fill="rgb(243,70,31)" fg:x="23928" fg:w="23"/><text x="99.0321%" y="815.50"></text></g><g><title>gtk_main_iteration_do (8,003 samples, 33.04%)</title><rect x="65.8465%" y="853" width="33.0388%" height="15" fill="rgb(253,195,26)" fg:x="15950" fg:w="8003"/><text x="66.0965%" y="863.50">gtk_main_iteration_do</text></g><g><title>g_main_context_iteration (8,003 samples, 33.04%)</title><rect x="65.8465%" y="837" width="33.0388%" height="15" fill="rgb(243,42,11)" fg:x="15950" fg:w="8003"/><text x="66.0965%" y="847.50">g_main_context_iteration</text></g><g><title>[libglib-2.0.so.0.7600.1] (8,002 samples, 33.03%)</title><rect x="65.8506%" y="821" width="33.0347%" height="15" fill="rgb(239,66,17)" fg:x="15951" fg:w="8002"/><text x="66.1006%" y="831.50">[libglib-2.0.so.0.7600.1]</text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="98.9019%" y="37" width="0.0124%" height="15" fill="rgb(217,132,21)" fg:x="23957" fg:w="3"/><text x="99.1519%" y="47.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="98.9019%" y="149" width="0.0206%" height="15" fill="rgb(252,202,21)" fg:x="23957" fg:w="5"/><text x="99.1519%" y="159.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="98.9019%" y="133" width="0.0206%" height="15" fill="rgb(233,98,36)" fg:x="23957" fg:w="5"/><text x="99.1519%" y="143.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="98.9019%" y="117" width="0.0206%" height="15" fill="rgb(216,153,54)" fg:x="23957" fg:w="5"/><text x="99.1519%" y="127.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="98.9019%" y="101" width="0.0206%" height="15" fill="rgb(250,99,7)" fg:x="23957" fg:w="5"/><text x="99.1519%" y="111.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="98.9019%" y="85" width="0.0206%" height="15" fill="rgb(207,56,50)" fg:x="23957" fg:w="5"/><text x="99.1519%" y="95.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="98.9019%" y="69" width="0.0206%" height="15" fill="rgb(244,61,34)" fg:x="23957" fg:w="5"/><text x="99.1519%" y="79.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="98.9019%" y="53" width="0.0206%" height="15" fill="rgb(241,50,38)" fg:x="23957" fg:w="5"/><text x="99.1519%" y="63.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="98.8977%" y="405" width="0.0330%" height="15" fill="rgb(212,166,30)" fg:x="23956" fg:w="8"/><text x="99.1477%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="98.8977%" y="389" width="0.0330%" height="15" fill="rgb(249,127,32)" fg:x="23956" fg:w="8"/><text x="99.1477%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="98.8977%" y="373" width="0.0330%" height="15" fill="rgb(209,103,0)" fg:x="23956" fg:w="8"/><text x="99.1477%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="98.8977%" y="357" width="0.0330%" height="15" fill="rgb(238,209,51)" fg:x="23956" fg:w="8"/><text x="99.1477%" y="367.50"></text></g><g><title>gtk_widget_get_preferred_height_and_baseline_for_width (8 samples, 0.03%)</title><rect x="98.8977%" y="341" width="0.0330%" height="15" fill="rgb(237,56,23)" fg:x="23956" fg:w="8"/><text x="99.1477%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="98.8977%" y="325" width="0.0330%" height="15" fill="rgb(215,153,46)" fg:x="23956" fg:w="8"/><text x="99.1477%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="98.8977%" y="309" width="0.0330%" height="15" fill="rgb(224,49,31)" fg:x="23956" fg:w="8"/><text x="99.1477%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="98.8977%" y="293" width="0.0330%" height="15" fill="rgb(250,18,42)" fg:x="23956" fg:w="8"/><text x="99.1477%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="98.8977%" y="277" width="0.0330%" height="15" fill="rgb(215,176,39)" fg:x="23956" fg:w="8"/><text x="99.1477%" y="287.50"></text></g><g><title>gtk_widget_get_preferred_height_and_baseline_for_width (7 samples, 0.03%)</title><rect x="98.9019%" y="261" width="0.0289%" height="15" fill="rgb(223,77,29)" fg:x="23957" fg:w="7"/><text x="99.1519%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="98.9019%" y="245" width="0.0289%" height="15" fill="rgb(234,94,52)" fg:x="23957" fg:w="7"/><text x="99.1519%" y="255.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="98.9019%" y="229" width="0.0289%" height="15" fill="rgb(220,154,50)" fg:x="23957" fg:w="7"/><text x="99.1519%" y="239.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="98.9019%" y="213" width="0.0289%" height="15" fill="rgb(212,11,10)" fg:x="23957" fg:w="7"/><text x="99.1519%" y="223.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="98.9019%" y="197" width="0.0289%" height="15" fill="rgb(205,166,19)" fg:x="23957" fg:w="7"/><text x="99.1519%" y="207.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="98.9019%" y="181" width="0.0289%" height="15" fill="rgb(244,198,16)" fg:x="23957" fg:w="7"/><text x="99.1519%" y="191.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="98.9019%" y="165" width="0.0289%" height="15" fill="rgb(219,69,12)" fg:x="23957" fg:w="7"/><text x="99.1519%" y="175.50"></text></g><g><title>gtk_widget_show (12 samples, 0.05%)</title><rect x="98.8854%" y="853" width="0.0495%" height="15" fill="rgb(245,30,7)" fg:x="23953" fg:w="12"/><text x="99.1354%" y="863.50"></text></g><g><title>g_signal_emit (12 samples, 0.05%)</title><rect x="98.8854%" y="837" width="0.0495%" height="15" fill="rgb(218,221,48)" fg:x="23953" fg:w="12"/><text x="99.1354%" y="847.50"></text></g><g><title>g_signal_emit_valist (12 samples, 0.05%)</title><rect x="98.8854%" y="821" width="0.0495%" height="15" fill="rgb(216,66,15)" fg:x="23953" fg:w="12"/><text x="99.1354%" y="831.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (12 samples, 0.05%)</title><rect x="98.8854%" y="805" width="0.0495%" height="15" fill="rgb(226,122,50)" fg:x="23953" fg:w="12"/><text x="99.1354%" y="815.50"></text></g><g><title>g_closure_invoke (12 samples, 0.05%)</title><rect x="98.8854%" y="789" width="0.0495%" height="15" fill="rgb(239,156,16)" fg:x="23953" fg:w="12"/><text x="99.1354%" y="799.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="98.8854%" y="773" width="0.0495%" height="15" fill="rgb(224,27,38)" fg:x="23953" fg:w="12"/><text x="99.1354%" y="783.50"></text></g><g><title>gtk_widget_realize (10 samples, 0.04%)</title><rect x="98.8936%" y="757" width="0.0413%" height="15" fill="rgb(224,39,27)" fg:x="23955" fg:w="10"/><text x="99.1436%" y="767.50"></text></g><g><title>g_signal_emit (10 samples, 0.04%)</title><rect x="98.8936%" y="741" width="0.0413%" height="15" fill="rgb(215,92,29)" fg:x="23955" fg:w="10"/><text x="99.1436%" y="751.50"></text></g><g><title>g_signal_emit_valist (10 samples, 0.04%)</title><rect x="98.8936%" y="725" width="0.0413%" height="15" fill="rgb(207,159,16)" fg:x="23955" fg:w="10"/><text x="99.1436%" y="735.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (10 samples, 0.04%)</title><rect x="98.8936%" y="709" width="0.0413%" height="15" fill="rgb(238,163,47)" fg:x="23955" fg:w="10"/><text x="99.1436%" y="719.50"></text></g><g><title>g_closure_invoke (10 samples, 0.04%)</title><rect x="98.8936%" y="693" width="0.0413%" height="15" fill="rgb(219,91,49)" fg:x="23955" fg:w="10"/><text x="99.1436%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="98.8936%" y="677" width="0.0413%" height="15" fill="rgb(227,167,31)" fg:x="23955" fg:w="10"/><text x="99.1436%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="98.8936%" y="661" width="0.0413%" height="15" fill="rgb(234,80,54)" fg:x="23955" fg:w="10"/><text x="99.1436%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="98.8936%" y="645" width="0.0413%" height="15" fill="rgb(212,114,2)" fg:x="23955" fg:w="10"/><text x="99.1436%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="98.8936%" y="629" width="0.0413%" height="15" fill="rgb(234,50,24)" fg:x="23955" fg:w="10"/><text x="99.1436%" y="639.50"></text></g><g><title>gtk_widget_get_preferred_height_and_baseline_for_width (9 samples, 0.04%)</title><rect x="98.8977%" y="613" width="0.0372%" height="15" fill="rgb(221,68,8)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="597" width="0.0372%" height="15" fill="rgb(254,180,31)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="581" width="0.0372%" height="15" fill="rgb(247,130,50)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="565" width="0.0372%" height="15" fill="rgb(211,109,4)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="575.50"></text></g><g><title>gtk_widget_get_preferred_height (9 samples, 0.04%)</title><rect x="98.8977%" y="549" width="0.0372%" height="15" fill="rgb(238,50,21)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="533" width="0.0372%" height="15" fill="rgb(225,57,45)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="517" width="0.0372%" height="15" fill="rgb(209,196,50)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="501" width="0.0372%" height="15" fill="rgb(242,140,13)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="485" width="0.0372%" height="15" fill="rgb(217,111,7)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="469" width="0.0372%" height="15" fill="rgb(253,193,51)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="453" width="0.0372%" height="15" fill="rgb(252,70,29)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="463.50"></text></g><g><title>gtk_widget_get_preferred_height (9 samples, 0.04%)</title><rect x="98.8977%" y="437" width="0.0372%" height="15" fill="rgb(232,127,12)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="98.8977%" y="421" width="0.0372%" height="15" fill="rgb(211,180,21)" fg:x="23956" fg:w="9"/><text x="99.1477%" y="431.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="98.9390%" y="677" width="0.0495%" height="15" fill="rgb(229,72,13)" fg:x="23966" fg:w="12"/><text x="99.1890%" y="687.50"></text></g><g><title>gdk_wayland_display_set_cursor_theme (11 samples, 0.05%)</title><rect x="98.9432%" y="661" width="0.0454%" height="15" fill="rgb(240,211,49)" fg:x="23967" fg:w="11"/><text x="99.1932%" y="671.50"></text></g><g><title>wl_cursor_theme_load (11 samples, 0.05%)</title><rect x="98.9432%" y="645" width="0.0454%" height="15" fill="rgb(219,149,40)" fg:x="23967" fg:w="11"/><text x="99.1932%" y="655.50"></text></g><g><title>[libwayland-cursor.so.0.22.0] (11 samples, 0.05%)</title><rect x="98.9432%" y="629" width="0.0454%" height="15" fill="rgb(210,127,46)" fg:x="23967" fg:w="11"/><text x="99.1932%" y="639.50"></text></g><g><title>[libwayland-cursor.so.0.22.0] (10 samples, 0.04%)</title><rect x="98.9473%" y="613" width="0.0413%" height="15" fill="rgb(220,106,7)" fg:x="23968" fg:w="10"/><text x="99.1973%" y="623.50"></text></g><g><title>_IO_fread (5 samples, 0.02%)</title><rect x="98.9679%" y="597" width="0.0206%" height="15" fill="rgb(249,31,22)" fg:x="23973" fg:w="5"/><text x="99.2179%" y="607.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="98.9927%" y="645" width="0.0124%" height="15" fill="rgb(253,1,49)" fg:x="23979" fg:w="3"/><text x="99.2427%" y="655.50"></text></g><g><title>g_object_notify (3 samples, 0.01%)</title><rect x="98.9927%" y="629" width="0.0124%" height="15" fill="rgb(227,144,33)" fg:x="23979" fg:w="3"/><text x="99.2427%" y="639.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="98.9927%" y="613" width="0.0124%" height="15" fill="rgb(249,163,44)" fg:x="23979" fg:w="3"/><text x="99.2427%" y="623.50"></text></g><g><title>g_signal_emit (3 samples, 0.01%)</title><rect x="98.9927%" y="597" width="0.0124%" height="15" fill="rgb(234,15,39)" fg:x="23979" fg:w="3"/><text x="99.2427%" y="607.50"></text></g><g><title>g_signal_emit_valist (3 samples, 0.01%)</title><rect x="98.9927%" y="581" width="0.0124%" height="15" fill="rgb(207,66,16)" fg:x="23979" fg:w="3"/><text x="99.2427%" y="591.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (3 samples, 0.01%)</title><rect x="98.9927%" y="565" width="0.0124%" height="15" fill="rgb(233,112,24)" fg:x="23979" fg:w="3"/><text x="99.2427%" y="575.50"></text></g><g><title>g_closure_invoke (3 samples, 0.01%)</title><rect x="98.9927%" y="549" width="0.0124%" height="15" fill="rgb(230,90,22)" fg:x="23979" fg:w="3"/><text x="99.2427%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="98.9927%" y="533" width="0.0124%" height="15" fill="rgb(229,61,13)" fg:x="23979" fg:w="3"/><text x="99.2427%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="98.9927%" y="517" width="0.0124%" height="15" fill="rgb(225,57,24)" fg:x="23979" fg:w="3"/><text x="99.2427%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.0422%" y="261" width="0.0124%" height="15" fill="rgb(208,169,48)" fg:x="23991" fg:w="3"/><text x="99.2922%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.0381%" y="293" width="0.0248%" height="15" fill="rgb(244,218,51)" fg:x="23990" fg:w="6"/><text x="99.2881%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.0381%" y="277" width="0.0248%" height="15" fill="rgb(214,148,10)" fg:x="23990" fg:w="6"/><text x="99.2881%" y="287.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="99.0340%" y="325" width="0.0330%" height="15" fill="rgb(225,174,27)" fg:x="23989" fg:w="8"/><text x="99.2840%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="99.0381%" y="309" width="0.0289%" height="15" fill="rgb(230,96,26)" fg:x="23990" fg:w="7"/><text x="99.2881%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="99.0340%" y="373" width="0.0413%" height="15" fill="rgb(232,10,30)" fg:x="23989" fg:w="10"/><text x="99.2840%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="99.0340%" y="357" width="0.0413%" height="15" fill="rgb(222,8,50)" fg:x="23989" fg:w="10"/><text x="99.2840%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="99.0340%" y="341" width="0.0413%" height="15" fill="rgb(213,81,27)" fg:x="23989" fg:w="10"/><text x="99.2840%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="99.0340%" y="437" width="0.0495%" height="15" fill="rgb(245,50,10)" fg:x="23989" fg:w="12"/><text x="99.2840%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="99.0340%" y="421" width="0.0495%" height="15" fill="rgb(216,100,18)" fg:x="23989" fg:w="12"/><text x="99.2840%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="99.0340%" y="405" width="0.0495%" height="15" fill="rgb(236,147,54)" fg:x="23989" fg:w="12"/><text x="99.2840%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="99.0340%" y="389" width="0.0495%" height="15" fill="rgb(205,143,26)" fg:x="23989" fg:w="12"/><text x="99.2840%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="99.0340%" y="453" width="0.0537%" height="15" fill="rgb(236,26,9)" fg:x="23989" fg:w="13"/><text x="99.2840%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (17 samples, 0.07%)</title><rect x="99.0257%" y="469" width="0.0702%" height="15" fill="rgb(221,165,53)" fg:x="23987" fg:w="17"/><text x="99.2757%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (23 samples, 0.09%)</title><rect x="99.0216%" y="485" width="0.0950%" height="15" fill="rgb(214,110,17)" fg:x="23986" fg:w="23"/><text x="99.2716%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (29 samples, 0.12%)</title><rect x="99.0051%" y="565" width="0.1197%" height="15" fill="rgb(237,197,12)" fg:x="23982" fg:w="29"/><text x="99.2551%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (29 samples, 0.12%)</title><rect x="99.0051%" y="549" width="0.1197%" height="15" fill="rgb(205,84,17)" fg:x="23982" fg:w="29"/><text x="99.2551%" y="559.50"></text></g><g><title>gtk_css_provider_load_from_path (29 samples, 0.12%)</title><rect x="99.0051%" y="533" width="0.1197%" height="15" fill="rgb(237,18,45)" fg:x="23982" fg:w="29"/><text x="99.2551%" y="543.50"></text></g><g><title>gtk_css_provider_load_from_file (29 samples, 0.12%)</title><rect x="99.0051%" y="517" width="0.1197%" height="15" fill="rgb(221,87,14)" fg:x="23982" fg:w="29"/><text x="99.2551%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (29 samples, 0.12%)</title><rect x="99.0051%" y="501" width="0.1197%" height="15" fill="rgb(238,186,15)" fg:x="23982" fg:w="29"/><text x="99.2551%" y="511.50"></text></g><g><title>g_signal_emit_by_name (34 samples, 0.14%)</title><rect x="98.9927%" y="677" width="0.1404%" height="15" fill="rgb(208,115,11)" fg:x="23979" fg:w="34"/><text x="99.2427%" y="687.50"></text></g><g><title>g_signal_emit_valist (34 samples, 0.14%)</title><rect x="98.9927%" y="661" width="0.1404%" height="15" fill="rgb(254,175,0)" fg:x="23979" fg:w="34"/><text x="99.2427%" y="671.50"></text></g><g><title>g_signal_emit (31 samples, 0.13%)</title><rect x="99.0051%" y="645" width="0.1280%" height="15" fill="rgb(227,24,42)" fg:x="23982" fg:w="31"/><text x="99.2551%" y="655.50"></text></g><g><title>g_signal_emit_valist (31 samples, 0.13%)</title><rect x="99.0051%" y="629" width="0.1280%" height="15" fill="rgb(223,211,37)" fg:x="23982" fg:w="31"/><text x="99.2551%" y="639.50"></text></g><g><title>g_cclosure_marshal_VOID__OBJECTv (31 samples, 0.13%)</title><rect x="99.0051%" y="613" width="0.1280%" height="15" fill="rgb(235,49,27)" fg:x="23982" fg:w="31"/><text x="99.2551%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (31 samples, 0.13%)</title><rect x="99.0051%" y="597" width="0.1280%" height="15" fill="rgb(254,97,51)" fg:x="23982" fg:w="31"/><text x="99.2551%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (31 samples, 0.13%)</title><rect x="99.0051%" y="581" width="0.1280%" height="15" fill="rgb(249,51,40)" fg:x="23982" fg:w="31"/><text x="99.2551%" y="591.50"></text></g><g><title>__poll (5 samples, 0.02%)</title><rect x="99.1331%" y="645" width="0.0206%" height="15" fill="rgb(210,128,45)" fg:x="24013" fg:w="5"/><text x="99.3831%" y="655.50"></text></g><g><title>gdk_display_manager_open_display (53 samples, 0.22%)</title><rect x="98.9390%" y="709" width="0.2188%" height="15" fill="rgb(224,137,50)" fg:x="23966" fg:w="53"/><text x="99.1890%" y="719.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (53 samples, 0.22%)</title><rect x="98.9390%" y="693" width="0.2188%" height="15" fill="rgb(242,15,9)" fg:x="23966" fg:w="53"/><text x="99.1890%" y="703.50"></text></g><g><title>wl_display_roundtrip_queue (6 samples, 0.02%)</title><rect x="99.1331%" y="677" width="0.0248%" height="15" fill="rgb(233,187,41)" fg:x="24013" fg:w="6"/><text x="99.3831%" y="687.50"></text></g><g><title>wl_display_dispatch_queue (6 samples, 0.02%)</title><rect x="99.1331%" y="661" width="0.0248%" height="15" fill="rgb(227,2,29)" fg:x="24013" fg:w="6"/><text x="99.3831%" y="671.50"></text></g><g><title>tao::event_loop::EventLoop<()>::new (55 samples, 0.23%)</title><rect x="98.9390%" y="853" width="0.2271%" height="15" fill="rgb(222,70,3)" fg:x="23966" fg:w="55"/><text x="99.1890%" y="863.50"></text></g><g><title>g_application_register (55 samples, 0.23%)</title><rect x="98.9390%" y="837" width="0.2271%" height="15" fill="rgb(213,11,42)" fg:x="23966" fg:w="55"/><text x="99.1890%" y="847.50"></text></g><g><title>g_signal_emit (55 samples, 0.23%)</title><rect x="98.9390%" y="821" width="0.2271%" height="15" fill="rgb(225,150,9)" fg:x="23966" fg:w="55"/><text x="99.1890%" y="831.50"></text></g><g><title>g_signal_emit_valist (55 samples, 0.23%)</title><rect x="98.9390%" y="805" width="0.2271%" height="15" fill="rgb(230,162,45)" fg:x="23966" fg:w="55"/><text x="99.1890%" y="815.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (55 samples, 0.23%)</title><rect x="98.9390%" y="789" width="0.2271%" height="15" fill="rgb(222,14,52)" fg:x="23966" fg:w="55"/><text x="99.1890%" y="799.50"></text></g><g><title>g_closure_invoke (55 samples, 0.23%)</title><rect x="98.9390%" y="773" width="0.2271%" height="15" fill="rgb(254,198,14)" fg:x="23966" fg:w="55"/><text x="99.1890%" y="783.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (55 samples, 0.23%)</title><rect x="98.9390%" y="757" width="0.2271%" height="15" fill="rgb(220,217,30)" fg:x="23966" fg:w="55"/><text x="99.1890%" y="767.50"></text></g><g><title>gtk_init (55 samples, 0.23%)</title><rect x="98.9390%" y="741" width="0.2271%" height="15" fill="rgb(215,146,41)" fg:x="23966" fg:w="55"/><text x="99.1890%" y="751.50"></text></g><g><title>gtk_init_check (55 samples, 0.23%)</title><rect x="98.9390%" y="725" width="0.2271%" height="15" fill="rgb(217,27,36)" fg:x="23966" fg:w="55"/><text x="99.1890%" y="735.50"></text></g><g><title>std::panic::catch_unwind (8,115 samples, 33.50%)</title><rect x="65.6690%" y="917" width="33.5012%" height="15" fill="rgb(219,218,39)" fg:x="15907" fg:w="8115"/><text x="65.9190%" y="927.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (8,115 samples, 33.50%)</title><rect x="65.6690%" y="901" width="33.5012%" height="15" fill="rgb(219,4,42)" fg:x="15907" fg:w="8115"/><text x="65.9190%" y="911.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (8,115 samples, 33.50%)</title><rect x="65.6690%" y="885" width="33.5012%" height="15" fill="rgb(249,119,36)" fg:x="15907" fg:w="8115"/><text x="65.9190%" y="895.50">std::panicking::try::do_call</text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once (8,115 samples, 33.50%)</title><rect x="65.6690%" y="869" width="33.5012%" height="15" fill="rgb(209,23,33)" fg:x="15907" fg:w="8115"/><text x="65.9190%" y="879.50">core::ops::function::impls::<impl core::ops::function:..</text></g><g><title>__libc_start_main (8,116 samples, 33.51%)</title><rect x="65.6690%" y="1013" width="33.5053%" height="15" fill="rgb(211,10,0)" fg:x="15907" fg:w="8116"/><text x="65.9190%" y="1023.50">__libc_start_main</text></g><g><title>[libc.so.6] (8,116 samples, 33.51%)</title><rect x="65.6690%" y="997" width="33.5053%" height="15" fill="rgb(208,99,37)" fg:x="15907" fg:w="8116"/><text x="65.9190%" y="1007.50">[libc.so.6]</text></g><g><title>std::panic::catch_unwind (8,116 samples, 33.51%)</title><rect x="65.6690%" y="981" width="33.5053%" height="15" fill="rgb(213,132,31)" fg:x="15907" fg:w="8116"/><text x="65.9190%" y="991.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (8,116 samples, 33.51%)</title><rect x="65.6690%" y="965" width="33.5053%" height="15" fill="rgb(243,129,40)" fg:x="15907" fg:w="8116"/><text x="65.9190%" y="975.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (8,116 samples, 33.51%)</title><rect x="65.6690%" y="949" width="33.5053%" height="15" fill="rgb(210,66,33)" fg:x="15907" fg:w="8116"/><text x="65.9190%" y="959.50">std::panicking::try::do_call</text></g><g><title>std::rt::lang_start_internal::{{closure}} (8,116 samples, 33.51%)</title><rect x="65.6690%" y="933" width="33.5053%" height="15" fill="rgb(209,189,4)" fg:x="15907" fg:w="8116"/><text x="65.9190%" y="943.50">std::rt::lang_start_internal::{{closure}}</text></g><g><title>simple_panorama (11,353 samples, 46.87%)</title><rect x="52.3346%" y="1029" width="46.8687%" height="15" fill="rgb(214,107,37)" fg:x="12677" fg:w="11353"/><text x="52.5846%" y="1039.50">simple_panorama</text></g><g><title>[libc.so.6] (18 samples, 0.07%)</title><rect x="99.2032%" y="997" width="0.0743%" height="15" fill="rgb(245,88,54)" fg:x="24030" fg:w="18"/><text x="99.4532%" y="1007.50"></text></g><g><title>[[heap]] (28 samples, 0.12%)</title><rect x="99.2032%" y="1013" width="0.1156%" height="15" fill="rgb(205,146,20)" fg:x="24030" fg:w="28"/><text x="99.4532%" y="1023.50"></text></g><g><title>[[stack]] (3 samples, 0.01%)</title><rect x="99.3188%" y="1013" width="0.0124%" height="15" fill="rgb(220,161,25)" fg:x="24058" fg:w="3"/><text x="99.5688%" y="1023.50"></text></g><g><title>[ld-linux-x86-64.so.2] (8 samples, 0.03%)</title><rect x="99.3436%" y="933" width="0.0330%" height="15" fill="rgb(215,152,15)" fg:x="24064" fg:w="8"/><text x="99.5936%" y="943.50"></text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 0.03%)</title><rect x="99.3477%" y="917" width="0.0289%" height="15" fill="rgb(233,192,44)" fg:x="24065" fg:w="7"/><text x="99.5977%" y="927.50"></text></g><g><title>[ld-linux-x86-64.so.2] (12 samples, 0.05%)</title><rect x="99.3353%" y="1013" width="0.0495%" height="15" fill="rgb(240,170,46)" fg:x="24062" fg:w="12"/><text x="99.5853%" y="1023.50"></text></g><g><title>[ld-linux-x86-64.so.2] (12 samples, 0.05%)</title><rect x="99.3353%" y="997" width="0.0495%" height="15" fill="rgb(207,104,33)" fg:x="24062" fg:w="12"/><text x="99.5853%" y="1007.50"></text></g><g><title>[ld-linux-x86-64.so.2] (12 samples, 0.05%)</title><rect x="99.3353%" y="981" width="0.0495%" height="15" fill="rgb(219,21,39)" fg:x="24062" fg:w="12"/><text x="99.5853%" y="991.50"></text></g><g><title>[ld-linux-x86-64.so.2] (12 samples, 0.05%)</title><rect x="99.3353%" y="965" width="0.0495%" height="15" fill="rgb(214,133,29)" fg:x="24062" fg:w="12"/><text x="99.5853%" y="975.50"></text></g><g><title>[ld-linux-x86-64.so.2] (12 samples, 0.05%)</title><rect x="99.3353%" y="949" width="0.0495%" height="15" fill="rgb(226,93,6)" fg:x="24062" fg:w="12"/><text x="99.5853%" y="959.50"></text></g><g><title>[libpangoft2-1.0.so.0.5000.14] (5 samples, 0.02%)</title><rect x="99.4014%" y="965" width="0.0206%" height="15" fill="rgb(252,222,34)" fg:x="24078" fg:w="5"/><text x="99.6514%" y="975.50"></text></g><g><title>FcFontSetSort (4 samples, 0.02%)</title><rect x="99.4055%" y="949" width="0.0165%" height="15" fill="rgb(252,92,48)" fg:x="24079" fg:w="4"/><text x="99.6555%" y="959.50"></text></g><g><title>[libc.so.6] (10 samples, 0.04%)</title><rect x="99.3849%" y="1013" width="0.0413%" height="15" fill="rgb(245,223,24)" fg:x="24074" fg:w="10"/><text x="99.6349%" y="1023.50"></text></g><g><title>[libc.so.6] (8 samples, 0.03%)</title><rect x="99.3931%" y="997" width="0.0330%" height="15" fill="rgb(205,176,3)" fg:x="24076" fg:w="8"/><text x="99.6431%" y="1007.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (6 samples, 0.02%)</title><rect x="99.4014%" y="981" width="0.0248%" height="15" fill="rgb(235,151,15)" fg:x="24078" fg:w="6"/><text x="99.6514%" y="991.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.4262%" y="1013" width="0.0124%" height="15" fill="rgb(237,209,11)" fg:x="24084" fg:w="3"/><text x="99.6762%" y="1023.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.4633%" y="69" width="0.0124%" height="15" fill="rgb(243,227,24)" fg:x="24093" fg:w="3"/><text x="99.7133%" y="79.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.4633%" y="53" width="0.0124%" height="15" fill="rgb(239,193,16)" fg:x="24093" fg:w="3"/><text x="99.7133%" y="63.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="981" width="0.0165%" height="15" fill="rgb(231,27,9)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="991.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="965" width="0.0165%" height="15" fill="rgb(219,169,10)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="975.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="949" width="0.0165%" height="15" fill="rgb(244,229,43)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="959.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="933" width="0.0165%" height="15" fill="rgb(254,38,20)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="943.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="917" width="0.0165%" height="15" fill="rgb(250,47,30)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="927.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="901" width="0.0165%" height="15" fill="rgb(224,124,36)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="911.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="885" width="0.0165%" height="15" fill="rgb(246,68,51)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="895.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="869" width="0.0165%" height="15" fill="rgb(253,43,49)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="879.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="853" width="0.0165%" height="15" fill="rgb(219,54,36)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="863.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="837" width="0.0165%" height="15" fill="rgb(227,133,34)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="847.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="821" width="0.0165%" height="15" fill="rgb(247,227,15)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="831.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="805" width="0.0165%" height="15" fill="rgb(229,96,14)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="815.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="789" width="0.0165%" height="15" fill="rgb(220,79,17)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="799.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="773" width="0.0165%" height="15" fill="rgb(205,131,53)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="783.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="757" width="0.0165%" height="15" fill="rgb(209,50,29)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="767.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="741" width="0.0165%" height="15" fill="rgb(245,86,46)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="751.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="725" width="0.0165%" height="15" fill="rgb(235,66,46)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="735.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="709" width="0.0165%" height="15" fill="rgb(232,148,31)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="719.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="693" width="0.0165%" height="15" fill="rgb(217,149,8)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="677" width="0.0165%" height="15" fill="rgb(209,183,11)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="661" width="0.0165%" height="15" fill="rgb(208,55,20)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="645" width="0.0165%" height="15" fill="rgb(218,39,14)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="629" width="0.0165%" height="15" fill="rgb(216,169,33)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="613" width="0.0165%" height="15" fill="rgb(233,80,24)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="597" width="0.0165%" height="15" fill="rgb(213,179,31)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="581" width="0.0165%" height="15" fill="rgb(209,19,5)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="565" width="0.0165%" height="15" fill="rgb(219,18,35)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="549" width="0.0165%" height="15" fill="rgb(209,169,16)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="533" width="0.0165%" height="15" fill="rgb(245,90,51)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="517" width="0.0165%" height="15" fill="rgb(220,99,45)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="501" width="0.0165%" height="15" fill="rgb(249,89,25)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="485" width="0.0165%" height="15" fill="rgb(239,193,0)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="469" width="0.0165%" height="15" fill="rgb(231,126,1)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="453" width="0.0165%" height="15" fill="rgb(243,166,3)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="437" width="0.0165%" height="15" fill="rgb(223,22,34)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="421" width="0.0165%" height="15" fill="rgb(251,52,51)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="405" width="0.0165%" height="15" fill="rgb(221,165,28)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="389" width="0.0165%" height="15" fill="rgb(218,121,47)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="373" width="0.0165%" height="15" fill="rgb(209,120,9)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="357" width="0.0165%" height="15" fill="rgb(236,68,12)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="341" width="0.0165%" height="15" fill="rgb(225,194,26)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="325" width="0.0165%" height="15" fill="rgb(231,84,39)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="309" width="0.0165%" height="15" fill="rgb(210,11,45)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="293" width="0.0165%" height="15" fill="rgb(224,54,52)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="277" width="0.0165%" height="15" fill="rgb(238,102,14)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="287.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="261" width="0.0165%" height="15" fill="rgb(243,160,52)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="245" width="0.0165%" height="15" fill="rgb(216,114,19)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="255.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="229" width="0.0165%" height="15" fill="rgb(244,166,37)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="239.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="213" width="0.0165%" height="15" fill="rgb(246,29,44)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="223.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="197" width="0.0165%" height="15" fill="rgb(215,56,53)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="207.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="181" width="0.0165%" height="15" fill="rgb(217,60,2)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="191.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="165" width="0.0165%" height="15" fill="rgb(207,26,24)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="175.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="149" width="0.0165%" height="15" fill="rgb(252,210,15)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="159.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="133" width="0.0165%" height="15" fill="rgb(253,209,26)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="143.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="117" width="0.0165%" height="15" fill="rgb(238,170,14)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="127.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="101" width="0.0165%" height="15" fill="rgb(216,178,15)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="111.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.4633%" y="85" width="0.0165%" height="15" fill="rgb(250,197,2)" fg:x="24093" fg:w="4"/><text x="99.7133%" y="95.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.4592%" y="997" width="0.0248%" height="15" fill="rgb(212,70,42)" fg:x="24092" fg:w="6"/><text x="99.7092%" y="1007.50"></text></g><g><title>[unknown] (17 samples, 0.07%)</title><rect x="99.4386%" y="1013" width="0.0702%" height="15" fill="rgb(227,213,9)" fg:x="24087" fg:w="17"/><text x="99.6886%" y="1023.50"></text></g><g><title>gtk_builder_add_objects_from_file (4 samples, 0.02%)</title><rect x="99.5087%" y="933" width="0.0165%" height="15" fill="rgb(245,99,25)" fg:x="24104" fg:w="4"/><text x="99.7587%" y="943.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.5087%" y="917" width="0.0165%" height="15" fill="rgb(250,82,29)" fg:x="24104" fg:w="4"/><text x="99.7587%" y="927.50"></text></g><g><title>g_markup_parse_context_parse (4 samples, 0.02%)</title><rect x="99.5087%" y="901" width="0.0165%" height="15" fill="rgb(241,226,54)" fg:x="24104" fg:w="4"/><text x="99.7587%" y="911.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (4 samples, 0.02%)</title><rect x="99.5087%" y="885" width="0.0165%" height="15" fill="rgb(221,99,41)" fg:x="24104" fg:w="4"/><text x="99.7587%" y="895.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.5087%" y="869" width="0.0165%" height="15" fill="rgb(213,90,21)" fg:x="24104" fg:w="4"/><text x="99.7587%" y="879.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.5252%" y="245" width="0.0206%" height="15" fill="rgb(205,208,24)" fg:x="24108" fg:w="5"/><text x="99.7752%" y="255.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.5252%" y="229" width="0.0206%" height="15" fill="rgb(246,31,12)" fg:x="24108" fg:w="5"/><text x="99.7752%" y="239.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="661" width="0.0248%" height="15" fill="rgb(213,154,6)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="671.50"></text></g><g><title>gtk_widget_get_preferred_width (6 samples, 0.02%)</title><rect x="99.5252%" y="645" width="0.0248%" height="15" fill="rgb(222,163,29)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="629" width="0.0248%" height="15" fill="rgb(227,201,8)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="613" width="0.0248%" height="15" fill="rgb(233,9,32)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="597" width="0.0248%" height="15" fill="rgb(217,54,24)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="581" width="0.0248%" height="15" fill="rgb(235,192,0)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="565" width="0.0248%" height="15" fill="rgb(235,45,9)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="575.50"></text></g><g><title>gtk_widget_get_preferred_width (6 samples, 0.02%)</title><rect x="99.5252%" y="549" width="0.0248%" height="15" fill="rgb(246,42,40)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="533" width="0.0248%" height="15" fill="rgb(248,111,24)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="517" width="0.0248%" height="15" fill="rgb(249,65,22)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="501" width="0.0248%" height="15" fill="rgb(238,111,51)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="485" width="0.0248%" height="15" fill="rgb(250,118,22)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="469" width="0.0248%" height="15" fill="rgb(234,84,26)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="479.50"></text></g><g><title>gtk_widget_get_preferred_width (6 samples, 0.02%)</title><rect x="99.5252%" y="453" width="0.0248%" height="15" fill="rgb(243,172,12)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="437" width="0.0248%" height="15" fill="rgb(236,150,49)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="421" width="0.0248%" height="15" fill="rgb(225,197,26)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="405" width="0.0248%" height="15" fill="rgb(214,17,42)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="389" width="0.0248%" height="15" fill="rgb(224,165,40)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="373" width="0.0248%" height="15" fill="rgb(246,100,4)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="357" width="0.0248%" height="15" fill="rgb(222,103,0)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="341" width="0.0248%" height="15" fill="rgb(227,189,26)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="325" width="0.0248%" height="15" fill="rgb(214,202,17)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="309" width="0.0248%" height="15" fill="rgb(229,111,3)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="293" width="0.0248%" height="15" fill="rgb(229,172,15)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="277" width="0.0248%" height="15" fill="rgb(230,224,35)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="287.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.5252%" y="261" width="0.0248%" height="15" fill="rgb(251,141,6)" fg:x="24108" fg:w="6"/><text x="99.7752%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.5252%" y="837" width="0.0372%" height="15" fill="rgb(225,208,6)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="847.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.5252%" y="821" width="0.0372%" height="15" fill="rgb(246,181,16)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="831.50"></text></g><g><title>gtk_widget_get_preferred_width (9 samples, 0.04%)</title><rect x="99.5252%" y="805" width="0.0372%" height="15" fill="rgb(227,129,36)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="815.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.5252%" y="789" width="0.0372%" height="15" fill="rgb(248,117,24)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="799.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.5252%" y="773" width="0.0372%" height="15" fill="rgb(214,185,35)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="783.50"></text></g><g><title>gtk_widget_get_preferred_width (9 samples, 0.04%)</title><rect x="99.5252%" y="757" width="0.0372%" height="15" fill="rgb(236,150,34)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="767.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.5252%" y="741" width="0.0372%" height="15" fill="rgb(243,228,27)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="751.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.5252%" y="725" width="0.0372%" height="15" fill="rgb(245,77,44)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="735.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.5252%" y="709" width="0.0372%" height="15" fill="rgb(235,214,42)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="719.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.5252%" y="693" width="0.0372%" height="15" fill="rgb(221,74,3)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.5252%" y="677" width="0.0372%" height="15" fill="rgb(206,121,29)" fg:x="24108" fg:w="9"/><text x="99.7752%" y="687.50"></text></g><g><title>gtk_widget_get_preferred_width (3 samples, 0.01%)</title><rect x="99.5500%" y="661" width="0.0124%" height="15" fill="rgb(249,131,53)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="645" width="0.0124%" height="15" fill="rgb(236,170,29)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="629" width="0.0124%" height="15" fill="rgb(247,96,15)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="613" width="0.0124%" height="15" fill="rgb(211,210,7)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="597" width="0.0124%" height="15" fill="rgb(240,88,50)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="581" width="0.0124%" height="15" fill="rgb(209,229,26)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="591.50"></text></g><g><title>gtk_widget_get_preferred_width (3 samples, 0.01%)</title><rect x="99.5500%" y="565" width="0.0124%" height="15" fill="rgb(210,68,23)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="549" width="0.0124%" height="15" fill="rgb(229,180,13)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="533" width="0.0124%" height="15" fill="rgb(236,53,44)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="517" width="0.0124%" height="15" fill="rgb(244,214,29)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="501" width="0.0124%" height="15" fill="rgb(220,75,29)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5500%" y="485" width="0.0124%" height="15" fill="rgb(214,183,37)" fg:x="24114" fg:w="3"/><text x="99.8000%" y="495.50"></text></g><g><title>[zenity] (14 samples, 0.06%)</title><rect x="99.5087%" y="949" width="0.0578%" height="15" fill="rgb(239,117,29)" fg:x="24104" fg:w="14"/><text x="99.7587%" y="959.50"></text></g><g><title>gtk_widget_realize (10 samples, 0.04%)</title><rect x="99.5252%" y="933" width="0.0413%" height="15" fill="rgb(237,171,35)" fg:x="24108" fg:w="10"/><text x="99.7752%" y="943.50"></text></g><g><title>g_signal_emit (10 samples, 0.04%)</title><rect x="99.5252%" y="917" width="0.0413%" height="15" fill="rgb(229,178,53)" fg:x="24108" fg:w="10"/><text x="99.7752%" y="927.50"></text></g><g><title>g_signal_emit_valist (10 samples, 0.04%)</title><rect x="99.5252%" y="901" width="0.0413%" height="15" fill="rgb(210,102,19)" fg:x="24108" fg:w="10"/><text x="99.7752%" y="911.50"></text></g><g><title>[libgobject-2.0.so.0.7600.1] (10 samples, 0.04%)</title><rect x="99.5252%" y="885" width="0.0413%" height="15" fill="rgb(235,127,22)" fg:x="24108" fg:w="10"/><text x="99.7752%" y="895.50"></text></g><g><title>g_closure_invoke (10 samples, 0.04%)</title><rect x="99.5252%" y="869" width="0.0413%" height="15" fill="rgb(244,31,31)" fg:x="24108" fg:w="10"/><text x="99.7752%" y="879.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="99.5252%" y="853" width="0.0413%" height="15" fill="rgb(231,43,21)" fg:x="24108" fg:w="10"/><text x="99.7752%" y="863.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.5707%" y="869" width="0.0124%" height="15" fill="rgb(217,131,35)" fg:x="24119" fg:w="3"/><text x="99.8207%" y="879.50"></text></g><g><title>xkb_keymap_new_from_names (3 samples, 0.01%)</title><rect x="99.5707%" y="853" width="0.0124%" height="15" fill="rgb(221,149,4)" fg:x="24119" fg:w="3"/><text x="99.8207%" y="863.50"></text></g><g><title>[libxkbcommon.so.0.0.0] (3 samples, 0.01%)</title><rect x="99.5707%" y="837" width="0.0124%" height="15" fill="rgb(232,170,28)" fg:x="24119" fg:w="3"/><text x="99.8207%" y="847.50"></text></g><g><title>[libxkbcommon.so.0.0.0] (3 samples, 0.01%)</title><rect x="99.5707%" y="821" width="0.0124%" height="15" fill="rgb(238,56,10)" fg:x="24119" fg:w="3"/><text x="99.8207%" y="831.50"></text></g><g><title>[libxkbcommon.so.0.0.0] (3 samples, 0.01%)</title><rect x="99.5707%" y="805" width="0.0124%" height="15" fill="rgb(235,196,14)" fg:x="24119" fg:w="3"/><text x="99.8207%" y="815.50"></text></g><g><title>[libxkbcommon.so.0.0.0] (3 samples, 0.01%)</title><rect x="99.5707%" y="789" width="0.0124%" height="15" fill="rgb(216,45,48)" fg:x="24119" fg:w="3"/><text x="99.8207%" y="799.50"></text></g><g><title>[libxkbcommon.so.0.0.0] (3 samples, 0.01%)</title><rect x="99.5707%" y="773" width="0.0124%" height="15" fill="rgb(238,213,17)" fg:x="24119" fg:w="3"/><text x="99.8207%" y="783.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="99.6202%" y="789" width="0.0165%" height="15" fill="rgb(212,13,2)" fg:x="24131" fg:w="4"/><text x="99.8702%" y="799.50"></text></g><g><title>_IO_fread (9 samples, 0.04%)</title><rect x="99.6037%" y="805" width="0.0372%" height="15" fill="rgb(240,114,20)" fg:x="24127" fg:w="9"/><text x="99.8537%" y="815.50"></text></g><g><title>[libwayland-cursor.so.0.22.0] (13 samples, 0.05%)</title><rect x="99.5913%" y="821" width="0.0537%" height="15" fill="rgb(228,41,40)" fg:x="24124" fg:w="13"/><text x="99.8413%" y="831.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (20 samples, 0.08%)</title><rect x="99.5707%" y="885" width="0.0826%" height="15" fill="rgb(244,132,35)" fg:x="24119" fg:w="20"/><text x="99.8207%" y="895.50"></text></g><g><title>gdk_wayland_display_set_cursor_theme (17 samples, 0.07%)</title><rect x="99.5830%" y="869" width="0.0702%" height="15" fill="rgb(253,189,4)" fg:x="24122" fg:w="17"/><text x="99.8330%" y="879.50"></text></g><g><title>wl_cursor_theme_load (17 samples, 0.07%)</title><rect x="99.5830%" y="853" width="0.0702%" height="15" fill="rgb(224,37,19)" fg:x="24122" fg:w="17"/><text x="99.8330%" y="863.50"></text></g><g><title>[libwayland-cursor.so.0.22.0] (17 samples, 0.07%)</title><rect x="99.5830%" y="837" width="0.0702%" height="15" fill="rgb(235,223,18)" fg:x="24122" fg:w="17"/><text x="99.8330%" y="847.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="99.6862%" y="661" width="0.0124%" height="15" fill="rgb(235,163,25)" fg:x="24147" fg:w="3"/><text x="99.9362%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.7151%" y="213" width="0.0165%" height="15" fill="rgb(217,145,28)" fg:x="24154" fg:w="4"/><text x="99.9651%" y="223.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.7193%" y="197" width="0.0124%" height="15" fill="rgb(223,223,32)" fg:x="24155" fg:w="3"/><text x="99.9693%" y="207.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.7110%" y="421" width="0.0248%" height="15" fill="rgb(227,189,39)" fg:x="24153" fg:w="6"/><text x="99.9610%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.7110%" y="405" width="0.0248%" height="15" fill="rgb(248,10,22)" fg:x="24153" fg:w="6"/><text x="99.9610%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.7110%" y="389" width="0.0248%" height="15" fill="rgb(248,46,39)" fg:x="24153" fg:w="6"/><text x="99.9610%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.7110%" y="373" width="0.0248%" height="15" fill="rgb(248,113,48)" fg:x="24153" fg:w="6"/><text x="99.9610%" y="383.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.7151%" y="357" width="0.0206%" height="15" fill="rgb(245,16,25)" fg:x="24154" fg:w="5"/><text x="99.9651%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.7151%" y="341" width="0.0206%" height="15" fill="rgb(249,152,16)" fg:x="24154" fg:w="5"/><text x="99.9651%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.7151%" y="325" width="0.0206%" height="15" fill="rgb(250,16,1)" fg:x="24154" fg:w="5"/><text x="99.9651%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.7151%" y="309" width="0.0206%" height="15" fill="rgb(249,138,3)" fg:x="24154" fg:w="5"/><text x="99.9651%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.7151%" y="293" width="0.0206%" height="15" fill="rgb(227,71,41)" fg:x="24154" fg:w="5"/><text x="99.9651%" y="303.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.7151%" y="277" width="0.0206%" height="15" fill="rgb(209,184,23)" fg:x="24154" fg:w="5"/><text x="99.9651%" y="287.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.7151%" y="261" width="0.0206%" height="15" fill="rgb(223,215,31)" fg:x="24154" fg:w="5"/><text x="99.9651%" y="271.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.7151%" y="245" width="0.0206%" height="15" fill="rgb(210,146,28)" fg:x="24154" fg:w="5"/><text x="99.9651%" y="255.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.7151%" y="229" width="0.0206%" height="15" fill="rgb(209,183,41)" fg:x="24154" fg:w="5"/><text x="99.9651%" y="239.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="99.7110%" y="437" width="0.0289%" height="15" fill="rgb(209,224,45)" fg:x="24153" fg:w="7"/><text x="99.9610%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="99.7110%" y="469" width="0.0330%" height="15" fill="rgb(224,209,51)" fg:x="24153" fg:w="8"/><text x="99.9610%" y="479.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (8 samples, 0.03%)</title><rect x="99.7110%" y="453" width="0.0330%" height="15" fill="rgb(223,17,39)" fg:x="24153" fg:w="8"/><text x="99.9610%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (9 samples, 0.04%)</title><rect x="99.7110%" y="485" width="0.0372%" height="15" fill="rgb(234,204,37)" fg:x="24153" fg:w="9"/><text x="99.9610%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (12 samples, 0.05%)</title><rect x="99.7069%" y="501" width="0.0495%" height="15" fill="rgb(236,120,5)" fg:x="24152" fg:w="12"/><text x="99.9569%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="99.7069%" y="581" width="0.0537%" height="15" fill="rgb(248,97,27)" fg:x="24152" fg:w="13"/><text x="99.9569%" y="591.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="99.7069%" y="565" width="0.0537%" height="15" fill="rgb(240,66,17)" fg:x="24152" fg:w="13"/><text x="99.9569%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="99.7069%" y="549" width="0.0537%" height="15" fill="rgb(210,79,3)" fg:x="24152" fg:w="13"/><text x="99.9569%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="99.7069%" y="533" width="0.0537%" height="15" fill="rgb(214,176,27)" fg:x="24152" fg:w="13"/><text x="99.9569%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (13 samples, 0.05%)</title><rect x="99.7069%" y="517" width="0.0537%" height="15" fill="rgb(235,185,3)" fg:x="24152" fg:w="13"/><text x="99.9569%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (14 samples, 0.06%)</title><rect x="99.7069%" y="597" width="0.0578%" height="15" fill="rgb(227,24,12)" fg:x="24152" fg:w="14"/><text x="99.9569%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (16 samples, 0.07%)</title><rect x="99.7028%" y="629" width="0.0661%" height="15" fill="rgb(252,169,48)" fg:x="24151" fg:w="16"/><text x="99.9528%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (15 samples, 0.06%)</title><rect x="99.7069%" y="613" width="0.0619%" height="15" fill="rgb(212,65,1)" fg:x="24152" fg:w="15"/><text x="99.9569%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (18 samples, 0.07%)</title><rect x="99.6986%" y="661" width="0.0743%" height="15" fill="rgb(242,39,24)" fg:x="24150" fg:w="18"/><text x="99.9486%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (17 samples, 0.07%)</title><rect x="99.7028%" y="645" width="0.0702%" height="15" fill="rgb(249,32,23)" fg:x="24151" fg:w="17"/><text x="99.9528%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (23 samples, 0.09%)</title><rect x="99.6821%" y="677" width="0.0950%" height="15" fill="rgb(251,195,23)" fg:x="24146" fg:w="23"/><text x="99.9321%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (28 samples, 0.12%)</title><rect x="99.6780%" y="693" width="0.1156%" height="15" fill="rgb(236,174,8)" fg:x="24145" fg:w="28"/><text x="99.9280%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (33 samples, 0.14%)</title><rect x="99.6656%" y="757" width="0.1362%" height="15" fill="rgb(220,197,8)" fg:x="24142" fg:w="33"/><text x="99.9156%" y="767.50"></text></g><g><title>gtk_css_provider_load_from_path (33 samples, 0.14%)</title><rect x="99.6656%" y="741" width="0.1362%" height="15" fill="rgb(240,108,37)" fg:x="24142" fg:w="33"/><text x="99.9156%" y="751.50"></text></g><g><title>gtk_css_provider_load_from_file (33 samples, 0.14%)</title><rect x="99.6656%" y="725" width="0.1362%" height="15" fill="rgb(232,176,24)" fg:x="24142" fg:w="33"/><text x="99.9156%" y="735.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (33 samples, 0.14%)</title><rect x="99.6656%" y="709" width="0.1362%" height="15" fill="rgb(243,35,29)" fg:x="24142" fg:w="33"/><text x="99.9156%" y="719.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (34 samples, 0.14%)</title><rect x="99.6656%" y="773" width="0.1404%" height="15" fill="rgb(210,37,18)" fg:x="24142" fg:w="34"/><text x="99.9156%" y="783.50"></text></g><g><title>gdk_display_manager_open_display (59 samples, 0.24%)</title><rect x="99.5707%" y="917" width="0.2436%" height="15" fill="rgb(224,184,40)" fg:x="24119" fg:w="59"/><text x="99.8207%" y="927.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (59 samples, 0.24%)</title><rect x="99.5707%" y="901" width="0.2436%" height="15" fill="rgb(236,39,29)" fg:x="24119" fg:w="59"/><text x="99.8207%" y="911.50"></text></g><g><title>g_signal_emit_by_name (37 samples, 0.15%)</title><rect x="99.6615%" y="885" width="0.1527%" height="15" fill="rgb(232,48,39)" fg:x="24141" fg:w="37"/><text x="99.9115%" y="895.50"></text></g><g><title>g_signal_emit_valist (37 samples, 0.15%)</title><rect x="99.6615%" y="869" width="0.1527%" height="15" fill="rgb(236,34,42)" fg:x="24141" fg:w="37"/><text x="99.9115%" y="879.50"></text></g><g><title>g_signal_emit (36 samples, 0.15%)</title><rect x="99.6656%" y="853" width="0.1486%" height="15" fill="rgb(243,106,37)" fg:x="24142" fg:w="36"/><text x="99.9156%" y="863.50"></text></g><g><title>g_signal_emit_valist (36 samples, 0.15%)</title><rect x="99.6656%" y="837" width="0.1486%" height="15" fill="rgb(218,96,6)" fg:x="24142" fg:w="36"/><text x="99.9156%" y="847.50"></text></g><g><title>g_cclosure_marshal_VOID__OBJECTv (36 samples, 0.15%)</title><rect x="99.6656%" y="821" width="0.1486%" height="15" fill="rgb(235,130,12)" fg:x="24142" fg:w="36"/><text x="99.9156%" y="831.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (36 samples, 0.15%)</title><rect x="99.6656%" y="805" width="0.1486%" height="15" fill="rgb(231,95,0)" fg:x="24142" fg:w="36"/><text x="99.9156%" y="815.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (36 samples, 0.15%)</title><rect x="99.6656%" y="789" width="0.1486%" height="15" fill="rgb(228,12,23)" fg:x="24142" fg:w="36"/><text x="99.9156%" y="799.50"></text></g><g><title>gtk_init (61 samples, 0.25%)</title><rect x="99.5707%" y="949" width="0.2518%" height="15" fill="rgb(216,12,1)" fg:x="24119" fg:w="61"/><text x="99.8207%" y="959.50"></text></g><g><title>gtk_init_check (61 samples, 0.25%)</title><rect x="99.5707%" y="933" width="0.2518%" height="15" fill="rgb(219,59,3)" fg:x="24119" fg:w="61"/><text x="99.8207%" y="943.50"></text></g><g><title>__poll (9 samples, 0.04%)</title><rect x="99.8225%" y="901" width="0.0372%" height="15" fill="rgb(215,208,46)" fg:x="24180" fg:w="9"/><text x="100.0725%" y="911.50"></text></g><g><title>g_main_context_check (4 samples, 0.02%)</title><rect x="99.8596%" y="901" width="0.0165%" height="15" fill="rgb(254,224,29)" fg:x="24189" fg:w="4"/><text x="100.1096%" y="911.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.8844%" y="853" width="0.0165%" height="15" fill="rgb(232,14,29)" fg:x="24195" fg:w="4"/><text x="100.1344%" y="863.50"></text></g><g><title>wl_display_dispatch_queue_pending (4 samples, 0.02%)</title><rect x="99.8844%" y="837" width="0.0165%" height="15" fill="rgb(208,45,52)" fg:x="24195" fg:w="4"/><text x="100.1344%" y="847.50"></text></g><g><title>[libwayland-client.so.0.22.0] (4 samples, 0.02%)</title><rect x="99.8844%" y="821" width="0.0165%" height="15" fill="rgb(234,191,28)" fg:x="24195" fg:w="4"/><text x="100.1344%" y="831.50"></text></g><g><title>[libwayland-client.so.0.22.0] (4 samples, 0.02%)</title><rect x="99.8844%" y="805" width="0.0165%" height="15" fill="rgb(244,67,43)" fg:x="24195" fg:w="4"/><text x="100.1344%" y="815.50"></text></g><g><title>ffi_call (4 samples, 0.02%)</title><rect x="99.8844%" y="789" width="0.0165%" height="15" fill="rgb(236,189,24)" fg:x="24195" fg:w="4"/><text x="100.1344%" y="799.50"></text></g><g><title>[libffi.so.8.1.2] (4 samples, 0.02%)</title><rect x="99.8844%" y="773" width="0.0165%" height="15" fill="rgb(239,214,33)" fg:x="24195" fg:w="4"/><text x="100.1344%" y="783.50"></text></g><g><title>[libffi.so.8.1.2] (4 samples, 0.02%)</title><rect x="99.8844%" y="757" width="0.0165%" height="15" fill="rgb(226,176,41)" fg:x="24195" fg:w="4"/><text x="100.1344%" y="767.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.8844%" y="741" width="0.0165%" height="15" fill="rgb(248,47,8)" fg:x="24195" fg:w="4"/><text x="100.1344%" y="751.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="99.8762%" y="885" width="0.0289%" height="15" fill="rgb(218,81,44)" fg:x="24193" fg:w="7"/><text x="100.1262%" y="895.50"></text></g><g><title>gdk_display_get_event (5 samples, 0.02%)</title><rect x="99.8844%" y="869" width="0.0206%" height="15" fill="rgb(213,98,6)" fg:x="24195" fg:w="5"/><text x="100.1344%" y="879.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.9092%" y="677" width="0.0124%" height="15" fill="rgb(222,85,22)" fg:x="24201" fg:w="3"/><text x="100.1592%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="99.9092%" y="709" width="0.0289%" height="15" fill="rgb(239,46,39)" fg:x="24201" fg:w="7"/><text x="100.1592%" y="719.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (7 samples, 0.03%)</title><rect x="99.9092%" y="693" width="0.0289%" height="15" fill="rgb(237,12,29)" fg:x="24201" fg:w="7"/><text x="100.1592%" y="703.50"></text></g><g><title>gtk_container_propagate_draw (4 samples, 0.02%)</title><rect x="99.9216%" y="677" width="0.0165%" height="15" fill="rgb(214,77,8)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="661" width="0.0165%" height="15" fill="rgb(217,168,37)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="645" width="0.0165%" height="15" fill="rgb(221,217,23)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="629" width="0.0165%" height="15" fill="rgb(243,229,36)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="639.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="613" width="0.0165%" height="15" fill="rgb(251,163,40)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="623.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="597" width="0.0165%" height="15" fill="rgb(237,222,12)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="607.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="581" width="0.0165%" height="15" fill="rgb(248,132,6)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="591.50"></text></g><g><title>gtk_container_propagate_draw (4 samples, 0.02%)</title><rect x="99.9216%" y="565" width="0.0165%" height="15" fill="rgb(227,167,50)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="575.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="549" width="0.0165%" height="15" fill="rgb(242,84,37)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="559.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="533" width="0.0165%" height="15" fill="rgb(212,4,50)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="543.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="517" width="0.0165%" height="15" fill="rgb(230,228,32)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="527.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="501" width="0.0165%" height="15" fill="rgb(248,217,23)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="511.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="485" width="0.0165%" height="15" fill="rgb(238,197,32)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="495.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="469" width="0.0165%" height="15" fill="rgb(236,106,1)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="479.50"></text></g><g><title>gtk_container_propagate_draw (4 samples, 0.02%)</title><rect x="99.9216%" y="453" width="0.0165%" height="15" fill="rgb(219,228,13)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="463.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="437" width="0.0165%" height="15" fill="rgb(238,30,35)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="447.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="421" width="0.0165%" height="15" fill="rgb(236,70,23)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="431.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="405" width="0.0165%" height="15" fill="rgb(249,104,48)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="415.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="389" width="0.0165%" height="15" fill="rgb(254,117,50)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="399.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="373" width="0.0165%" height="15" fill="rgb(223,152,4)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="383.50"></text></g><g><title>gtk_container_propagate_draw (4 samples, 0.02%)</title><rect x="99.9216%" y="357" width="0.0165%" height="15" fill="rgb(245,6,2)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="367.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="341" width="0.0165%" height="15" fill="rgb(249,150,24)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="351.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="325" width="0.0165%" height="15" fill="rgb(228,185,42)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="335.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="309" width="0.0165%" height="15" fill="rgb(226,39,33)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="319.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9216%" y="293" width="0.0165%" height="15" fill="rgb(221,166,19)" fg:x="24204" fg:w="4"/><text x="100.1716%" y="303.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="99.9092%" y="805" width="0.0413%" height="15" fill="rgb(209,109,2)" fg:x="24201" fg:w="10"/><text x="100.1592%" y="815.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="99.9092%" y="789" width="0.0413%" height="15" fill="rgb(252,216,26)" fg:x="24201" fg:w="10"/><text x="100.1592%" y="799.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="99.9092%" y="773" width="0.0413%" height="15" fill="rgb(227,173,36)" fg:x="24201" fg:w="10"/><text x="100.1592%" y="783.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="99.9092%" y="757" width="0.0413%" height="15" fill="rgb(209,90,7)" fg:x="24201" fg:w="10"/><text x="100.1592%" y="767.50"></text></g><g><title>gtk_main_do_event (10 samples, 0.04%)</title><rect x="99.9092%" y="741" width="0.0413%" height="15" fill="rgb(250,194,11)" fg:x="24201" fg:w="10"/><text x="100.1592%" y="751.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (10 samples, 0.04%)</title><rect x="99.9092%" y="725" width="0.0413%" height="15" fill="rgb(220,72,50)" fg:x="24201" fg:w="10"/><text x="100.1592%" y="735.50"></text></g><g><title>gdk_window_begin_draw_frame (3 samples, 0.01%)</title><rect x="99.9381%" y="709" width="0.0124%" height="15" fill="rgb(222,106,48)" fg:x="24208" fg:w="3"/><text x="100.1881%" y="719.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.9381%" y="693" width="0.0124%" height="15" fill="rgb(216,220,45)" fg:x="24208" fg:w="3"/><text x="100.1881%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.9505%" y="789" width="0.0206%" height="15" fill="rgb(234,112,18)" fg:x="24211" fg:w="5"/><text x="100.2005%" y="799.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.9505%" y="773" width="0.0206%" height="15" fill="rgb(206,179,9)" fg:x="24211" fg:w="5"/><text x="100.2005%" y="783.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.9505%" y="757" width="0.0206%" height="15" fill="rgb(215,115,40)" fg:x="24211" fg:w="5"/><text x="100.2005%" y="767.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.9505%" y="741" width="0.0206%" height="15" fill="rgb(222,69,34)" fg:x="24211" fg:w="5"/><text x="100.2005%" y="751.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.9505%" y="725" width="0.0206%" height="15" fill="rgb(209,161,10)" fg:x="24211" fg:w="5"/><text x="100.2005%" y="735.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.9505%" y="709" width="0.0206%" height="15" fill="rgb(217,6,38)" fg:x="24211" fg:w="5"/><text x="100.2005%" y="719.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (5 samples, 0.02%)</title><rect x="99.9505%" y="693" width="0.0206%" height="15" fill="rgb(229,229,48)" fg:x="24211" fg:w="5"/><text x="100.2005%" y="703.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9546%" y="677" width="0.0165%" height="15" fill="rgb(225,21,28)" fg:x="24212" fg:w="4"/><text x="100.2046%" y="687.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9546%" y="661" width="0.0165%" height="15" fill="rgb(206,33,13)" fg:x="24212" fg:w="4"/><text x="100.2046%" y="671.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9546%" y="645" width="0.0165%" height="15" fill="rgb(242,178,17)" fg:x="24212" fg:w="4"/><text x="100.2046%" y="655.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (4 samples, 0.02%)</title><rect x="99.9546%" y="629" width="0.0165%" height="15" fill="rgb(220,162,5)" fg:x="24212" fg:w="4"/><text x="100.2046%" y="639.50"></text></g><g><title>g_main_context_dispatch (24 samples, 0.10%)</title><rect x="99.8762%" y="901" width="0.0991%" height="15" fill="rgb(210,33,43)" fg:x="24193" fg:w="24"/><text x="100.1262%" y="911.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (17 samples, 0.07%)</title><rect x="99.9050%" y="885" width="0.0702%" height="15" fill="rgb(216,116,54)" fg:x="24200" fg:w="17"/><text x="100.1550%" y="895.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (17 samples, 0.07%)</title><rect x="99.9050%" y="869" width="0.0702%" height="15" fill="rgb(249,92,24)" fg:x="24200" fg:w="17"/><text x="100.1550%" y="879.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (17 samples, 0.07%)</title><rect x="99.9050%" y="853" width="0.0702%" height="15" fill="rgb(231,189,14)" fg:x="24200" fg:w="17"/><text x="100.1550%" y="863.50"></text></g><g><title>g_signal_emit (17 samples, 0.07%)</title><rect x="99.9050%" y="837" width="0.0702%" height="15" fill="rgb(230,8,41)" fg:x="24200" fg:w="17"/><text x="100.1550%" y="847.50"></text></g><g><title>g_signal_emit_valist (17 samples, 0.07%)</title><rect x="99.9050%" y="821" width="0.0702%" height="15" fill="rgb(249,7,27)" fg:x="24200" fg:w="17"/><text x="100.1550%" y="831.50"></text></g><g><title>[libgtk-3.so.0.2405.32] (6 samples, 0.02%)</title><rect x="99.9505%" y="805" width="0.0248%" height="15" fill="rgb(232,86,5)" fg:x="24211" fg:w="6"/><text x="100.2005%" y="815.50"></text></g><g><title>gtk_main (42 samples, 0.17%)</title><rect x="99.8225%" y="949" width="0.1734%" height="15" fill="rgb(224,175,18)" fg:x="24180" fg:w="42"/><text x="100.0725%" y="959.50"></text></g><g><title>g_main_loop_run (42 samples, 0.17%)</title><rect x="99.8225%" y="933" width="0.1734%" height="15" fill="rgb(220,129,12)" fg:x="24180" fg:w="42"/><text x="100.0725%" y="943.50"></text></g><g><title>[libglib-2.0.so.0.7600.1] (42 samples, 0.17%)</title><rect x="99.8225%" y="917" width="0.1734%" height="15" fill="rgb(210,19,36)" fg:x="24180" fg:w="42"/><text x="100.0725%" y="927.50"></text></g><g><title>g_main_context_prepare (5 samples, 0.02%)</title><rect x="99.9752%" y="901" width="0.0206%" height="15" fill="rgb(219,96,14)" fg:x="24217" fg:w="5"/><text x="100.2252%" y="911.50"></text></g><g><title>[libgdk-3.so.0.2405.32] (3 samples, 0.01%)</title><rect x="99.9835%" y="885" width="0.0124%" height="15" fill="rgb(249,106,1)" fg:x="24219" fg:w="3"/><text x="100.2335%" y="895.50"></text></g><g><title>wl_display_flush (3 samples, 0.01%)</title><rect x="99.9835%" y="869" width="0.0124%" height="15" fill="rgb(249,155,20)" fg:x="24219" fg:w="3"/><text x="100.2335%" y="879.50"></text></g><g><title>[libwayland-client.so.0.22.0] (3 samples, 0.01%)</title><rect x="99.9835%" y="853" width="0.0124%" height="15" fill="rgb(244,168,9)" fg:x="24219" fg:w="3"/><text x="100.2335%" y="863.50"></text></g><g><title>sendmsg (3 samples, 0.01%)</title><rect x="99.9835%" y="837" width="0.0124%" height="15" fill="rgb(216,23,50)" fg:x="24219" fg:w="3"/><text x="100.2335%" y="847.50"></text></g><g><title>all (24,223 samples, 100%)</title><rect x="0.0000%" y="1045" width="100.0000%" height="15" fill="rgb(224,219,20)" fg:x="0" fg:w="24223"/><text x="0.2500%" y="1055.50"></text></g><g><title>zenity (193 samples, 0.80%)</title><rect x="99.2032%" y="1029" width="0.7968%" height="15" fill="rgb(222,156,15)" fg:x="24030" fg:w="193"/><text x="99.4532%" y="1039.50"></text></g><g><title>[zenity] (119 samples, 0.49%)</title><rect x="99.5087%" y="1013" width="0.4913%" height="15" fill="rgb(231,97,17)" fg:x="24104" fg:w="119"/><text x="99.7587%" y="1023.50"></text></g><g><title>__libc_start_main (119 samples, 0.49%)</title><rect x="99.5087%" y="997" width="0.4913%" height="15" fill="rgb(218,70,48)" fg:x="24104" fg:w="119"/><text x="99.7587%" y="1007.50"></text></g><g><title>[libc.so.6] (119 samples, 0.49%)</title><rect x="99.5087%" y="981" width="0.4913%" height="15" fill="rgb(212,196,52)" fg:x="24104" fg:w="119"/><text x="99.7587%" y="991.50"></text></g><g><title>[zenity] (119 samples, 0.49%)</title><rect x="99.5087%" y="965" width="0.4913%" height="15" fill="rgb(243,203,18)" fg:x="24104" fg:w="119"/><text x="99.7587%" y="975.50"></text></g></svg></svg> |