Files
zed/flamegraph.svg
2025-11-25 15:53:23 +01:00

491 lines
2.9 MiB

<?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="2134" onload="init(evt)" viewBox="0 0 1200 2134" 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:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; 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, known_font_width;
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");
known_font_width = get_monospace_width(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);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
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.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
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();
}, 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 get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
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(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
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 (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;
var to_update_text = [];
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);
to_update_text.push(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);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
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_for_elements(el);
}
// 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="2134" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="2117.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="2117.00"> </text><svg id="frames" x="10" width="1180" total_samples="307534007314"><g><title>[unknown] (34,539,599 samples, 0.01%)</title><rect x="0.0000%" y="2053" width="0.0112%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="34539599"/><text x="0.2500%" y="2063.50"></text></g><g><title>/screen_ash.cc0 (55,706,433 samples, 0.02%)</title><rect x="0.0000%" y="2069" width="0.0181%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="55706433"/><text x="0.2500%" y="2079.50"></text></g><g><title>[unknown] (46,953,898 samples, 0.02%)</title><rect x="0.0388%" y="53" width="0.0153%" height="15" fill="rgb(221,193,54)" fg:x="119394906" fg:w="46953898"/><text x="0.2888%" y="63.50"></text></g><g><title>[unknown] (48,113,279 samples, 0.02%)</title><rect x="0.0388%" y="69" width="0.0156%" height="15" fill="rgb(248,212,6)" fg:x="119394906" fg:w="48113279"/><text x="0.2888%" y="79.50"></text></g><g><title>[unknown] (49,063,950 samples, 0.02%)</title><rect x="0.0388%" y="117" width="0.0160%" height="15" fill="rgb(208,68,35)" fg:x="119394906" fg:w="49063950"/><text x="0.2888%" y="127.50"></text></g><g><title>[unknown] (49,063,950 samples, 0.02%)</title><rect x="0.0388%" y="101" width="0.0160%" height="15" fill="rgb(232,128,0)" fg:x="119394906" fg:w="49063950"/><text x="0.2888%" y="111.50"></text></g><g><title>[unknown] (49,063,950 samples, 0.02%)</title><rect x="0.0388%" y="85" width="0.0160%" height="15" fill="rgb(207,160,47)" fg:x="119394906" fg:w="49063950"/><text x="0.2888%" y="95.50"></text></g><g><title>[unknown] (50,054,885 samples, 0.02%)</title><rect x="0.0388%" y="165" width="0.0163%" height="15" fill="rgb(228,23,34)" fg:x="119394906" fg:w="50054885"/><text x="0.2888%" y="175.50"></text></g><g><title>[unknown] (50,054,885 samples, 0.02%)</title><rect x="0.0388%" y="149" width="0.0163%" height="15" fill="rgb(218,30,26)" fg:x="119394906" fg:w="50054885"/><text x="0.2888%" y="159.50"></text></g><g><title>[unknown] (50,054,885 samples, 0.02%)</title><rect x="0.0388%" y="133" width="0.0163%" height="15" fill="rgb(220,122,19)" fg:x="119394906" fg:w="50054885"/><text x="0.2888%" y="143.50"></text></g><g><title>[unknown] (51,244,914 samples, 0.02%)</title><rect x="0.0388%" y="197" width="0.0167%" height="15" fill="rgb(250,228,42)" fg:x="119394906" fg:w="51244914"/><text x="0.2888%" y="207.50"></text></g><g><title>[unknown] (51,244,914 samples, 0.02%)</title><rect x="0.0388%" y="181" width="0.0167%" height="15" fill="rgb(240,193,28)" fg:x="119394906" fg:w="51244914"/><text x="0.2888%" y="191.50"></text></g><g><title>[unknown] (52,412,737 samples, 0.02%)</title><rect x="0.0388%" y="341" width="0.0170%" height="15" fill="rgb(216,20,37)" fg:x="119394906" fg:w="52412737"/><text x="0.2888%" y="351.50"></text></g><g><title>[unknown] (52,412,737 samples, 0.02%)</title><rect x="0.0388%" y="325" width="0.0170%" height="15" fill="rgb(206,188,39)" fg:x="119394906" fg:w="52412737"/><text x="0.2888%" y="335.50"></text></g><g><title>[unknown] (52,412,737 samples, 0.02%)</title><rect x="0.0388%" y="309" width="0.0170%" height="15" fill="rgb(217,207,13)" fg:x="119394906" fg:w="52412737"/><text x="0.2888%" y="319.50"></text></g><g><title>[unknown] (52,412,737 samples, 0.02%)</title><rect x="0.0388%" y="293" width="0.0170%" height="15" fill="rgb(231,73,38)" fg:x="119394906" fg:w="52412737"/><text x="0.2888%" y="303.50"></text></g><g><title>[unknown] (52,412,737 samples, 0.02%)</title><rect x="0.0388%" y="277" width="0.0170%" height="15" fill="rgb(225,20,46)" fg:x="119394906" fg:w="52412737"/><text x="0.2888%" y="287.50"></text></g><g><title>[unknown] (52,412,737 samples, 0.02%)</title><rect x="0.0388%" y="261" width="0.0170%" height="15" fill="rgb(210,31,41)" fg:x="119394906" fg:w="52412737"/><text x="0.2888%" y="271.50"></text></g><g><title>[unknown] (52,412,737 samples, 0.02%)</title><rect x="0.0388%" y="245" width="0.0170%" height="15" fill="rgb(221,200,47)" fg:x="119394906" fg:w="52412737"/><text x="0.2888%" y="255.50"></text></g><g><title>[unknown] (52,412,737 samples, 0.02%)</title><rect x="0.0388%" y="229" width="0.0170%" height="15" fill="rgb(226,26,5)" fg:x="119394906" fg:w="52412737"/><text x="0.2888%" y="239.50"></text></g><g><title>[unknown] (52,412,737 samples, 0.02%)</title><rect x="0.0388%" y="213" width="0.0170%" height="15" fill="rgb(249,33,26)" fg:x="119394906" fg:w="52412737"/><text x="0.2888%" y="223.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1925" width="0.0174%" height="15" fill="rgb(235,183,28)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1935.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1909" width="0.0174%" height="15" fill="rgb(221,5,38)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1919.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1893" width="0.0174%" height="15" fill="rgb(247,18,42)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1903.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1877" width="0.0174%" height="15" fill="rgb(241,131,45)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1887.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1861" width="0.0174%" height="15" fill="rgb(249,31,29)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1871.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1845" width="0.0174%" height="15" fill="rgb(225,111,53)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1855.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1829" width="0.0174%" height="15" fill="rgb(238,160,17)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1839.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1813" width="0.0174%" height="15" fill="rgb(214,148,48)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1823.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1797" width="0.0174%" height="15" fill="rgb(232,36,49)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1807.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1781" width="0.0174%" height="15" fill="rgb(209,103,24)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1791.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1765" width="0.0174%" height="15" fill="rgb(229,88,8)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1775.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1749" width="0.0174%" height="15" fill="rgb(213,181,19)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1759.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1733" width="0.0174%" height="15" fill="rgb(254,191,54)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1743.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1717" width="0.0174%" height="15" fill="rgb(241,83,37)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1727.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1701" width="0.0174%" height="15" fill="rgb(233,36,39)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1711.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1685" width="0.0174%" height="15" fill="rgb(226,3,54)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1695.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1669" width="0.0174%" height="15" fill="rgb(245,192,40)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1679.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1653" width="0.0174%" height="15" fill="rgb(238,167,29)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1663.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1637" width="0.0174%" height="15" fill="rgb(232,182,51)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1647.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1621" width="0.0174%" height="15" fill="rgb(231,60,39)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1631.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1605" width="0.0174%" height="15" fill="rgb(208,69,12)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1615.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1589" width="0.0174%" height="15" fill="rgb(235,93,37)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1599.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1573" width="0.0174%" height="15" fill="rgb(213,116,39)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1583.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1557" width="0.0174%" height="15" fill="rgb(222,207,29)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1567.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1541" width="0.0174%" height="15" fill="rgb(206,96,30)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1551.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1525" width="0.0174%" height="15" fill="rgb(218,138,4)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1535.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1509" width="0.0174%" height="15" fill="rgb(250,191,14)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1519.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1493" width="0.0174%" height="15" fill="rgb(239,60,40)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1503.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1477" width="0.0174%" height="15" fill="rgb(206,27,48)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1487.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1461" width="0.0174%" height="15" fill="rgb(225,35,8)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1471.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1445" width="0.0174%" height="15" fill="rgb(250,213,24)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1455.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1429" width="0.0174%" height="15" fill="rgb(247,123,22)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1439.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1413" width="0.0174%" height="15" fill="rgb(231,138,38)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1423.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1397" width="0.0174%" height="15" fill="rgb(231,145,46)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1407.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1381" width="0.0174%" height="15" fill="rgb(251,118,11)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1391.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1365" width="0.0174%" height="15" fill="rgb(217,147,25)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1375.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1349" width="0.0174%" height="15" fill="rgb(247,81,37)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1359.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1333" width="0.0174%" height="15" fill="rgb(209,12,38)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1343.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1317" width="0.0174%" height="15" fill="rgb(227,1,9)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1327.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1301" width="0.0174%" height="15" fill="rgb(248,47,43)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1311.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1285" width="0.0174%" height="15" fill="rgb(221,10,30)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1295.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1269" width="0.0174%" height="15" fill="rgb(210,229,1)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1279.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1253" width="0.0174%" height="15" fill="rgb(222,148,37)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1263.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1237" width="0.0174%" height="15" fill="rgb(234,67,33)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1247.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1221" width="0.0174%" height="15" fill="rgb(247,98,35)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1231.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1205" width="0.0174%" height="15" fill="rgb(247,138,52)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1215.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1189" width="0.0174%" height="15" fill="rgb(213,79,30)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1199.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1173" width="0.0174%" height="15" fill="rgb(246,177,23)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1183.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1157" width="0.0174%" height="15" fill="rgb(230,62,27)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1167.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1141" width="0.0174%" height="15" fill="rgb(216,154,8)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1151.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1125" width="0.0174%" height="15" fill="rgb(244,35,45)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1135.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1109" width="0.0174%" height="15" fill="rgb(251,115,12)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1119.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1093" width="0.0174%" height="15" fill="rgb(240,54,50)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1103.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1077" width="0.0174%" height="15" fill="rgb(233,84,52)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1087.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1061" width="0.0174%" height="15" fill="rgb(207,117,47)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1071.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1045" width="0.0174%" height="15" fill="rgb(249,43,39)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1055.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1029" width="0.0174%" height="15" fill="rgb(209,38,44)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1039.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="1013" width="0.0174%" height="15" fill="rgb(236,212,23)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1023.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="997" width="0.0174%" height="15" fill="rgb(242,79,21)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="1007.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="981" width="0.0174%" height="15" fill="rgb(211,96,35)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="991.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="965" width="0.0174%" height="15" fill="rgb(253,215,40)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="975.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="949" width="0.0174%" height="15" fill="rgb(211,81,21)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="959.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="933" width="0.0174%" height="15" fill="rgb(208,190,38)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="943.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="917" width="0.0174%" height="15" fill="rgb(235,213,38)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="927.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="901" width="0.0174%" height="15" fill="rgb(237,122,38)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="911.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="885" width="0.0174%" height="15" fill="rgb(244,218,35)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="895.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="869" width="0.0174%" height="15" fill="rgb(240,68,47)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="879.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="853" width="0.0174%" height="15" fill="rgb(210,16,53)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="863.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="837" width="0.0174%" height="15" fill="rgb(235,124,12)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="847.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="821" width="0.0174%" height="15" fill="rgb(224,169,11)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="831.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="805" width="0.0174%" height="15" fill="rgb(250,166,2)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="815.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="789" width="0.0174%" height="15" fill="rgb(242,216,29)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="799.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="773" width="0.0174%" height="15" fill="rgb(230,116,27)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="783.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="757" width="0.0174%" height="15" fill="rgb(228,99,48)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="767.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="741" width="0.0174%" height="15" fill="rgb(253,11,6)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="751.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="725" width="0.0174%" height="15" fill="rgb(247,143,39)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="735.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="709" width="0.0174%" height="15" fill="rgb(236,97,10)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="719.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="693" width="0.0174%" height="15" fill="rgb(233,208,19)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="703.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="677" width="0.0174%" height="15" fill="rgb(216,164,2)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="687.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="661" width="0.0174%" height="15" fill="rgb(220,129,5)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="671.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="645" width="0.0174%" height="15" fill="rgb(242,17,10)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="655.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="629" width="0.0174%" height="15" fill="rgb(242,107,0)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="639.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="613" width="0.0174%" height="15" fill="rgb(251,28,31)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="623.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="597" width="0.0174%" height="15" fill="rgb(233,223,10)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="607.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="581" width="0.0174%" height="15" fill="rgb(215,21,27)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="591.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="565" width="0.0174%" height="15" fill="rgb(232,23,21)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="575.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="549" width="0.0174%" height="15" fill="rgb(244,5,23)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="559.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="533" width="0.0174%" height="15" fill="rgb(226,81,46)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="543.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="517" width="0.0174%" height="15" fill="rgb(247,70,30)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="527.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="501" width="0.0174%" height="15" fill="rgb(212,68,19)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="511.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="485" width="0.0174%" height="15" fill="rgb(240,187,13)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="495.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="469" width="0.0174%" height="15" fill="rgb(223,113,26)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="479.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="453" width="0.0174%" height="15" fill="rgb(206,192,2)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="463.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="437" width="0.0174%" height="15" fill="rgb(241,108,4)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="447.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="421" width="0.0174%" height="15" fill="rgb(247,173,49)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="431.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="405" width="0.0174%" height="15" fill="rgb(224,114,35)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="415.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="389" width="0.0174%" height="15" fill="rgb(245,159,27)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="399.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="373" width="0.0174%" height="15" fill="rgb(245,172,44)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="383.50"></text></g><g><title>[unknown] (53,477,200 samples, 0.02%)</title><rect x="0.0388%" y="357" width="0.0174%" height="15" fill="rgb(236,23,11)" fg:x="119394906" fg:w="53477200"/><text x="0.2888%" y="367.50"></text></g><g><title>[unknown] (54,523,282 samples, 0.02%)</title><rect x="0.0388%" y="1941" width="0.0177%" height="15" fill="rgb(205,117,38)" fg:x="119394906" fg:w="54523282"/><text x="0.2888%" y="1951.50"></text></g><g><title>[unknown] (55,684,434 samples, 0.02%)</title><rect x="0.0388%" y="1957" width="0.0181%" height="15" fill="rgb(237,72,25)" fg:x="119394906" fg:w="55684434"/><text x="0.2888%" y="1967.50"></text></g><g><title>[unknown] (56,880,467 samples, 0.02%)</title><rect x="0.0388%" y="1973" width="0.0185%" height="15" fill="rgb(244,70,9)" fg:x="119394906" fg:w="56880467"/><text x="0.2888%" y="1983.50"></text></g><g><title>[unknown] (61,424,940 samples, 0.02%)</title><rect x="0.0388%" y="1989" width="0.0200%" height="15" fill="rgb(217,125,39)" fg:x="119394906" fg:w="61424940"/><text x="0.2888%" y="1999.50"></text></g><g><title>[unknown] (97,836,948 samples, 0.03%)</title><rect x="0.0367%" y="2005" width="0.0318%" height="15" fill="rgb(235,36,10)" fg:x="112879941" fg:w="97836948"/><text x="0.2867%" y="2015.50"></text></g><g><title>[unknown] (199,374,721 samples, 0.06%)</title><rect x="0.0326%" y="2021" width="0.0648%" height="15" fill="rgb(251,123,47)" fg:x="100111448" fg:w="199374721"/><text x="0.2826%" y="2031.50"></text></g><g><title>[unknown] (379,119,694 samples, 0.12%)</title><rect x="0.0292%" y="2037" width="0.1233%" height="15" fill="rgb(221,13,13)" fg:x="89842709" fg:w="379119694"/><text x="0.2792%" y="2047.50"></text></g><g><title>clang::CXXMethodDecl::~CXXMethodDecl (32,897,941 samples, 0.01%)</title><rect x="0.1685%" y="2037" width="0.0107%" height="15" fill="rgb(238,131,9)" fg:x="518088625" fg:w="32897941"/><text x="0.4185%" y="2047.50"></text></g><g><title>[unknown] (32,897,941 samples, 0.01%)</title><rect x="0.1685%" y="2021" width="0.0107%" height="15" fill="rgb(211,50,8)" fg:x="518088625" fg:w="32897941"/><text x="0.4185%" y="2031.50"></text></g><g><title>clang::Lexer::LexTokenInternal (48,964,781 samples, 0.02%)</title><rect x="0.2260%" y="2037" width="0.0159%" height="15" fill="rgb(245,182,24)" fg:x="694958766" fg:w="48964781"/><text x="0.4760%" y="2047.50"></text></g><g><title>[unknown] (1,094,062,855 samples, 0.36%)</title><rect x="0.0242%" y="2053" width="0.3558%" height="15" fill="rgb(242,14,37)" fg:x="74382434" fg:w="1094062855"/><text x="0.2742%" y="2063.50"></text></g><g><title>llvm::sys::fs::readNativeFileSlice (35,500,662 samples, 0.01%)</title><rect x="0.6366%" y="2053" width="0.0115%" height="15" fill="rgb(246,228,12)" fg:x="1957742760" fg:w="35500662"/><text x="0.8866%" y="2063.50"></text></g><g><title>__libc_pread (35,500,662 samples, 0.01%)</title><rect x="0.6366%" y="2037" width="0.0115%" height="15" fill="rgb(213,55,15)" fg:x="1957742760" fg:w="35500662"/><text x="0.8866%" y="2047.50"></text></g><g><title>__syscall_cancel_arch_end (35,500,662 samples, 0.01%)</title><rect x="0.6366%" y="2021" width="0.0115%" height="15" fill="rgb(209,9,3)" fg:x="1957742760" fg:w="35500662"/><text x="0.8866%" y="2031.50"></text></g><g><title>[unknown] (35,500,662 samples, 0.01%)</title><rect x="0.6366%" y="2005" width="0.0115%" height="15" fill="rgb(230,59,30)" fg:x="1957742760" fg:w="35500662"/><text x="0.8866%" y="2015.50"></text></g><g><title>[unknown] (35,500,662 samples, 0.01%)</title><rect x="0.6366%" y="1989" width="0.0115%" height="15" fill="rgb(209,121,21)" fg:x="1957742760" fg:w="35500662"/><text x="0.8866%" y="1999.50"></text></g><g><title>[unknown] (35,500,662 samples, 0.01%)</title><rect x="0.6366%" y="1973" width="0.0115%" height="15" fill="rgb(220,109,13)" fg:x="1957742760" fg:w="35500662"/><text x="0.8866%" y="1983.50"></text></g><g><title>[unknown] (35,500,662 samples, 0.01%)</title><rect x="0.6366%" y="1957" width="0.0115%" height="15" fill="rgb(232,18,1)" fg:x="1957742760" fg:w="35500662"/><text x="0.8866%" y="1967.50"></text></g><g><title>[unknown] (34,335,740 samples, 0.01%)</title><rect x="0.6370%" y="1941" width="0.0112%" height="15" fill="rgb(215,41,42)" fg:x="1958907682" fg:w="34335740"/><text x="0.8870%" y="1951.50"></text></g><g><title>[unknown] (33,332,242 samples, 0.01%)</title><rect x="0.6373%" y="1925" width="0.0108%" height="15" fill="rgb(224,123,36)" fg:x="1959911180" fg:w="33332242"/><text x="0.8873%" y="1935.50"></text></g><g><title>[unknown] (33,332,242 samples, 0.01%)</title><rect x="0.6373%" y="1909" width="0.0108%" height="15" fill="rgb(240,125,3)" fg:x="1959911180" fg:w="33332242"/><text x="0.8873%" y="1919.50"></text></g><g><title>[unknown] (33,332,242 samples, 0.01%)</title><rect x="0.6373%" y="1893" width="0.0108%" height="15" fill="rgb(205,98,50)" fg:x="1959911180" fg:w="33332242"/><text x="0.8873%" y="1903.50"></text></g><g><title>[unknown] (33,332,242 samples, 0.01%)</title><rect x="0.6373%" y="1877" width="0.0108%" height="15" fill="rgb(205,185,37)" fg:x="1959911180" fg:w="33332242"/><text x="0.8873%" y="1887.50"></text></g><g><title>[unknown] (33,332,242 samples, 0.01%)</title><rect x="0.6373%" y="1861" width="0.0108%" height="15" fill="rgb(238,207,15)" fg:x="1959911180" fg:w="33332242"/><text x="0.8873%" y="1871.50"></text></g><g><title>[unknown] (30,991,361 samples, 0.01%)</title><rect x="0.6381%" y="1845" width="0.0101%" height="15" fill="rgb(213,199,42)" fg:x="1962252061" fg:w="30991361"/><text x="0.8881%" y="1855.50"></text></g><g><title>IndexStdlib (2,008,929,362 samples, 0.65%)</title><rect x="0.0181%" y="2069" width="0.6532%" height="15" fill="rgb(235,201,11)" fg:x="55706433" fg:w="2008929362"/><text x="0.2681%" y="2079.50"></text></g><g><title>__sched_yield (39,090,555 samples, 0.01%)</title><rect x="0.6735%" y="1941" width="0.0127%" height="15" fill="rgb(207,46,11)" fg:x="2071261508" fg:w="39090555"/><text x="0.9235%" y="1951.50"></text></g><g><title>[unknown] (37,938,580 samples, 0.01%)</title><rect x="0.6739%" y="1925" width="0.0123%" height="15" fill="rgb(241,35,35)" fg:x="2072413483" fg:w="37938580"/><text x="0.9239%" y="1935.50"></text></g><g><title>[unknown] (35,800,690 samples, 0.01%)</title><rect x="0.6746%" y="1909" width="0.0116%" height="15" fill="rgb(243,32,47)" fg:x="2074551373" fg:w="35800690"/><text x="0.9246%" y="1919.50"></text></g><g><title>[unknown] (34,959,845 samples, 0.01%)</title><rect x="0.6748%" y="1893" width="0.0114%" height="15" fill="rgb(247,202,23)" fg:x="2075392218" fg:w="34959845"/><text x="0.9248%" y="1903.50"></text></g><g><title>[unknown] (32,734,653 samples, 0.01%)</title><rect x="0.6756%" y="1877" width="0.0106%" height="15" fill="rgb(219,102,11)" fg:x="2077617410" fg:w="32734653"/><text x="0.9256%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38,669,360 samples, 0.01%)</title><rect x="0.6890%" y="1429" width="0.0126%" height="15" fill="rgb(243,110,44)" fg:x="2118918945" fg:w="38669360"/><text x="0.9390%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (38,669,360 samples, 0.01%)</title><rect x="0.6890%" y="1413" width="0.0126%" height="15" fill="rgb(222,74,54)" fg:x="2118918945" fg:w="38669360"/><text x="0.9390%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (38,669,360 samples, 0.01%)</title><rect x="0.6890%" y="1397" width="0.0126%" height="15" fill="rgb(216,99,12)" fg:x="2118918945" fg:w="38669360"/><text x="0.9390%" y="1407.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (38,669,360 samples, 0.01%)</title><rect x="0.6890%" y="1381" width="0.0126%" height="15" fill="rgb(226,22,26)" fg:x="2118918945" fg:w="38669360"/><text x="0.9390%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38,669,360 samples, 0.01%)</title><rect x="0.6890%" y="1365" width="0.0126%" height="15" fill="rgb(217,163,10)" fg:x="2118918945" fg:w="38669360"/><text x="0.9390%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (38,669,360 samples, 0.01%)</title><rect x="0.6890%" y="1349" width="0.0126%" height="15" fill="rgb(213,25,53)" fg:x="2118918945" fg:w="38669360"/><text x="0.9390%" y="1359.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (38,669,360 samples, 0.01%)</title><rect x="0.6890%" y="1333" width="0.0126%" height="15" fill="rgb(252,105,26)" fg:x="2118918945" fg:w="38669360"/><text x="0.9390%" y="1343.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (38,669,360 samples, 0.01%)</title><rect x="0.6890%" y="1317" width="0.0126%" height="15" fill="rgb(220,39,43)" fg:x="2118918945" fg:w="38669360"/><text x="0.9390%" y="1327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42,394,594 samples, 0.01%)</title><rect x="0.6890%" y="1461" width="0.0138%" height="15" fill="rgb(229,68,48)" fg:x="2118918945" fg:w="42394594"/><text x="0.9390%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42,394,594 samples, 0.01%)</title><rect x="0.6890%" y="1445" width="0.0138%" height="15" fill="rgb(252,8,32)" fg:x="2118918945" fg:w="42394594"/><text x="0.9390%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (56,908,862 samples, 0.02%)</title><rect x="0.7076%" y="1189" width="0.0185%" height="15" fill="rgb(223,20,43)" fg:x="2176203577" fg:w="56908862"/><text x="0.9576%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (56,908,862 samples, 0.02%)</title><rect x="0.7076%" y="1173" width="0.0185%" height="15" fill="rgb(229,81,49)" fg:x="2176203577" fg:w="56908862"/><text x="0.9576%" y="1183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (56,908,862 samples, 0.02%)</title><rect x="0.7076%" y="1157" width="0.0185%" height="15" fill="rgb(236,28,36)" fg:x="2176203577" fg:w="56908862"/><text x="0.9576%" y="1167.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (56,908,862 samples, 0.02%)</title><rect x="0.7076%" y="1141" width="0.0185%" height="15" fill="rgb(249,185,26)" fg:x="2176203577" fg:w="56908862"/><text x="0.9576%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55,962,152 samples, 0.02%)</title><rect x="0.7079%" y="1125" width="0.0182%" height="15" fill="rgb(249,174,33)" fg:x="2177150287" fg:w="55962152"/><text x="0.9579%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (55,015,442 samples, 0.02%)</title><rect x="0.7082%" y="1109" width="0.0179%" height="15" fill="rgb(233,201,37)" fg:x="2178096997" fg:w="55015442"/><text x="0.9582%" y="1119.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (55,015,442 samples, 0.02%)</title><rect x="0.7082%" y="1093" width="0.0179%" height="15" fill="rgb(221,78,26)" fg:x="2178096997" fg:w="55015442"/><text x="0.9582%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55,015,442 samples, 0.02%)</title><rect x="0.7082%" y="1077" width="0.0179%" height="15" fill="rgb(250,127,30)" fg:x="2178096997" fg:w="55015442"/><text x="0.9582%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55,015,442 samples, 0.02%)</title><rect x="0.7082%" y="1061" width="0.0179%" height="15" fill="rgb(230,49,44)" fg:x="2178096997" fg:w="55015442"/><text x="0.9582%" y="1071.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (51,068,160 samples, 0.02%)</title><rect x="0.7095%" y="1045" width="0.0166%" height="15" fill="rgb(229,67,23)" fg:x="2182044279" fg:w="51068160"/><text x="0.9595%" y="1055.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (51,068,160 samples, 0.02%)</title><rect x="0.7095%" y="1029" width="0.0166%" height="15" fill="rgb(249,83,47)" fg:x="2182044279" fg:w="51068160"/><text x="0.9595%" y="1039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32,194,366 samples, 0.01%)</title><rect x="0.7157%" y="1013" width="0.0105%" height="15" fill="rgb(215,43,3)" fg:x="2200918073" fg:w="32194366"/><text x="0.9657%" y="1023.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (117,703,411 samples, 0.04%)</title><rect x="0.7028%" y="1445" width="0.0383%" height="15" fill="rgb(238,154,13)" fg:x="2161313539" fg:w="117703411"/><text x="0.9528%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (117,703,411 samples, 0.04%)</title><rect x="0.7028%" y="1429" width="0.0383%" height="15" fill="rgb(219,56,2)" fg:x="2161313539" fg:w="117703411"/><text x="0.9528%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (117,703,411 samples, 0.04%)</title><rect x="0.7028%" y="1413" width="0.0383%" height="15" fill="rgb(233,0,4)" fg:x="2161313539" fg:w="117703411"/><text x="0.9528%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (117,703,411 samples, 0.04%)</title><rect x="0.7028%" y="1397" width="0.0383%" height="15" fill="rgb(235,30,7)" fg:x="2161313539" fg:w="117703411"/><text x="0.9528%" y="1407.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (117,703,411 samples, 0.04%)</title><rect x="0.7028%" y="1381" width="0.0383%" height="15" fill="rgb(250,79,13)" fg:x="2161313539" fg:w="117703411"/><text x="0.9528%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (104,084,270 samples, 0.03%)</title><rect x="0.7072%" y="1365" width="0.0338%" height="15" fill="rgb(211,146,34)" fg:x="2174932680" fg:w="104084270"/><text x="0.9572%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (104,084,270 samples, 0.03%)</title><rect x="0.7072%" y="1349" width="0.0338%" height="15" fill="rgb(228,22,38)" fg:x="2174932680" fg:w="104084270"/><text x="0.9572%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (104,084,270 samples, 0.03%)</title><rect x="0.7072%" y="1333" width="0.0338%" height="15" fill="rgb(235,168,5)" fg:x="2174932680" fg:w="104084270"/><text x="0.9572%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (104,084,270 samples, 0.03%)</title><rect x="0.7072%" y="1317" width="0.0338%" height="15" fill="rgb(221,155,16)" fg:x="2174932680" fg:w="104084270"/><text x="0.9572%" y="1327.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (104,084,270 samples, 0.03%)</title><rect x="0.7072%" y="1301" width="0.0338%" height="15" fill="rgb(215,215,53)" fg:x="2174932680" fg:w="104084270"/><text x="0.9572%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (104,084,270 samples, 0.03%)</title><rect x="0.7072%" y="1285" width="0.0338%" height="15" fill="rgb(223,4,10)" fg:x="2174932680" fg:w="104084270"/><text x="0.9572%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (104,084,270 samples, 0.03%)</title><rect x="0.7072%" y="1269" width="0.0338%" height="15" fill="rgb(234,103,6)" fg:x="2174932680" fg:w="104084270"/><text x="0.9572%" y="1279.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (102,813,373 samples, 0.03%)</title><rect x="0.7076%" y="1253" width="0.0334%" height="15" fill="rgb(227,97,0)" fg:x="2176203577" fg:w="102813373"/><text x="0.9576%" y="1263.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (102,813,373 samples, 0.03%)</title><rect x="0.7076%" y="1237" width="0.0334%" height="15" fill="rgb(234,150,53)" fg:x="2176203577" fg:w="102813373"/><text x="0.9576%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (102,813,373 samples, 0.03%)</title><rect x="0.7076%" y="1221" width="0.0334%" height="15" fill="rgb(228,201,54)" fg:x="2176203577" fg:w="102813373"/><text x="0.9576%" y="1231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (102,813,373 samples, 0.03%)</title><rect x="0.7076%" y="1205" width="0.0334%" height="15" fill="rgb(222,22,37)" fg:x="2176203577" fg:w="102813373"/><text x="0.9576%" y="1215.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (45,904,511 samples, 0.01%)</title><rect x="0.7261%" y="1189" width="0.0149%" height="15" fill="rgb(237,53,32)" fg:x="2233112439" fg:w="45904511"/><text x="0.9761%" y="1199.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (45,904,511 samples, 0.01%)</title><rect x="0.7261%" y="1173" width="0.0149%" height="15" fill="rgb(233,25,53)" fg:x="2233112439" fg:w="45904511"/><text x="0.9761%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (45,904,511 samples, 0.01%)</title><rect x="0.7261%" y="1157" width="0.0149%" height="15" fill="rgb(210,40,34)" fg:x="2233112439" fg:w="45904511"/><text x="0.9761%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45,904,511 samples, 0.01%)</title><rect x="0.7261%" y="1141" width="0.0149%" height="15" fill="rgb(241,220,44)" fg:x="2233112439" fg:w="45904511"/><text x="0.9761%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (45,904,511 samples, 0.01%)</title><rect x="0.7261%" y="1125" width="0.0149%" height="15" fill="rgb(235,28,35)" fg:x="2233112439" fg:w="45904511"/><text x="0.9761%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (45,904,511 samples, 0.01%)</title><rect x="0.7261%" y="1109" width="0.0149%" height="15" fill="rgb(210,56,17)" fg:x="2233112439" fg:w="45904511"/><text x="0.9761%" y="1119.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (45,904,511 samples, 0.01%)</title><rect x="0.7261%" y="1093" width="0.0149%" height="15" fill="rgb(224,130,29)" fg:x="2233112439" fg:w="45904511"/><text x="0.9761%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (164,359,816 samples, 0.05%)</title><rect x="0.6880%" y="1909" width="0.0534%" height="15" fill="rgb(235,212,8)" fg:x="2115888094" fg:w="164359816"/><text x="0.9380%" y="1919.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (164,359,816 samples, 0.05%)</title><rect x="0.6880%" y="1893" width="0.0534%" height="15" fill="rgb(223,33,50)" fg:x="2115888094" fg:w="164359816"/><text x="0.9380%" y="1903.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1877" width="0.0527%" height="15" fill="rgb(219,149,13)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1887.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1861" width="0.0527%" height="15" fill="rgb(250,156,29)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1845" width="0.0527%" height="15" fill="rgb(216,193,19)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1829" width="0.0527%" height="15" fill="rgb(216,135,14)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1813" width="0.0527%" height="15" fill="rgb(241,47,5)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1823.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1797" width="0.0527%" height="15" fill="rgb(233,42,35)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1781" width="0.0527%" height="15" fill="rgb(231,13,6)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1765" width="0.0527%" height="15" fill="rgb(207,181,40)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1749" width="0.0527%" height="15" fill="rgb(254,173,49)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1759.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1733" width="0.0527%" height="15" fill="rgb(221,1,38)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1717" width="0.0527%" height="15" fill="rgb(206,124,46)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1701" width="0.0527%" height="15" fill="rgb(249,21,11)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1711.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1685" width="0.0527%" height="15" fill="rgb(222,201,40)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1695.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1669" width="0.0527%" height="15" fill="rgb(235,61,29)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1653" width="0.0527%" height="15" fill="rgb(219,207,3)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1637" width="0.0527%" height="15" fill="rgb(222,56,46)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (162,220,675 samples, 0.05%)</title><rect x="0.6887%" y="1621" width="0.0527%" height="15" fill="rgb(239,76,54)" fg:x="2118027235" fg:w="162220675"/><text x="0.9387%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (161,328,965 samples, 0.05%)</title><rect x="0.6890%" y="1605" width="0.0525%" height="15" fill="rgb(231,124,27)" fg:x="2118918945" fg:w="161328965"/><text x="0.9390%" y="1615.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (161,328,965 samples, 0.05%)</title><rect x="0.6890%" y="1589" width="0.0525%" height="15" fill="rgb(249,195,6)" fg:x="2118918945" fg:w="161328965"/><text x="0.9390%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (161,328,965 samples, 0.05%)</title><rect x="0.6890%" y="1573" width="0.0525%" height="15" fill="rgb(237,174,47)" fg:x="2118918945" fg:w="161328965"/><text x="0.9390%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (161,328,965 samples, 0.05%)</title><rect x="0.6890%" y="1557" width="0.0525%" height="15" fill="rgb(206,201,31)" fg:x="2118918945" fg:w="161328965"/><text x="0.9390%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (161,328,965 samples, 0.05%)</title><rect x="0.6890%" y="1541" width="0.0525%" height="15" fill="rgb(231,57,52)" fg:x="2118918945" fg:w="161328965"/><text x="0.9390%" y="1551.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (161,328,965 samples, 0.05%)</title><rect x="0.6890%" y="1525" width="0.0525%" height="15" fill="rgb(248,177,22)" fg:x="2118918945" fg:w="161328965"/><text x="0.9390%" y="1535.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (161,328,965 samples, 0.05%)</title><rect x="0.6890%" y="1509" width="0.0525%" height="15" fill="rgb(215,211,37)" fg:x="2118918945" fg:w="161328965"/><text x="0.9390%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (161,328,965 samples, 0.05%)</title><rect x="0.6890%" y="1493" width="0.0525%" height="15" fill="rgb(241,128,51)" fg:x="2118918945" fg:w="161328965"/><text x="0.9390%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (161,328,965 samples, 0.05%)</title><rect x="0.6890%" y="1477" width="0.0525%" height="15" fill="rgb(227,165,31)" fg:x="2118918945" fg:w="161328965"/><text x="0.9390%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (118,934,371 samples, 0.04%)</title><rect x="0.7028%" y="1461" width="0.0387%" height="15" fill="rgb(228,167,24)" fg:x="2161313539" fg:w="118934371"/><text x="0.9528%" y="1471.50"></text></g><g><title>cranelift_codegen::isa::x64::lower::isle::generated_code::constructor_lower (31,448,574 samples, 0.01%)</title><rect x="0.8594%" y="1621" width="0.0102%" height="15" fill="rgb(228,143,12)" fg:x="2642863616" fg:w="31448574"/><text x="1.1094%" y="1631.50"></text></g><g><title>cranelift_codegen::machinst::lower::Lower&lt;I&gt;::lower (51,546,644 samples, 0.02%)</title><rect x="0.8539%" y="1637" width="0.0168%" height="15" fill="rgb(249,149,8)" fg:x="2625965046" fg:w="51546644"/><text x="1.1039%" y="1647.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::init (112,950,038 samples, 0.04%)</title><rect x="0.8905%" y="1621" width="0.0367%" height="15" fill="rgb(243,35,44)" fg:x="2738731209" fg:w="112950038"/><text x="1.1405%" y="1631.50"></text></g><g><title>regalloc2::ion::process::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::try_to_allocate_bundle_to_reg (62,747,479 samples, 0.02%)</title><rect x="0.9572%" y="1605" width="0.0204%" height="15" fill="rgb(246,89,9)" fg:x="2943825799" fg:w="62747479"/><text x="1.2072%" y="1615.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::run (170,335,647 samples, 0.06%)</title><rect x="0.9273%" y="1621" width="0.0554%" height="15" fill="rgb(233,213,13)" fg:x="2851681247" fg:w="170335647"/><text x="1.1773%" y="1631.50"></text></g><g><title>cranelift_codegen::machinst::compile::compile (417,362,744 samples, 0.14%)</title><rect x="0.8477%" y="1653" width="0.1357%" height="15" fill="rgb(233,141,41)" fg:x="2606823484" fg:w="417362744"/><text x="1.0977%" y="1663.50"></text></g><g><title>regalloc2::run (322,768,528 samples, 0.10%)</title><rect x="0.8784%" y="1637" width="0.1050%" height="15" fill="rgb(239,167,4)" fg:x="2701417700" fg:w="322768528"/><text x="1.1284%" y="1647.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (470,060,152 samples, 0.15%)</title><rect x="0.8459%" y="1669" width="0.1528%" height="15" fill="rgb(209,217,16)" fg:x="2601431453" fg:w="470060152"/><text x="1.0959%" y="1679.50"></text></g><g><title>cranelift_codegen::machinst::vcode::VCode&lt;I&gt;::emit (47,305,377 samples, 0.02%)</title><rect x="0.9834%" y="1653" width="0.0154%" height="15" fill="rgb(219,88,35)" fg:x="3024186228" fg:w="47305377"/><text x="1.2334%" y="1663.50"></text></g><g><title>cranelift_codegen::egraph::OptimizeCtx::insert_pure_enode (54,931,120 samples, 0.02%)</title><rect x="1.0236%" y="1637" width="0.0179%" height="15" fill="rgb(220,193,23)" fg:x="3148029768" fg:w="54931120"/><text x="1.2736%" y="1647.50"></text></g><g><title>cranelift_codegen::opts::generated_code::constructor_simplify (36,701,858 samples, 0.01%)</title><rect x="1.0296%" y="1621" width="0.0119%" height="15" fill="rgb(230,90,52)" fg:x="3166259030" fg:w="36701858"/><text x="1.2796%" y="1631.50"></text></g><g><title>cranelift_codegen::egraph::EgraphPass::run (131,762,412 samples, 0.04%)</title><rect x="1.0063%" y="1653" width="0.0428%" height="15" fill="rgb(252,106,19)" fg:x="3094650400" fg:w="131762412"/><text x="1.2563%" y="1663.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (657,259,889 samples, 0.21%)</title><rect x="0.8459%" y="1685" width="0.2137%" height="15" fill="rgb(206,74,20)" fg:x="2601431453" fg:w="657259889"/><text x="1.0959%" y="1695.50"></text></g><g><title>cranelift_codegen::context::Context::optimize (186,337,462 samples, 0.06%)</title><rect x="0.9990%" y="1669" width="0.0606%" height="15" fill="rgb(230,138,44)" fg:x="3072353880" fg:w="186337462"/><text x="1.2490%" y="1679.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (711,721,294 samples, 0.23%)</title><rect x="0.8402%" y="1717" width="0.2314%" height="15" fill="rgb(235,182,43)" fg:x="2584033435" fg:w="711721294"/><text x="1.0902%" y="1727.50"></text></g><g><title>cranelift_codegen::incremental_cache::&lt;impl cranelift_codegen::context::Context&gt;::compile_with_cache (705,177,550 samples, 0.23%)</title><rect x="0.8424%" y="1701" width="0.2293%" height="15" fill="rgb(242,16,51)" fg:x="2590577179" fg:w="705177550"/><text x="1.0924%" y="1711.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (814,689,862 samples, 0.26%)</title><rect x="0.8295%" y="1733" width="0.2649%" height="15" fill="rgb(248,9,4)" fg:x="2551031606" fg:w="814689862"/><text x="1.0795%" y="1743.50"></text></g><g><title>wasmtime_cranelift::translate::code_translator::translate_operator (67,829,428 samples, 0.02%)</title><rect x="1.0724%" y="1717" width="0.0221%" height="15" fill="rgb(210,31,22)" fg:x="3297892040" fg:w="67829428"/><text x="1.3224%" y="1727.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (828,014,123 samples, 0.27%)</title><rect x="0.8267%" y="1749" width="0.2692%" height="15" fill="rgb(239,54,39)" fg:x="2542455731" fg:w="828014123"/><text x="1.0767%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (950,305,347 samples, 0.31%)</title><rect x="0.7899%" y="1765" width="0.3090%" height="15" fill="rgb(230,99,41)" fg:x="2429268417" fg:w="950305347"/><text x="1.0399%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,016,285,053 samples, 0.33%)</title><rect x="0.7728%" y="1797" width="0.3305%" height="15" fill="rgb(253,106,12)" fg:x="2376556165" fg:w="1016285053"/><text x="1.0228%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (966,029,774 samples, 0.31%)</title><rect x="0.7891%" y="1781" width="0.3141%" height="15" fill="rgb(213,46,41)" fg:x="2426811444" fg:w="966029774"/><text x="1.0391%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,087,632,315 samples, 0.35%)</title><rect x="0.7554%" y="1829" width="0.3537%" height="15" fill="rgb(215,133,35)" fg:x="2323115516" fg:w="1087632315"/><text x="1.0054%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,039,194,935 samples, 0.34%)</title><rect x="0.7712%" y="1813" width="0.3379%" height="15" fill="rgb(213,28,5)" fg:x="2371552896" fg:w="1039194935"/><text x="1.0212%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46,330,936 samples, 0.02%)</title><rect x="1.1175%" y="1701" width="0.0151%" height="15" fill="rgb(215,77,49)" fg:x="3436573281" fg:w="46330936"/><text x="1.3675%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (59,512,426 samples, 0.02%)</title><rect x="1.1134%" y="1733" width="0.0194%" height="15" fill="rgb(248,100,22)" fg:x="3423969977" fg:w="59512426"/><text x="1.3634%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (46,909,122 samples, 0.02%)</title><rect x="1.1175%" y="1717" width="0.0153%" height="15" fill="rgb(208,67,9)" fg:x="3436573281" fg:w="46909122"/><text x="1.3675%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (72,051,774 samples, 0.02%)</title><rect x="1.1107%" y="1765" width="0.0234%" height="15" fill="rgb(219,133,21)" fg:x="3415897129" fg:w="72051774"/><text x="1.3607%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (65,020,140 samples, 0.02%)</title><rect x="1.1130%" y="1749" width="0.0211%" height="15" fill="rgb(246,46,29)" fg:x="3422928763" fg:w="65020140"/><text x="1.3630%" y="1759.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (83,801,838 samples, 0.03%)</title><rect x="1.1091%" y="1813" width="0.0272%" height="15" fill="rgb(246,185,52)" fg:x="3410747831" fg:w="83801838"/><text x="1.3591%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (83,801,838 samples, 0.03%)</title><rect x="1.1091%" y="1797" width="0.0272%" height="15" fill="rgb(252,136,11)" fg:x="3410747831" fg:w="83801838"/><text x="1.3591%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (83,801,838 samples, 0.03%)</title><rect x="1.1091%" y="1781" width="0.0272%" height="15" fill="rgb(219,138,53)" fg:x="3410747831" fg:w="83801838"/><text x="1.3591%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,197,783,275 samples, 0.39%)</title><rect x="0.7472%" y="1861" width="0.3895%" height="15" fill="rgb(211,51,23)" fg:x="2297865173" fg:w="1197783275"/><text x="0.9972%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,174,773,452 samples, 0.38%)</title><rect x="0.7547%" y="1845" width="0.3820%" height="15" fill="rgb(247,221,28)" fg:x="2320874996" fg:w="1174773452"/><text x="1.0047%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (84,900,617 samples, 0.03%)</title><rect x="1.1091%" y="1829" width="0.0276%" height="15" fill="rgb(251,222,45)" fg:x="3410747831" fg:w="84900617"/><text x="1.3591%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35,954,870 samples, 0.01%)</title><rect x="1.1449%" y="1765" width="0.0117%" height="15" fill="rgb(217,162,53)" fg:x="3520982157" fg:w="35954870"/><text x="1.3949%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49,484,842 samples, 0.02%)</title><rect x="1.1409%" y="1797" width="0.0161%" height="15" fill="rgb(229,93,14)" fg:x="3508601630" fg:w="49484842"/><text x="1.3909%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,104,315 samples, 0.01%)</title><rect x="1.1449%" y="1781" width="0.0121%" height="15" fill="rgb(209,67,49)" fg:x="3520982157" fg:w="37104315"/><text x="1.3949%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69,240,440 samples, 0.02%)</title><rect x="1.1373%" y="1829" width="0.0225%" height="15" fill="rgb(213,87,29)" fg:x="3497736241" fg:w="69240440"/><text x="1.3873%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (59,226,494 samples, 0.02%)</title><rect x="1.1406%" y="1813" width="0.0193%" height="15" fill="rgb(205,151,52)" fg:x="3507750187" fg:w="59226494"/><text x="1.3906%" y="1823.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (83,865,943 samples, 0.03%)</title><rect x="1.1370%" y="1845" width="0.0273%" height="15" fill="rgb(253,215,39)" fg:x="3496659181" fg:w="83865943"/><text x="1.3870%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (91,823,892 samples, 0.03%)</title><rect x="1.1370%" y="1861" width="0.0299%" height="15" fill="rgb(221,220,41)" fg:x="3496659181" fg:w="91823892"/><text x="1.3870%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,302,297,565 samples, 0.42%)</title><rect x="0.7445%" y="1877" width="0.4235%" height="15" fill="rgb(218,133,21)" fg:x="2289535234" fg:w="1302297565"/><text x="0.9945%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,304,987,028 samples, 0.42%)</title><rect x="0.7439%" y="1893" width="0.4243%" height="15" fill="rgb(221,193,43)" fg:x="2287804657" fg:w="1304987028"/><text x="0.9939%" y="1903.50"></text></g><g><title>cranelift_codegen::machinst::compile::compile (30,939,300 samples, 0.01%)</title><rect x="1.1793%" y="1621" width="0.0101%" height="15" fill="rgb(240,128,52)" fg:x="3626848754" fg:w="30939300"/><text x="1.4293%" y="1631.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (35,958,529 samples, 0.01%)</title><rect x="1.1789%" y="1637" width="0.0117%" height="15" fill="rgb(253,114,12)" fg:x="3625557748" fg:w="35958529"/><text x="1.4289%" y="1647.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (48,884,840 samples, 0.02%)</title><rect x="1.1789%" y="1669" width="0.0159%" height="15" fill="rgb(215,223,47)" fg:x="3625557748" fg:w="48884840"/><text x="1.4289%" y="1679.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (48,884,840 samples, 0.02%)</title><rect x="1.1789%" y="1653" width="0.0159%" height="15" fill="rgb(248,225,23)" fg:x="3625557748" fg:w="48884840"/><text x="1.4289%" y="1663.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (56,800,347 samples, 0.02%)</title><rect x="1.1776%" y="1685" width="0.0185%" height="15" fill="rgb(250,108,0)" fg:x="3621437210" fg:w="56800347"/><text x="1.4276%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69,547,000 samples, 0.02%)</title><rect x="1.1740%" y="1813" width="0.0226%" height="15" fill="rgb(228,208,7)" fg:x="3610491394" fg:w="69547000"/><text x="1.4240%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (69,547,000 samples, 0.02%)</title><rect x="1.1740%" y="1797" width="0.0226%" height="15" fill="rgb(244,45,10)" fg:x="3610491394" fg:w="69547000"/><text x="1.4240%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69,547,000 samples, 0.02%)</title><rect x="1.1740%" y="1781" width="0.0226%" height="15" fill="rgb(207,125,25)" fg:x="3610491394" fg:w="69547000"/><text x="1.4240%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (69,547,000 samples, 0.02%)</title><rect x="1.1740%" y="1765" width="0.0226%" height="15" fill="rgb(210,195,18)" fg:x="3610491394" fg:w="69547000"/><text x="1.4240%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69,547,000 samples, 0.02%)</title><rect x="1.1740%" y="1749" width="0.0226%" height="15" fill="rgb(249,80,12)" fg:x="3610491394" fg:w="69547000"/><text x="1.4240%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (69,547,000 samples, 0.02%)</title><rect x="1.1740%" y="1733" width="0.0226%" height="15" fill="rgb(221,65,9)" fg:x="3610491394" fg:w="69547000"/><text x="1.4240%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69,547,000 samples, 0.02%)</title><rect x="1.1740%" y="1717" width="0.0226%" height="15" fill="rgb(235,49,36)" fg:x="3610491394" fg:w="69547000"/><text x="1.4240%" y="1727.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (69,547,000 samples, 0.02%)</title><rect x="1.1740%" y="1701" width="0.0226%" height="15" fill="rgb(225,32,20)" fg:x="3610491394" fg:w="69547000"/><text x="1.4240%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (95,193,957 samples, 0.03%)</title><rect x="1.1727%" y="1845" width="0.0310%" height="15" fill="rgb(215,141,46)" fg:x="3606490702" fg:w="95193957"/><text x="1.4227%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (91,193,265 samples, 0.03%)</title><rect x="1.1740%" y="1829" width="0.0297%" height="15" fill="rgb(250,160,47)" fg:x="3610491394" fg:w="91193265"/><text x="1.4240%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39,451,940 samples, 0.01%)</title><rect x="1.2062%" y="1301" width="0.0128%" height="15" fill="rgb(216,222,40)" fg:x="3709387363" fg:w="39451940"/><text x="1.4562%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (39,451,940 samples, 0.01%)</title><rect x="1.2062%" y="1285" width="0.0128%" height="15" fill="rgb(234,217,39)" fg:x="3709387363" fg:w="39451940"/><text x="1.4562%" y="1295.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (39,451,940 samples, 0.01%)</title><rect x="1.2062%" y="1269" width="0.0128%" height="15" fill="rgb(207,178,40)" fg:x="3709387363" fg:w="39451940"/><text x="1.4562%" y="1279.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (39,451,940 samples, 0.01%)</title><rect x="1.2062%" y="1253" width="0.0128%" height="15" fill="rgb(221,136,13)" fg:x="3709387363" fg:w="39451940"/><text x="1.4562%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (44,293,668 samples, 0.01%)</title><rect x="1.2058%" y="1653" width="0.0144%" height="15" fill="rgb(249,199,10)" fg:x="3708244081" fg:w="44293668"/><text x="1.4558%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (44,293,668 samples, 0.01%)</title><rect x="1.2058%" y="1637" width="0.0144%" height="15" fill="rgb(249,222,13)" fg:x="3708244081" fg:w="44293668"/><text x="1.4558%" y="1647.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1621" width="0.0140%" height="15" fill="rgb(244,185,38)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1631.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1605" width="0.0140%" height="15" fill="rgb(236,202,9)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1589" width="0.0140%" height="15" fill="rgb(250,229,37)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1573" width="0.0140%" height="15" fill="rgb(206,174,23)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1583.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1557" width="0.0140%" height="15" fill="rgb(211,33,43)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1567.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1541" width="0.0140%" height="15" fill="rgb(245,58,50)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1525" width="0.0140%" height="15" fill="rgb(244,68,36)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1509" width="0.0140%" height="15" fill="rgb(232,229,15)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1493" width="0.0140%" height="15" fill="rgb(254,30,23)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1477" width="0.0140%" height="15" fill="rgb(235,160,14)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1461" width="0.0140%" height="15" fill="rgb(212,155,44)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1471.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1445" width="0.0140%" height="15" fill="rgb(226,2,50)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1429" width="0.0140%" height="15" fill="rgb(234,177,6)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1413" width="0.0140%" height="15" fill="rgb(217,24,9)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1397" width="0.0140%" height="15" fill="rgb(220,13,46)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1407.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1381" width="0.0140%" height="15" fill="rgb(239,221,27)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1365" width="0.0140%" height="15" fill="rgb(222,198,25)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1349" width="0.0140%" height="15" fill="rgb(211,99,13)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1359.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1333" width="0.0140%" height="15" fill="rgb(232,111,31)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1343.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (43,150,386 samples, 0.01%)</title><rect x="1.2062%" y="1317" width="0.0140%" height="15" fill="rgb(245,82,37)" fg:x="3709387363" fg:w="43150386"/><text x="1.4562%" y="1327.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (164,977,864 samples, 0.05%)</title><rect x="1.1683%" y="1877" width="0.0536%" height="15" fill="rgb(227,149,46)" fg:x="3592791685" fg:w="164977864"/><text x="1.4183%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (151,278,847 samples, 0.05%)</title><rect x="1.1727%" y="1861" width="0.0492%" height="15" fill="rgb(218,36,50)" fg:x="3606490702" fg:w="151278847"/><text x="1.4227%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (56,084,890 samples, 0.02%)</title><rect x="1.2037%" y="1845" width="0.0182%" height="15" fill="rgb(226,80,48)" fg:x="3701684659" fg:w="56084890"/><text x="1.4537%" y="1855.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (56,084,890 samples, 0.02%)</title><rect x="1.2037%" y="1829" width="0.0182%" height="15" fill="rgb(238,224,15)" fg:x="3701684659" fg:w="56084890"/><text x="1.4537%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (56,084,890 samples, 0.02%)</title><rect x="1.2037%" y="1813" width="0.0182%" height="15" fill="rgb(241,136,10)" fg:x="3701684659" fg:w="56084890"/><text x="1.4537%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (56,084,890 samples, 0.02%)</title><rect x="1.2037%" y="1797" width="0.0182%" height="15" fill="rgb(208,32,45)" fg:x="3701684659" fg:w="56084890"/><text x="1.4537%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (56,084,890 samples, 0.02%)</title><rect x="1.2037%" y="1781" width="0.0182%" height="15" fill="rgb(207,135,9)" fg:x="3701684659" fg:w="56084890"/><text x="1.4537%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (55,604,656 samples, 0.02%)</title><rect x="1.2038%" y="1765" width="0.0181%" height="15" fill="rgb(206,86,44)" fg:x="3702164893" fg:w="55604656"/><text x="1.4538%" y="1775.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (55,604,656 samples, 0.02%)</title><rect x="1.2038%" y="1749" width="0.0181%" height="15" fill="rgb(245,177,15)" fg:x="3702164893" fg:w="55604656"/><text x="1.4538%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55,604,656 samples, 0.02%)</title><rect x="1.2038%" y="1733" width="0.0181%" height="15" fill="rgb(206,64,50)" fg:x="3702164893" fg:w="55604656"/><text x="1.4538%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55,604,656 samples, 0.02%)</title><rect x="1.2038%" y="1717" width="0.0181%" height="15" fill="rgb(234,36,40)" fg:x="3702164893" fg:w="55604656"/><text x="1.4538%" y="1727.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (52,829,636 samples, 0.02%)</title><rect x="1.2047%" y="1701" width="0.0172%" height="15" fill="rgb(213,64,8)" fg:x="3704939913" fg:w="52829636"/><text x="1.4547%" y="1711.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (52,829,636 samples, 0.02%)</title><rect x="1.2047%" y="1685" width="0.0172%" height="15" fill="rgb(210,75,36)" fg:x="3704939913" fg:w="52829636"/><text x="1.4547%" y="1695.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (49,525,468 samples, 0.02%)</title><rect x="1.2058%" y="1669" width="0.0161%" height="15" fill="rgb(229,88,21)" fg:x="3708244081" fg:w="49525468"/><text x="1.4558%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,480,826,073 samples, 0.48%)</title><rect x="0.7415%" y="1909" width="0.4815%" height="15" fill="rgb(252,204,47)" fg:x="2280247910" fg:w="1480826073"/><text x="0.9915%" y="1919.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (168,282,298 samples, 0.05%)</title><rect x="1.1683%" y="1893" width="0.0547%" height="15" fill="rgb(208,77,27)" fg:x="3592791685" fg:w="168282298"/><text x="1.4183%" y="1903.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (1,651,624,315 samples, 0.54%)</title><rect x="0.6873%" y="1925" width="0.5371%" height="15" fill="rgb(221,76,26)" fg:x="2113648590" fg:w="1651624315"/><text x="0.9373%" y="1935.50"></text></g><g><title>__GI___clone3 (1,731,479,789 samples, 0.56%)</title><rect x="0.6735%" y="2053" width="0.5630%" height="15" fill="rgb(225,139,18)" fg:x="2071261508" fg:w="1731479789"/><text x="0.9235%" y="2063.50"></text></g><g><title>start_thread (1,731,479,789 samples, 0.56%)</title><rect x="0.6735%" y="2037" width="0.5630%" height="15" fill="rgb(230,137,11)" fg:x="2071261508" fg:w="1731479789"/><text x="0.9235%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (1,731,479,789 samples, 0.56%)</title><rect x="0.6735%" y="2021" width="0.5630%" height="15" fill="rgb(212,28,1)" fg:x="2071261508" fg:w="1731479789"/><text x="0.9235%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (1,731,479,789 samples, 0.56%)</title><rect x="0.6735%" y="2005" width="0.5630%" height="15" fill="rgb(248,164,17)" fg:x="2071261508" fg:w="1731479789"/><text x="0.9235%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (1,731,479,789 samples, 0.56%)</title><rect x="0.6735%" y="1989" width="0.5630%" height="15" fill="rgb(222,171,42)" fg:x="2071261508" fg:w="1731479789"/><text x="0.9235%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,731,479,789 samples, 0.56%)</title><rect x="0.6735%" y="1973" width="0.5630%" height="15" fill="rgb(243,84,45)" fg:x="2071261508" fg:w="1731479789"/><text x="0.9235%" y="1983.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (1,731,479,789 samples, 0.56%)</title><rect x="0.6735%" y="1957" width="0.5630%" height="15" fill="rgb(252,49,23)" fg:x="2071261508" fg:w="1731479789"/><text x="0.9235%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (1,691,237,259 samples, 0.55%)</title><rect x="0.6866%" y="1941" width="0.5499%" height="15" fill="rgb(215,19,7)" fg:x="2111504038" fg:w="1691237259"/><text x="0.9366%" y="1951.50"></text></g><g><title>RayonWorker0 (1,763,583,539 samples, 0.57%)</title><rect x="0.6722%" y="2069" width="0.5735%" height="15" fill="rgb(238,81,41)" fg:x="2067395369" fg:w="1763583539"/><text x="0.9222%" y="2079.50"></text></g><g><title>__sched_yield (40,117,576 samples, 0.01%)</title><rect x="1.2486%" y="1941" width="0.0130%" height="15" fill="rgb(210,199,37)" fg:x="3840013722" fg:w="40117576"/><text x="1.4986%" y="1951.50"></text></g><g><title>[unknown] (39,588,020 samples, 0.01%)</title><rect x="1.2488%" y="1925" width="0.0129%" height="15" fill="rgb(244,192,49)" fg:x="3840543278" fg:w="39588020"/><text x="1.4988%" y="1935.50"></text></g><g><title>[unknown] (35,720,243 samples, 0.01%)</title><rect x="1.2501%" y="1909" width="0.0116%" height="15" fill="rgb(226,211,11)" fg:x="3844411055" fg:w="35720243"/><text x="1.5001%" y="1919.50"></text></g><g><title>[unknown] (35,720,243 samples, 0.01%)</title><rect x="1.2501%" y="1893" width="0.0116%" height="15" fill="rgb(236,162,54)" fg:x="3844411055" fg:w="35720243"/><text x="1.5001%" y="1903.50"></text></g><g><title>[unknown] (34,492,817 samples, 0.01%)</title><rect x="1.2505%" y="1877" width="0.0112%" height="15" fill="rgb(220,229,9)" fg:x="3845638481" fg:w="34492817"/><text x="1.5005%" y="1887.50"></text></g><g><title>[unknown] (34,492,817 samples, 0.01%)</title><rect x="1.2505%" y="1861" width="0.0112%" height="15" fill="rgb(250,87,22)" fg:x="3845638481" fg:w="34492817"/><text x="1.5005%" y="1871.50"></text></g><g><title>cranelift_codegen::machinst::lower::Lower&lt;I&gt;::lower (32,570,425 samples, 0.01%)</title><rect x="1.3128%" y="1701" width="0.0106%" height="15" fill="rgb(239,43,17)" fg:x="4037389249" fg:w="32570425"/><text x="1.5628%" y="1711.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::init (33,010,005 samples, 0.01%)</title><rect x="1.3333%" y="1685" width="0.0107%" height="15" fill="rgb(231,177,25)" fg:x="4100273855" fg:w="33010005"/><text x="1.5833%" y="1695.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::run (49,225,836 samples, 0.02%)</title><rect x="1.3440%" y="1685" width="0.0160%" height="15" fill="rgb(219,179,1)" fg:x="4133283860" fg:w="49225836"/><text x="1.5940%" y="1695.50"></text></g><g><title>cranelift_codegen::machinst::compile::compile (159,539,631 samples, 0.05%)</title><rect x="1.3085%" y="1717" width="0.0519%" height="15" fill="rgb(238,219,53)" fg:x="4024045095" fg:w="159539631"/><text x="1.5585%" y="1727.50"></text></g><g><title>regalloc2::run (97,687,572 samples, 0.03%)</title><rect x="1.3286%" y="1701" width="0.0318%" height="15" fill="rgb(232,167,36)" fg:x="4085897154" fg:w="97687572"/><text x="1.5786%" y="1711.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (177,346,250 samples, 0.06%)</title><rect x="1.3085%" y="1733" width="0.0577%" height="15" fill="rgb(244,19,51)" fg:x="4024045095" fg:w="177346250"/><text x="1.5585%" y="1743.50"></text></g><g><title>cranelift_codegen::egraph::OptimizeCtx::insert_pure_enode (54,510,384 samples, 0.02%)</title><rect x="1.3875%" y="1701" width="0.0177%" height="15" fill="rgb(224,6,22)" fg:x="4267078532" fg:w="54510384"/><text x="1.6375%" y="1711.50"></text></g><g><title>cranelift_codegen::opts::generated_code::constructor_simplify (31,233,909 samples, 0.01%)</title><rect x="1.3951%" y="1685" width="0.0102%" height="15" fill="rgb(224,145,5)" fg:x="4290355007" fg:w="31233909"/><text x="1.6451%" y="1695.50"></text></g><g><title>cranelift_codegen::egraph::EgraphPass::run (149,617,027 samples, 0.05%)</title><rect x="1.3715%" y="1717" width="0.0487%" height="15" fill="rgb(234,130,49)" fg:x="4217873626" fg:w="149617027"/><text x="1.6215%" y="1727.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (363,394,829 samples, 0.12%)</title><rect x="1.3085%" y="1765" width="0.1182%" height="15" fill="rgb(254,6,2)" fg:x="4024045095" fg:w="363394829"/><text x="1.5585%" y="1775.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (363,394,829 samples, 0.12%)</title><rect x="1.3085%" y="1749" width="0.1182%" height="15" fill="rgb(208,96,46)" fg:x="4024045095" fg:w="363394829"/><text x="1.5585%" y="1759.50"></text></g><g><title>cranelift_codegen::context::Context::optimize (186,048,579 samples, 0.06%)</title><rect x="1.3662%" y="1733" width="0.0605%" height="15" fill="rgb(239,3,39)" fg:x="4201391345" fg:w="186048579"/><text x="1.6162%" y="1743.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (407,566,749 samples, 0.13%)</title><rect x="1.3069%" y="1781" width="0.1325%" height="15" fill="rgb(233,210,1)" fg:x="4019055141" fg:w="407566749"/><text x="1.5569%" y="1791.50"></text></g><g><title>wasmtime_cranelift::translate::code_translator::translate_operator (39,181,966 samples, 0.01%)</title><rect x="1.4267%" y="1765" width="0.0127%" height="15" fill="rgb(244,137,37)" fg:x="4387439924" fg:w="39181966"/><text x="1.6767%" y="1775.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (408,775,957 samples, 0.13%)</title><rect x="1.3069%" y="1797" width="0.1329%" height="15" fill="rgb(240,136,2)" fg:x="4019055141" fg:w="408775957"/><text x="1.5569%" y="1807.50"></text></g><g><title>cranelift_codegen::machinst::lower::Lower&lt;I&gt;::lower (57,080,497 samples, 0.02%)</title><rect x="1.5085%" y="1653" width="0.0186%" height="15" fill="rgb(239,18,37)" fg:x="4639102003" fg:w="57080497"/><text x="1.7585%" y="1663.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::init (101,944,638 samples, 0.03%)</title><rect x="1.5482%" y="1637" width="0.0331%" height="15" fill="rgb(218,185,22)" fg:x="4761141052" fg:w="101944638"/><text x="1.7982%" y="1647.50"></text></g><g><title>regalloc2::ion::process::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::try_to_allocate_bundle_to_reg (45,986,159 samples, 0.01%)</title><rect x="1.6103%" y="1621" width="0.0150%" height="15" fill="rgb(225,218,4)" fg:x="4952300208" fg:w="45986159"/><text x="1.8603%" y="1631.50"></text></g><g><title>cranelift_codegen::machinst::compile::compile (384,798,490 samples, 0.13%)</title><rect x="1.5042%" y="1669" width="0.1251%" height="15" fill="rgb(230,182,32)" fg:x="4626001297" fg:w="384798490"/><text x="1.7542%" y="1679.50"></text></g><g><title>regalloc2::run (283,156,884 samples, 0.09%)</title><rect x="1.5373%" y="1653" width="0.0921%" height="15" fill="rgb(242,56,43)" fg:x="4727642903" fg:w="283156884"/><text x="1.7873%" y="1663.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::run (147,714,097 samples, 0.05%)</title><rect x="1.5813%" y="1637" width="0.0480%" height="15" fill="rgb(233,99,24)" fg:x="4863085690" fg:w="147714097"/><text x="1.8313%" y="1647.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (434,369,092 samples, 0.14%)</title><rect x="1.5027%" y="1685" width="0.1412%" height="15" fill="rgb(234,209,42)" fg:x="4621253045" fg:w="434369092"/><text x="1.7527%" y="1695.50"></text></g><g><title>cranelift_codegen::machinst::vcode::VCode&lt;I&gt;::emit (43,752,393 samples, 0.01%)</title><rect x="1.6297%" y="1669" width="0.0142%" height="15" fill="rgb(227,7,12)" fg:x="5011869744" fg:w="43752393"/><text x="1.8797%" y="1679.50"></text></g><g><title>cranelift_codegen::egraph::OptimizeCtx::insert_pure_enode (50,909,443 samples, 0.02%)</title><rect x="1.6674%" y="1653" width="0.0166%" height="15" fill="rgb(245,203,43)" fg:x="5127970905" fg:w="50909443"/><text x="1.9174%" y="1663.50"></text></g><g><title>cranelift_codegen::egraph::EgraphPass::run (131,018,078 samples, 0.04%)</title><rect x="1.6524%" y="1669" width="0.0426%" height="15" fill="rgb(238,205,33)" fg:x="5081602722" fg:w="131018078"/><text x="1.9024%" y="1679.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (623,310,515 samples, 0.20%)</title><rect x="1.5027%" y="1701" width="0.2027%" height="15" fill="rgb(231,56,7)" fg:x="4621253045" fg:w="623310515"/><text x="1.7527%" y="1711.50"></text></g><g><title>cranelift_codegen::context::Context::optimize (188,941,423 samples, 0.06%)</title><rect x="1.6439%" y="1685" width="0.0614%" height="15" fill="rgb(244,186,29)" fg:x="5055622137" fg:w="188941423"/><text x="1.8939%" y="1695.50"></text></g><g><title>cranelift_codegen::incremental_cache::compute_cache_key (34,835,854 samples, 0.01%)</title><rect x="1.7054%" y="1701" width="0.0113%" height="15" fill="rgb(234,111,31)" fg:x="5244563560" fg:w="34835854"/><text x="1.9554%" y="1711.50"></text></g><g><title>cranelift_codegen::incremental_cache::&lt;impl cranelift_codegen::context::Context&gt;::compile_with_cache (671,101,666 samples, 0.22%)</title><rect x="1.5000%" y="1717" width="0.2182%" height="15" fill="rgb(241,149,10)" fg:x="4612903925" fg:w="671101666"/><text x="1.7500%" y="1727.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (695,659,989 samples, 0.23%)</title><rect x="1.4927%" y="1733" width="0.2262%" height="15" fill="rgb(249,206,44)" fg:x="4590695583" fg:w="695659989"/><text x="1.7427%" y="1743.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (788,659,688 samples, 0.26%)</title><rect x="1.4834%" y="1749" width="0.2564%" height="15" fill="rgb(251,153,30)" fg:x="4561909368" fg:w="788659688"/><text x="1.7334%" y="1759.50"></text></g><g><title>wasmtime_cranelift::translate::code_translator::translate_operator (60,699,341 samples, 0.02%)</title><rect x="1.7201%" y="1733" width="0.0197%" height="15" fill="rgb(239,152,38)" fg:x="5289869715" fg:w="60699341"/><text x="1.9701%" y="1743.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (823,410,766 samples, 0.27%)</title><rect x="1.4804%" y="1765" width="0.2677%" height="15" fill="rgb(249,139,47)" fg:x="4552733140" fg:w="823410766"/><text x="1.7304%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (949,674,065 samples, 0.31%)</title><rect x="1.4427%" y="1781" width="0.3088%" height="15" fill="rgb(244,64,35)" fg:x="4436703571" fg:w="949674065"/><text x="1.6927%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (40,438,907 samples, 0.01%)</title><rect x="1.7518%" y="1717" width="0.0131%" height="15" fill="rgb(216,46,15)" fg:x="5387367793" fg:w="40438907"/><text x="2.0018%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (39,505,093 samples, 0.01%)</title><rect x="1.7521%" y="1701" width="0.0128%" height="15" fill="rgb(250,74,19)" fg:x="5388301607" fg:w="39505093"/><text x="2.0021%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39,505,093 samples, 0.01%)</title><rect x="1.7521%" y="1685" width="0.0128%" height="15" fill="rgb(249,42,33)" fg:x="5388301607" fg:w="39505093"/><text x="2.0021%" y="1695.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (38,466,546 samples, 0.01%)</title><rect x="1.7524%" y="1669" width="0.0125%" height="15" fill="rgb(242,149,17)" fg:x="5389340154" fg:w="38466546"/><text x="2.0024%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38,466,546 samples, 0.01%)</title><rect x="1.7524%" y="1653" width="0.0125%" height="15" fill="rgb(244,29,21)" fg:x="5389340154" fg:w="38466546"/><text x="2.0024%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (38,466,546 samples, 0.01%)</title><rect x="1.7524%" y="1637" width="0.0125%" height="15" fill="rgb(220,130,37)" fg:x="5389340154" fg:w="38466546"/><text x="2.0024%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38,466,546 samples, 0.01%)</title><rect x="1.7524%" y="1621" width="0.0125%" height="15" fill="rgb(211,67,2)" fg:x="5389340154" fg:w="38466546"/><text x="2.0024%" y="1631.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (38,466,546 samples, 0.01%)</title><rect x="1.7524%" y="1605" width="0.0125%" height="15" fill="rgb(235,68,52)" fg:x="5389340154" fg:w="38466546"/><text x="2.0024%" y="1615.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (38,466,546 samples, 0.01%)</title><rect x="1.7524%" y="1589" width="0.0125%" height="15" fill="rgb(246,142,3)" fg:x="5389340154" fg:w="38466546"/><text x="2.0024%" y="1599.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (36,306,463 samples, 0.01%)</title><rect x="1.7531%" y="1573" width="0.0118%" height="15" fill="rgb(241,25,7)" fg:x="5391500237" fg:w="36306463"/><text x="2.0031%" y="1583.50"></text></g><g><title>cranelift_codegen::incremental_cache::&lt;impl cranelift_codegen::context::Context&gt;::compile_with_cache (36,306,463 samples, 0.01%)</title><rect x="1.7531%" y="1557" width="0.0118%" height="15" fill="rgb(242,119,39)" fg:x="5391500237" fg:w="36306463"/><text x="2.0031%" y="1567.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (35,291,613 samples, 0.01%)</title><rect x="1.7535%" y="1541" width="0.0115%" height="15" fill="rgb(241,98,45)" fg:x="5392515087" fg:w="35291613"/><text x="2.0035%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,453,427,630 samples, 0.47%)</title><rect x="1.2927%" y="1813" width="0.4726%" height="15" fill="rgb(254,28,30)" fg:x="3975395081" fg:w="1453427630"/><text x="1.5427%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (997,091,087 samples, 0.32%)</title><rect x="1.4411%" y="1797" width="0.3242%" height="15" fill="rgb(241,142,54)" fg:x="4431731624" fg:w="997091087"/><text x="1.6911%" y="1807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (42,445,075 samples, 0.01%)</title><rect x="1.7515%" y="1781" width="0.0138%" height="15" fill="rgb(222,85,15)" fg:x="5386377636" fg:w="42445075"/><text x="2.0015%" y="1791.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (42,445,075 samples, 0.01%)</title><rect x="1.7515%" y="1765" width="0.0138%" height="15" fill="rgb(210,85,47)" fg:x="5386377636" fg:w="42445075"/><text x="2.0015%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42,445,075 samples, 0.01%)</title><rect x="1.7515%" y="1749" width="0.0138%" height="15" fill="rgb(224,206,25)" fg:x="5386377636" fg:w="42445075"/><text x="2.0015%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (41,454,918 samples, 0.01%)</title><rect x="1.7518%" y="1733" width="0.0135%" height="15" fill="rgb(243,201,19)" fg:x="5387367793" fg:w="41454918"/><text x="2.0018%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,513,466,411 samples, 0.49%)</title><rect x="1.2756%" y="1845" width="0.4921%" height="15" fill="rgb(236,59,4)" fg:x="3922810578" fg:w="1513466411"/><text x="1.5256%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,463,030,839 samples, 0.48%)</title><rect x="1.2920%" y="1829" width="0.4757%" height="15" fill="rgb(254,179,45)" fg:x="3973246150" fg:w="1463030839"/><text x="1.5420%" y="1839.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (37,180,223 samples, 0.01%)</title><rect x="1.7677%" y="1829" width="0.0121%" height="15" fill="rgb(226,14,10)" fg:x="5436276989" fg:w="37180223"/><text x="2.0177%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,180,223 samples, 0.01%)</title><rect x="1.7677%" y="1813" width="0.0121%" height="15" fill="rgb(244,27,41)" fg:x="5436276989" fg:w="37180223"/><text x="2.0177%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,451,911 samples, 0.01%)</title><rect x="1.7686%" y="1797" width="0.0112%" height="15" fill="rgb(235,35,32)" fg:x="5439005301" fg:w="34451911"/><text x="2.0186%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,577,334,892 samples, 0.51%)</title><rect x="1.2672%" y="1877" width="0.5129%" height="15" fill="rgb(218,68,31)" fg:x="3896996456" fg:w="1577334892"/><text x="1.5172%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,552,543,760 samples, 0.50%)</title><rect x="1.2752%" y="1861" width="0.5048%" height="15" fill="rgb(207,120,37)" fg:x="3921787588" fg:w="1552543760"/><text x="1.5252%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (38,054,359 samples, 0.01%)</title><rect x="1.7677%" y="1845" width="0.0124%" height="15" fill="rgb(227,98,0)" fg:x="5436276989" fg:w="38054359"/><text x="2.0177%" y="1855.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (50,324,563 samples, 0.02%)</title><rect x="1.7801%" y="1861" width="0.0164%" height="15" fill="rgb(207,7,3)" fg:x="5474331348" fg:w="50324563"/><text x="2.0301%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49,390,749 samples, 0.02%)</title><rect x="1.7804%" y="1845" width="0.0161%" height="15" fill="rgb(206,98,19)" fg:x="5475265162" fg:w="49390749"/><text x="2.0304%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,493,071 samples, 0.01%)</title><rect x="1.7846%" y="1829" width="0.0119%" height="15" fill="rgb(217,5,26)" fg:x="5488162840" fg:w="36493071"/><text x="2.0346%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,643,986,027 samples, 0.53%)</title><rect x="1.2637%" y="1893" width="0.5346%" height="15" fill="rgb(235,190,38)" fg:x="3886381099" fg:w="1643986027"/><text x="1.5137%" y="1903.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (56,035,778 samples, 0.02%)</title><rect x="1.7801%" y="1877" width="0.0182%" height="15" fill="rgb(247,86,24)" fg:x="5474331348" fg:w="56035778"/><text x="2.0301%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,651,180,314 samples, 0.54%)</title><rect x="1.2618%" y="1909" width="0.5369%" height="15" fill="rgb(205,101,16)" fg:x="3880523857" fg:w="1651180314"/><text x="1.5118%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1509" width="0.0121%" height="15" fill="rgb(246,168,33)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1519.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1493" width="0.0121%" height="15" fill="rgb(231,114,1)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1503.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1477" width="0.0121%" height="15" fill="rgb(207,184,53)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1487.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1461" width="0.0121%" height="15" fill="rgb(224,95,51)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1445" width="0.0121%" height="15" fill="rgb(212,188,45)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1429" width="0.0121%" height="15" fill="rgb(223,154,38)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1413" width="0.0121%" height="15" fill="rgb(251,22,52)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1397" width="0.0121%" height="15" fill="rgb(229,209,22)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1381" width="0.0121%" height="15" fill="rgb(234,138,34)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1365" width="0.0121%" height="15" fill="rgb(212,95,11)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1349" width="0.0121%" height="15" fill="rgb(240,179,47)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1359.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1333" width="0.0121%" height="15" fill="rgb(240,163,11)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1343.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1317" width="0.0121%" height="15" fill="rgb(236,37,12)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1301" width="0.0121%" height="15" fill="rgb(232,164,16)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1285" width="0.0121%" height="15" fill="rgb(244,205,15)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1295.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1269" width="0.0121%" height="15" fill="rgb(223,117,47)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1279.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1253" width="0.0121%" height="15" fill="rgb(244,107,35)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1237" width="0.0121%" height="15" fill="rgb(205,140,8)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1221" width="0.0121%" height="15" fill="rgb(228,84,46)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1231.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1205" width="0.0121%" height="15" fill="rgb(254,188,9)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1215.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1189" width="0.0121%" height="15" fill="rgb(206,112,54)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1173" width="0.0121%" height="15" fill="rgb(216,84,49)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1157" width="0.0121%" height="15" fill="rgb(214,194,35)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1141" width="0.0121%" height="15" fill="rgb(249,28,3)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1125" width="0.0121%" height="15" fill="rgb(222,56,52)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1109" width="0.0121%" height="15" fill="rgb(245,217,50)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1093" width="0.0121%" height="15" fill="rgb(213,201,24)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,353,924 samples, 0.01%)</title><rect x="1.8005%" y="1077" width="0.0121%" height="15" fill="rgb(248,116,28)" fg:x="5537112888" fg:w="37353924"/><text x="2.0505%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="1061" width="0.0117%" height="15" fill="rgb(219,72,43)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="1071.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="1045" width="0.0117%" height="15" fill="rgb(209,138,14)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="1055.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="1029" width="0.0117%" height="15" fill="rgb(222,18,33)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="1013" width="0.0117%" height="15" fill="rgb(213,199,7)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="997" width="0.0117%" height="15" fill="rgb(250,110,10)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="981" width="0.0117%" height="15" fill="rgb(248,123,6)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="965" width="0.0117%" height="15" fill="rgb(206,91,31)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="949" width="0.0117%" height="15" fill="rgb(211,154,13)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="959.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="933" width="0.0117%" height="15" fill="rgb(225,148,7)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="917" width="0.0117%" height="15" fill="rgb(220,160,43)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="901" width="0.0117%" height="15" fill="rgb(213,52,39)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="885" width="0.0117%" height="15" fill="rgb(243,137,7)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="895.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="869" width="0.0117%" height="15" fill="rgb(230,79,13)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="853" width="0.0117%" height="15" fill="rgb(247,105,23)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="837" width="0.0117%" height="15" fill="rgb(223,179,41)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="821" width="0.0117%" height="15" fill="rgb(218,9,34)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="805" width="0.0117%" height="15" fill="rgb(222,106,8)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="789" width="0.0117%" height="15" fill="rgb(211,220,0)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="773" width="0.0117%" height="15" fill="rgb(229,52,16)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="757" width="0.0117%" height="15" fill="rgb(212,155,18)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="741" width="0.0117%" height="15" fill="rgb(242,21,14)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (36,092,170 samples, 0.01%)</title><rect x="1.8009%" y="725" width="0.0117%" height="15" fill="rgb(222,19,48)" fg:x="5538374642" fg:w="36092170"/><text x="2.0509%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41,990,812 samples, 0.01%)</title><rect x="1.8130%" y="1397" width="0.0137%" height="15" fill="rgb(232,45,27)" fg:x="5575706694" fg:w="41990812"/><text x="2.0630%" y="1407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (41,990,812 samples, 0.01%)</title><rect x="1.8130%" y="1381" width="0.0137%" height="15" fill="rgb(249,103,42)" fg:x="5575706694" fg:w="41990812"/><text x="2.0630%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,620,487 samples, 0.01%)</title><rect x="1.8271%" y="1349" width="0.0113%" height="15" fill="rgb(246,81,33)" fg:x="5618926085" fg:w="34620487"/><text x="2.0771%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32,095,315 samples, 0.01%)</title><rect x="1.8279%" y="1333" width="0.0104%" height="15" fill="rgb(252,33,42)" fg:x="5621451257" fg:w="32095315"/><text x="2.0779%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32,095,315 samples, 0.01%)</title><rect x="1.8279%" y="1317" width="0.0104%" height="15" fill="rgb(209,212,41)" fg:x="5621451257" fg:w="32095315"/><text x="2.0779%" y="1327.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (32,095,315 samples, 0.01%)</title><rect x="1.8279%" y="1301" width="0.0104%" height="15" fill="rgb(207,154,6)" fg:x="5621451257" fg:w="32095315"/><text x="2.0779%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30,831,436 samples, 0.01%)</title><rect x="1.8283%" y="1285" width="0.0100%" height="15" fill="rgb(223,64,47)" fg:x="5622715136" fg:w="30831436"/><text x="2.0783%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30,831,436 samples, 0.01%)</title><rect x="1.8283%" y="1269" width="0.0100%" height="15" fill="rgb(211,161,38)" fg:x="5622715136" fg:w="30831436"/><text x="2.0783%" y="1279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30,831,436 samples, 0.01%)</title><rect x="1.8283%" y="1253" width="0.0100%" height="15" fill="rgb(219,138,40)" fg:x="5622715136" fg:w="30831436"/><text x="2.0783%" y="1263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (30,831,436 samples, 0.01%)</title><rect x="1.8283%" y="1237" width="0.0100%" height="15" fill="rgb(241,228,46)" fg:x="5622715136" fg:w="30831436"/><text x="2.0783%" y="1247.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (30,831,436 samples, 0.01%)</title><rect x="1.8283%" y="1221" width="0.0100%" height="15" fill="rgb(223,209,38)" fg:x="5622715136" fg:w="30831436"/><text x="2.0783%" y="1231.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (1,797,849,806 samples, 0.58%)</title><rect x="1.2617%" y="1925" width="0.5846%" height="15" fill="rgb(236,164,45)" fg:x="3880131298" fg:w="1797849806"/><text x="1.5117%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (146,276,933 samples, 0.05%)</title><rect x="1.7987%" y="1909" width="0.0476%" height="15" fill="rgb(231,15,5)" fg:x="5531704171" fg:w="146276933"/><text x="2.0487%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (146,276,933 samples, 0.05%)</title><rect x="1.7987%" y="1893" width="0.0476%" height="15" fill="rgb(252,35,15)" fg:x="5531704171" fg:w="146276933"/><text x="2.0487%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (146,276,933 samples, 0.05%)</title><rect x="1.7987%" y="1877" width="0.0476%" height="15" fill="rgb(248,181,18)" fg:x="5531704171" fg:w="146276933"/><text x="2.0487%" y="1887.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (143,263,268 samples, 0.05%)</title><rect x="1.7997%" y="1861" width="0.0466%" height="15" fill="rgb(233,39,42)" fg:x="5534717836" fg:w="143263268"/><text x="2.0497%" y="1871.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (143,263,268 samples, 0.05%)</title><rect x="1.7997%" y="1845" width="0.0466%" height="15" fill="rgb(238,110,33)" fg:x="5534717836" fg:w="143263268"/><text x="2.0497%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (143,263,268 samples, 0.05%)</title><rect x="1.7997%" y="1829" width="0.0466%" height="15" fill="rgb(233,195,10)" fg:x="5534717836" fg:w="143263268"/><text x="2.0497%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (143,263,268 samples, 0.05%)</title><rect x="1.7997%" y="1813" width="0.0466%" height="15" fill="rgb(254,105,3)" fg:x="5534717836" fg:w="143263268"/><text x="2.0497%" y="1823.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (143,263,268 samples, 0.05%)</title><rect x="1.7997%" y="1797" width="0.0466%" height="15" fill="rgb(221,225,9)" fg:x="5534717836" fg:w="143263268"/><text x="2.0497%" y="1807.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (143,263,268 samples, 0.05%)</title><rect x="1.7997%" y="1781" width="0.0466%" height="15" fill="rgb(224,227,45)" fg:x="5534717836" fg:w="143263268"/><text x="2.0497%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (143,263,268 samples, 0.05%)</title><rect x="1.7997%" y="1765" width="0.0466%" height="15" fill="rgb(229,198,43)" fg:x="5534717836" fg:w="143263268"/><text x="2.0497%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (143,263,268 samples, 0.05%)</title><rect x="1.7997%" y="1749" width="0.0466%" height="15" fill="rgb(206,209,35)" fg:x="5534717836" fg:w="143263268"/><text x="2.0497%" y="1759.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1733" width="0.0462%" height="15" fill="rgb(245,195,53)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1743.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1717" width="0.0462%" height="15" fill="rgb(240,92,26)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1701" width="0.0462%" height="15" fill="rgb(207,40,23)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1685" width="0.0462%" height="15" fill="rgb(223,111,35)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1669" width="0.0462%" height="15" fill="rgb(229,147,28)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1653" width="0.0462%" height="15" fill="rgb(211,29,28)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1637" width="0.0462%" height="15" fill="rgb(228,72,33)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1621" width="0.0462%" height="15" fill="rgb(205,214,31)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1605" width="0.0462%" height="15" fill="rgb(224,111,15)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1615.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1589" width="0.0462%" height="15" fill="rgb(253,21,26)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1573" width="0.0462%" height="15" fill="rgb(245,139,43)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (142,129,725 samples, 0.05%)</title><rect x="1.8001%" y="1557" width="0.0462%" height="15" fill="rgb(252,170,7)" fg:x="5535851379" fg:w="142129725"/><text x="2.0501%" y="1567.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (140,868,216 samples, 0.05%)</title><rect x="1.8005%" y="1541" width="0.0458%" height="15" fill="rgb(231,118,14)" fg:x="5537112888" fg:w="140868216"/><text x="2.0505%" y="1551.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (140,868,216 samples, 0.05%)</title><rect x="1.8005%" y="1525" width="0.0458%" height="15" fill="rgb(238,83,0)" fg:x="5537112888" fg:w="140868216"/><text x="2.0505%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (103,514,292 samples, 0.03%)</title><rect x="1.8126%" y="1509" width="0.0337%" height="15" fill="rgb(221,39,39)" fg:x="5574466812" fg:w="103514292"/><text x="2.0626%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (102,274,410 samples, 0.03%)</title><rect x="1.8130%" y="1493" width="0.0333%" height="15" fill="rgb(222,119,46)" fg:x="5575706694" fg:w="102274410"/><text x="2.0630%" y="1503.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (102,274,410 samples, 0.03%)</title><rect x="1.8130%" y="1477" width="0.0333%" height="15" fill="rgb(222,165,49)" fg:x="5575706694" fg:w="102274410"/><text x="2.0630%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (102,274,410 samples, 0.03%)</title><rect x="1.8130%" y="1461" width="0.0333%" height="15" fill="rgb(219,113,52)" fg:x="5575706694" fg:w="102274410"/><text x="2.0630%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (102,274,410 samples, 0.03%)</title><rect x="1.8130%" y="1445" width="0.0333%" height="15" fill="rgb(214,7,15)" fg:x="5575706694" fg:w="102274410"/><text x="2.0630%" y="1455.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (102,274,410 samples, 0.03%)</title><rect x="1.8130%" y="1429" width="0.0333%" height="15" fill="rgb(235,32,4)" fg:x="5575706694" fg:w="102274410"/><text x="2.0630%" y="1439.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (102,274,410 samples, 0.03%)</title><rect x="1.8130%" y="1413" width="0.0333%" height="15" fill="rgb(238,90,54)" fg:x="5575706694" fg:w="102274410"/><text x="2.0630%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (60,283,598 samples, 0.02%)</title><rect x="1.8267%" y="1397" width="0.0196%" height="15" fill="rgb(213,208,19)" fg:x="5617697506" fg:w="60283598"/><text x="2.0767%" y="1407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (59,055,019 samples, 0.02%)</title><rect x="1.8271%" y="1381" width="0.0192%" height="15" fill="rgb(233,156,4)" fg:x="5618926085" fg:w="59055019"/><text x="2.0771%" y="1391.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (59,055,019 samples, 0.02%)</title><rect x="1.8271%" y="1365" width="0.0192%" height="15" fill="rgb(207,194,5)" fg:x="5618926085" fg:w="59055019"/><text x="2.0771%" y="1375.50"></text></g><g><title>__GI___clone3 (1,868,159,790 samples, 0.61%)</title><rect x="1.2486%" y="2053" width="0.6075%" height="15" fill="rgb(206,111,30)" fg:x="3840013722" fg:w="1868159790"/><text x="1.4986%" y="2063.50"></text></g><g><title>start_thread (1,868,159,790 samples, 0.61%)</title><rect x="1.2486%" y="2037" width="0.6075%" height="15" fill="rgb(243,70,54)" fg:x="3840013722" fg:w="1868159790"/><text x="1.4986%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (1,868,159,790 samples, 0.61%)</title><rect x="1.2486%" y="2021" width="0.6075%" height="15" fill="rgb(242,28,8)" fg:x="3840013722" fg:w="1868159790"/><text x="1.4986%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (1,868,159,790 samples, 0.61%)</title><rect x="1.2486%" y="2005" width="0.6075%" height="15" fill="rgb(219,106,18)" fg:x="3840013722" fg:w="1868159790"/><text x="1.4986%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (1,868,159,790 samples, 0.61%)</title><rect x="1.2486%" y="1989" width="0.6075%" height="15" fill="rgb(244,222,10)" fg:x="3840013722" fg:w="1868159790"/><text x="1.4986%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,868,159,790 samples, 0.61%)</title><rect x="1.2486%" y="1973" width="0.6075%" height="15" fill="rgb(236,179,52)" fg:x="3840013722" fg:w="1868159790"/><text x="1.4986%" y="1983.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (1,868,159,790 samples, 0.61%)</title><rect x="1.2486%" y="1957" width="0.6075%" height="15" fill="rgb(213,23,39)" fg:x="3840013722" fg:w="1868159790"/><text x="1.4986%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (1,828,042,214 samples, 0.59%)</title><rect x="1.2617%" y="1941" width="0.5944%" height="15" fill="rgb(238,48,10)" fg:x="3880131298" fg:w="1828042214"/><text x="1.5117%" y="1951.50"></text></g><g><title>RayonWorker1 (1,917,296,447 samples, 0.62%)</title><rect x="1.2457%" y="2069" width="0.6234%" height="15" fill="rgb(251,196,23)" fg:x="3830978908" fg:w="1917296447"/><text x="1.4957%" y="2079.50"></text></g><g><title>__sched_yield (65,136,066 samples, 0.02%)</title><rect x="1.8726%" y="1941" width="0.0212%" height="15" fill="rgb(250,152,24)" fg:x="5759027159" fg:w="65136066"/><text x="2.1226%" y="1951.50"></text></g><g><title>[unknown] (63,283,378 samples, 0.02%)</title><rect x="1.8732%" y="1925" width="0.0206%" height="15" fill="rgb(209,150,17)" fg:x="5760879847" fg:w="63283378"/><text x="2.1232%" y="1935.50"></text></g><g><title>[unknown] (58,774,060 samples, 0.02%)</title><rect x="1.8747%" y="1909" width="0.0191%" height="15" fill="rgb(234,202,34)" fg:x="5765389165" fg:w="58774060"/><text x="2.1247%" y="1919.50"></text></g><g><title>[unknown] (58,774,060 samples, 0.02%)</title><rect x="1.8747%" y="1893" width="0.0191%" height="15" fill="rgb(253,148,53)" fg:x="5765389165" fg:w="58774060"/><text x="2.1247%" y="1903.50"></text></g><g><title>[unknown] (56,563,732 samples, 0.02%)</title><rect x="1.8754%" y="1877" width="0.0184%" height="15" fill="rgb(218,129,16)" fg:x="5767599493" fg:w="56563732"/><text x="2.1254%" y="1887.50"></text></g><g><title>[unknown] (47,369,701 samples, 0.02%)</title><rect x="1.8784%" y="1861" width="0.0154%" height="15" fill="rgb(216,85,19)" fg:x="5776793524" fg:w="47369701"/><text x="2.1284%" y="1871.50"></text></g><g><title>[unknown] (45,715,956 samples, 0.01%)</title><rect x="1.8790%" y="1845" width="0.0149%" height="15" fill="rgb(235,228,7)" fg:x="5778447269" fg:w="45715956"/><text x="2.1290%" y="1855.50"></text></g><g><title>[unknown] (41,315,029 samples, 0.01%)</title><rect x="1.8804%" y="1829" width="0.0134%" height="15" fill="rgb(245,175,0)" fg:x="5782848196" fg:w="41315029"/><text x="2.1304%" y="1839.50"></text></g><g><title>[unknown] (35,282,164 samples, 0.01%)</title><rect x="1.8824%" y="1813" width="0.0115%" height="15" fill="rgb(208,168,36)" fg:x="5788881061" fg:w="35282164"/><text x="2.1324%" y="1823.50"></text></g><g><title>cranelift_codegen::machinst::compile::compile (105,379,804 samples, 0.03%)</title><rect x="1.9556%" y="1717" width="0.0343%" height="15" fill="rgb(246,171,24)" fg:x="6014108406" fg:w="105379804"/><text x="2.2056%" y="1727.50"></text></g><g><title>regalloc2::run (66,251,565 samples, 0.02%)</title><rect x="1.9683%" y="1701" width="0.0215%" height="15" fill="rgb(215,142,24)" fg:x="6053236645" fg:w="66251565"/><text x="2.2183%" y="1711.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (114,704,902 samples, 0.04%)</title><rect x="1.9556%" y="1733" width="0.0373%" height="15" fill="rgb(250,187,7)" fg:x="6014108406" fg:w="114704902"/><text x="2.2056%" y="1743.50"></text></g><g><title>cranelift_codegen::egraph::OptimizeCtx::insert_pure_enode (41,337,733 samples, 0.01%)</title><rect x="2.0115%" y="1701" width="0.0134%" height="15" fill="rgb(228,66,33)" fg:x="6186189354" fg:w="41337733"/><text x="2.2615%" y="1711.50"></text></g><g><title>cranelift_codegen::egraph::EgraphPass::run (101,278,012 samples, 0.03%)</title><rect x="1.9994%" y="1717" width="0.0329%" height="15" fill="rgb(234,215,21)" fg:x="6148764782" fg:w="101278012"/><text x="2.2494%" y="1727.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (246,208,719 samples, 0.08%)</title><rect x="1.9556%" y="1749" width="0.0801%" height="15" fill="rgb(222,191,20)" fg:x="6014108406" fg:w="246208719"/><text x="2.2056%" y="1759.50"></text></g><g><title>cranelift_codegen::context::Context::optimize (131,503,817 samples, 0.04%)</title><rect x="1.9929%" y="1733" width="0.0428%" height="15" fill="rgb(245,79,54)" fg:x="6128813308" fg:w="131503817"/><text x="2.2429%" y="1743.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (248,535,568 samples, 0.08%)</title><rect x="1.9556%" y="1765" width="0.0808%" height="15" fill="rgb(240,10,37)" fg:x="6014108406" fg:w="248535568"/><text x="2.2056%" y="1775.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (284,737,601 samples, 0.09%)</title><rect x="1.9543%" y="1781" width="0.0926%" height="15" fill="rgb(214,192,32)" fg:x="6010193685" fg:w="284737601"/><text x="2.2043%" y="1791.50"></text></g><g><title>wasmtime_cranelift::translate::code_translator::translate_operator (32,287,312 samples, 0.01%)</title><rect x="2.0364%" y="1765" width="0.0105%" height="15" fill="rgb(209,36,54)" fg:x="6262643974" fg:w="32287312"/><text x="2.2864%" y="1775.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (289,378,062 samples, 0.09%)</title><rect x="1.9536%" y="1797" width="0.0941%" height="15" fill="rgb(220,10,11)" fg:x="6007987092" fg:w="289378062"/><text x="2.2036%" y="1807.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (42,268,142 samples, 0.01%)</title><rect x="2.0907%" y="1717" width="0.0137%" height="15" fill="rgb(221,106,17)" fg:x="6429620061" fg:w="42268142"/><text x="2.3407%" y="1727.50"></text></g><g><title>cranelift_codegen::isa::x64::lower::isle::generated_code::constructor_lower (34,123,214 samples, 0.01%)</title><rect x="2.1232%" y="1637" width="0.0111%" height="15" fill="rgb(251,142,44)" fg:x="6529505985" fg:w="34123214"/><text x="2.3732%" y="1647.50"></text></g><g><title>cranelift_codegen::machinst::lower::Lower&lt;I&gt;::lower (68,780,710 samples, 0.02%)</title><rect x="2.1139%" y="1653" width="0.0224%" height="15" fill="rgb(238,13,15)" fg:x="6501083828" fg:w="68780710"/><text x="2.3639%" y="1663.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::init (82,326,503 samples, 0.03%)</title><rect x="2.1572%" y="1637" width="0.0268%" height="15" fill="rgb(208,107,27)" fg:x="6634090032" fg:w="82326503"/><text x="2.4072%" y="1647.50"></text></g><g><title>regalloc2::ion::process::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::try_to_allocate_bundle_to_reg (51,946,894 samples, 0.02%)</title><rect x="2.2056%" y="1621" width="0.0169%" height="15" fill="rgb(205,136,37)" fg:x="6783023138" fg:w="51946894"/><text x="2.4556%" y="1631.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::run (127,027,978 samples, 0.04%)</title><rect x="2.1840%" y="1637" width="0.0413%" height="15" fill="rgb(250,205,27)" fg:x="6716416535" fg:w="127027978"/><text x="2.4340%" y="1647.50"></text></g><g><title>cranelift_codegen::machinst::compile::compile (353,027,229 samples, 0.11%)</title><rect x="2.1112%" y="1669" width="0.1148%" height="15" fill="rgb(210,80,43)" fg:x="6492616684" fg:w="353027229"/><text x="2.3612%" y="1679.50"></text></g><g><title>regalloc2::run (241,067,331 samples, 0.08%)</title><rect x="2.1476%" y="1653" width="0.0784%" height="15" fill="rgb(247,160,36)" fg:x="6604576582" fg:w="241067331"/><text x="2.3976%" y="1663.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (402,862,795 samples, 0.13%)</title><rect x="2.1084%" y="1685" width="0.1310%" height="15" fill="rgb(234,13,49)" fg:x="6483966696" fg:w="402862795"/><text x="2.3584%" y="1695.50"></text></g><g><title>cranelift_codegen::machinst::vcode::VCode&lt;I&gt;::emit (41,185,578 samples, 0.01%)</title><rect x="2.2260%" y="1669" width="0.0134%" height="15" fill="rgb(234,122,0)" fg:x="6845643913" fg:w="41185578"/><text x="2.4760%" y="1679.50"></text></g><g><title>cranelift_codegen::egraph::OptimizeCtx::insert_pure_enode (48,923,145 samples, 0.02%)</title><rect x="2.2615%" y="1653" width="0.0159%" height="15" fill="rgb(207,146,38)" fg:x="6954898769" fg:w="48923145"/><text x="2.5115%" y="1663.50"></text></g><g><title>cranelift_codegen::egraph::EgraphPass::run (124,368,200 samples, 0.04%)</title><rect x="2.2469%" y="1669" width="0.0404%" height="15" fill="rgb(207,177,25)" fg:x="6909890126" fg:w="124368200"/><text x="2.4969%" y="1679.50"></text></g><g><title>cranelift_codegen::context::Context::optimize (167,530,370 samples, 0.05%)</title><rect x="2.2397%" y="1685" width="0.0545%" height="15" fill="rgb(211,178,42)" fg:x="6887808000" fg:w="167530370"/><text x="2.4897%" y="1695.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (572,552,653 samples, 0.19%)</title><rect x="2.1084%" y="1701" width="0.1862%" height="15" fill="rgb(230,69,54)" fg:x="6483966696" fg:w="572552653"/><text x="2.3584%" y="1711.50"></text></g><g><title>cranelift_codegen::incremental_cache::compute_cache_key (42,139,695 samples, 0.01%)</title><rect x="2.2945%" y="1701" width="0.0137%" height="15" fill="rgb(214,135,41)" fg:x="7056519349" fg:w="42139695"/><text x="2.5445%" y="1711.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (677,553,751 samples, 0.22%)</title><rect x="2.0891%" y="1733" width="0.2203%" height="15" fill="rgb(237,67,25)" fg:x="6424780359" fg:w="677553751"/><text x="2.3391%" y="1743.50"></text></g><g><title>cranelift_codegen::incremental_cache::&lt;impl cranelift_codegen::context::Context&gt;::compile_with_cache (630,445,907 samples, 0.21%)</title><rect x="2.1044%" y="1717" width="0.2050%" height="15" fill="rgb(222,189,50)" fg:x="6471888203" fg:w="630445907"/><text x="2.3544%" y="1727.50"></text></g><g><title>wasmtime_cranelift::translate::code_translator::translate_operator (66,607,779 samples, 0.02%)</title><rect x="2.3104%" y="1733" width="0.0217%" height="15" fill="rgb(245,148,34)" fg:x="7105293049" fg:w="66607779"/><text x="2.5604%" y="1743.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (776,351,415 samples, 0.25%)</title><rect x="2.0800%" y="1749" width="0.2524%" height="15" fill="rgb(222,29,6)" fg:x="6396818487" fg:w="776351415"/><text x="2.3300%" y="1759.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (802,900,513 samples, 0.26%)</title><rect x="2.0736%" y="1765" width="0.2611%" height="15" fill="rgb(221,189,43)" fg:x="6377083527" fg:w="802900513"/><text x="2.3236%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (882,874,194 samples, 0.29%)</title><rect x="2.0481%" y="1781" width="0.2871%" height="15" fill="rgb(207,36,27)" fg:x="6298577296" fg:w="882874194"/><text x="2.2981%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,229,919,832 samples, 0.40%)</title><rect x="1.9407%" y="1813" width="0.3999%" height="15" fill="rgb(217,90,24)" fg:x="5968180944" fg:w="1229919832"/><text x="2.1907%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (900,735,622 samples, 0.29%)</title><rect x="2.0477%" y="1797" width="0.2929%" height="15" fill="rgb(224,66,35)" fg:x="6297365154" fg:w="900735622"/><text x="2.2977%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30,830,985 samples, 0.01%)</title><rect x="2.3422%" y="1717" width="0.0100%" height="15" fill="rgb(221,13,50)" fg:x="7202969638" fg:w="30830985"/><text x="2.5922%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38,426,167 samples, 0.01%)</title><rect x="2.3416%" y="1749" width="0.0125%" height="15" fill="rgb(236,68,49)" fg:x="7201329916" fg:w="38426167"/><text x="2.5916%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,786,445 samples, 0.01%)</title><rect x="2.3422%" y="1733" width="0.0120%" height="15" fill="rgb(229,146,28)" fg:x="7202969638" fg:w="36786445"/><text x="2.5922%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,344,248,259 samples, 0.44%)</title><rect x="1.9174%" y="1845" width="0.4371%" height="15" fill="rgb(225,31,38)" fg:x="5896627139" fg:w="1344248259"/><text x="2.1674%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,273,567,915 samples, 0.41%)</title><rect x="1.9404%" y="1829" width="0.4141%" height="15" fill="rgb(250,208,3)" fg:x="5967307483" fg:w="1273567915"/><text x="2.1904%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (40,751,931 samples, 0.01%)</title><rect x="2.3412%" y="1813" width="0.0133%" height="15" fill="rgb(246,54,23)" fg:x="7200123467" fg:w="40751931"/><text x="2.5912%" y="1823.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (40,751,931 samples, 0.01%)</title><rect x="2.3412%" y="1797" width="0.0133%" height="15" fill="rgb(243,76,11)" fg:x="7200123467" fg:w="40751931"/><text x="2.5912%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (40,751,931 samples, 0.01%)</title><rect x="2.3412%" y="1781" width="0.0133%" height="15" fill="rgb(245,21,50)" fg:x="7200123467" fg:w="40751931"/><text x="2.5912%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (39,545,482 samples, 0.01%)</title><rect x="2.3416%" y="1765" width="0.0129%" height="15" fill="rgb(228,9,43)" fg:x="7201329916" fg:w="39545482"/><text x="2.5916%" y="1775.50"></text></g><g><title>cranelift_codegen::machinst::compile::compile (42,230,563 samples, 0.01%)</title><rect x="2.3615%" y="1573" width="0.0137%" height="15" fill="rgb(208,100,47)" fg:x="7262496792" fg:w="42230563"/><text x="2.6115%" y="1583.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (50,740,671 samples, 0.02%)</title><rect x="2.3611%" y="1589" width="0.0165%" height="15" fill="rgb(232,26,8)" fg:x="7261293340" fg:w="50740671"/><text x="2.6111%" y="1599.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (72,569,974 samples, 0.02%)</title><rect x="2.3611%" y="1605" width="0.0236%" height="15" fill="rgb(216,166,38)" fg:x="7261293340" fg:w="72569974"/><text x="2.6111%" y="1615.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (76,780,227 samples, 0.02%)</title><rect x="2.3611%" y="1637" width="0.0250%" height="15" fill="rgb(251,202,51)" fg:x="7261293340" fg:w="76780227"/><text x="2.6111%" y="1647.50"></text></g><g><title>cranelift_codegen::incremental_cache::&lt;impl cranelift_codegen::context::Context&gt;::compile_with_cache (76,780,227 samples, 0.02%)</title><rect x="2.3611%" y="1621" width="0.0250%" height="15" fill="rgb(254,216,34)" fg:x="7261293340" fg:w="76780227"/><text x="2.6111%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (100,142,084 samples, 0.03%)</title><rect x="2.3571%" y="1749" width="0.0326%" height="15" fill="rgb(251,32,27)" fg:x="7248855629" fg:w="100142084"/><text x="2.6071%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (97,672,287 samples, 0.03%)</title><rect x="2.3579%" y="1733" width="0.0318%" height="15" fill="rgb(208,127,28)" fg:x="7251325426" fg:w="97672287"/><text x="2.6079%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (97,235,177 samples, 0.03%)</title><rect x="2.3580%" y="1717" width="0.0316%" height="15" fill="rgb(224,137,22)" fg:x="7251762536" fg:w="97235177"/><text x="2.6080%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (93,535,504 samples, 0.03%)</title><rect x="2.3592%" y="1701" width="0.0304%" height="15" fill="rgb(254,70,32)" fg:x="7255462209" fg:w="93535504"/><text x="2.6092%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (93,535,504 samples, 0.03%)</title><rect x="2.3592%" y="1685" width="0.0304%" height="15" fill="rgb(229,75,37)" fg:x="7255462209" fg:w="93535504"/><text x="2.6092%" y="1695.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (90,750,339 samples, 0.03%)</title><rect x="2.3601%" y="1669" width="0.0295%" height="15" fill="rgb(252,64,23)" fg:x="7258247374" fg:w="90750339"/><text x="2.6101%" y="1679.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (89,624,449 samples, 0.03%)</title><rect x="2.3605%" y="1653" width="0.0291%" height="15" fill="rgb(232,162,48)" fg:x="7259373264" fg:w="89624449"/><text x="2.6105%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (118,287,112 samples, 0.04%)</title><rect x="2.3553%" y="1781" width="0.0385%" height="15" fill="rgb(246,160,12)" fg:x="7243442832" fg:w="118287112"/><text x="2.6053%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (112,874,315 samples, 0.04%)</title><rect x="2.3571%" y="1765" width="0.0367%" height="15" fill="rgb(247,166,0)" fg:x="7248855629" fg:w="112874315"/><text x="2.6071%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (125,550,169 samples, 0.04%)</title><rect x="2.3545%" y="1813" width="0.0408%" height="15" fill="rgb(249,219,21)" fg:x="7240875398" fg:w="125550169"/><text x="2.6045%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (122,982,735 samples, 0.04%)</title><rect x="2.3553%" y="1797" width="0.0400%" height="15" fill="rgb(205,209,3)" fg:x="7243442832" fg:w="122982735"/><text x="2.6053%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,526,895,027 samples, 0.50%)</title><rect x="1.9037%" y="1877" width="0.4965%" height="15" fill="rgb(243,44,1)" fg:x="5854514491" fg:w="1526895027"/><text x="2.1537%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,484,782,379 samples, 0.48%)</title><rect x="1.9174%" y="1861" width="0.4828%" height="15" fill="rgb(206,159,16)" fg:x="5896627139" fg:w="1484782379"/><text x="2.1674%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (140,534,120 samples, 0.05%)</title><rect x="2.3545%" y="1845" width="0.0457%" height="15" fill="rgb(244,77,30)" fg:x="7240875398" fg:w="140534120"/><text x="2.6045%" y="1855.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (140,534,120 samples, 0.05%)</title><rect x="2.3545%" y="1829" width="0.0457%" height="15" fill="rgb(218,69,12)" fg:x="7240875398" fg:w="140534120"/><text x="2.6045%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (85,318,084 samples, 0.03%)</title><rect x="2.4002%" y="1845" width="0.0277%" height="15" fill="rgb(212,87,7)" fg:x="7381409518" fg:w="85318084"/><text x="2.6502%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (81,595,541 samples, 0.03%)</title><rect x="2.4014%" y="1829" width="0.0265%" height="15" fill="rgb(245,114,25)" fg:x="7385132061" fg:w="81595541"/><text x="2.6514%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (51,805,095 samples, 0.02%)</title><rect x="2.4111%" y="1813" width="0.0168%" height="15" fill="rgb(210,61,42)" fg:x="7414922507" fg:w="51805095"/><text x="2.6611%" y="1823.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (51,805,095 samples, 0.02%)</title><rect x="2.4111%" y="1797" width="0.0168%" height="15" fill="rgb(211,52,33)" fg:x="7414922507" fg:w="51805095"/><text x="2.6611%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (47,407,579 samples, 0.02%)</title><rect x="2.4125%" y="1781" width="0.0154%" height="15" fill="rgb(234,58,33)" fg:x="7419320023" fg:w="47407579"/><text x="2.6625%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1765" width="0.0101%" height="15" fill="rgb(220,115,36)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1775.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1749" width="0.0101%" height="15" fill="rgb(243,153,54)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1733" width="0.0101%" height="15" fill="rgb(251,47,18)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1743.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1717" width="0.0101%" height="15" fill="rgb(242,102,42)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1727.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1701" width="0.0101%" height="15" fill="rgb(234,31,38)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1685" width="0.0101%" height="15" fill="rgb(221,117,51)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1695.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1669" width="0.0101%" height="15" fill="rgb(212,20,18)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1653" width="0.0101%" height="15" fill="rgb(245,133,36)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1637" width="0.0101%" height="15" fill="rgb(212,6,19)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1621" width="0.0101%" height="15" fill="rgb(218,1,36)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1631.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (31,109,953 samples, 0.01%)</title><rect x="2.4178%" y="1605" width="0.0101%" height="15" fill="rgb(246,84,54)" fg:x="7435617649" fg:w="31109953"/><text x="2.6678%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33,904,804 samples, 0.01%)</title><rect x="2.4279%" y="1365" width="0.0110%" height="15" fill="rgb(242,110,6)" fg:x="7466727602" fg:w="33904804"/><text x="2.6779%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,904,804 samples, 0.01%)</title><rect x="2.4279%" y="1349" width="0.0110%" height="15" fill="rgb(214,47,5)" fg:x="7466727602" fg:w="33904804"/><text x="2.6779%" y="1359.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33,904,804 samples, 0.01%)</title><rect x="2.4279%" y="1333" width="0.0110%" height="15" fill="rgb(218,159,25)" fg:x="7466727602" fg:w="33904804"/><text x="2.6779%" y="1343.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (33,904,804 samples, 0.01%)</title><rect x="2.4279%" y="1317" width="0.0110%" height="15" fill="rgb(215,211,28)" fg:x="7466727602" fg:w="33904804"/><text x="2.6779%" y="1327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33,904,804 samples, 0.01%)</title><rect x="2.4279%" y="1301" width="0.0110%" height="15" fill="rgb(238,59,32)" fg:x="7466727602" fg:w="33904804"/><text x="2.6779%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,904,804 samples, 0.01%)</title><rect x="2.4279%" y="1285" width="0.0110%" height="15" fill="rgb(226,82,3)" fg:x="7466727602" fg:w="33904804"/><text x="2.6779%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33,904,804 samples, 0.01%)</title><rect x="2.4279%" y="1269" width="0.0110%" height="15" fill="rgb(240,164,32)" fg:x="7466727602" fg:w="33904804"/><text x="2.6779%" y="1279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,904,804 samples, 0.01%)</title><rect x="2.4279%" y="1253" width="0.0110%" height="15" fill="rgb(232,46,7)" fg:x="7466727602" fg:w="33904804"/><text x="2.6779%" y="1263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1237" width="0.0106%" height="15" fill="rgb(229,129,53)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1247.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1221" width="0.0106%" height="15" fill="rgb(234,188,29)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1205" width="0.0106%" height="15" fill="rgb(246,141,4)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1189" width="0.0106%" height="15" fill="rgb(229,23,39)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1173" width="0.0106%" height="15" fill="rgb(206,12,3)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1183.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1157" width="0.0106%" height="15" fill="rgb(252,226,20)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1141" width="0.0106%" height="15" fill="rgb(216,123,35)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1125" width="0.0106%" height="15" fill="rgb(212,68,40)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1109" width="0.0106%" height="15" fill="rgb(254,125,32)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1119.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1093" width="0.0106%" height="15" fill="rgb(253,97,22)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1077" width="0.0106%" height="15" fill="rgb(241,101,14)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1061" width="0.0106%" height="15" fill="rgb(238,103,29)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1045" width="0.0106%" height="15" fill="rgb(233,195,47)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1029" width="0.0106%" height="15" fill="rgb(246,218,30)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1039.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (32,689,484 samples, 0.01%)</title><rect x="2.4283%" y="1013" width="0.0106%" height="15" fill="rgb(219,145,47)" fg:x="7467942922" fg:w="32689484"/><text x="2.6783%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36,140,656 samples, 0.01%)</title><rect x="2.4394%" y="1205" width="0.0118%" height="15" fill="rgb(243,12,26)" fg:x="7501888960" fg:w="36140656"/><text x="2.6894%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,140,656 samples, 0.01%)</title><rect x="2.4394%" y="1189" width="0.0118%" height="15" fill="rgb(214,87,16)" fg:x="7501888960" fg:w="36140656"/><text x="2.6894%" y="1199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34,993,335 samples, 0.01%)</title><rect x="2.4397%" y="1173" width="0.0114%" height="15" fill="rgb(208,99,42)" fg:x="7503036281" fg:w="34993335"/><text x="2.6897%" y="1183.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34,993,335 samples, 0.01%)</title><rect x="2.4397%" y="1157" width="0.0114%" height="15" fill="rgb(253,99,2)" fg:x="7503036281" fg:w="34993335"/><text x="2.6897%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,993,335 samples, 0.01%)</title><rect x="2.4397%" y="1141" width="0.0114%" height="15" fill="rgb(220,168,23)" fg:x="7503036281" fg:w="34993335"/><text x="2.6897%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,993,335 samples, 0.01%)</title><rect x="2.4397%" y="1125" width="0.0114%" height="15" fill="rgb(242,38,24)" fg:x="7503036281" fg:w="34993335"/><text x="2.6897%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="1109" width="0.0110%" height="15" fill="rgb(225,182,9)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="1119.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="1093" width="0.0110%" height="15" fill="rgb(243,178,37)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="1077" width="0.0110%" height="15" fill="rgb(232,139,19)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="1061" width="0.0110%" height="15" fill="rgb(225,201,24)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="1071.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="1045" width="0.0110%" height="15" fill="rgb(221,47,46)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="1055.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="1029" width="0.0110%" height="15" fill="rgb(249,23,13)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="1013" width="0.0110%" height="15" fill="rgb(219,9,5)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="997" width="0.0110%" height="15" fill="rgb(254,171,16)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="981" width="0.0110%" height="15" fill="rgb(230,171,20)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="965" width="0.0110%" height="15" fill="rgb(210,71,41)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="949" width="0.0110%" height="15" fill="rgb(206,173,20)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="933" width="0.0110%" height="15" fill="rgb(233,88,34)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="917" width="0.0110%" height="15" fill="rgb(223,209,46)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="927.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="901" width="0.0110%" height="15" fill="rgb(250,43,18)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="911.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (33,751,475 samples, 0.01%)</title><rect x="2.4401%" y="885" width="0.0110%" height="15" fill="rgb(208,13,10)" fg:x="7504278141" fg:w="33751475"/><text x="2.6901%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32,157,174 samples, 0.01%)</title><rect x="2.4527%" y="1029" width="0.0105%" height="15" fill="rgb(212,200,36)" fg:x="7542906748" fg:w="32157174"/><text x="2.7027%" y="1039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32,157,174 samples, 0.01%)</title><rect x="2.4527%" y="1013" width="0.0105%" height="15" fill="rgb(225,90,30)" fg:x="7542906748" fg:w="32157174"/><text x="2.7027%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32,157,174 samples, 0.01%)</title><rect x="2.4527%" y="997" width="0.0105%" height="15" fill="rgb(236,182,39)" fg:x="7542906748" fg:w="32157174"/><text x="2.7027%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (32,157,174 samples, 0.01%)</title><rect x="2.4527%" y="981" width="0.0105%" height="15" fill="rgb(212,144,35)" fg:x="7542906748" fg:w="32157174"/><text x="2.7027%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35,735,817 samples, 0.01%)</title><rect x="2.4519%" y="1109" width="0.0116%" height="15" fill="rgb(228,63,44)" fg:x="7540520986" fg:w="35735817"/><text x="2.7019%" y="1119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (35,735,817 samples, 0.01%)</title><rect x="2.4519%" y="1093" width="0.0116%" height="15" fill="rgb(228,109,6)" fg:x="7540520986" fg:w="35735817"/><text x="2.7019%" y="1103.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (35,735,817 samples, 0.01%)</title><rect x="2.4519%" y="1077" width="0.0116%" height="15" fill="rgb(238,117,24)" fg:x="7540520986" fg:w="35735817"/><text x="2.7019%" y="1087.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (35,735,817 samples, 0.01%)</title><rect x="2.4519%" y="1061" width="0.0116%" height="15" fill="rgb(242,26,26)" fg:x="7540520986" fg:w="35735817"/><text x="2.7019%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,350,055 samples, 0.01%)</title><rect x="2.4527%" y="1045" width="0.0108%" height="15" fill="rgb(221,92,48)" fg:x="7542906748" fg:w="33350055"/><text x="2.7027%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48,066,467 samples, 0.02%)</title><rect x="2.4511%" y="1173" width="0.0156%" height="15" fill="rgb(209,209,32)" fg:x="7538029616" fg:w="48066467"/><text x="2.7011%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (48,066,467 samples, 0.02%)</title><rect x="2.4511%" y="1157" width="0.0156%" height="15" fill="rgb(221,70,22)" fg:x="7538029616" fg:w="48066467"/><text x="2.7011%" y="1167.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (45,575,097 samples, 0.01%)</title><rect x="2.4519%" y="1141" width="0.0148%" height="15" fill="rgb(248,145,5)" fg:x="7540520986" fg:w="45575097"/><text x="2.7019%" y="1151.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (45,575,097 samples, 0.01%)</title><rect x="2.4519%" y="1125" width="0.0148%" height="15" fill="rgb(226,116,26)" fg:x="7540520986" fg:w="45575097"/><text x="2.7019%" y="1135.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (205,921,250 samples, 0.07%)</title><rect x="2.4002%" y="1861" width="0.0670%" height="15" fill="rgb(244,5,17)" fg:x="7381409518" fg:w="205921250"/><text x="2.6502%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1845" width="0.0392%" height="15" fill="rgb(252,159,33)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1829" width="0.0392%" height="15" fill="rgb(206,71,0)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1813" width="0.0392%" height="15" fill="rgb(233,118,54)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1797" width="0.0392%" height="15" fill="rgb(234,83,48)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1781" width="0.0392%" height="15" fill="rgb(228,3,54)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1765" width="0.0392%" height="15" fill="rgb(226,155,13)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1749" width="0.0392%" height="15" fill="rgb(241,28,37)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1759.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1733" width="0.0392%" height="15" fill="rgb(233,93,10)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1743.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1717" width="0.0392%" height="15" fill="rgb(225,113,19)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1701" width="0.0392%" height="15" fill="rgb(241,2,18)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1685" width="0.0392%" height="15" fill="rgb(228,207,21)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1669" width="0.0392%" height="15" fill="rgb(213,211,35)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1653" width="0.0392%" height="15" fill="rgb(209,83,10)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1637" width="0.0392%" height="15" fill="rgb(209,164,1)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1647.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1621" width="0.0392%" height="15" fill="rgb(213,184,43)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1631.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1605" width="0.0392%" height="15" fill="rgb(231,61,34)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1589" width="0.0392%" height="15" fill="rgb(235,75,3)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1573" width="0.0392%" height="15" fill="rgb(220,106,47)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1557" width="0.0392%" height="15" fill="rgb(210,196,33)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1541" width="0.0392%" height="15" fill="rgb(229,154,42)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1551.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1525" width="0.0392%" height="15" fill="rgb(228,114,26)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1535.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1509" width="0.0392%" height="15" fill="rgb(208,144,1)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1493" width="0.0392%" height="15" fill="rgb(239,112,37)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1477" width="0.0392%" height="15" fill="rgb(210,96,50)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1461" width="0.0392%" height="15" fill="rgb(222,178,2)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1471.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1445" width="0.0392%" height="15" fill="rgb(226,74,18)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1429" width="0.0392%" height="15" fill="rgb(225,67,54)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1413" width="0.0392%" height="15" fill="rgb(251,92,32)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1397" width="0.0392%" height="15" fill="rgb(228,149,22)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1407.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (120,603,166 samples, 0.04%)</title><rect x="2.4279%" y="1381" width="0.0392%" height="15" fill="rgb(243,54,13)" fg:x="7466727602" fg:w="120603166"/><text x="2.6779%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (86,698,362 samples, 0.03%)</title><rect x="2.4390%" y="1365" width="0.0282%" height="15" fill="rgb(243,180,28)" fg:x="7500632406" fg:w="86698362"/><text x="2.6890%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (86,698,362 samples, 0.03%)</title><rect x="2.4390%" y="1349" width="0.0282%" height="15" fill="rgb(208,167,24)" fg:x="7500632406" fg:w="86698362"/><text x="2.6890%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (86,698,362 samples, 0.03%)</title><rect x="2.4390%" y="1333" width="0.0282%" height="15" fill="rgb(245,73,45)" fg:x="7500632406" fg:w="86698362"/><text x="2.6890%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (86,698,362 samples, 0.03%)</title><rect x="2.4390%" y="1317" width="0.0282%" height="15" fill="rgb(237,203,48)" fg:x="7500632406" fg:w="86698362"/><text x="2.6890%" y="1327.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (86,698,362 samples, 0.03%)</title><rect x="2.4390%" y="1301" width="0.0282%" height="15" fill="rgb(211,197,16)" fg:x="7500632406" fg:w="86698362"/><text x="2.6890%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (86,698,362 samples, 0.03%)</title><rect x="2.4390%" y="1285" width="0.0282%" height="15" fill="rgb(243,99,51)" fg:x="7500632406" fg:w="86698362"/><text x="2.6890%" y="1295.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (85,441,808 samples, 0.03%)</title><rect x="2.4394%" y="1269" width="0.0278%" height="15" fill="rgb(215,123,29)" fg:x="7501888960" fg:w="85441808"/><text x="2.6894%" y="1279.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (85,441,808 samples, 0.03%)</title><rect x="2.4394%" y="1253" width="0.0278%" height="15" fill="rgb(239,186,37)" fg:x="7501888960" fg:w="85441808"/><text x="2.6894%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (85,441,808 samples, 0.03%)</title><rect x="2.4394%" y="1237" width="0.0278%" height="15" fill="rgb(252,136,39)" fg:x="7501888960" fg:w="85441808"/><text x="2.6894%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (85,441,808 samples, 0.03%)</title><rect x="2.4394%" y="1221" width="0.0278%" height="15" fill="rgb(223,213,32)" fg:x="7501888960" fg:w="85441808"/><text x="2.6894%" y="1231.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (49,301,152 samples, 0.02%)</title><rect x="2.4511%" y="1205" width="0.0160%" height="15" fill="rgb(233,115,5)" fg:x="7538029616" fg:w="49301152"/><text x="2.7011%" y="1215.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (49,301,152 samples, 0.02%)</title><rect x="2.4511%" y="1189" width="0.0160%" height="15" fill="rgb(207,226,44)" fg:x="7538029616" fg:w="49301152"/><text x="2.7011%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,762,421,578 samples, 0.57%)</title><rect x="1.8946%" y="1909" width="0.5731%" height="15" fill="rgb(208,126,0)" fg:x="5826606835" fg:w="1762421578"/><text x="2.1446%" y="1919.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,743,376,737 samples, 0.57%)</title><rect x="1.9008%" y="1893" width="0.5669%" height="15" fill="rgb(244,66,21)" fg:x="5845651676" fg:w="1743376737"/><text x="2.1508%" y="1903.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (207,618,895 samples, 0.07%)</title><rect x="2.4002%" y="1877" width="0.0675%" height="15" fill="rgb(222,97,12)" fg:x="7381409518" fg:w="207618895"/><text x="2.6502%" y="1887.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (1,782,399,264 samples, 0.58%)</title><rect x="1.8941%" y="1925" width="0.5796%" height="15" fill="rgb(219,213,19)" fg:x="5824858442" fg:w="1782399264"/><text x="2.1441%" y="1935.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (1,819,762,354 samples, 0.59%)</title><rect x="1.8938%" y="1941" width="0.5917%" height="15" fill="rgb(252,169,30)" fg:x="5824163225" fg:w="1819762354"/><text x="2.1438%" y="1951.50"></text></g><g><title>__GI___clone3 (1,885,690,741 samples, 0.61%)</title><rect x="1.8726%" y="2053" width="0.6132%" height="15" fill="rgb(206,32,51)" fg:x="5759027159" fg:w="1885690741"/><text x="2.1226%" y="2063.50"></text></g><g><title>start_thread (1,885,690,741 samples, 0.61%)</title><rect x="1.8726%" y="2037" width="0.6132%" height="15" fill="rgb(250,172,42)" fg:x="5759027159" fg:w="1885690741"/><text x="2.1226%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (1,885,690,741 samples, 0.61%)</title><rect x="1.8726%" y="2021" width="0.6132%" height="15" fill="rgb(209,34,43)" fg:x="5759027159" fg:w="1885690741"/><text x="2.1226%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (1,885,690,741 samples, 0.61%)</title><rect x="1.8726%" y="2005" width="0.6132%" height="15" fill="rgb(223,11,35)" fg:x="5759027159" fg:w="1885690741"/><text x="2.1226%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (1,885,690,741 samples, 0.61%)</title><rect x="1.8726%" y="1989" width="0.6132%" height="15" fill="rgb(251,219,26)" fg:x="5759027159" fg:w="1885690741"/><text x="2.1226%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,885,690,741 samples, 0.61%)</title><rect x="1.8726%" y="1973" width="0.6132%" height="15" fill="rgb(231,119,3)" fg:x="5759027159" fg:w="1885690741"/><text x="2.1226%" y="1983.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (1,885,690,741 samples, 0.61%)</title><rect x="1.8726%" y="1957" width="0.6132%" height="15" fill="rgb(216,97,11)" fg:x="5759027159" fg:w="1885690741"/><text x="2.1226%" y="1967.50"></text></g><g><title>RayonWorker2 (1,968,947,236 samples, 0.64%)</title><rect x="1.8692%" y="2069" width="0.6402%" height="15" fill="rgb(223,59,9)" fg:x="5748275355" fg:w="1968947236"/><text x="2.1192%" y="2079.50"></text></g><g><title>__sched_yield (51,936,138 samples, 0.02%)</title><rect x="2.5119%" y="1941" width="0.0169%" height="15" fill="rgb(233,93,31)" fg:x="7724888040" fg:w="51936138"/><text x="2.7619%" y="1951.50"></text></g><g><title>[unknown] (49,450,920 samples, 0.02%)</title><rect x="2.5127%" y="1925" width="0.0161%" height="15" fill="rgb(239,81,33)" fg:x="7727373258" fg:w="49450920"/><text x="2.7627%" y="1935.50"></text></g><g><title>[unknown] (49,450,920 samples, 0.02%)</title><rect x="2.5127%" y="1909" width="0.0161%" height="15" fill="rgb(213,120,34)" fg:x="7727373258" fg:w="49450920"/><text x="2.7627%" y="1919.50"></text></g><g><title>[unknown] (46,027,084 samples, 0.01%)</title><rect x="2.5138%" y="1893" width="0.0150%" height="15" fill="rgb(243,49,53)" fg:x="7730797094" fg:w="46027084"/><text x="2.7638%" y="1903.50"></text></g><g><title>[unknown] (45,125,324 samples, 0.01%)</title><rect x="2.5141%" y="1877" width="0.0147%" height="15" fill="rgb(247,216,33)" fg:x="7731698854" fg:w="45125324"/><text x="2.7641%" y="1887.50"></text></g><g><title>[unknown] (40,241,802 samples, 0.01%)</title><rect x="2.5157%" y="1861" width="0.0131%" height="15" fill="rgb(226,26,14)" fg:x="7736582376" fg:w="40241802"/><text x="2.7657%" y="1871.50"></text></g><g><title>[unknown] (32,130,224 samples, 0.01%)</title><rect x="2.5183%" y="1845" width="0.0104%" height="15" fill="rgb(215,49,53)" fg:x="7744693954" fg:w="32130224"/><text x="2.7683%" y="1855.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (35,457,052 samples, 0.01%)</title><rect x="2.6500%" y="1701" width="0.0115%" height="15" fill="rgb(245,162,40)" fg:x="8149774285" fg:w="35457052"/><text x="2.9000%" y="1711.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (55,549,263 samples, 0.02%)</title><rect x="2.6500%" y="1717" width="0.0181%" height="15" fill="rgb(229,68,17)" fg:x="8149774285" fg:w="55549263"/><text x="2.9000%" y="1727.50"></text></g><g><title>cranelift_codegen::isa::x64::lower::isle::generated_code::constructor_lower (31,097,209 samples, 0.01%)</title><rect x="2.6890%" y="1637" width="0.0101%" height="15" fill="rgb(213,182,10)" fg:x="8269565815" fg:w="31097209"/><text x="2.9390%" y="1647.50"></text></g><g><title>cranelift_codegen::machinst::lower::Lower&lt;I&gt;::lower (57,276,557 samples, 0.02%)</title><rect x="2.6808%" y="1653" width="0.0186%" height="15" fill="rgb(245,125,30)" fg:x="8244485364" fg:w="57276557"/><text x="2.9308%" y="1663.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::init (100,653,566 samples, 0.03%)</title><rect x="2.7136%" y="1637" width="0.0327%" height="15" fill="rgb(232,202,2)" fg:x="8345283697" fg:w="100653566"/><text x="2.9636%" y="1647.50"></text></g><g><title>regalloc2::ion::process::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::try_to_allocate_bundle_to_reg (32,914,355 samples, 0.01%)</title><rect x="2.7725%" y="1621" width="0.0107%" height="15" fill="rgb(237,140,51)" fg:x="8526466249" fg:w="32914355"/><text x="3.0225%" y="1631.50"></text></g><g><title>regalloc2::ion::&lt;impl regalloc2::ion::data_structures::Env&lt;F&gt;&gt;::run (132,937,578 samples, 0.04%)</title><rect x="2.7463%" y="1637" width="0.0432%" height="15" fill="rgb(236,157,25)" fg:x="8445937263" fg:w="132937578"/><text x="2.9963%" y="1647.50"></text></g><g><title>cranelift_codegen::machinst::compile::compile (358,229,637 samples, 0.12%)</title><rect x="2.6734%" y="1669" width="0.1165%" height="15" fill="rgb(219,209,0)" fg:x="8221724346" fg:w="358229637"/><text x="2.9234%" y="1679.50"></text></g><g><title>regalloc2::run (258,298,223 samples, 0.08%)</title><rect x="2.7059%" y="1653" width="0.0840%" height="15" fill="rgb(240,116,54)" fg:x="8321655760" fg:w="258298223"/><text x="2.9559%" y="1663.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (410,559,272 samples, 0.13%)</title><rect x="2.6723%" y="1685" width="0.1335%" height="15" fill="rgb(216,10,36)" fg:x="8218173578" fg:w="410559272"/><text x="2.9223%" y="1695.50"></text></g><g><title>cranelift_codegen::machinst::vcode::VCode&lt;I&gt;::emit (47,317,219 samples, 0.02%)</title><rect x="2.7904%" y="1669" width="0.0154%" height="15" fill="rgb(222,72,44)" fg:x="8581415631" fg:w="47317219"/><text x="3.0404%" y="1679.50"></text></g><g><title>cranelift_codegen::egraph::OptimizeCtx::insert_pure_enode (42,200,824 samples, 0.01%)</title><rect x="2.8284%" y="1653" width="0.0137%" height="15" fill="rgb(232,159,9)" fg:x="8698156639" fg:w="42200824"/><text x="3.0784%" y="1663.50"></text></g><g><title>cranelift_codegen::egraph::EgraphPass::run (114,981,413 samples, 0.04%)</title><rect x="2.8114%" y="1669" width="0.0374%" height="15" fill="rgb(210,39,32)" fg:x="8646130467" fg:w="114981413"/><text x="3.0614%" y="1679.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (572,152,055 samples, 0.19%)</title><rect x="2.6723%" y="1701" width="0.1860%" height="15" fill="rgb(216,194,45)" fg:x="8218173578" fg:w="572152055"/><text x="2.9223%" y="1711.50"></text></g><g><title>cranelift_codegen::context::Context::optimize (161,592,783 samples, 0.05%)</title><rect x="2.8058%" y="1685" width="0.0525%" height="15" fill="rgb(218,18,35)" fg:x="8628732850" fg:w="161592783"/><text x="3.0558%" y="1695.50"></text></g><g><title>cranelift_codegen::incremental_cache::compute_cache_key (30,898,228 samples, 0.01%)</title><rect x="2.8583%" y="1701" width="0.0100%" height="15" fill="rgb(207,83,51)" fg:x="8790325633" fg:w="30898228"/><text x="3.1083%" y="1711.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (675,949,615 samples, 0.22%)</title><rect x="2.6497%" y="1733" width="0.2198%" height="15" fill="rgb(225,63,43)" fg:x="8148584038" fg:w="675949615"/><text x="2.8997%" y="1743.50"></text></g><g><title>cranelift_codegen::incremental_cache::&lt;impl cranelift_codegen::context::Context&gt;::compile_with_cache (619,210,105 samples, 0.20%)</title><rect x="2.6681%" y="1717" width="0.2013%" height="15" fill="rgb(207,57,36)" fg:x="8205323548" fg:w="619210105"/><text x="2.9181%" y="1727.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (774,260,164 samples, 0.25%)</title><rect x="2.6390%" y="1749" width="0.2518%" height="15" fill="rgb(216,99,33)" fg:x="8115879752" fg:w="774260164"/><text x="2.8890%" y="1759.50"></text></g><g><title>wasmtime_cranelift::translate::code_translator::translate_operator (62,312,708 samples, 0.02%)</title><rect x="2.8705%" y="1733" width="0.0203%" height="15" fill="rgb(225,42,16)" fg:x="8827827208" fg:w="62312708"/><text x="3.1205%" y="1743.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (856,253,228 samples, 0.28%)</title><rect x="2.6295%" y="1765" width="0.2784%" height="15" fill="rgb(220,201,45)" fg:x="8086569033" fg:w="856253228"/><text x="2.8795%" y="1775.50"></text></g><g><title>wasmtime_cranelift::compiler::component::&lt;impl wasmtime_environ::component::compiler::ComponentCompiler for wasmtime_cranelift::compiler::Compiler&gt;::compile_trampoline (35,841,871 samples, 0.01%)</title><rect x="2.8963%" y="1749" width="0.0117%" height="15" fill="rgb(225,33,4)" fg:x="8906980390" fg:w="35841871"/><text x="3.1463%" y="1759.50"></text></g><g><title>wasmtime_cranelift::compiler::component::_&lt;impl wasmtime_environ::component::compiler::ComponentCompiler for wasmtime_cranelift::compiler::Compiler&gt;::compile_trampoline::_{{closure}} (34,643,221 samples, 0.01%)</title><rect x="2.8966%" y="1733" width="0.0113%" height="15" fill="rgb(224,33,50)" fg:x="8908179040" fg:w="34643221"/><text x="3.1466%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (916,696,900 samples, 0.30%)</title><rect x="2.6104%" y="1781" width="0.2981%" height="15" fill="rgb(246,198,51)" fg:x="8027737261" fg:w="916696900"/><text x="2.8604%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (998,766,303 samples, 0.32%)</title><rect x="2.5850%" y="1813" width="0.3248%" height="15" fill="rgb(205,22,4)" fg:x="7949747678" fg:w="998766303"/><text x="2.8350%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (923,151,456 samples, 0.30%)</title><rect x="2.6096%" y="1797" width="0.3002%" height="15" fill="rgb(206,3,8)" fg:x="8025362525" fg:w="923151456"/><text x="2.8596%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,071,495,341 samples, 0.35%)</title><rect x="2.5639%" y="1845" width="0.3484%" height="15" fill="rgb(251,23,15)" fg:x="7884975023" fg:w="1071495341"/><text x="2.8139%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,007,700,774 samples, 0.33%)</title><rect x="2.5847%" y="1829" width="0.3277%" height="15" fill="rgb(252,88,28)" fg:x="7948769590" fg:w="1007700774"/><text x="2.8347%" y="1839.50"></text></g><g><title>cranelift_codegen::machinst::compile::compile (35,378,244 samples, 0.01%)</title><rect x="2.9184%" y="1573" width="0.0115%" height="15" fill="rgb(212,127,14)" fg:x="8975090747" fg:w="35378244"/><text x="3.1684%" y="1583.50"></text></g><g><title>&lt;cranelift_codegen::isa::x64::X64Backend as cranelift_codegen::isa::TargetIsa&gt;::compile_function (42,815,257 samples, 0.01%)</title><rect x="2.9184%" y="1589" width="0.0139%" height="15" fill="rgb(247,145,37)" fg:x="8975090747" fg:w="42815257"/><text x="3.1684%" y="1599.50"></text></g><g><title>cranelift_codegen::context::Context::compile_stencil (60,880,423 samples, 0.02%)</title><rect x="2.9184%" y="1605" width="0.0198%" height="15" fill="rgb(209,117,53)" fg:x="8975090747" fg:w="60880423"/><text x="3.1684%" y="1615.50"></text></g><g><title>wasmtime_cranelift::compiler::FunctionCompiler::finish_with_info (78,976,293 samples, 0.03%)</title><rect x="2.9157%" y="1637" width="0.0257%" height="15" fill="rgb(212,90,42)" fg:x="8966882702" fg:w="78976293"/><text x="3.1657%" y="1647.50"></text></g><g><title>cranelift_codegen::incremental_cache::&lt;impl cranelift_codegen::context::Context&gt;::compile_with_cache (71,989,405 samples, 0.02%)</title><rect x="2.9180%" y="1621" width="0.0234%" height="15" fill="rgb(218,164,37)" fg:x="8973869590" fg:w="71989405"/><text x="3.1680%" y="1631.50"></text></g><g><title>&lt;wasmtime_cranelift::compiler::Compiler as wasmtime_environ::compile::Compiler&gt;::compile_function (87,515,815 samples, 0.03%)</title><rect x="2.9149%" y="1653" width="0.0285%" height="15" fill="rgb(246,65,34)" fg:x="8964257820" fg:w="87515815"/><text x="3.1649%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (91,963,974 samples, 0.03%)</title><rect x="2.9137%" y="1717" width="0.0299%" height="15" fill="rgb(231,100,33)" fg:x="8960744712" fg:w="91963974"/><text x="3.1637%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (90,253,893 samples, 0.03%)</title><rect x="2.9143%" y="1701" width="0.0293%" height="15" fill="rgb(228,126,14)" fg:x="8962454793" fg:w="90253893"/><text x="3.1643%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (90,253,893 samples, 0.03%)</title><rect x="2.9143%" y="1685" width="0.0293%" height="15" fill="rgb(215,173,21)" fg:x="8962454793" fg:w="90253893"/><text x="3.1643%" y="1695.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (90,253,893 samples, 0.03%)</title><rect x="2.9143%" y="1669" width="0.0293%" height="15" fill="rgb(210,6,40)" fg:x="8962454793" fg:w="90253893"/><text x="3.1643%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (98,144,488 samples, 0.03%)</title><rect x="2.9134%" y="1749" width="0.0319%" height="15" fill="rgb(212,48,18)" fg:x="8959834113" fg:w="98144488"/><text x="3.1634%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (97,233,889 samples, 0.03%)</title><rect x="2.9137%" y="1733" width="0.0316%" height="15" fill="rgb(230,214,11)" fg:x="8960744712" fg:w="97233889"/><text x="3.1637%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (100,678,377 samples, 0.03%)</title><rect x="2.9130%" y="1781" width="0.0327%" height="15" fill="rgb(254,105,39)" fg:x="8958507334" fg:w="100678377"/><text x="3.1630%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (99,351,598 samples, 0.03%)</title><rect x="2.9134%" y="1765" width="0.0323%" height="15" fill="rgb(245,158,5)" fg:x="8959834113" fg:w="99351598"/><text x="3.1634%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,252,722,001 samples, 0.41%)</title><rect x="2.5407%" y="1877" width="0.4073%" height="15" fill="rgb(249,208,11)" fg:x="7813613142" fg:w="1252722001"/><text x="2.7907%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,184,693,287 samples, 0.39%)</title><rect x="2.5629%" y="1861" width="0.3852%" height="15" fill="rgb(210,39,28)" fg:x="7881641856" fg:w="1184693287"/><text x="2.8129%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (109,864,779 samples, 0.04%)</title><rect x="2.9124%" y="1845" width="0.0357%" height="15" fill="rgb(211,56,53)" fg:x="8956470364" fg:w="109864779"/><text x="3.1624%" y="1855.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (109,864,779 samples, 0.04%)</title><rect x="2.9124%" y="1829" width="0.0357%" height="15" fill="rgb(226,201,30)" fg:x="8956470364" fg:w="109864779"/><text x="3.1624%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (109,864,779 samples, 0.04%)</title><rect x="2.9124%" y="1813" width="0.0357%" height="15" fill="rgb(239,101,34)" fg:x="8956470364" fg:w="109864779"/><text x="3.1624%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (107,827,809 samples, 0.04%)</title><rect x="2.9130%" y="1797" width="0.0351%" height="15" fill="rgb(226,209,5)" fg:x="8958507334" fg:w="107827809"/><text x="3.1630%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41,191,856 samples, 0.01%)</title><rect x="2.9509%" y="1813" width="0.0134%" height="15" fill="rgb(250,105,47)" fg:x="9075168619" fg:w="41191856"/><text x="3.2009%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37,111,356 samples, 0.01%)</title><rect x="2.9523%" y="1797" width="0.0121%" height="15" fill="rgb(230,72,3)" fg:x="9079249119" fg:w="37111356"/><text x="3.2023%" y="1807.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (45,683,934 samples, 0.01%)</title><rect x="2.9643%" y="1797" width="0.0149%" height="15" fill="rgb(232,218,39)" fg:x="9116360475" fg:w="45683934"/><text x="3.2143%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43,531,863 samples, 0.01%)</title><rect x="2.9650%" y="1781" width="0.0142%" height="15" fill="rgb(248,166,6)" fg:x="9118512546" fg:w="43531863"/><text x="3.2150%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43,531,863 samples, 0.01%)</title><rect x="2.9650%" y="1765" width="0.0142%" height="15" fill="rgb(247,89,20)" fg:x="9118512546" fg:w="43531863"/><text x="3.2150%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43,531,863 samples, 0.01%)</title><rect x="2.9650%" y="1749" width="0.0142%" height="15" fill="rgb(248,130,54)" fg:x="9118512546" fg:w="43531863"/><text x="3.2150%" y="1759.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (43,531,863 samples, 0.01%)</title><rect x="2.9650%" y="1733" width="0.0142%" height="15" fill="rgb(234,196,4)" fg:x="9118512546" fg:w="43531863"/><text x="3.2150%" y="1743.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (43,531,863 samples, 0.01%)</title><rect x="2.9650%" y="1717" width="0.0142%" height="15" fill="rgb(250,143,31)" fg:x="9118512546" fg:w="43531863"/><text x="3.2150%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1701" width="0.0108%" height="15" fill="rgb(211,110,34)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1711.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1685" width="0.0108%" height="15" fill="rgb(215,124,48)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1695.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1669" width="0.0108%" height="15" fill="rgb(216,46,13)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1653" width="0.0108%" height="15" fill="rgb(205,184,25)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1637" width="0.0108%" height="15" fill="rgb(228,1,10)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1621" width="0.0108%" height="15" fill="rgb(213,116,27)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1605" width="0.0108%" height="15" fill="rgb(241,95,50)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1615.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1589" width="0.0108%" height="15" fill="rgb(238,48,32)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1573" width="0.0108%" height="15" fill="rgb(235,113,49)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1583.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1557" width="0.0108%" height="15" fill="rgb(205,127,43)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1567.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1541" width="0.0108%" height="15" fill="rgb(250,162,2)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1525" width="0.0108%" height="15" fill="rgb(220,13,41)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1509" width="0.0108%" height="15" fill="rgb(249,221,25)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1493" width="0.0108%" height="15" fill="rgb(215,208,19)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33,198,833 samples, 0.01%)</title><rect x="2.9684%" y="1477" width="0.0108%" height="15" fill="rgb(236,175,2)" fg:x="9128845576" fg:w="33198833"/><text x="3.2184%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (31,995,491 samples, 0.01%)</title><rect x="2.9688%" y="1461" width="0.0104%" height="15" fill="rgb(241,52,2)" fg:x="9130048918" fg:w="31995491"/><text x="3.2188%" y="1471.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31,995,491 samples, 0.01%)</title><rect x="2.9688%" y="1445" width="0.0104%" height="15" fill="rgb(248,140,14)" fg:x="9130048918" fg:w="31995491"/><text x="3.2188%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31,995,491 samples, 0.01%)</title><rect x="2.9688%" y="1429" width="0.0104%" height="15" fill="rgb(253,22,42)" fg:x="9130048918" fg:w="31995491"/><text x="3.2188%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (31,995,491 samples, 0.01%)</title><rect x="2.9688%" y="1413" width="0.0104%" height="15" fill="rgb(234,61,47)" fg:x="9130048918" fg:w="31995491"/><text x="3.2188%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (31,995,491 samples, 0.01%)</title><rect x="2.9688%" y="1397" width="0.0104%" height="15" fill="rgb(208,226,15)" fg:x="9130048918" fg:w="31995491"/><text x="3.2188%" y="1407.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31,995,491 samples, 0.01%)</title><rect x="2.9688%" y="1381" width="0.0104%" height="15" fill="rgb(217,221,4)" fg:x="9130048918" fg:w="31995491"/><text x="3.2188%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (31,995,491 samples, 0.01%)</title><rect x="2.9688%" y="1365" width="0.0104%" height="15" fill="rgb(212,174,34)" fg:x="9130048918" fg:w="31995491"/><text x="3.2188%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (96,802,240 samples, 0.03%)</title><rect x="2.9481%" y="1845" width="0.0315%" height="15" fill="rgb(253,83,4)" fg:x="9066335143" fg:w="96802240"/><text x="3.1981%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (89,223,267 samples, 0.03%)</title><rect x="2.9505%" y="1829" width="0.0290%" height="15" fill="rgb(250,195,49)" fg:x="9073914116" fg:w="89223267"/><text x="3.2005%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (46,776,908 samples, 0.02%)</title><rect x="2.9643%" y="1813" width="0.0152%" height="15" fill="rgb(241,192,25)" fg:x="9116360475" fg:w="46776908"/><text x="3.2143%" y="1823.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (97,930,811 samples, 0.03%)</title><rect x="2.9481%" y="1861" width="0.0318%" height="15" fill="rgb(208,124,10)" fg:x="9066335143" fg:w="97930811"/><text x="3.1981%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,386,691,315 samples, 0.45%)</title><rect x="2.5295%" y="1909" width="0.4509%" height="15" fill="rgb(222,33,0)" fg:x="7779209197" fg:w="1386691315"/><text x="2.7795%" y="1919.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,356,612,656 samples, 0.44%)</title><rect x="2.5393%" y="1893" width="0.4411%" height="15" fill="rgb(234,209,28)" fg:x="7809287856" fg:w="1356612656"/><text x="2.7893%" y="1903.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (99,565,369 samples, 0.03%)</title><rect x="2.9481%" y="1877" width="0.0324%" height="15" fill="rgb(224,11,23)" fg:x="9066335143" fg:w="99565369"/><text x="3.1981%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,854,649 samples, 0.01%)</title><rect x="2.9825%" y="1317" width="0.0123%" height="15" fill="rgb(232,99,1)" fg:x="9172305855" fg:w="37854649"/><text x="3.2325%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36,611,666 samples, 0.01%)</title><rect x="2.9829%" y="1301" width="0.0119%" height="15" fill="rgb(237,95,45)" fg:x="9173548838" fg:w="36611666"/><text x="3.2329%" y="1311.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (35,447,796 samples, 0.01%)</title><rect x="2.9833%" y="1285" width="0.0115%" height="15" fill="rgb(208,109,11)" fg:x="9174712708" fg:w="35447796"/><text x="3.2333%" y="1295.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (35,447,796 samples, 0.01%)</title><rect x="2.9833%" y="1269" width="0.0115%" height="15" fill="rgb(216,190,48)" fg:x="9174712708" fg:w="35447796"/><text x="3.2333%" y="1279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35,447,796 samples, 0.01%)</title><rect x="2.9833%" y="1253" width="0.0115%" height="15" fill="rgb(251,171,36)" fg:x="9174712708" fg:w="35447796"/><text x="3.2333%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (35,447,796 samples, 0.01%)</title><rect x="2.9833%" y="1237" width="0.0115%" height="15" fill="rgb(230,62,22)" fg:x="9174712708" fg:w="35447796"/><text x="3.2333%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35,447,796 samples, 0.01%)</title><rect x="2.9833%" y="1221" width="0.0115%" height="15" fill="rgb(225,114,35)" fg:x="9174712708" fg:w="35447796"/><text x="3.2333%" y="1231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (35,447,796 samples, 0.01%)</title><rect x="2.9833%" y="1205" width="0.0115%" height="15" fill="rgb(215,118,42)" fg:x="9174712708" fg:w="35447796"/><text x="3.2333%" y="1215.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1189" width="0.0111%" height="15" fill="rgb(243,119,21)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1199.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1173" width="0.0111%" height="15" fill="rgb(252,177,53)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1157" width="0.0111%" height="15" fill="rgb(237,209,29)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1167.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1141" width="0.0111%" height="15" fill="rgb(212,65,23)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1151.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1125" width="0.0111%" height="15" fill="rgb(230,222,46)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1135.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1109" width="0.0111%" height="15" fill="rgb(215,135,32)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1093" width="0.0111%" height="15" fill="rgb(246,101,22)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1077" width="0.0111%" height="15" fill="rgb(206,107,13)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1087.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1061" width="0.0111%" height="15" fill="rgb(250,100,44)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1071.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1045" width="0.0111%" height="15" fill="rgb(231,147,38)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1029" width="0.0111%" height="15" fill="rgb(229,8,40)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="1013" width="0.0111%" height="15" fill="rgb(221,135,30)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="997" width="0.0111%" height="15" fill="rgb(249,193,18)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="981" width="0.0111%" height="15" fill="rgb(209,133,39)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="965" width="0.0111%" height="15" fill="rgb(232,100,14)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="949" width="0.0111%" height="15" fill="rgb(224,185,1)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="959.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="933" width="0.0111%" height="15" fill="rgb(223,139,8)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="917" width="0.0111%" height="15" fill="rgb(232,213,38)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="901" width="0.0111%" height="15" fill="rgb(207,94,22)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="885" width="0.0111%" height="15" fill="rgb(219,183,54)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="869" width="0.0111%" height="15" fill="rgb(216,185,54)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="853" width="0.0111%" height="15" fill="rgb(254,217,39)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="837" width="0.0111%" height="15" fill="rgb(240,178,23)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="821" width="0.0111%" height="15" fill="rgb(218,11,47)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="805" width="0.0111%" height="15" fill="rgb(218,51,51)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="789" width="0.0111%" height="15" fill="rgb(238,126,27)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="799.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="773" width="0.0111%" height="15" fill="rgb(249,202,22)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="757" width="0.0111%" height="15" fill="rgb(254,195,49)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="741" width="0.0111%" height="15" fill="rgb(208,123,14)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="725" width="0.0111%" height="15" fill="rgb(224,200,8)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="735.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="709" width="0.0111%" height="15" fill="rgb(217,61,36)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="693" width="0.0111%" height="15" fill="rgb(206,35,45)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34,235,636 samples, 0.01%)</title><rect x="2.9837%" y="677" width="0.0111%" height="15" fill="rgb(217,65,33)" fg:x="9175924868" fg:w="34235636"/><text x="3.2337%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41,439,126 samples, 0.01%)</title><rect x="2.9825%" y="1349" width="0.0135%" height="15" fill="rgb(222,158,48)" fg:x="9172305855" fg:w="41439126"/><text x="3.2325%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (41,439,126 samples, 0.01%)</title><rect x="2.9825%" y="1333" width="0.0135%" height="15" fill="rgb(254,2,54)" fg:x="9172305855" fg:w="41439126"/><text x="3.2325%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69,994,865 samples, 0.02%)</title><rect x="2.9821%" y="1381" width="0.0228%" height="15" fill="rgb(250,143,38)" fg:x="9171101770" fg:w="69994865"/><text x="3.2321%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (68,790,780 samples, 0.02%)</title><rect x="2.9825%" y="1365" width="0.0224%" height="15" fill="rgb(248,25,0)" fg:x="9172305855" fg:w="68790780"/><text x="3.2325%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (71,229,508 samples, 0.02%)</title><rect x="2.9821%" y="1413" width="0.0232%" height="15" fill="rgb(206,152,27)" fg:x="9171101770" fg:w="71229508"/><text x="3.2321%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (71,229,508 samples, 0.02%)</title><rect x="2.9821%" y="1397" width="0.0232%" height="15" fill="rgb(240,77,30)" fg:x="9171101770" fg:w="71229508"/><text x="3.2321%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (83,696,717 samples, 0.03%)</title><rect x="2.9809%" y="1541" width="0.0272%" height="15" fill="rgb(231,5,3)" fg:x="9167348949" fg:w="83696717"/><text x="3.2309%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (82,440,264 samples, 0.03%)</title><rect x="2.9813%" y="1525" width="0.0268%" height="15" fill="rgb(207,226,32)" fg:x="9168605402" fg:w="82440264"/><text x="3.2313%" y="1535.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (79,943,896 samples, 0.03%)</title><rect x="2.9821%" y="1509" width="0.0260%" height="15" fill="rgb(222,207,47)" fg:x="9171101770" fg:w="79943896"/><text x="3.2321%" y="1519.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (79,943,896 samples, 0.03%)</title><rect x="2.9821%" y="1493" width="0.0260%" height="15" fill="rgb(229,115,45)" fg:x="9171101770" fg:w="79943896"/><text x="3.2321%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (79,943,896 samples, 0.03%)</title><rect x="2.9821%" y="1477" width="0.0260%" height="15" fill="rgb(224,191,6)" fg:x="9171101770" fg:w="79943896"/><text x="3.2321%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (79,943,896 samples, 0.03%)</title><rect x="2.9821%" y="1461" width="0.0260%" height="15" fill="rgb(230,227,24)" fg:x="9171101770" fg:w="79943896"/><text x="3.2321%" y="1471.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (79,943,896 samples, 0.03%)</title><rect x="2.9821%" y="1445" width="0.0260%" height="15" fill="rgb(228,80,19)" fg:x="9171101770" fg:w="79943896"/><text x="3.2321%" y="1455.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (79,943,896 samples, 0.03%)</title><rect x="2.9821%" y="1429" width="0.0260%" height="15" fill="rgb(247,229,0)" fg:x="9171101770" fg:w="79943896"/><text x="3.2321%" y="1439.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1845" width="0.0498%" height="15" fill="rgb(237,194,15)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1829" width="0.0498%" height="15" fill="rgb(219,203,20)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1813" width="0.0498%" height="15" fill="rgb(234,128,8)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1823.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1797" width="0.0498%" height="15" fill="rgb(248,202,8)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1807.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1781" width="0.0498%" height="15" fill="rgb(206,104,37)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1765" width="0.0498%" height="15" fill="rgb(223,8,27)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1749" width="0.0498%" height="15" fill="rgb(216,217,28)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1759.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1733" width="0.0498%" height="15" fill="rgb(249,199,1)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1743.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1717" width="0.0498%" height="15" fill="rgb(240,85,17)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1701" width="0.0498%" height="15" fill="rgb(206,108,45)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1685" width="0.0498%" height="15" fill="rgb(245,210,41)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1669" width="0.0498%" height="15" fill="rgb(206,13,37)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1653" width="0.0498%" height="15" fill="rgb(250,61,18)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1637" width="0.0498%" height="15" fill="rgb(235,172,48)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1647.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1621" width="0.0498%" height="15" fill="rgb(249,201,17)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1605" width="0.0498%" height="15" fill="rgb(219,208,6)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1589" width="0.0498%" height="15" fill="rgb(248,31,23)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1599.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1573" width="0.0498%" height="15" fill="rgb(245,15,42)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1583.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (153,178,570 samples, 0.05%)</title><rect x="2.9809%" y="1557" width="0.0498%" height="15" fill="rgb(222,217,39)" fg:x="9167348949" fg:w="153178570"/><text x="3.2309%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (69,481,853 samples, 0.02%)</title><rect x="3.0081%" y="1541" width="0.0226%" height="15" fill="rgb(210,219,27)" fg:x="9251045666" fg:w="69481853"/><text x="3.2581%" y="1551.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (68,285,975 samples, 0.02%)</title><rect x="3.0085%" y="1525" width="0.0222%" height="15" fill="rgb(252,166,36)" fg:x="9252241544" fg:w="68285975"/><text x="3.2585%" y="1535.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (68,285,975 samples, 0.02%)</title><rect x="3.0085%" y="1509" width="0.0222%" height="15" fill="rgb(245,132,34)" fg:x="9252241544" fg:w="68285975"/><text x="3.2585%" y="1519.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1493" width="0.0181%" height="15" fill="rgb(236,54,3)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1477" width="0.0181%" height="15" fill="rgb(241,173,43)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1461" width="0.0181%" height="15" fill="rgb(215,190,9)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1445" width="0.0181%" height="15" fill="rgb(242,101,16)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1455.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1429" width="0.0181%" height="15" fill="rgb(223,190,21)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1439.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1413" width="0.0181%" height="15" fill="rgb(215,228,25)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1423.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1397" width="0.0181%" height="15" fill="rgb(225,36,22)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1381" width="0.0181%" height="15" fill="rgb(251,106,46)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1365" width="0.0181%" height="15" fill="rgb(208,90,1)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1375.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1349" width="0.0181%" height="15" fill="rgb(243,10,4)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1359.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1333" width="0.0181%" height="15" fill="rgb(212,137,27)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1317" width="0.0181%" height="15" fill="rgb(231,220,49)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1301" width="0.0181%" height="15" fill="rgb(237,96,20)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1311.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1285" width="0.0181%" height="15" fill="rgb(239,229,30)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1295.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1269" width="0.0181%" height="15" fill="rgb(219,65,33)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55,776,307 samples, 0.02%)</title><rect x="3.0126%" y="1253" width="0.0181%" height="15" fill="rgb(243,134,7)" fg:x="9264751212" fg:w="55776307"/><text x="3.2626%" y="1263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (30,854,140 samples, 0.01%)</title><rect x="3.0207%" y="1237" width="0.0100%" height="15" fill="rgb(216,177,54)" fg:x="9289673379" fg:w="30854140"/><text x="3.2707%" y="1247.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (30,854,140 samples, 0.01%)</title><rect x="3.0207%" y="1221" width="0.0100%" height="15" fill="rgb(211,160,20)" fg:x="9289673379" fg:w="30854140"/><text x="3.2707%" y="1231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (155,725,446 samples, 0.05%)</title><rect x="2.9805%" y="1909" width="0.0506%" height="15" fill="rgb(239,85,39)" fg:x="9165900512" fg:w="155725446"/><text x="3.2305%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (155,725,446 samples, 0.05%)</title><rect x="2.9805%" y="1893" width="0.0506%" height="15" fill="rgb(232,125,22)" fg:x="9165900512" fg:w="155725446"/><text x="3.2305%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (154,277,009 samples, 0.05%)</title><rect x="2.9809%" y="1877" width="0.0502%" height="15" fill="rgb(244,57,34)" fg:x="9167348949" fg:w="154277009"/><text x="3.2309%" y="1887.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (154,277,009 samples, 0.05%)</title><rect x="2.9809%" y="1861" width="0.0502%" height="15" fill="rgb(214,203,32)" fg:x="9167348949" fg:w="154277009"/><text x="3.2309%" y="1871.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (1,545,678,704 samples, 0.50%)</title><rect x="2.5288%" y="1925" width="0.5026%" height="15" fill="rgb(207,58,43)" fg:x="7776824178" fg:w="1545678704"/><text x="2.7788%" y="1935.50"></text></g><g><title>__GI___clone3 (1,640,056,031 samples, 0.53%)</title><rect x="2.5119%" y="2053" width="0.5333%" height="15" fill="rgb(215,193,15)" fg:x="7724888040" fg:w="1640056031"/><text x="2.7619%" y="2063.50"></text></g><g><title>start_thread (1,640,056,031 samples, 0.53%)</title><rect x="2.5119%" y="2037" width="0.5333%" height="15" fill="rgb(232,15,44)" fg:x="7724888040" fg:w="1640056031"/><text x="2.7619%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (1,640,056,031 samples, 0.53%)</title><rect x="2.5119%" y="2021" width="0.5333%" height="15" fill="rgb(212,3,48)" fg:x="7724888040" fg:w="1640056031"/><text x="2.7619%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (1,640,056,031 samples, 0.53%)</title><rect x="2.5119%" y="2005" width="0.5333%" height="15" fill="rgb(218,128,7)" fg:x="7724888040" fg:w="1640056031"/><text x="2.7619%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (1,640,056,031 samples, 0.53%)</title><rect x="2.5119%" y="1989" width="0.5333%" height="15" fill="rgb(226,216,39)" fg:x="7724888040" fg:w="1640056031"/><text x="2.7619%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,640,056,031 samples, 0.53%)</title><rect x="2.5119%" y="1973" width="0.5333%" height="15" fill="rgb(243,47,51)" fg:x="7724888040" fg:w="1640056031"/><text x="2.7619%" y="1983.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (1,640,056,031 samples, 0.53%)</title><rect x="2.5119%" y="1957" width="0.5333%" height="15" fill="rgb(241,183,40)" fg:x="7724888040" fg:w="1640056031"/><text x="2.7619%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (1,588,119,893 samples, 0.52%)</title><rect x="2.5288%" y="1941" width="0.5164%" height="15" fill="rgb(231,217,32)" fg:x="7776824178" fg:w="1588119893"/><text x="2.7788%" y="1951.50"></text></g><g><title>RayonWorker3 (1,687,166,308 samples, 0.55%)</title><rect x="2.5094%" y="2069" width="0.5486%" height="15" fill="rgb(229,61,38)" fg:x="7717222591" fg:w="1687166308"/><text x="2.7594%" y="2079.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (50,482,851 samples, 0.02%)</title><rect x="3.0605%" y="1957" width="0.0164%" height="15" fill="rgb(225,210,5)" fg:x="9412048795" fg:w="50482851"/><text x="3.3105%" y="1967.50"></text></g><g><title>[unknown] (185,009,260 samples, 0.06%)</title><rect x="3.0865%" y="1925" width="0.0602%" height="15" fill="rgb(231,79,45)" fg:x="9492065550" fg:w="185009260"/><text x="3.3365%" y="1935.50"></text></g><g><title>[unknown] (172,937,068 samples, 0.06%)</title><rect x="3.0904%" y="1909" width="0.0562%" height="15" fill="rgb(224,100,7)" fg:x="9504137742" fg:w="172937068"/><text x="3.3404%" y="1919.50"></text></g><g><title>[unknown] (172,869,853 samples, 0.06%)</title><rect x="3.0905%" y="1893" width="0.0562%" height="15" fill="rgb(241,198,18)" fg:x="9504204957" fg:w="172869853"/><text x="3.3405%" y="1903.50"></text></g><g><title>[unknown] (167,664,811 samples, 0.05%)</title><rect x="3.0921%" y="1877" width="0.0545%" height="15" fill="rgb(252,97,53)" fg:x="9509409999" fg:w="167664811"/><text x="3.3421%" y="1887.50"></text></g><g><title>[unknown] (158,256,966 samples, 0.05%)</title><rect x="3.0952%" y="1861" width="0.0515%" height="15" fill="rgb(220,88,7)" fg:x="9518817844" fg:w="158256966"/><text x="3.3452%" y="1871.50"></text></g><g><title>[unknown] (146,567,861 samples, 0.05%)</title><rect x="3.0990%" y="1845" width="0.0477%" height="15" fill="rgb(213,176,14)" fg:x="9530506949" fg:w="146567861"/><text x="3.3490%" y="1855.50"></text></g><g><title>[unknown] (118,478,077 samples, 0.04%)</title><rect x="3.1081%" y="1829" width="0.0385%" height="15" fill="rgb(246,73,7)" fg:x="9558596733" fg:w="118478077"/><text x="3.3581%" y="1839.50"></text></g><g><title>[unknown] (101,233,543 samples, 0.03%)</title><rect x="3.1138%" y="1813" width="0.0329%" height="15" fill="rgb(245,64,36)" fg:x="9575841267" fg:w="101233543"/><text x="3.3638%" y="1823.50"></text></g><g><title>[unknown] (91,905,006 samples, 0.03%)</title><rect x="3.1168%" y="1797" width="0.0299%" height="15" fill="rgb(245,80,10)" fg:x="9585169804" fg:w="91905006"/><text x="3.3668%" y="1807.50"></text></g><g><title>[unknown] (82,382,216 samples, 0.03%)</title><rect x="3.1199%" y="1781" width="0.0268%" height="15" fill="rgb(232,107,50)" fg:x="9594692594" fg:w="82382216"/><text x="3.3699%" y="1791.50"></text></g><g><title>[unknown] (74,584,259 samples, 0.02%)</title><rect x="3.1224%" y="1765" width="0.0243%" height="15" fill="rgb(253,3,0)" fg:x="9602490551" fg:w="74584259"/><text x="3.3724%" y="1775.50"></text></g><g><title>[unknown] (67,960,869 samples, 0.02%)</title><rect x="3.1246%" y="1749" width="0.0221%" height="15" fill="rgb(212,99,53)" fg:x="9609113941" fg:w="67960869"/><text x="3.3746%" y="1759.50"></text></g><g><title>[unknown] (59,638,799 samples, 0.02%)</title><rect x="3.1273%" y="1733" width="0.0194%" height="15" fill="rgb(249,111,54)" fg:x="9617436011" fg:w="59638799"/><text x="3.3773%" y="1743.50"></text></g><g><title>[unknown] (53,078,275 samples, 0.02%)</title><rect x="3.1294%" y="1717" width="0.0173%" height="15" fill="rgb(249,55,30)" fg:x="9623996535" fg:w="53078275"/><text x="3.3794%" y="1727.50"></text></g><g><title>[unknown] (43,448,676 samples, 0.01%)</title><rect x="3.1325%" y="1701" width="0.0141%" height="15" fill="rgb(237,47,42)" fg:x="9633626134" fg:w="43448676"/><text x="3.3825%" y="1711.50"></text></g><g><title>[unknown] (38,608,054 samples, 0.01%)</title><rect x="3.1341%" y="1685" width="0.0126%" height="15" fill="rgb(211,20,18)" fg:x="9638466756" fg:w="38608054"/><text x="3.3841%" y="1695.50"></text></g><g><title>polling::Poller::wait_impl (196,831,720 samples, 0.06%)</title><rect x="3.0831%" y="1941" width="0.0640%" height="15" fill="rgb(231,203,46)" fg:x="9481535773" fg:w="196831720"/><text x="3.3331%" y="1951.50"></text></g><g><title>calloop::sys::Poll::poll (212,318,852 samples, 0.07%)</title><rect x="3.0794%" y="1957" width="0.0690%" height="15" fill="rgb(237,142,3)" fg:x="9470083746" fg:w="212318852"/><text x="3.3294%" y="1967.50"></text></g><g><title>Timer (282,196,117 samples, 0.09%)</title><rect x="3.0580%" y="2069" width="0.0918%" height="15" fill="rgb(241,107,1)" fg:x="9404388899" fg:w="282196117"/><text x="3.3080%" y="2079.50"></text></g><g><title>__GI___clone3 (282,196,117 samples, 0.09%)</title><rect x="3.0580%" y="2053" width="0.0918%" height="15" fill="rgb(229,83,13)" fg:x="9404388899" fg:w="282196117"/><text x="3.3080%" y="2063.50"></text></g><g><title>start_thread (282,196,117 samples, 0.09%)</title><rect x="3.0580%" y="2037" width="0.0918%" height="15" fill="rgb(241,91,40)" fg:x="9404388899" fg:w="282196117"/><text x="3.3080%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (282,196,117 samples, 0.09%)</title><rect x="3.0580%" y="2021" width="0.0918%" height="15" fill="rgb(225,3,45)" fg:x="9404388899" fg:w="282196117"/><text x="3.3080%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (282,196,117 samples, 0.09%)</title><rect x="3.0580%" y="2005" width="0.0918%" height="15" fill="rgb(244,223,14)" fg:x="9404388899" fg:w="282196117"/><text x="3.3080%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (282,196,117 samples, 0.09%)</title><rect x="3.0580%" y="1989" width="0.0918%" height="15" fill="rgb(224,124,37)" fg:x="9404388899" fg:w="282196117"/><text x="3.3080%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (279,784,582 samples, 0.09%)</title><rect x="3.0588%" y="1973" width="0.0910%" height="15" fill="rgb(251,171,30)" fg:x="9406800434" fg:w="279784582"/><text x="3.3088%" y="1983.50"></text></g><g><title>[libgit2.so.1.9.0] (57,463,976 samples, 0.02%)</title><rect x="3.1723%" y="1829" width="0.0187%" height="15" fill="rgb(236,46,54)" fg:x="9755801812" fg:w="57463976"/><text x="3.4223%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (78,269,969 samples, 0.03%)</title><rect x="3.1719%" y="1925" width="0.0255%" height="15" fill="rgb(245,213,5)" fg:x="9754809170" fg:w="78269969"/><text x="3.4219%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (78,269,969 samples, 0.03%)</title><rect x="3.1719%" y="1909" width="0.0255%" height="15" fill="rgb(230,144,27)" fg:x="9754809170" fg:w="78269969"/><text x="3.4219%" y="1919.50"></text></g><g><title>git_odb_read (78,269,969 samples, 0.03%)</title><rect x="3.1719%" y="1893" width="0.0255%" height="15" fill="rgb(220,86,6)" fg:x="9754809170" fg:w="78269969"/><text x="3.4219%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (78,269,969 samples, 0.03%)</title><rect x="3.1719%" y="1877" width="0.0255%" height="15" fill="rgb(240,20,13)" fg:x="9754809170" fg:w="78269969"/><text x="3.4219%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (78,269,969 samples, 0.03%)</title><rect x="3.1719%" y="1861" width="0.0255%" height="15" fill="rgb(217,89,34)" fg:x="9754809170" fg:w="78269969"/><text x="3.4219%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (78,269,969 samples, 0.03%)</title><rect x="3.1719%" y="1845" width="0.0255%" height="15" fill="rgb(229,13,5)" fg:x="9754809170" fg:w="78269969"/><text x="3.4219%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (102,237,635 samples, 0.03%)</title><rect x="3.1719%" y="1941" width="0.0332%" height="15" fill="rgb(244,67,35)" fg:x="9754809170" fg:w="102237635"/><text x="3.4219%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (31,442,362 samples, 0.01%)</title><rect x="3.2301%" y="1797" width="0.0102%" height="15" fill="rgb(221,40,2)" fg:x="9933619569" fg:w="31442362"/><text x="3.4801%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (36,815,049 samples, 0.01%)</title><rect x="3.2287%" y="1813" width="0.0120%" height="15" fill="rgb(237,157,21)" fg:x="9929390003" fg:w="36815049"/><text x="3.4787%" y="1823.50"></text></g><g><title>git2::patch::Patch::from_buffers (38,030,509 samples, 0.01%)</title><rect x="3.2287%" y="1909" width="0.0124%" height="15" fill="rgb(222,94,11)" fg:x="9929390003" fg:w="38030509"/><text x="3.4787%" y="1919.50"></text></g><g><title>git_patch_from_buffers (38,030,509 samples, 0.01%)</title><rect x="3.2287%" y="1893" width="0.0124%" height="15" fill="rgb(249,113,6)" fg:x="9929390003" fg:w="38030509"/><text x="3.4787%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (38,030,509 samples, 0.01%)</title><rect x="3.2287%" y="1877" width="0.0124%" height="15" fill="rgb(238,137,36)" fg:x="9929390003" fg:w="38030509"/><text x="3.4787%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (38,030,509 samples, 0.01%)</title><rect x="3.2287%" y="1861" width="0.0124%" height="15" fill="rgb(210,102,26)" fg:x="9929390003" fg:w="38030509"/><text x="3.4787%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (38,030,509 samples, 0.01%)</title><rect x="3.2287%" y="1845" width="0.0124%" height="15" fill="rgb(218,30,30)" fg:x="9929390003" fg:w="38030509"/><text x="3.4787%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (38,030,509 samples, 0.01%)</title><rect x="3.2287%" y="1829" width="0.0124%" height="15" fill="rgb(214,67,26)" fg:x="9929390003" fg:w="38030509"/><text x="3.4787%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (46,051,801 samples, 0.01%)</title><rect x="3.2269%" y="1941" width="0.0150%" height="15" fill="rgb(251,9,53)" fg:x="9923865553" fg:w="46051801"/><text x="3.4769%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (46,051,801 samples, 0.01%)</title><rect x="3.2269%" y="1925" width="0.0150%" height="15" fill="rgb(228,204,25)" fg:x="9923865553" fg:w="46051801"/><text x="3.4769%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (91,079,689 samples, 0.03%)</title><rect x="3.2425%" y="1941" width="0.0296%" height="15" fill="rgb(207,153,8)" fg:x="9971658921" fg:w="91079689"/><text x="3.4925%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (83,909,435 samples, 0.03%)</title><rect x="3.2448%" y="1925" width="0.0273%" height="15" fill="rgb(242,9,16)" fg:x="9978829175" fg:w="83909435"/><text x="3.4948%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (79,261,824 samples, 0.03%)</title><rect x="3.2724%" y="1941" width="0.0258%" height="15" fill="rgb(217,211,10)" fg:x="10063775537" fg:w="79261824"/><text x="3.5224%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (33,901,217 samples, 0.01%)</title><rect x="3.3035%" y="1925" width="0.0110%" height="15" fill="rgb(219,228,52)" fg:x="10159513980" fg:w="33901217"/><text x="3.5535%" y="1935.50"></text></g><g><title>worktree::BackgroundScanner::reload_entries_for_paths::_{{closure}} (33,525,967 samples, 0.01%)</title><rect x="3.3037%" y="1909" width="0.0109%" height="15" fill="rgb(231,92,29)" fg:x="10159889230" fg:w="33525967"/><text x="3.5537%" y="1919.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (42,462,639 samples, 0.01%)</title><rect x="3.3262%" y="1909" width="0.0138%" height="15" fill="rgb(232,8,23)" fg:x="10229099081" fg:w="42462639"/><text x="3.5762%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (167,680,814 samples, 0.05%)</title><rect x="3.3026%" y="1941" width="0.0545%" height="15" fill="rgb(216,211,34)" fg:x="10156546201" fg:w="167680814"/><text x="3.5526%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (130,811,818 samples, 0.04%)</title><rect x="3.3146%" y="1925" width="0.0425%" height="15" fill="rgb(236,151,0)" fg:x="10193415197" fg:w="130811818"/><text x="3.5646%" y="1935.50"></text></g><g><title>stack__iter.constprop.0 (53,631,067 samples, 0.02%)</title><rect x="3.3914%" y="1845" width="0.0174%" height="15" fill="rgb(209,168,3)" fg:x="10429779848" fg:w="53631067"/><text x="3.6414%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (81,886,257 samples, 0.03%)</title><rect x="3.4280%" y="1845" width="0.0266%" height="15" fill="rgb(208,129,28)" fg:x="10542282880" fg:w="81886257"/><text x="3.6780%" y="1855.50"></text></g><g><title>ts_lex (75,967,863 samples, 0.02%)</title><rect x="3.4666%" y="1829" width="0.0247%" height="15" fill="rgb(229,78,22)" fg:x="10661049641" fg:w="75967863"/><text x="3.7166%" y="1839.50"></text></g><g><title>ts_wasm_store__call_lex_function (30,983,023 samples, 0.01%)</title><rect x="3.5033%" y="1829" width="0.0101%" height="15" fill="rgb(228,187,13)" fg:x="10773936257" fg:w="30983023"/><text x="3.7533%" y="1839.50"></text></g><g><title>ts_parser__lex (181,828,712 samples, 0.06%)</title><rect x="3.4546%" y="1845" width="0.0591%" height="15" fill="rgb(240,119,24)" fg:x="10624169137" fg:w="181828712"/><text x="3.7046%" y="1855.50"></text></g><g><title>ts_parser__recover (253,901,852 samples, 0.08%)</title><rect x="3.5138%" y="1845" width="0.0826%" height="15" fill="rgb(209,194,42)" fg:x="10805997849" fg:w="253901852"/><text x="3.7638%" y="1855.50"></text></g><g><title>ts_subtree_new_node (141,613,123 samples, 0.05%)</title><rect x="3.5503%" y="1829" width="0.0460%" height="15" fill="rgb(247,200,46)" fg:x="10918286578" fg:w="141613123"/><text x="3.8003%" y="1839.50"></text></g><g><title>ts_subtree_summarize_children (136,698,758 samples, 0.04%)</title><rect x="3.5519%" y="1813" width="0.0444%" height="15" fill="rgb(218,76,16)" fg:x="10923200943" fg:w="136698758"/><text x="3.8019%" y="1823.50"></text></g><g><title>ts_stack_remove_version (140,482,357 samples, 0.05%)</title><rect x="3.6006%" y="1845" width="0.0457%" height="15" fill="rgb(225,21,48)" fg:x="11073062418" fg:w="140482357"/><text x="3.8506%" y="1855.50"></text></g><g><title>stack_node_release (138,383,220 samples, 0.04%)</title><rect x="3.6013%" y="1829" width="0.0450%" height="15" fill="rgb(239,223,50)" fg:x="11075161555" fg:w="138383220"/><text x="3.8513%" y="1839.50"></text></g><g><title>ts_subtree_release (137,192,403 samples, 0.04%)</title><rect x="3.6017%" y="1813" width="0.0446%" height="15" fill="rgb(244,45,21)" fg:x="11076352372" fg:w="137192403"/><text x="3.8517%" y="1823.50"></text></g><g><title>ts_subtree_new_node (31,108,269 samples, 0.01%)</title><rect x="3.6575%" y="1845" width="0.0101%" height="15" fill="rgb(232,33,43)" fg:x="11248048712" fg:w="31108269"/><text x="3.9075%" y="1855.50"></text></g><g><title>ts_parser_parse (883,711,210 samples, 0.29%)</title><rect x="3.3807%" y="1861" width="0.2874%" height="15" fill="rgb(209,8,3)" fg:x="10396685714" fg:w="883711210"/><text x="3.6307%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (907,215,970 samples, 0.29%)</title><rect x="3.3734%" y="1893" width="0.2950%" height="15" fill="rgb(214,25,53)" fg:x="10374410847" fg:w="907215970"/><text x="3.6234%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (907,215,970 samples, 0.29%)</title><rect x="3.3734%" y="1877" width="0.2950%" height="15" fill="rgb(254,186,54)" fg:x="10374410847" fg:w="907215970"/><text x="3.6234%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (88,126,011 samples, 0.03%)</title><rect x="3.6729%" y="1877" width="0.0287%" height="15" fill="rgb(208,174,49)" fg:x="11295566585" fg:w="88126011"/><text x="3.9229%" y="1887.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (1,067,520,220 samples, 0.35%)</title><rect x="3.3571%" y="1941" width="0.3471%" height="15" fill="rgb(233,191,51)" fg:x="10324227015" fg:w="1067520220"/><text x="3.6071%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (1,067,520,220 samples, 0.35%)</title><rect x="3.3571%" y="1925" width="0.3471%" height="15" fill="rgb(222,134,10)" fg:x="10324227015" fg:w="1067520220"/><text x="3.6071%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (1,038,433,896 samples, 0.34%)</title><rect x="3.3666%" y="1909" width="0.3377%" height="15" fill="rgb(230,226,20)" fg:x="10353313339" fg:w="1038433896"/><text x="3.6166%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (97,396,547 samples, 0.03%)</title><rect x="3.6726%" y="1893" width="0.0317%" height="15" fill="rgb(251,111,25)" fg:x="11294350688" fg:w="97396547"/><text x="3.9226%" y="1903.50"></text></g><g><title>ts_language_table_entry (37,930,115 samples, 0.01%)</title><rect x="3.7245%" y="1861" width="0.0123%" height="15" fill="rgb(224,40,46)" fg:x="11454169603" fg:w="37930115"/><text x="3.9745%" y="1871.50"></text></g><g><title>ts_malloc_default (62,029,191 samples, 0.02%)</title><rect x="3.7581%" y="1829" width="0.0202%" height="15" fill="rgb(236,108,47)" fg:x="11557397161" fg:w="62029191"/><text x="4.0081%" y="1839.50"></text></g><g><title>malloc (62,029,191 samples, 0.02%)</title><rect x="3.7581%" y="1813" width="0.0202%" height="15" fill="rgb(234,93,0)" fg:x="11557397161" fg:w="62029191"/><text x="4.0081%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (91,825,487 samples, 0.03%)</title><rect x="3.7516%" y="1845" width="0.0299%" height="15" fill="rgb(224,213,32)" fg:x="11537555984" fg:w="91825487"/><text x="4.0016%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (65,157,389 samples, 0.02%)</title><rect x="3.8057%" y="1845" width="0.0212%" height="15" fill="rgb(251,11,48)" fg:x="11703881375" fg:w="65157389"/><text x="4.0557%" y="1855.50"></text></g><g><title>set_contains (32,765,651 samples, 0.01%)</title><rect x="3.8319%" y="1829" width="0.0107%" height="15" fill="rgb(236,173,5)" fg:x="11784311546" fg:w="32765651"/><text x="4.0819%" y="1839.50"></text></g><g><title>ts_lex (66,852,433 samples, 0.02%)</title><rect x="3.8450%" y="1829" width="0.0217%" height="15" fill="rgb(230,95,12)" fg:x="11824601917" fg:w="66852433"/><text x="4.0950%" y="1839.50"></text></g><g><title>ts_parser__lex (167,296,005 samples, 0.05%)</title><rect x="3.8269%" y="1845" width="0.0544%" height="15" fill="rgb(232,209,1)" fg:x="11769038764" fg:w="167296005"/><text x="4.0769%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (41,198,987 samples, 0.01%)</title><rect x="3.8895%" y="1845" width="0.0134%" height="15" fill="rgb(232,6,1)" fg:x="11961610122" fg:w="41198987"/><text x="4.1395%" y="1855.50"></text></g><g><title>ts_subtree_new_node (41,935,394 samples, 0.01%)</title><rect x="3.9046%" y="1845" width="0.0136%" height="15" fill="rgb(210,224,50)" fg:x="12008124763" fg:w="41935394"/><text x="4.1546%" y="1855.50"></text></g><g><title>ts_subtree_summarize_children (33,051,620 samples, 0.01%)</title><rect x="3.9075%" y="1829" width="0.0107%" height="15" fill="rgb(228,127,35)" fg:x="12017008537" fg:w="33051620"/><text x="4.1575%" y="1839.50"></text></g><g><title>ts_parser_parse (557,948,902 samples, 0.18%)</title><rect x="3.7372%" y="1861" width="0.1814%" height="15" fill="rgb(245,102,45)" fg:x="11493284512" fg:w="557948902"/><text x="3.9872%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (598,961,313 samples, 0.19%)</title><rect x="3.7245%" y="1877" width="0.1948%" height="15" fill="rgb(214,1,49)" fg:x="11454169603" fg:w="598961313"/><text x="3.9745%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (600,581,563 samples, 0.20%)</title><rect x="3.7245%" y="1893" width="0.1953%" height="15" fill="rgb(226,163,40)" fg:x="11454169603" fg:w="600581563"/><text x="3.9745%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (88,492,112 samples, 0.03%)</title><rect x="3.9297%" y="1877" width="0.0288%" height="15" fill="rgb(239,212,28)" fg:x="12085051655" fg:w="88492112"/><text x="4.1797%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (753,770,288 samples, 0.25%)</title><rect x="3.7171%" y="1909" width="0.2451%" height="15" fill="rgb(220,20,13)" fg:x="11431400939" fg:w="753770288"/><text x="3.9671%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (103,565,408 samples, 0.03%)</title><rect x="3.9285%" y="1893" width="0.0337%" height="15" fill="rgb(210,164,35)" fg:x="12081605819" fg:w="103565408"/><text x="4.1785%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (794,731,681 samples, 0.26%)</title><rect x="3.7042%" y="1941" width="0.2584%" height="15" fill="rgb(248,109,41)" fg:x="11391747235" fg:w="794731681"/><text x="3.9542%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (794,731,681 samples, 0.26%)</title><rect x="3.7042%" y="1925" width="0.2584%" height="15" fill="rgb(238,23,50)" fg:x="11391747235" fg:w="794731681"/><text x="3.9542%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,484,892,960 samples, 0.81%)</title><rect x="3.1572%" y="1957" width="0.8080%" height="15" fill="rgb(211,48,49)" fg:x="9709477266" fg:w="2484892960"/><text x="3.4072%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,501,779,545 samples, 0.81%)</title><rect x="3.1532%" y="1973" width="0.8135%" height="15" fill="rgb(223,36,21)" fg:x="9697218392" fg:w="2501779545"/><text x="3.4032%" y="1983.50"></text></g><g><title>__GI___clone3 (2,602,647,895 samples, 0.85%)</title><rect x="3.1528%" y="2053" width="0.8463%" height="15" fill="rgb(207,123,46)" fg:x="9695828928" fg:w="2602647895"/><text x="3.4028%" y="2063.50"></text></g><g><title>start_thread (2,602,647,895 samples, 0.85%)</title><rect x="3.1528%" y="2037" width="0.8463%" height="15" fill="rgb(240,218,32)" fg:x="9695828928" fg:w="2602647895"/><text x="3.4028%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,602,647,895 samples, 0.85%)</title><rect x="3.1528%" y="2021" width="0.8463%" height="15" fill="rgb(252,5,43)" fg:x="9695828928" fg:w="2602647895"/><text x="3.4028%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,602,647,895 samples, 0.85%)</title><rect x="3.1528%" y="2005" width="0.8463%" height="15" fill="rgb(252,84,19)" fg:x="9695828928" fg:w="2602647895"/><text x="3.4028%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,602,647,895 samples, 0.85%)</title><rect x="3.1528%" y="1989" width="0.8463%" height="15" fill="rgb(243,152,39)" fg:x="9695828928" fg:w="2602647895"/><text x="3.4028%" y="1999.50"></text></g><g><title>syscall (99,478,886 samples, 0.03%)</title><rect x="3.9667%" y="1973" width="0.0323%" height="15" fill="rgb(234,160,15)" fg:x="12198997937" fg:w="99478886"/><text x="4.2167%" y="1983.50"></text></g><g><title>[unknown] (94,165,763 samples, 0.03%)</title><rect x="3.9684%" y="1957" width="0.0306%" height="15" fill="rgb(237,34,20)" fg:x="12204311060" fg:w="94165763"/><text x="4.2184%" y="1967.50"></text></g><g><title>[unknown] (92,971,900 samples, 0.03%)</title><rect x="3.9688%" y="1941" width="0.0302%" height="15" fill="rgb(229,97,13)" fg:x="12205504923" fg:w="92971900"/><text x="4.2188%" y="1951.50"></text></g><g><title>[unknown] (92,971,900 samples, 0.03%)</title><rect x="3.9688%" y="1925" width="0.0302%" height="15" fill="rgb(234,71,50)" fg:x="12205504923" fg:w="92971900"/><text x="4.2188%" y="1935.50"></text></g><g><title>[unknown] (92,967,320 samples, 0.03%)</title><rect x="3.9688%" y="1909" width="0.0302%" height="15" fill="rgb(253,155,4)" fg:x="12205509503" fg:w="92967320"/><text x="4.2188%" y="1919.50"></text></g><g><title>[unknown] (87,286,781 samples, 0.03%)</title><rect x="3.9707%" y="1893" width="0.0284%" height="15" fill="rgb(222,185,37)" fg:x="12211190042" fg:w="87286781"/><text x="4.2207%" y="1903.50"></text></g><g><title>[unknown] (83,142,743 samples, 0.03%)</title><rect x="3.9720%" y="1877" width="0.0270%" height="15" fill="rgb(251,177,13)" fg:x="12215334080" fg:w="83142743"/><text x="4.2220%" y="1887.50"></text></g><g><title>[unknown] (74,357,225 samples, 0.02%)</title><rect x="3.9749%" y="1861" width="0.0242%" height="15" fill="rgb(250,179,40)" fg:x="12224119598" fg:w="74357225"/><text x="4.2249%" y="1871.50"></text></g><g><title>[unknown] (68,666,424 samples, 0.02%)</title><rect x="3.9767%" y="1845" width="0.0223%" height="15" fill="rgb(242,44,2)" fg:x="12229810399" fg:w="68666424"/><text x="4.2267%" y="1855.50"></text></g><g><title>[unknown] (64,995,432 samples, 0.02%)</title><rect x="3.9779%" y="1829" width="0.0211%" height="15" fill="rgb(216,177,13)" fg:x="12233481391" fg:w="64995432"/><text x="4.2279%" y="1839.50"></text></g><g><title>[unknown] (58,937,700 samples, 0.02%)</title><rect x="3.9799%" y="1813" width="0.0192%" height="15" fill="rgb(216,106,43)" fg:x="12239539123" fg:w="58937700"/><text x="4.2299%" y="1823.50"></text></g><g><title>[unknown] (56,703,484 samples, 0.02%)</title><rect x="3.9806%" y="1797" width="0.0184%" height="15" fill="rgb(216,183,2)" fg:x="12241773339" fg:w="56703484"/><text x="4.2306%" y="1807.50"></text></g><g><title>[unknown] (54,304,733 samples, 0.02%)</title><rect x="3.9814%" y="1781" width="0.0177%" height="15" fill="rgb(249,75,3)" fg:x="12244172090" fg:w="54304733"/><text x="4.2314%" y="1791.50"></text></g><g><title>[unknown] (48,733,397 samples, 0.02%)</title><rect x="3.9832%" y="1765" width="0.0158%" height="15" fill="rgb(219,67,39)" fg:x="12249743426" fg:w="48733397"/><text x="4.2332%" y="1775.50"></text></g><g><title>[unknown] (45,429,319 samples, 0.01%)</title><rect x="3.9843%" y="1749" width="0.0148%" height="15" fill="rgb(253,228,2)" fg:x="12253047504" fg:w="45429319"/><text x="4.2343%" y="1759.50"></text></g><g><title>[unknown] (36,820,502 samples, 0.01%)</title><rect x="3.9871%" y="1733" width="0.0120%" height="15" fill="rgb(235,138,27)" fg:x="12261656321" fg:w="36820502"/><text x="4.2371%" y="1743.50"></text></g><g><title>[unknown] (35,821,487 samples, 0.01%)</title><rect x="3.9874%" y="1717" width="0.0116%" height="15" fill="rgb(236,97,51)" fg:x="12262655336" fg:w="35821487"/><text x="4.2374%" y="1727.50"></text></g><g><title>Worker-0 (2,612,900,915 samples, 0.85%)</title><rect x="3.1498%" y="2069" width="0.8496%" height="15" fill="rgb(240,80,30)" fg:x="9686585016" fg:w="2612900915"/><text x="3.3998%" y="2079.50"></text></g><g><title>git2::repo::Repository::find_blob (30,798,815 samples, 0.01%)</title><rect x="4.0207%" y="1925" width="0.0100%" height="15" fill="rgb(230,178,19)" fg:x="12364867288" fg:w="30798815"/><text x="4.2707%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (30,798,815 samples, 0.01%)</title><rect x="4.0207%" y="1909" width="0.0100%" height="15" fill="rgb(210,190,27)" fg:x="12364867288" fg:w="30798815"/><text x="4.2707%" y="1919.50"></text></g><g><title>git_odb_read (30,798,815 samples, 0.01%)</title><rect x="4.0207%" y="1893" width="0.0100%" height="15" fill="rgb(222,107,31)" fg:x="12364867288" fg:w="30798815"/><text x="4.2707%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (30,798,815 samples, 0.01%)</title><rect x="4.0207%" y="1877" width="0.0100%" height="15" fill="rgb(216,127,34)" fg:x="12364867288" fg:w="30798815"/><text x="4.2707%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (30,798,815 samples, 0.01%)</title><rect x="4.0207%" y="1861" width="0.0100%" height="15" fill="rgb(234,116,52)" fg:x="12364867288" fg:w="30798815"/><text x="4.2707%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (30,798,815 samples, 0.01%)</title><rect x="4.0207%" y="1845" width="0.0100%" height="15" fill="rgb(222,124,15)" fg:x="12364867288" fg:w="30798815"/><text x="4.2707%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (52,417,521 samples, 0.02%)</title><rect x="4.0199%" y="1941" width="0.0170%" height="15" fill="rgb(231,179,28)" fg:x="12362448393" fg:w="52417521"/><text x="4.2699%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (45,907,985 samples, 0.01%)</title><rect x="4.0613%" y="1797" width="0.0149%" height="15" fill="rgb(226,93,45)" fg:x="12489897368" fg:w="45907985"/><text x="4.3113%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (54,265,062 samples, 0.02%)</title><rect x="4.0597%" y="1813" width="0.0176%" height="15" fill="rgb(215,8,51)" fg:x="12485052148" fg:w="54265062"/><text x="4.3097%" y="1823.50"></text></g><g><title>git2::patch::Patch::from_buffers (56,657,765 samples, 0.02%)</title><rect x="4.0593%" y="1909" width="0.0184%" height="15" fill="rgb(223,106,5)" fg:x="12483826666" fg:w="56657765"/><text x="4.3093%" y="1919.50"></text></g><g><title>git_patch_from_buffers (56,657,765 samples, 0.02%)</title><rect x="4.0593%" y="1893" width="0.0184%" height="15" fill="rgb(250,191,5)" fg:x="12483826666" fg:w="56657765"/><text x="4.3093%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (56,657,765 samples, 0.02%)</title><rect x="4.0593%" y="1877" width="0.0184%" height="15" fill="rgb(242,132,44)" fg:x="12483826666" fg:w="56657765"/><text x="4.3093%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (56,657,765 samples, 0.02%)</title><rect x="4.0593%" y="1861" width="0.0184%" height="15" fill="rgb(251,152,29)" fg:x="12483826666" fg:w="56657765"/><text x="4.3093%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (55,432,283 samples, 0.02%)</title><rect x="4.0597%" y="1845" width="0.0180%" height="15" fill="rgb(218,179,5)" fg:x="12485052148" fg:w="55432283"/><text x="4.3097%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (55,432,283 samples, 0.02%)</title><rect x="4.0597%" y="1829" width="0.0180%" height="15" fill="rgb(227,67,19)" fg:x="12485052148" fg:w="55432283"/><text x="4.3097%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (63,557,887 samples, 0.02%)</title><rect x="4.0579%" y="1941" width="0.0207%" height="15" fill="rgb(233,119,31)" fg:x="12479348591" fg:w="63557887"/><text x="4.3079%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (63,557,887 samples, 0.02%)</title><rect x="4.0579%" y="1925" width="0.0207%" height="15" fill="rgb(241,120,22)" fg:x="12479348591" fg:w="63557887"/><text x="4.3079%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (90,092,853 samples, 0.03%)</title><rect x="4.0792%" y="1941" width="0.0293%" height="15" fill="rgb(224,102,30)" fg:x="12545022577" fg:w="90092853"/><text x="4.3292%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (77,930,496 samples, 0.03%)</title><rect x="4.0832%" y="1925" width="0.0253%" height="15" fill="rgb(210,164,37)" fg:x="12557184934" fg:w="77930496"/><text x="4.3332%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (88,344,996 samples, 0.03%)</title><rect x="4.1095%" y="1941" width="0.0287%" height="15" fill="rgb(226,191,16)" fg:x="12638060478" fg:w="88344996"/><text x="4.3595%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (38,559,164 samples, 0.01%)</title><rect x="4.1395%" y="1925" width="0.0125%" height="15" fill="rgb(214,40,45)" fg:x="12730351106" fg:w="38559164"/><text x="4.3895%" y="1935.50"></text></g><g><title>worktree::BackgroundScanner::reload_entries_for_paths::_{{closure}} (36,369,308 samples, 0.01%)</title><rect x="4.1402%" y="1909" width="0.0118%" height="15" fill="rgb(244,29,26)" fg:x="12732540962" fg:w="36369308"/><text x="4.3902%" y="1919.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (32,543,477 samples, 0.01%)</title><rect x="4.1606%" y="1909" width="0.0106%" height="15" fill="rgb(216,16,5)" fg:x="12795161169" fg:w="32543477"/><text x="4.4106%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (166,285,941 samples, 0.05%)</title><rect x="4.1382%" y="1941" width="0.0541%" height="15" fill="rgb(249,76,35)" fg:x="12726405474" fg:w="166285941"/><text x="4.3882%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (123,781,145 samples, 0.04%)</title><rect x="4.1520%" y="1925" width="0.0402%" height="15" fill="rgb(207,11,44)" fg:x="12768910270" fg:w="123781145"/><text x="4.4020%" y="1935.50"></text></g><g><title>ts_language_table_entry (37,491,246 samples, 0.01%)</title><rect x="4.2051%" y="1861" width="0.0122%" height="15" fill="rgb(228,190,49)" fg:x="12932246571" fg:w="37491246"/><text x="4.4551%" y="1871.50"></text></g><g><title>ts_malloc_default (55,588,175 samples, 0.02%)</title><rect x="4.2397%" y="1829" width="0.0181%" height="15" fill="rgb(214,173,12)" fg:x="13038439617" fg:w="55588175"/><text x="4.4897%" y="1839.50"></text></g><g><title>malloc (55,588,175 samples, 0.02%)</title><rect x="4.2397%" y="1813" width="0.0181%" height="15" fill="rgb(218,26,35)" fg:x="13038439617" fg:w="55588175"/><text x="4.4897%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (90,640,406 samples, 0.03%)</title><rect x="4.2303%" y="1845" width="0.0295%" height="15" fill="rgb(220,200,19)" fg:x="13009633314" fg:w="90640406"/><text x="4.4803%" y="1855.50"></text></g><g><title>set_contains (45,359,621 samples, 0.01%)</title><rect x="4.2876%" y="1829" width="0.0147%" height="15" fill="rgb(239,95,49)" fg:x="13185769949" fg:w="45359621"/><text x="4.5376%" y="1839.50"></text></g><g><title>ts_lex (93,889,221 samples, 0.03%)</title><rect x="4.3037%" y="1829" width="0.0305%" height="15" fill="rgb(235,85,53)" fg:x="13235438816" fg:w="93889221"/><text x="4.5537%" y="1839.50"></text></g><g><title>ts_parser__lex (193,210,036 samples, 0.06%)</title><rect x="4.2832%" y="1845" width="0.0628%" height="15" fill="rgb(233,133,31)" fg:x="13172441498" fg:w="193210036"/><text x="4.5332%" y="1855.50"></text></g><g><title>ts_parser_parse (478,006,356 samples, 0.16%)</title><rect x="4.2181%" y="1861" width="0.1554%" height="15" fill="rgb(218,25,20)" fg:x="12972069777" fg:w="478006356"/><text x="4.4681%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (520,074,261 samples, 0.17%)</title><rect x="4.2047%" y="1893" width="0.1691%" height="15" fill="rgb(252,210,38)" fg:x="12931011730" fg:w="520074261"/><text x="4.4547%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (520,074,261 samples, 0.17%)</title><rect x="4.2047%" y="1877" width="0.1691%" height="15" fill="rgb(242,134,21)" fg:x="12931011730" fg:w="520074261"/><text x="4.4547%" y="1887.50"></text></g><g><title>ts_tree_cursor_current_status (35,869,383 samples, 0.01%)</title><rect x="4.3961%" y="1861" width="0.0117%" height="15" fill="rgb(213,28,48)" fg:x="13519586608" fg:w="35869383"/><text x="4.6461%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (115,175,114 samples, 0.04%)</title><rect x="4.3820%" y="1877" width="0.0375%" height="15" fill="rgb(250,196,2)" fg:x="13476233729" fg:w="115175114"/><text x="4.6320%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (709,348,898 samples, 0.23%)</title><rect x="4.1923%" y="1925" width="0.2307%" height="15" fill="rgb(227,5,17)" fg:x="12892765743" fg:w="709348898"/><text x="4.4423%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (692,902,619 samples, 0.23%)</title><rect x="4.1977%" y="1909" width="0.2253%" height="15" fill="rgb(221,226,24)" fg:x="12909212022" fg:w="692902619"/><text x="4.4477%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (130,826,397 samples, 0.04%)</title><rect x="4.3804%" y="1893" width="0.0425%" height="15" fill="rgb(211,5,48)" fg:x="13471288244" fg:w="130826397"/><text x="4.6304%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (713,759,098 samples, 0.23%)</title><rect x="4.1923%" y="1941" width="0.2321%" height="15" fill="rgb(219,150,6)" fg:x="12892765743" fg:w="713759098"/><text x="4.4423%" y="1951.50"></text></g><g><title>ts_language_table_entry (32,789,105 samples, 0.01%)</title><rect x="4.4488%" y="1861" width="0.0107%" height="15" fill="rgb(251,46,16)" fg:x="13681658189" fg:w="32789105"/><text x="4.6988%" y="1871.50"></text></g><g><title>ts_malloc_default (57,115,620 samples, 0.02%)</title><rect x="4.4780%" y="1829" width="0.0186%" height="15" fill="rgb(220,204,40)" fg:x="13771470468" fg:w="57115620"/><text x="4.7280%" y="1839.50"></text></g><g><title>malloc (57,115,620 samples, 0.02%)</title><rect x="4.4780%" y="1813" width="0.0186%" height="15" fill="rgb(211,85,2)" fg:x="13771470468" fg:w="57115620"/><text x="4.7280%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (84,955,663 samples, 0.03%)</title><rect x="4.4711%" y="1845" width="0.0276%" height="15" fill="rgb(229,17,7)" fg:x="13750190719" fg:w="84955663"/><text x="4.7211%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (46,146,744 samples, 0.02%)</title><rect x="4.5190%" y="1845" width="0.0150%" height="15" fill="rgb(239,72,28)" fg:x="13897481592" fg:w="46146744"/><text x="4.7690%" y="1855.50"></text></g><g><title>ts_lex (76,131,799 samples, 0.02%)</title><rect x="4.5480%" y="1829" width="0.0248%" height="15" fill="rgb(230,47,54)" fg:x="13986665909" fg:w="76131799"/><text x="4.7980%" y="1839.50"></text></g><g><title>ts_parser__lex (146,606,417 samples, 0.05%)</title><rect x="4.5340%" y="1845" width="0.0477%" height="15" fill="rgb(214,50,8)" fg:x="13943628336" fg:w="146606417"/><text x="4.7840%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (37,699,118 samples, 0.01%)</title><rect x="4.5886%" y="1845" width="0.0123%" height="15" fill="rgb(216,198,43)" fg:x="14111395763" fg:w="37699118"/><text x="4.8386%" y="1855.50"></text></g><g><title>ts_subtree_new_node (38,260,167 samples, 0.01%)</title><rect x="4.6026%" y="1845" width="0.0124%" height="15" fill="rgb(234,20,35)" fg:x="14154619154" fg:w="38260167"/><text x="4.8526%" y="1855.50"></text></g><g><title>ts_subtree_summarize_children (32,193,200 samples, 0.01%)</title><rect x="4.6046%" y="1829" width="0.0105%" height="15" fill="rgb(254,45,19)" fg:x="14160686121" fg:w="32193200"/><text x="4.8546%" y="1839.50"></text></g><g><title>ts_parser_parse (478,934,656 samples, 0.16%)</title><rect x="4.4606%" y="1861" width="0.1557%" height="15" fill="rgb(219,14,44)" fg:x="13717714809" fg:w="478934656"/><text x="4.7106%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (518,260,329 samples, 0.17%)</title><rect x="4.4485%" y="1877" width="0.1685%" height="15" fill="rgb(217,220,26)" fg:x="13680616002" fg:w="518260329"/><text x="4.6985%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (521,663,295 samples, 0.17%)</title><rect x="4.4476%" y="1893" width="0.1696%" height="15" fill="rgb(213,158,28)" fg:x="13678024700" fg:w="521663295"/><text x="4.6976%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (80,730,141 samples, 0.03%)</title><rect x="4.6245%" y="1877" width="0.0263%" height="15" fill="rgb(252,51,52)" fg:x="14221980646" fg:w="80730141"/><text x="4.8745%" y="1887.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (703,002,480 samples, 0.23%)</title><rect x="4.4244%" y="1941" width="0.2286%" height="15" fill="rgb(246,89,16)" fg:x="13606524841" fg:w="703002480"/><text x="4.6744%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (703,002,480 samples, 0.23%)</title><rect x="4.4244%" y="1925" width="0.2286%" height="15" fill="rgb(216,158,49)" fg:x="13606524841" fg:w="703002480"/><text x="4.6744%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (658,492,867 samples, 0.21%)</title><rect x="4.4389%" y="1909" width="0.2141%" height="15" fill="rgb(236,107,19)" fg:x="13651034454" fg:w="658492867"/><text x="4.6889%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (88,595,837 samples, 0.03%)</title><rect x="4.6242%" y="1893" width="0.0288%" height="15" fill="rgb(228,185,30)" fg:x="14220931484" fg:w="88595837"/><text x="4.8742%" y="1903.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,026,289,840 samples, 0.66%)</title><rect x="4.0052%" y="1957" width="0.6589%" height="15" fill="rgb(246,134,8)" fg:x="12317479091" fg:w="2026289840"/><text x="4.2552%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,050,667,016 samples, 0.67%)</title><rect x="4.0001%" y="1973" width="0.6668%" height="15" fill="rgb(214,143,50)" fg:x="12301659402" fg:w="2050667016"/><text x="4.2501%" y="1983.50"></text></g><g><title>Worker-10 (2,171,971,397 samples, 0.71%)</title><rect x="3.9994%" y="2069" width="0.7063%" height="15" fill="rgb(228,75,8)" fg:x="12299485931" fg:w="2171971397"/><text x="4.2494%" y="2079.50"></text></g><g><title>__GI___clone3 (2,171,052,185 samples, 0.71%)</title><rect x="3.9997%" y="2053" width="0.7060%" height="15" fill="rgb(207,175,4)" fg:x="12300405143" fg:w="2171052185"/><text x="4.2497%" y="2063.50"></text></g><g><title>start_thread (2,171,052,185 samples, 0.71%)</title><rect x="3.9997%" y="2037" width="0.7060%" height="15" fill="rgb(205,108,24)" fg:x="12300405143" fg:w="2171052185"/><text x="4.2497%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,171,052,185 samples, 0.71%)</title><rect x="3.9997%" y="2021" width="0.7060%" height="15" fill="rgb(244,120,49)" fg:x="12300405143" fg:w="2171052185"/><text x="4.2497%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,171,052,185 samples, 0.71%)</title><rect x="3.9997%" y="2005" width="0.7060%" height="15" fill="rgb(223,47,38)" fg:x="12300405143" fg:w="2171052185"/><text x="4.2497%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,171,052,185 samples, 0.71%)</title><rect x="3.9997%" y="1989" width="0.7060%" height="15" fill="rgb(229,179,11)" fg:x="12300405143" fg:w="2171052185"/><text x="4.2497%" y="1999.50"></text></g><g><title>syscall (119,130,910 samples, 0.04%)</title><rect x="4.6669%" y="1973" width="0.0387%" height="15" fill="rgb(231,122,1)" fg:x="14352326418" fg:w="119130910"/><text x="4.9169%" y="1983.50"></text></g><g><title>[unknown] (112,530,410 samples, 0.04%)</title><rect x="4.6691%" y="1957" width="0.0366%" height="15" fill="rgb(245,119,9)" fg:x="14358926918" fg:w="112530410"/><text x="4.9191%" y="1967.50"></text></g><g><title>[unknown] (108,199,113 samples, 0.04%)</title><rect x="4.6705%" y="1941" width="0.0352%" height="15" fill="rgb(241,163,25)" fg:x="14363258215" fg:w="108199113"/><text x="4.9205%" y="1951.50"></text></g><g><title>[unknown] (106,503,865 samples, 0.03%)</title><rect x="4.6710%" y="1925" width="0.0346%" height="15" fill="rgb(217,214,3)" fg:x="14364953463" fg:w="106503865"/><text x="4.9210%" y="1935.50"></text></g><g><title>[unknown] (102,162,705 samples, 0.03%)</title><rect x="4.6724%" y="1909" width="0.0332%" height="15" fill="rgb(240,86,28)" fg:x="14369294623" fg:w="102162705"/><text x="4.9224%" y="1919.50"></text></g><g><title>[unknown] (95,587,763 samples, 0.03%)</title><rect x="4.6746%" y="1893" width="0.0311%" height="15" fill="rgb(215,47,9)" fg:x="14375869565" fg:w="95587763"/><text x="4.9246%" y="1903.50"></text></g><g><title>[unknown] (92,323,848 samples, 0.03%)</title><rect x="4.6756%" y="1877" width="0.0300%" height="15" fill="rgb(252,25,45)" fg:x="14379133480" fg:w="92323848"/><text x="4.9256%" y="1887.50"></text></g><g><title>[unknown] (84,849,428 samples, 0.03%)</title><rect x="4.6781%" y="1861" width="0.0276%" height="15" fill="rgb(251,164,9)" fg:x="14386607900" fg:w="84849428"/><text x="4.9281%" y="1871.50"></text></g><g><title>[unknown] (80,521,003 samples, 0.03%)</title><rect x="4.6795%" y="1845" width="0.0262%" height="15" fill="rgb(233,194,0)" fg:x="14390936325" fg:w="80521003"/><text x="4.9295%" y="1855.50"></text></g><g><title>[unknown] (77,166,487 samples, 0.03%)</title><rect x="4.6806%" y="1829" width="0.0251%" height="15" fill="rgb(249,111,24)" fg:x="14394290841" fg:w="77166487"/><text x="4.9306%" y="1839.50"></text></g><g><title>[unknown] (77,166,487 samples, 0.03%)</title><rect x="4.6806%" y="1813" width="0.0251%" height="15" fill="rgb(250,223,3)" fg:x="14394290841" fg:w="77166487"/><text x="4.9306%" y="1823.50"></text></g><g><title>[unknown] (75,366,364 samples, 0.02%)</title><rect x="4.6811%" y="1797" width="0.0245%" height="15" fill="rgb(236,178,37)" fg:x="14396090964" fg:w="75366364"/><text x="4.9311%" y="1807.50"></text></g><g><title>[unknown] (71,169,407 samples, 0.02%)</title><rect x="4.6825%" y="1781" width="0.0231%" height="15" fill="rgb(241,158,50)" fg:x="14400287921" fg:w="71169407"/><text x="4.9325%" y="1791.50"></text></g><g><title>[unknown] (67,599,461 samples, 0.02%)</title><rect x="4.6837%" y="1765" width="0.0220%" height="15" fill="rgb(213,121,41)" fg:x="14403857867" fg:w="67599461"/><text x="4.9337%" y="1775.50"></text></g><g><title>[unknown] (65,679,202 samples, 0.02%)</title><rect x="4.6843%" y="1749" width="0.0214%" height="15" fill="rgb(240,92,3)" fg:x="14405778126" fg:w="65679202"/><text x="4.9343%" y="1759.50"></text></g><g><title>[unknown] (54,799,691 samples, 0.02%)</title><rect x="4.6878%" y="1733" width="0.0178%" height="15" fill="rgb(205,123,3)" fg:x="14416657637" fg:w="54799691"/><text x="4.9378%" y="1743.50"></text></g><g><title>[unknown] (46,679,444 samples, 0.02%)</title><rect x="4.6905%" y="1717" width="0.0152%" height="15" fill="rgb(205,97,47)" fg:x="14424777884" fg:w="46679444"/><text x="4.9405%" y="1727.50"></text></g><g><title>[libgit2.so.1.9.0] (41,061,331 samples, 0.01%)</title><rect x="4.7292%" y="1829" width="0.0134%" height="15" fill="rgb(247,152,14)" fg:x="14543955915" fg:w="41061331"/><text x="4.9792%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (58,154,133 samples, 0.02%)</title><rect x="4.7285%" y="1925" width="0.0189%" height="15" fill="rgb(248,195,53)" fg:x="14541740583" fg:w="58154133"/><text x="4.9785%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (58,154,133 samples, 0.02%)</title><rect x="4.7285%" y="1909" width="0.0189%" height="15" fill="rgb(226,201,16)" fg:x="14541740583" fg:w="58154133"/><text x="4.9785%" y="1919.50"></text></g><g><title>git_odb_read (55,938,801 samples, 0.02%)</title><rect x="4.7292%" y="1893" width="0.0182%" height="15" fill="rgb(205,98,0)" fg:x="14543955915" fg:w="55938801"/><text x="4.9792%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (55,938,801 samples, 0.02%)</title><rect x="4.7292%" y="1877" width="0.0182%" height="15" fill="rgb(214,191,48)" fg:x="14543955915" fg:w="55938801"/><text x="4.9792%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (55,938,801 samples, 0.02%)</title><rect x="4.7292%" y="1861" width="0.0182%" height="15" fill="rgb(237,112,39)" fg:x="14543955915" fg:w="55938801"/><text x="4.9792%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (55,938,801 samples, 0.02%)</title><rect x="4.7292%" y="1845" width="0.0182%" height="15" fill="rgb(247,203,27)" fg:x="14543955915" fg:w="55938801"/><text x="4.9792%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (82,963,343 samples, 0.03%)</title><rect x="4.7278%" y="1941" width="0.0270%" height="15" fill="rgb(235,124,28)" fg:x="14539482077" fg:w="82963343"/><text x="4.9778%" y="1951.50"></text></g><g><title>&lt;gpui::platform::linux::dispatcher::LinuxDispatcher as gpui::platform::PlatformDispatcher&gt;::dispatch (31,303,547 samples, 0.01%)</title><rect x="4.7615%" y="1941" width="0.0102%" height="15" fill="rgb(208,207,46)" fg:x="14643289734" fg:w="31303547"/><text x="5.0115%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (35,586,628 samples, 0.01%)</title><rect x="4.7801%" y="1797" width="0.0116%" height="15" fill="rgb(234,176,4)" fg:x="14700452268" fg:w="35586628"/><text x="5.0301%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (42,288,959 samples, 0.01%)</title><rect x="4.7783%" y="1813" width="0.0138%" height="15" fill="rgb(230,133,28)" fg:x="14694968964" fg:w="42288959"/><text x="5.0283%" y="1823.50"></text></g><g><title>git2::patch::Patch::from_buffers (43,090,563 samples, 0.01%)</title><rect x="4.7783%" y="1909" width="0.0140%" height="15" fill="rgb(211,137,40)" fg:x="14694968964" fg:w="43090563"/><text x="5.0283%" y="1919.50"></text></g><g><title>git_patch_from_buffers (43,090,563 samples, 0.01%)</title><rect x="4.7783%" y="1893" width="0.0140%" height="15" fill="rgb(254,35,13)" fg:x="14694968964" fg:w="43090563"/><text x="5.0283%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (43,090,563 samples, 0.01%)</title><rect x="4.7783%" y="1877" width="0.0140%" height="15" fill="rgb(225,49,51)" fg:x="14694968964" fg:w="43090563"/><text x="5.0283%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (43,090,563 samples, 0.01%)</title><rect x="4.7783%" y="1861" width="0.0140%" height="15" fill="rgb(251,10,15)" fg:x="14694968964" fg:w="43090563"/><text x="5.0283%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (43,090,563 samples, 0.01%)</title><rect x="4.7783%" y="1845" width="0.0140%" height="15" fill="rgb(228,207,15)" fg:x="14694968964" fg:w="43090563"/><text x="5.0283%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (43,090,563 samples, 0.01%)</title><rect x="4.7783%" y="1829" width="0.0140%" height="15" fill="rgb(241,99,19)" fg:x="14694968964" fg:w="43090563"/><text x="5.0283%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (47,150,595 samples, 0.02%)</title><rect x="4.7774%" y="1941" width="0.0153%" height="15" fill="rgb(207,104,49)" fg:x="14692243437" fg:w="47150595"/><text x="5.0274%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (47,150,595 samples, 0.02%)</title><rect x="4.7774%" y="1925" width="0.0153%" height="15" fill="rgb(234,99,18)" fg:x="14692243437" fg:w="47150595"/><text x="5.0274%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (70,698,425 samples, 0.02%)</title><rect x="4.7956%" y="1925" width="0.0230%" height="15" fill="rgb(213,191,49)" fg:x="14747998509" fg:w="70698425"/><text x="5.0456%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (80,535,733 samples, 0.03%)</title><rect x="4.7928%" y="1941" width="0.0262%" height="15" fill="rgb(210,226,19)" fg:x="14739394032" fg:w="80535733"/><text x="5.0428%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (68,373,813 samples, 0.02%)</title><rect x="4.8198%" y="1941" width="0.0222%" height="15" fill="rgb(229,97,18)" fg:x="14822448827" fg:w="68373813"/><text x="5.0698%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::reload_entries_for_paths::_{{closure}} (58,361,016 samples, 0.02%)</title><rect x="4.8441%" y="1909" width="0.0190%" height="15" fill="rgb(211,167,15)" fg:x="14897362630" fg:w="58361016"/><text x="5.0941%" y="1919.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (61,825,947 samples, 0.02%)</title><rect x="4.8436%" y="1925" width="0.0201%" height="15" fill="rgb(210,169,34)" fg:x="14895636228" fg:w="61825947"/><text x="5.0936%" y="1935.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (33,715,384 samples, 0.01%)</title><rect x="4.8746%" y="1909" width="0.0110%" height="15" fill="rgb(241,121,31)" fg:x="14990965010" fg:w="33715384"/><text x="5.1246%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (202,823,145 samples, 0.07%)</title><rect x="4.8425%" y="1941" width="0.0660%" height="15" fill="rgb(232,40,11)" fg:x="14892340496" fg:w="202823145"/><text x="5.0925%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (137,701,466 samples, 0.04%)</title><rect x="4.8637%" y="1925" width="0.0448%" height="15" fill="rgb(205,86,26)" fg:x="14957462175" fg:w="137701466"/><text x="5.1137%" y="1935.50"></text></g><g><title>ts_language_table_entry (41,298,092 samples, 0.01%)</title><rect x="4.9257%" y="1861" width="0.0134%" height="15" fill="rgb(231,126,28)" fg:x="15148293356" fg:w="41298092"/><text x="5.1757%" y="1871.50"></text></g><g><title>ts_malloc_default (38,110,129 samples, 0.01%)</title><rect x="4.9605%" y="1829" width="0.0124%" height="15" fill="rgb(219,221,18)" fg:x="15255217503" fg:w="38110129"/><text x="5.2105%" y="1839.50"></text></g><g><title>malloc (36,858,080 samples, 0.01%)</title><rect x="4.9609%" y="1813" width="0.0120%" height="15" fill="rgb(211,40,0)" fg:x="15256469552" fg:w="36858080"/><text x="5.2109%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (67,163,569 samples, 0.02%)</title><rect x="4.9536%" y="1845" width="0.0218%" height="15" fill="rgb(239,85,43)" fg:x="15234027835" fg:w="67163569"/><text x="5.2036%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (74,885,502 samples, 0.02%)</title><rect x="5.0006%" y="1845" width="0.0244%" height="15" fill="rgb(231,55,21)" fg:x="15378678690" fg:w="74885502"/><text x="5.2506%" y="1855.50"></text></g><g><title>ts_lex (81,255,604 samples, 0.03%)</title><rect x="5.0346%" y="1829" width="0.0264%" height="15" fill="rgb(225,184,43)" fg:x="15483250303" fg:w="81255604"/><text x="5.2846%" y="1839.50"></text></g><g><title>ts_parser__lex (160,148,379 samples, 0.05%)</title><rect x="5.0250%" y="1845" width="0.0521%" height="15" fill="rgb(251,158,41)" fg:x="15453564192" fg:w="160148379"/><text x="5.2750%" y="1855.50"></text></g><g><title>ts_parser_parse (507,039,990 samples, 0.16%)</title><rect x="4.9400%" y="1861" width="0.1649%" height="15" fill="rgb(234,159,37)" fg:x="15192123582" fg:w="507039990"/><text x="5.1900%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (553,200,179 samples, 0.18%)</title><rect x="4.9253%" y="1877" width="0.1799%" height="15" fill="rgb(216,204,22)" fg:x="15147105190" fg:w="553200179"/><text x="5.1753%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (555,479,510 samples, 0.18%)</title><rect x="4.9250%" y="1893" width="0.1806%" height="15" fill="rgb(214,17,3)" fg:x="15146034098" fg:w="555479510"/><text x="5.1750%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (94,720,946 samples, 0.03%)</title><rect x="5.1135%" y="1877" width="0.0308%" height="15" fill="rgb(212,111,17)" fg:x="15725866794" fg:w="94720946"/><text x="5.3635%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (733,687,193 samples, 0.24%)</title><rect x="4.9085%" y="1925" width="0.2386%" height="15" fill="rgb(221,157,24)" fg:x="15095163641" fg:w="733687193"/><text x="5.1585%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (705,391,032 samples, 0.23%)</title><rect x="4.9177%" y="1909" width="0.2294%" height="15" fill="rgb(252,16,13)" fg:x="15123459802" fg:w="705391032"/><text x="5.1677%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (105,349,126 samples, 0.03%)</title><rect x="5.1128%" y="1893" width="0.0343%" height="15" fill="rgb(221,62,2)" fg:x="15723501708" fg:w="105349126"/><text x="5.3628%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (734,571,923 samples, 0.24%)</title><rect x="4.9085%" y="1941" width="0.2389%" height="15" fill="rgb(247,87,22)" fg:x="15095163641" fg:w="734571923"/><text x="5.1585%" y="1951.50"></text></g><g><title>ts_malloc_default (64,820,485 samples, 0.02%)</title><rect x="5.1947%" y="1829" width="0.0211%" height="15" fill="rgb(215,73,9)" fg:x="15975609332" fg:w="64820485"/><text x="5.4447%" y="1839.50"></text></g><g><title>malloc (64,820,485 samples, 0.02%)</title><rect x="5.1947%" y="1813" width="0.0211%" height="15" fill="rgb(207,175,33)" fg:x="15975609332" fg:w="64820485"/><text x="5.4447%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (95,900,638 samples, 0.03%)</title><rect x="5.1873%" y="1845" width="0.0312%" height="15" fill="rgb(243,129,54)" fg:x="15952853163" fg:w="95900638"/><text x="5.4373%" y="1855.50"></text></g><g><title>ts_lex (82,639,405 samples, 0.03%)</title><rect x="5.2611%" y="1829" width="0.0269%" height="15" fill="rgb(227,119,45)" fg:x="16179606795" fg:w="82639405"/><text x="5.5111%" y="1839.50"></text></g><g><title>ts_parser__lex (146,792,318 samples, 0.05%)</title><rect x="5.2489%" y="1845" width="0.0477%" height="15" fill="rgb(205,109,36)" fg:x="16142091665" fg:w="146792318"/><text x="5.4989%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (39,421,353 samples, 0.01%)</title><rect x="5.3044%" y="1845" width="0.0128%" height="15" fill="rgb(205,6,39)" fg:x="16312737661" fg:w="39421353"/><text x="5.5544%" y="1855.50"></text></g><g><title>ts_parser_parse (476,286,111 samples, 0.15%)</title><rect x="5.1753%" y="1861" width="0.1549%" height="15" fill="rgb(221,32,16)" fg:x="15915798341" fg:w="476286111"/><text x="5.4253%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (501,063,568 samples, 0.16%)</title><rect x="5.1676%" y="1893" width="0.1629%" height="15" fill="rgb(228,144,50)" fg:x="15892213284" fg:w="501063568"/><text x="5.4176%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (501,063,568 samples, 0.16%)</title><rect x="5.1676%" y="1877" width="0.1629%" height="15" fill="rgb(229,201,53)" fg:x="15892213284" fg:w="501063568"/><text x="5.4176%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (82,174,594 samples, 0.03%)</title><rect x="5.3373%" y="1877" width="0.0267%" height="15" fill="rgb(249,153,27)" fg:x="16414130946" fg:w="82174594"/><text x="5.5873%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (628,986,740 samples, 0.20%)</title><rect x="5.1624%" y="1909" width="0.2045%" height="15" fill="rgb(227,106,25)" fg:x="15876266003" fg:w="628986740"/><text x="5.4124%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (96,157,064 samples, 0.03%)</title><rect x="5.3357%" y="1893" width="0.0313%" height="15" fill="rgb(230,65,29)" fg:x="16409095679" fg:w="96157064"/><text x="5.5857%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (677,256,510 samples, 0.22%)</title><rect x="5.1473%" y="1941" width="0.2202%" height="15" fill="rgb(221,57,46)" fg:x="15829735564" fg:w="677256510"/><text x="5.3973%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (677,256,510 samples, 0.22%)</title><rect x="5.1473%" y="1925" width="0.2202%" height="15" fill="rgb(229,161,17)" fg:x="15829735564" fg:w="677256510"/><text x="5.3973%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,022,986,888 samples, 0.66%)</title><rect x="4.7144%" y="1957" width="0.6578%" height="15" fill="rgb(222,213,11)" fg:x="14498465736" fg:w="2022986888"/><text x="4.9644%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,057,027,398 samples, 0.67%)</title><rect x="4.7062%" y="1973" width="0.6689%" height="15" fill="rgb(235,35,13)" fg:x="14473180080" fg:w="2057027398"/><text x="4.9562%" y="1983.50"></text></g><g><title>__GI___clone3 (2,167,541,292 samples, 0.70%)</title><rect x="4.7056%" y="2053" width="0.7048%" height="15" fill="rgb(233,158,34)" fg:x="14471457328" fg:w="2167541292"/><text x="4.9556%" y="2063.50"></text></g><g><title>start_thread (2,167,175,671 samples, 0.70%)</title><rect x="4.7058%" y="2037" width="0.7047%" height="15" fill="rgb(215,151,48)" fg:x="14471822949" fg:w="2167175671"/><text x="4.9558%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,167,175,671 samples, 0.70%)</title><rect x="4.7058%" y="2021" width="0.7047%" height="15" fill="rgb(229,84,14)" fg:x="14471822949" fg:w="2167175671"/><text x="4.9558%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,167,175,671 samples, 0.70%)</title><rect x="4.7058%" y="2005" width="0.7047%" height="15" fill="rgb(229,68,14)" fg:x="14471822949" fg:w="2167175671"/><text x="4.9558%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,167,175,671 samples, 0.70%)</title><rect x="4.7058%" y="1989" width="0.7047%" height="15" fill="rgb(243,106,26)" fg:x="14471822949" fg:w="2167175671"/><text x="4.9558%" y="1999.50"></text></g><g><title>syscall (107,682,464 samples, 0.04%)</title><rect x="5.3754%" y="1973" width="0.0350%" height="15" fill="rgb(206,45,38)" fg:x="16531316156" fg:w="107682464"/><text x="5.6254%" y="1983.50"></text></g><g><title>[unknown] (99,738,161 samples, 0.03%)</title><rect x="5.3780%" y="1957" width="0.0324%" height="15" fill="rgb(226,6,15)" fg:x="16539260459" fg:w="99738161"/><text x="5.6280%" y="1967.50"></text></g><g><title>[unknown] (94,612,574 samples, 0.03%)</title><rect x="5.3797%" y="1941" width="0.0308%" height="15" fill="rgb(232,22,54)" fg:x="16544386046" fg:w="94612574"/><text x="5.6297%" y="1951.50"></text></g><g><title>[unknown] (90,583,898 samples, 0.03%)</title><rect x="5.3810%" y="1925" width="0.0295%" height="15" fill="rgb(229,222,32)" fg:x="16548414722" fg:w="90583898"/><text x="5.6310%" y="1935.50"></text></g><g><title>[unknown] (87,478,705 samples, 0.03%)</title><rect x="5.3820%" y="1909" width="0.0284%" height="15" fill="rgb(228,62,29)" fg:x="16551519915" fg:w="87478705"/><text x="5.6320%" y="1919.50"></text></g><g><title>[unknown] (84,229,335 samples, 0.03%)</title><rect x="5.3831%" y="1893" width="0.0274%" height="15" fill="rgb(251,103,34)" fg:x="16554769285" fg:w="84229335"/><text x="5.6331%" y="1903.50"></text></g><g><title>[unknown] (79,202,670 samples, 0.03%)</title><rect x="5.3847%" y="1877" width="0.0258%" height="15" fill="rgb(233,12,30)" fg:x="16559795950" fg:w="79202670"/><text x="5.6347%" y="1887.50"></text></g><g><title>[unknown] (70,484,119 samples, 0.02%)</title><rect x="5.3875%" y="1861" width="0.0229%" height="15" fill="rgb(238,52,0)" fg:x="16568514501" fg:w="70484119"/><text x="5.6375%" y="1871.50"></text></g><g><title>[unknown] (68,783,309 samples, 0.02%)</title><rect x="5.3881%" y="1845" width="0.0224%" height="15" fill="rgb(223,98,5)" fg:x="16570215311" fg:w="68783309"/><text x="5.6381%" y="1855.50"></text></g><g><title>[unknown] (66,449,051 samples, 0.02%)</title><rect x="5.3889%" y="1829" width="0.0216%" height="15" fill="rgb(228,75,37)" fg:x="16572549569" fg:w="66449051"/><text x="5.6389%" y="1839.50"></text></g><g><title>[unknown] (62,908,380 samples, 0.02%)</title><rect x="5.3900%" y="1813" width="0.0205%" height="15" fill="rgb(205,115,49)" fg:x="16576090240" fg:w="62908380"/><text x="5.6400%" y="1823.50"></text></g><g><title>[unknown] (60,523,430 samples, 0.02%)</title><rect x="5.3908%" y="1797" width="0.0197%" height="15" fill="rgb(250,154,43)" fg:x="16578475190" fg:w="60523430"/><text x="5.6408%" y="1807.50"></text></g><g><title>[unknown] (57,002,204 samples, 0.02%)</title><rect x="5.3919%" y="1781" width="0.0185%" height="15" fill="rgb(226,43,29)" fg:x="16581996416" fg:w="57002204"/><text x="5.6419%" y="1791.50"></text></g><g><title>[unknown] (53,816,772 samples, 0.02%)</title><rect x="5.3930%" y="1765" width="0.0175%" height="15" fill="rgb(249,228,39)" fg:x="16585181848" fg:w="53816772"/><text x="5.6430%" y="1775.50"></text></g><g><title>[unknown] (49,130,555 samples, 0.02%)</title><rect x="5.3945%" y="1749" width="0.0160%" height="15" fill="rgb(216,79,43)" fg:x="16589868065" fg:w="49130555"/><text x="5.6445%" y="1759.50"></text></g><g><title>[unknown] (42,592,712 samples, 0.01%)</title><rect x="5.3966%" y="1733" width="0.0138%" height="15" fill="rgb(228,95,12)" fg:x="16596405908" fg:w="42592712"/><text x="5.6466%" y="1743.50"></text></g><g><title>[unknown] (35,881,021 samples, 0.01%)</title><rect x="5.3988%" y="1717" width="0.0117%" height="15" fill="rgb(249,221,15)" fg:x="16603117599" fg:w="35881021"/><text x="5.6488%" y="1727.50"></text></g><g><title>[unknown] (30,832,682 samples, 0.01%)</title><rect x="5.4004%" y="1701" width="0.0100%" height="15" fill="rgb(233,34,13)" fg:x="16608165938" fg:w="30832682"/><text x="5.6504%" y="1711.50"></text></g><g><title>Worker-11 (2,168,272,534 samples, 0.71%)</title><rect x="4.7056%" y="2069" width="0.7051%" height="15" fill="rgb(214,103,39)" fg:x="14471457328" fg:w="2168272534"/><text x="4.9556%" y="2079.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (44,058,389 samples, 0.01%)</title><rect x="5.4290%" y="1941" width="0.0143%" height="15" fill="rgb(251,126,39)" fg:x="16696166831" fg:w="44058389"/><text x="5.6790%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (32,370,312 samples, 0.01%)</title><rect x="5.4735%" y="1781" width="0.0105%" height="15" fill="rgb(214,216,36)" fg:x="16832937179" fg:w="32370312"/><text x="5.7235%" y="1791.50"></text></g><g><title>[libgit2.so.1.9.0] (53,791,616 samples, 0.02%)</title><rect x="5.4680%" y="1797" width="0.0175%" height="15" fill="rgb(220,221,8)" fg:x="16816010127" fg:w="53791616"/><text x="5.7180%" y="1807.50"></text></g><g><title>git2::patch::Patch::from_buffers (60,432,296 samples, 0.02%)</title><rect x="5.4666%" y="1909" width="0.0197%" height="15" fill="rgb(240,216,3)" fg:x="16811677661" fg:w="60432296"/><text x="5.7166%" y="1919.50"></text></g><g><title>git_patch_from_buffers (60,432,296 samples, 0.02%)</title><rect x="5.4666%" y="1893" width="0.0197%" height="15" fill="rgb(232,218,17)" fg:x="16811677661" fg:w="60432296"/><text x="5.7166%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (60,432,296 samples, 0.02%)</title><rect x="5.4666%" y="1877" width="0.0197%" height="15" fill="rgb(229,163,45)" fg:x="16811677661" fg:w="60432296"/><text x="5.7166%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (60,432,296 samples, 0.02%)</title><rect x="5.4666%" y="1861" width="0.0197%" height="15" fill="rgb(231,110,42)" fg:x="16811677661" fg:w="60432296"/><text x="5.7166%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (60,432,296 samples, 0.02%)</title><rect x="5.4666%" y="1845" width="0.0197%" height="15" fill="rgb(208,170,48)" fg:x="16811677661" fg:w="60432296"/><text x="5.7166%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (60,432,296 samples, 0.02%)</title><rect x="5.4666%" y="1829" width="0.0197%" height="15" fill="rgb(239,116,25)" fg:x="16811677661" fg:w="60432296"/><text x="5.7166%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (60,432,296 samples, 0.02%)</title><rect x="5.4666%" y="1813" width="0.0197%" height="15" fill="rgb(219,200,50)" fg:x="16811677661" fg:w="60432296"/><text x="5.7166%" y="1823.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (66,988,618 samples, 0.02%)</title><rect x="5.4648%" y="1941" width="0.0218%" height="15" fill="rgb(245,200,0)" fg:x="16806062710" fg:w="66988618"/><text x="5.7148%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (66,988,618 samples, 0.02%)</title><rect x="5.4648%" y="1925" width="0.0218%" height="15" fill="rgb(245,119,33)" fg:x="16806062710" fg:w="66988618"/><text x="5.7148%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (59,250,397 samples, 0.02%)</title><rect x="5.4891%" y="1925" width="0.0193%" height="15" fill="rgb(231,125,12)" fg:x="16880861885" fg:w="59250397"/><text x="5.7391%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (68,285,519 samples, 0.02%)</title><rect x="5.4866%" y="1941" width="0.0222%" height="15" fill="rgb(216,96,41)" fg:x="16873051328" fg:w="68285519"/><text x="5.7366%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (82,003,399 samples, 0.03%)</title><rect x="5.5102%" y="1941" width="0.0267%" height="15" fill="rgb(248,43,45)" fg:x="16945843647" fg:w="82003399"/><text x="5.7602%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (122,276,150 samples, 0.04%)</title><rect x="5.5445%" y="1925" width="0.0398%" height="15" fill="rgb(217,222,7)" fg:x="17051159411" fg:w="122276150"/><text x="5.7945%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (145,593,277 samples, 0.05%)</title><rect x="5.5369%" y="1941" width="0.0473%" height="15" fill="rgb(233,28,6)" fg:x="17027847046" fg:w="145593277"/><text x="5.7869%" y="1951.50"></text></g><g><title>ts_malloc_default (49,286,549 samples, 0.02%)</title><rect x="5.6349%" y="1829" width="0.0160%" height="15" fill="rgb(231,218,15)" fg:x="17329274453" fg:w="49286549"/><text x="5.8849%" y="1839.50"></text></g><g><title>malloc (49,286,549 samples, 0.02%)</title><rect x="5.6349%" y="1813" width="0.0160%" height="15" fill="rgb(226,171,48)" fg:x="17329274453" fg:w="49286549"/><text x="5.8849%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (74,817,866 samples, 0.02%)</title><rect x="5.6284%" y="1845" width="0.0243%" height="15" fill="rgb(235,201,9)" fg:x="17309336768" fg:w="74817866"/><text x="5.8784%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (63,767,193 samples, 0.02%)</title><rect x="5.6721%" y="1845" width="0.0207%" height="15" fill="rgb(217,80,15)" fg:x="17443785710" fg:w="63767193"/><text x="5.9221%" y="1855.50"></text></g><g><title>set_contains (33,399,698 samples, 0.01%)</title><rect x="5.6975%" y="1829" width="0.0109%" height="15" fill="rgb(219,152,8)" fg:x="17521859165" fg:w="33399698"/><text x="5.9475%" y="1839.50"></text></g><g><title>ts_lex (107,751,587 samples, 0.04%)</title><rect x="5.7084%" y="1829" width="0.0350%" height="15" fill="rgb(243,107,38)" fg:x="17555258863" fg:w="107751587"/><text x="5.9584%" y="1839.50"></text></g><g><title>ts_parser__lex (218,355,302 samples, 0.07%)</title><rect x="5.6929%" y="1845" width="0.0710%" height="15" fill="rgb(231,17,5)" fg:x="17507552903" fg:w="218355302"/><text x="5.9429%" y="1855.50"></text></g><g><title>ts_subtree_new_node (86,337,633 samples, 0.03%)</title><rect x="5.7920%" y="1829" width="0.0281%" height="15" fill="rgb(209,25,54)" fg:x="17812352266" fg:w="86337633"/><text x="6.0420%" y="1839.50"></text></g><g><title>ts_subtree_summarize_children (81,570,028 samples, 0.03%)</title><rect x="5.7935%" y="1813" width="0.0265%" height="15" fill="rgb(219,0,2)" fg:x="17817119871" fg:w="81570028"/><text x="6.0435%" y="1823.50"></text></g><g><title>ts_parser__recover (174,060,267 samples, 0.06%)</title><rect x="5.7639%" y="1845" width="0.0566%" height="15" fill="rgb(246,9,5)" fg:x="17725908205" fg:w="174060267"/><text x="6.0139%" y="1855.50"></text></g><g><title>ts_stack_remove_version (69,785,708 samples, 0.02%)</title><rect x="5.8230%" y="1845" width="0.0227%" height="15" fill="rgb(226,159,4)" fg:x="17907621213" fg:w="69785708"/><text x="6.0730%" y="1855.50"></text></g><g><title>stack_node_release (69,785,708 samples, 0.02%)</title><rect x="5.8230%" y="1829" width="0.0227%" height="15" fill="rgb(219,175,34)" fg:x="17907621213" fg:w="69785708"/><text x="6.0730%" y="1839.50"></text></g><g><title>ts_subtree_release (68,730,932 samples, 0.02%)</title><rect x="5.8233%" y="1813" width="0.0223%" height="15" fill="rgb(236,10,46)" fg:x="17908675989" fg:w="68730932"/><text x="6.0733%" y="1823.50"></text></g><g><title>ts_parser_parse (770,598,357 samples, 0.25%)</title><rect x="5.6140%" y="1861" width="0.2506%" height="15" fill="rgb(240,211,16)" fg:x="17264857691" fg:w="770598357"/><text x="5.8640%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (808,506,710 samples, 0.26%)</title><rect x="5.6024%" y="1893" width="0.2629%" height="15" fill="rgb(205,3,43)" fg:x="17229423922" fg:w="808506710"/><text x="5.8524%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (807,610,920 samples, 0.26%)</title><rect x="5.6027%" y="1877" width="0.2626%" height="15" fill="rgb(245,7,22)" fg:x="17230319712" fg:w="807610920"/><text x="5.8527%" y="1887.50"></text></g><g><title>ts_tree_cursor_current_status (41,956,657 samples, 0.01%)</title><rect x="5.8895%" y="1861" width="0.0136%" height="15" fill="rgb(239,132,32)" fg:x="18112312866" fg:w="41956657"/><text x="6.1395%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (126,209,483 samples, 0.04%)</title><rect x="5.8751%" y="1877" width="0.0410%" height="15" fill="rgb(228,202,34)" fg:x="18068046411" fg:w="126209483"/><text x="6.1251%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (998,706,783 samples, 0.32%)</title><rect x="5.5933%" y="1909" width="0.3247%" height="15" fill="rgb(254,200,22)" fg:x="17201155668" fg:w="998706783"/><text x="5.8433%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (138,603,856 samples, 0.05%)</title><rect x="5.8729%" y="1893" width="0.0451%" height="15" fill="rgb(219,10,39)" fg:x="18061258595" fg:w="138603856"/><text x="6.1229%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (1,028,851,550 samples, 0.33%)</title><rect x="5.5842%" y="1925" width="0.3345%" height="15" fill="rgb(226,210,39)" fg:x="17173440323" fg:w="1028851550"/><text x="5.8342%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (1,031,319,165 samples, 0.34%)</title><rect x="5.5842%" y="1941" width="0.3354%" height="15" fill="rgb(208,219,16)" fg:x="17173440323" fg:w="1031319165"/><text x="5.8342%" y="1951.50"></text></g><g><title>__memmove_avx512_unaligned_erms (39,379,631 samples, 0.01%)</title><rect x="5.9213%" y="1909" width="0.0128%" height="15" fill="rgb(216,158,51)" fg:x="18209957808" fg:w="39379631"/><text x="6.1713%" y="1919.50"></text></g><g><title>ts_malloc_default (67,127,517 samples, 0.02%)</title><rect x="5.9851%" y="1829" width="0.0218%" height="15" fill="rgb(233,14,44)" fg:x="18406347790" fg:w="67127517"/><text x="6.2351%" y="1839.50"></text></g><g><title>malloc (67,127,517 samples, 0.02%)</title><rect x="5.9851%" y="1813" width="0.0218%" height="15" fill="rgb(237,97,39)" fg:x="18406347790" fg:w="67127517"/><text x="6.2351%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (105,575,766 samples, 0.03%)</title><rect x="5.9751%" y="1845" width="0.0343%" height="15" fill="rgb(218,198,43)" fg:x="18375369607" fg:w="105575766"/><text x="6.2251%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (66,785,310 samples, 0.02%)</title><rect x="6.0284%" y="1845" width="0.0217%" height="15" fill="rgb(231,104,20)" fg:x="18539269906" fg:w="66785310"/><text x="6.2784%" y="1855.50"></text></g><g><title>ts_lex (83,710,180 samples, 0.03%)</title><rect x="6.0646%" y="1829" width="0.0272%" height="15" fill="rgb(254,36,13)" fg:x="18650801510" fg:w="83710180"/><text x="6.3146%" y="1839.50"></text></g><g><title>ts_parser__lex (166,780,050 samples, 0.05%)</title><rect x="6.0501%" y="1845" width="0.0542%" height="15" fill="rgb(248,14,50)" fg:x="18606055216" fg:w="166780050"/><text x="6.3001%" y="1855.50"></text></g><g><title>language::syntax_map::parse_text (543,266,081 samples, 0.18%)</title><rect x="5.9532%" y="1893" width="0.1767%" height="15" fill="rgb(217,107,29)" fg:x="18308250895" fg:w="543266081"/><text x="6.2032%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (543,266,081 samples, 0.18%)</title><rect x="5.9532%" y="1877" width="0.1767%" height="15" fill="rgb(251,169,33)" fg:x="18308250895" fg:w="543266081"/><text x="6.2032%" y="1887.50"></text></g><g><title>ts_parser_parse (516,952,585 samples, 0.17%)</title><rect x="5.9618%" y="1861" width="0.1681%" height="15" fill="rgb(217,108,32)" fg:x="18334564391" fg:w="516952585"/><text x="6.2118%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (84,803,468 samples, 0.03%)</title><rect x="6.1425%" y="1877" width="0.0276%" height="15" fill="rgb(219,66,42)" fg:x="18890401687" fg:w="84803468"/><text x="6.3925%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (100,264,789 samples, 0.03%)</title><rect x="6.1399%" y="1893" width="0.0326%" height="15" fill="rgb(206,180,7)" fg:x="18882140479" fg:w="100264789"/><text x="6.3899%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (778,758,939 samples, 0.25%)</title><rect x="5.9196%" y="1941" width="0.2532%" height="15" fill="rgb(208,226,31)" fg:x="18204759488" fg:w="778758939"/><text x="6.1696%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (777,556,397 samples, 0.25%)</title><rect x="5.9200%" y="1925" width="0.2528%" height="15" fill="rgb(218,26,49)" fg:x="18205962030" fg:w="777556397"/><text x="6.1700%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (707,776,088 samples, 0.23%)</title><rect x="5.9427%" y="1909" width="0.2301%" height="15" fill="rgb(233,197,48)" fg:x="18275742339" fg:w="707776088"/><text x="6.1927%" y="1919.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,370,011,916 samples, 0.77%)</title><rect x="5.4161%" y="1957" width="0.7707%" height="15" fill="rgb(252,181,51)" fg:x="16656251067" fg:w="2370011916"/><text x="5.6661%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,389,577,362 samples, 0.78%)</title><rect x="5.4114%" y="1973" width="0.7770%" height="15" fill="rgb(253,90,19)" fg:x="16641843228" fg:w="2389577362"/><text x="5.6614%" y="1983.50"></text></g><g><title>Worker-12 (2,498,281,029 samples, 0.81%)</title><rect x="5.4107%" y="2069" width="0.8124%" height="15" fill="rgb(215,171,30)" fg:x="16639729862" fg:w="2498281029"/><text x="5.6607%" y="2079.50"></text></g><g><title>__GI___clone3 (2,498,281,029 samples, 0.81%)</title><rect x="5.4107%" y="2053" width="0.8124%" height="15" fill="rgb(214,222,9)" fg:x="16639729862" fg:w="2498281029"/><text x="5.6607%" y="2063.50"></text></g><g><title>start_thread (2,498,281,029 samples, 0.81%)</title><rect x="5.4107%" y="2037" width="0.8124%" height="15" fill="rgb(223,3,22)" fg:x="16639729862" fg:w="2498281029"/><text x="5.6607%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,498,281,029 samples, 0.81%)</title><rect x="5.4107%" y="2021" width="0.8124%" height="15" fill="rgb(225,196,46)" fg:x="16639729862" fg:w="2498281029"/><text x="5.6607%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,498,281,029 samples, 0.81%)</title><rect x="5.4107%" y="2005" width="0.8124%" height="15" fill="rgb(209,110,37)" fg:x="16639729862" fg:w="2498281029"/><text x="5.6607%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,498,281,029 samples, 0.81%)</title><rect x="5.4107%" y="1989" width="0.8124%" height="15" fill="rgb(249,89,12)" fg:x="16639729862" fg:w="2498281029"/><text x="5.6607%" y="1999.50"></text></g><g><title>syscall (106,590,301 samples, 0.03%)</title><rect x="6.1884%" y="1973" width="0.0347%" height="15" fill="rgb(226,27,33)" fg:x="19031420590" fg:w="106590301"/><text x="6.4384%" y="1983.50"></text></g><g><title>[unknown] (99,365,562 samples, 0.03%)</title><rect x="6.1907%" y="1957" width="0.0323%" height="15" fill="rgb(213,82,22)" fg:x="19038645329" fg:w="99365562"/><text x="6.4407%" y="1967.50"></text></g><g><title>[unknown] (96,577,205 samples, 0.03%)</title><rect x="6.1917%" y="1941" width="0.0314%" height="15" fill="rgb(248,140,0)" fg:x="19041433686" fg:w="96577205"/><text x="6.4417%" y="1951.50"></text></g><g><title>[unknown] (92,432,566 samples, 0.03%)</title><rect x="6.1930%" y="1925" width="0.0301%" height="15" fill="rgb(228,106,3)" fg:x="19045578325" fg:w="92432566"/><text x="6.4430%" y="1935.50"></text></g><g><title>[unknown] (90,133,254 samples, 0.03%)</title><rect x="6.1937%" y="1909" width="0.0293%" height="15" fill="rgb(209,23,37)" fg:x="19047877637" fg:w="90133254"/><text x="6.4437%" y="1919.50"></text></g><g><title>[unknown] (86,805,073 samples, 0.03%)</title><rect x="6.1948%" y="1893" width="0.0282%" height="15" fill="rgb(241,93,50)" fg:x="19051205818" fg:w="86805073"/><text x="6.4448%" y="1903.50"></text></g><g><title>[unknown] (85,540,173 samples, 0.03%)</title><rect x="6.1952%" y="1877" width="0.0278%" height="15" fill="rgb(253,46,43)" fg:x="19052470718" fg:w="85540173"/><text x="6.4452%" y="1887.50"></text></g><g><title>[unknown] (81,494,043 samples, 0.03%)</title><rect x="6.1966%" y="1861" width="0.0265%" height="15" fill="rgb(226,206,43)" fg:x="19056516848" fg:w="81494043"/><text x="6.4466%" y="1871.50"></text></g><g><title>[unknown] (79,674,282 samples, 0.03%)</title><rect x="6.1971%" y="1845" width="0.0259%" height="15" fill="rgb(217,54,7)" fg:x="19058336609" fg:w="79674282"/><text x="6.4471%" y="1855.50"></text></g><g><title>[unknown] (74,430,933 samples, 0.02%)</title><rect x="6.1989%" y="1829" width="0.0242%" height="15" fill="rgb(223,5,52)" fg:x="19063579958" fg:w="74430933"/><text x="6.4489%" y="1839.50"></text></g><g><title>[unknown] (67,399,569 samples, 0.02%)</title><rect x="6.2011%" y="1813" width="0.0219%" height="15" fill="rgb(206,52,46)" fg:x="19070611322" fg:w="67399569"/><text x="6.4511%" y="1823.50"></text></g><g><title>[unknown] (65,105,226 samples, 0.02%)</title><rect x="6.2019%" y="1797" width="0.0212%" height="15" fill="rgb(253,136,11)" fg:x="19072905665" fg:w="65105226"/><text x="6.4519%" y="1807.50"></text></g><g><title>[unknown] (61,975,581 samples, 0.02%)</title><rect x="6.2029%" y="1781" width="0.0202%" height="15" fill="rgb(208,106,33)" fg:x="19076035310" fg:w="61975581"/><text x="6.4529%" y="1791.50"></text></g><g><title>[unknown] (58,384,545 samples, 0.02%)</title><rect x="6.2041%" y="1765" width="0.0190%" height="15" fill="rgb(206,54,4)" fg:x="19079626346" fg:w="58384545"/><text x="6.4541%" y="1775.50"></text></g><g><title>[unknown] (52,574,139 samples, 0.02%)</title><rect x="6.2060%" y="1749" width="0.0171%" height="15" fill="rgb(213,3,15)" fg:x="19085436752" fg:w="52574139"/><text x="6.4560%" y="1759.50"></text></g><g><title>[unknown] (48,762,115 samples, 0.02%)</title><rect x="6.2072%" y="1733" width="0.0159%" height="15" fill="rgb(252,211,39)" fg:x="19089248776" fg:w="48762115"/><text x="6.4572%" y="1743.50"></text></g><g><title>[unknown] (44,451,736 samples, 0.01%)</title><rect x="6.2086%" y="1717" width="0.0145%" height="15" fill="rgb(223,6,36)" fg:x="19093559155" fg:w="44451736"/><text x="6.4586%" y="1727.50"></text></g><g><title>[libgit2.so.1.9.0] (37,471,331 samples, 0.01%)</title><rect x="6.2438%" y="1829" width="0.0122%" height="15" fill="rgb(252,169,45)" fg:x="19201715747" fg:w="37471331"/><text x="6.4938%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (50,144,667 samples, 0.02%)</title><rect x="6.2438%" y="1925" width="0.0163%" height="15" fill="rgb(212,48,26)" fg:x="19201715747" fg:w="50144667"/><text x="6.4938%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (50,144,667 samples, 0.02%)</title><rect x="6.2438%" y="1909" width="0.0163%" height="15" fill="rgb(251,102,48)" fg:x="19201715747" fg:w="50144667"/><text x="6.4938%" y="1919.50"></text></g><g><title>git_odb_read (50,144,667 samples, 0.02%)</title><rect x="6.2438%" y="1893" width="0.0163%" height="15" fill="rgb(243,208,16)" fg:x="19201715747" fg:w="50144667"/><text x="6.4938%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (50,144,667 samples, 0.02%)</title><rect x="6.2438%" y="1877" width="0.0163%" height="15" fill="rgb(219,96,24)" fg:x="19201715747" fg:w="50144667"/><text x="6.4938%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (50,144,667 samples, 0.02%)</title><rect x="6.2438%" y="1861" width="0.0163%" height="15" fill="rgb(219,33,29)" fg:x="19201715747" fg:w="50144667"/><text x="6.4938%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (50,144,667 samples, 0.02%)</title><rect x="6.2438%" y="1845" width="0.0163%" height="15" fill="rgb(223,176,5)" fg:x="19201715747" fg:w="50144667"/><text x="6.4938%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (70,706,711 samples, 0.02%)</title><rect x="6.2438%" y="1941" width="0.0230%" height="15" fill="rgb(228,140,14)" fg:x="19201715747" fg:w="70706711"/><text x="6.4938%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (40,682,447 samples, 0.01%)</title><rect x="6.2946%" y="1797" width="0.0132%" height="15" fill="rgb(217,179,31)" fg:x="19358058813" fg:w="40682447"/><text x="6.5446%" y="1807.50"></text></g><g><title>git2::patch::Patch::from_buffers (42,757,730 samples, 0.01%)</title><rect x="6.2943%" y="1909" width="0.0139%" height="15" fill="rgb(230,9,30)" fg:x="19357143700" fg:w="42757730"/><text x="6.5443%" y="1919.50"></text></g><g><title>git_patch_from_buffers (42,757,730 samples, 0.01%)</title><rect x="6.2943%" y="1893" width="0.0139%" height="15" fill="rgb(230,136,20)" fg:x="19357143700" fg:w="42757730"/><text x="6.5443%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (42,757,730 samples, 0.01%)</title><rect x="6.2943%" y="1877" width="0.0139%" height="15" fill="rgb(215,210,22)" fg:x="19357143700" fg:w="42757730"/><text x="6.5443%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (42,757,730 samples, 0.01%)</title><rect x="6.2943%" y="1861" width="0.0139%" height="15" fill="rgb(218,43,5)" fg:x="19357143700" fg:w="42757730"/><text x="6.5443%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (42,757,730 samples, 0.01%)</title><rect x="6.2943%" y="1845" width="0.0139%" height="15" fill="rgb(216,11,5)" fg:x="19357143700" fg:w="42757730"/><text x="6.5443%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (42,757,730 samples, 0.01%)</title><rect x="6.2943%" y="1829" width="0.0139%" height="15" fill="rgb(209,82,29)" fg:x="19357143700" fg:w="42757730"/><text x="6.5443%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (42,757,730 samples, 0.01%)</title><rect x="6.2943%" y="1813" width="0.0139%" height="15" fill="rgb(244,115,12)" fg:x="19357143700" fg:w="42757730"/><text x="6.5443%" y="1823.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (50,114,325 samples, 0.02%)</title><rect x="6.2926%" y="1941" width="0.0163%" height="15" fill="rgb(222,82,18)" fg:x="19351774117" fg:w="50114325"/><text x="6.5426%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (50,114,325 samples, 0.02%)</title><rect x="6.2926%" y="1925" width="0.0163%" height="15" fill="rgb(249,227,8)" fg:x="19351774117" fg:w="50114325"/><text x="6.5426%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (64,522,088 samples, 0.02%)</title><rect x="6.3089%" y="1941" width="0.0210%" height="15" fill="rgb(253,141,45)" fg:x="19401888442" fg:w="64522088"/><text x="6.5589%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (57,857,939 samples, 0.02%)</title><rect x="6.3110%" y="1925" width="0.0188%" height="15" fill="rgb(234,184,4)" fg:x="19408552591" fg:w="57857939"/><text x="6.5610%" y="1935.50"></text></g><g><title>multi_buffer::MultiBufferCursor&lt;D&gt;::region (31,233,289 samples, 0.01%)</title><rect x="6.3305%" y="1925" width="0.0102%" height="15" fill="rgb(218,194,23)" fg:x="19468404326" fg:w="31233289"/><text x="6.5805%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (90,832,358 samples, 0.03%)</title><rect x="6.3298%" y="1941" width="0.0295%" height="15" fill="rgb(235,66,41)" fg:x="19466410530" fg:w="90832358"/><text x="6.5798%" y="1951.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (124,407,636 samples, 0.04%)</title><rect x="6.3658%" y="1941" width="0.0405%" height="15" fill="rgb(245,217,1)" fg:x="19576978402" fg:w="124407636"/><text x="6.6158%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (101,125,580 samples, 0.03%)</title><rect x="6.3734%" y="1925" width="0.0329%" height="15" fill="rgb(229,91,1)" fg:x="19600260458" fg:w="101125580"/><text x="6.6234%" y="1935.50"></text></g><g><title>ts_language_table_entry (33,286,529 samples, 0.01%)</title><rect x="6.4222%" y="1861" width="0.0108%" height="15" fill="rgb(207,101,30)" fg:x="19750476865" fg:w="33286529"/><text x="6.6722%" y="1871.50"></text></g><g><title>ts_malloc_default (51,289,016 samples, 0.02%)</title><rect x="6.4533%" y="1829" width="0.0167%" height="15" fill="rgb(223,82,49)" fg:x="19845947142" fg:w="51289016"/><text x="6.7033%" y="1839.50"></text></g><g><title>malloc (50,264,022 samples, 0.02%)</title><rect x="6.4536%" y="1813" width="0.0163%" height="15" fill="rgb(218,167,17)" fg:x="19846972136" fg:w="50264022"/><text x="6.7036%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (76,527,244 samples, 0.02%)</title><rect x="6.4474%" y="1845" width="0.0249%" height="15" fill="rgb(208,103,14)" fg:x="19827794902" fg:w="76527244"/><text x="6.6974%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (45,399,078 samples, 0.01%)</title><rect x="6.4939%" y="1845" width="0.0148%" height="15" fill="rgb(238,20,8)" fg:x="19970935110" fg:w="45399078"/><text x="6.7439%" y="1855.50"></text></g><g><title>ts_lex (74,880,411 samples, 0.02%)</title><rect x="6.5302%" y="1829" width="0.0243%" height="15" fill="rgb(218,80,54)" fg:x="20082637748" fg:w="74880411"/><text x="6.7802%" y="1839.50"></text></g><g><title>ts_parser__lex (181,948,229 samples, 0.06%)</title><rect x="6.5087%" y="1845" width="0.0592%" height="15" fill="rgb(240,144,17)" fg:x="20016334188" fg:w="181948229"/><text x="6.7587%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (37,498,022 samples, 0.01%)</title><rect x="6.5750%" y="1845" width="0.0122%" height="15" fill="rgb(245,27,50)" fg:x="20220387464" fg:w="37498022"/><text x="6.8250%" y="1855.50"></text></g><g><title>ts_parser_parse_with_options (544,848,197 samples, 0.18%)</title><rect x="6.4222%" y="1877" width="0.1772%" height="15" fill="rgb(251,51,7)" fg:x="19750476865" fg:w="544848197"/><text x="6.6722%" y="1887.50"></text></g><g><title>ts_parser_parse (509,309,812 samples, 0.17%)</title><rect x="6.4338%" y="1861" width="0.1656%" height="15" fill="rgb(245,217,29)" fg:x="19786015250" fg:w="509309812"/><text x="6.6838%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (549,075,263 samples, 0.18%)</title><rect x="6.4219%" y="1893" width="0.1785%" height="15" fill="rgb(221,176,29)" fg:x="19749636230" fg:w="549075263"/><text x="6.6719%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (104,093,742 samples, 0.03%)</title><rect x="6.6097%" y="1877" width="0.0338%" height="15" fill="rgb(212,180,24)" fg:x="20327149825" fg:w="104093742"/><text x="6.8597%" y="1887.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (740,320,655 samples, 0.24%)</title><rect x="6.4062%" y="1941" width="0.2407%" height="15" fill="rgb(254,24,2)" fg:x="19701386038" fg:w="740320655"/><text x="6.6562%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (740,320,655 samples, 0.24%)</title><rect x="6.4062%" y="1925" width="0.2407%" height="15" fill="rgb(230,100,2)" fg:x="19701386038" fg:w="740320655"/><text x="6.6562%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (716,883,674 samples, 0.23%)</title><rect x="6.4139%" y="1909" width="0.2331%" height="15" fill="rgb(219,142,25)" fg:x="19724823019" fg:w="716883674"/><text x="6.6639%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (118,054,153 samples, 0.04%)</title><rect x="6.6086%" y="1893" width="0.0384%" height="15" fill="rgb(240,73,43)" fg:x="20323652540" fg:w="118054153"/><text x="6.8586%" y="1903.50"></text></g><g><title>stack__iter.constprop.0 (55,705,583 samples, 0.02%)</title><rect x="6.6740%" y="1845" width="0.0181%" height="15" fill="rgb(214,114,15)" fg:x="20524808649" fg:w="55705583"/><text x="6.9240%" y="1855.50"></text></g><g><title>ts_language_table_entry (35,033,251 samples, 0.01%)</title><rect x="6.7017%" y="1845" width="0.0114%" height="15" fill="rgb(207,130,4)" fg:x="20610090160" fg:w="35033251"/><text x="6.9517%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (97,077,020 samples, 0.03%)</title><rect x="6.7173%" y="1845" width="0.0316%" height="15" fill="rgb(221,25,40)" fg:x="20657881873" fg:w="97077020"/><text x="6.9673%" y="1855.50"></text></g><g><title>ts_lex (45,235,595 samples, 0.01%)</title><rect x="6.7585%" y="1829" width="0.0147%" height="15" fill="rgb(241,184,7)" fg:x="20784603678" fg:w="45235595"/><text x="7.0085%" y="1839.50"></text></g><g><title>ts_parser__lex (123,200,498 samples, 0.04%)</title><rect x="6.7488%" y="1845" width="0.0401%" height="15" fill="rgb(235,159,4)" fg:x="20754958893" fg:w="123200498"/><text x="6.9988%" y="1855.50"></text></g><g><title>ts_parser__recover (404,092,864 samples, 0.13%)</title><rect x="6.7889%" y="1845" width="0.1314%" height="15" fill="rgb(214,87,48)" fg:x="20878159391" fg:w="404092864"/><text x="7.0389%" y="1855.50"></text></g><g><title>ts_subtree_new_node (188,834,688 samples, 0.06%)</title><rect x="6.8589%" y="1829" width="0.0614%" height="15" fill="rgb(246,198,24)" fg:x="21093417567" fg:w="188834688"/><text x="7.1089%" y="1839.50"></text></g><g><title>ts_subtree_summarize_children (180,776,837 samples, 0.06%)</title><rect x="6.8615%" y="1813" width="0.0588%" height="15" fill="rgb(209,66,40)" fg:x="21101475418" fg:w="180776837"/><text x="7.1115%" y="1823.50"></text></g><g><title>ts_stack_remove_version (193,922,620 samples, 0.06%)</title><rect x="6.9251%" y="1845" width="0.0631%" height="15" fill="rgb(233,147,39)" fg:x="21296994317" fg:w="193922620"/><text x="7.1751%" y="1855.50"></text></g><g><title>stack_node_release (193,922,620 samples, 0.06%)</title><rect x="6.9251%" y="1829" width="0.0631%" height="15" fill="rgb(231,145,52)" fg:x="21296994317" fg:w="193922620"/><text x="7.1751%" y="1839.50"></text></g><g><title>ts_subtree_release (193,922,620 samples, 0.06%)</title><rect x="6.9251%" y="1813" width="0.0631%" height="15" fill="rgb(206,20,26)" fg:x="21296994317" fg:w="193922620"/><text x="7.1751%" y="1823.50"></text></g><g><title>ts_parser_parse (1,027,716,240 samples, 0.33%)</title><rect x="6.6672%" y="1861" width="0.3342%" height="15" fill="rgb(238,220,4)" fg:x="20503994298" fg:w="1027716240"/><text x="6.9172%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (1,050,246,610 samples, 0.34%)</title><rect x="6.6607%" y="1877" width="0.3415%" height="15" fill="rgb(252,195,42)" fg:x="20483891398" fg:w="1050246610"/><text x="6.9107%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (1,052,670,480 samples, 0.34%)</title><rect x="6.6607%" y="1893" width="0.3423%" height="15" fill="rgb(209,10,6)" fg:x="20483891398" fg:w="1052670480"/><text x="6.9107%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (59,561,415 samples, 0.02%)</title><rect x="7.0091%" y="1877" width="0.0194%" height="15" fill="rgb(229,3,52)" fg:x="21555342701" fg:w="59561415"/><text x="7.2591%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (69,061,787 samples, 0.02%)</title><rect x="7.0087%" y="1893" width="0.0225%" height="15" fill="rgb(253,49,37)" fg:x="21554157850" fg:w="69061787"/><text x="7.2587%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (1,154,313,364 samples, 0.38%)</title><rect x="6.6561%" y="1909" width="0.3753%" height="15" fill="rgb(240,103,49)" fg:x="20469905835" fg:w="1154313364"/><text x="6.9061%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (1,184,710,453 samples, 0.39%)</title><rect x="6.6470%" y="1941" width="0.3852%" height="15" fill="rgb(250,182,30)" fg:x="20441706693" fg:w="1184710453"/><text x="6.8970%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (1,184,710,453 samples, 0.39%)</title><rect x="6.6470%" y="1925" width="0.3852%" height="15" fill="rgb(248,8,30)" fg:x="20441706693" fg:w="1184710453"/><text x="6.8970%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,487,364,657 samples, 0.81%)</title><rect x="6.2296%" y="1957" width="0.8088%" height="15" fill="rgb(237,120,30)" fg:x="19158112164" fg:w="2487364657"/><text x="6.4796%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,512,712,356 samples, 0.82%)</title><rect x="6.2237%" y="1973" width="0.8171%" height="15" fill="rgb(221,146,34)" fg:x="19140014521" fg:w="2512712356"/><text x="6.4737%" y="1983.50"></text></g><g><title>__GI___clone3 (2,634,779,016 samples, 0.86%)</title><rect x="6.2237%" y="2053" width="0.8567%" height="15" fill="rgb(242,55,13)" fg:x="19140014521" fg:w="2634779016"/><text x="6.4737%" y="2063.50"></text></g><g><title>start_thread (2,634,779,016 samples, 0.86%)</title><rect x="6.2237%" y="2037" width="0.8567%" height="15" fill="rgb(242,112,31)" fg:x="19140014521" fg:w="2634779016"/><text x="6.4737%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,634,779,016 samples, 0.86%)</title><rect x="6.2237%" y="2021" width="0.8567%" height="15" fill="rgb(249,192,27)" fg:x="19140014521" fg:w="2634779016"/><text x="6.4737%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,634,779,016 samples, 0.86%)</title><rect x="6.2237%" y="2005" width="0.8567%" height="15" fill="rgb(208,204,44)" fg:x="19140014521" fg:w="2634779016"/><text x="6.4737%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,634,779,016 samples, 0.86%)</title><rect x="6.2237%" y="1989" width="0.8567%" height="15" fill="rgb(208,93,54)" fg:x="19140014521" fg:w="2634779016"/><text x="6.4737%" y="1999.50"></text></g><g><title>syscall (122,066,660 samples, 0.04%)</title><rect x="7.0408%" y="1973" width="0.0397%" height="15" fill="rgb(242,1,31)" fg:x="21652726877" fg:w="122066660"/><text x="7.2908%" y="1983.50"></text></g><g><title>[unknown] (118,432,202 samples, 0.04%)</title><rect x="7.0419%" y="1957" width="0.0385%" height="15" fill="rgb(241,83,25)" fg:x="21656361335" fg:w="118432202"/><text x="7.2919%" y="1967.50"></text></g><g><title>[unknown] (114,284,883 samples, 0.04%)</title><rect x="7.0433%" y="1941" width="0.0372%" height="15" fill="rgb(205,169,50)" fg:x="21660508654" fg:w="114284883"/><text x="7.2933%" y="1951.50"></text></g><g><title>[unknown] (109,762,826 samples, 0.04%)</title><rect x="7.0448%" y="1925" width="0.0357%" height="15" fill="rgb(239,186,37)" fg:x="21665030711" fg:w="109762826"/><text x="7.2948%" y="1935.50"></text></g><g><title>[unknown] (106,198,305 samples, 0.03%)</title><rect x="7.0459%" y="1909" width="0.0345%" height="15" fill="rgb(205,221,10)" fg:x="21668595232" fg:w="106198305"/><text x="7.2959%" y="1919.50"></text></g><g><title>[unknown] (100,199,058 samples, 0.03%)</title><rect x="7.0479%" y="1893" width="0.0326%" height="15" fill="rgb(218,196,15)" fg:x="21674594479" fg:w="100199058"/><text x="7.2979%" y="1903.50"></text></g><g><title>[unknown] (98,201,583 samples, 0.03%)</title><rect x="7.0485%" y="1877" width="0.0319%" height="15" fill="rgb(218,196,35)" fg:x="21676591954" fg:w="98201583"/><text x="7.2985%" y="1887.50"></text></g><g><title>[unknown] (93,592,671 samples, 0.03%)</title><rect x="7.0500%" y="1861" width="0.0304%" height="15" fill="rgb(233,63,24)" fg:x="21681200866" fg:w="93592671"/><text x="7.3000%" y="1871.50"></text></g><g><title>[unknown] (92,604,374 samples, 0.03%)</title><rect x="7.0503%" y="1845" width="0.0301%" height="15" fill="rgb(225,8,4)" fg:x="21682189163" fg:w="92604374"/><text x="7.3003%" y="1855.50"></text></g><g><title>[unknown] (88,049,242 samples, 0.03%)</title><rect x="7.0518%" y="1829" width="0.0286%" height="15" fill="rgb(234,105,35)" fg:x="21686744295" fg:w="88049242"/><text x="7.3018%" y="1839.50"></text></g><g><title>[unknown] (83,375,238 samples, 0.03%)</title><rect x="7.0533%" y="1813" width="0.0271%" height="15" fill="rgb(236,21,32)" fg:x="21691418299" fg:w="83375238"/><text x="7.3033%" y="1823.50"></text></g><g><title>[unknown] (81,342,344 samples, 0.03%)</title><rect x="7.0540%" y="1797" width="0.0264%" height="15" fill="rgb(228,109,6)" fg:x="21693451193" fg:w="81342344"/><text x="7.3040%" y="1807.50"></text></g><g><title>[unknown] (76,756,469 samples, 0.02%)</title><rect x="7.0555%" y="1781" width="0.0250%" height="15" fill="rgb(229,215,31)" fg:x="21698037068" fg:w="76756469"/><text x="7.3055%" y="1791.50"></text></g><g><title>[unknown] (67,099,491 samples, 0.02%)</title><rect x="7.0586%" y="1765" width="0.0218%" height="15" fill="rgb(221,52,54)" fg:x="21707694046" fg:w="67099491"/><text x="7.3086%" y="1775.50"></text></g><g><title>[unknown] (62,894,927 samples, 0.02%)</title><rect x="7.0600%" y="1749" width="0.0205%" height="15" fill="rgb(252,129,43)" fg:x="21711898610" fg:w="62894927"/><text x="7.3100%" y="1759.50"></text></g><g><title>[unknown] (51,222,243 samples, 0.02%)</title><rect x="7.0638%" y="1733" width="0.0167%" height="15" fill="rgb(248,183,27)" fg:x="21723571294" fg:w="51222243"/><text x="7.3138%" y="1743.50"></text></g><g><title>[unknown] (45,478,246 samples, 0.01%)</title><rect x="7.0657%" y="1717" width="0.0148%" height="15" fill="rgb(250,0,22)" fg:x="21729315291" fg:w="45478246"/><text x="7.3157%" y="1727.50"></text></g><g><title>[unknown] (34,724,584 samples, 0.01%)</title><rect x="7.0692%" y="1701" width="0.0113%" height="15" fill="rgb(213,166,10)" fg:x="21740068953" fg:w="34724584"/><text x="7.3192%" y="1711.50"></text></g><g><title>Worker-13 (2,639,576,271 samples, 0.86%)</title><rect x="6.2231%" y="2069" width="0.8583%" height="15" fill="rgb(207,163,36)" fg:x="19138010891" fg:w="2639576271"/><text x="6.4731%" y="2079.50"></text></g><g><title>[libgit2.so.1.9.0] (37,104,611 samples, 0.01%)</title><rect x="7.1004%" y="1829" width="0.0121%" height="15" fill="rgb(208,122,22)" fg:x="21836210827" fg:w="37104611"/><text x="7.3504%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (45,260,933 samples, 0.01%)</title><rect x="7.1004%" y="1861" width="0.0147%" height="15" fill="rgb(207,104,49)" fg:x="21836210827" fg:w="45260933"/><text x="7.3504%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (45,260,933 samples, 0.01%)</title><rect x="7.1004%" y="1845" width="0.0147%" height="15" fill="rgb(248,211,50)" fg:x="21836210827" fg:w="45260933"/><text x="7.3504%" y="1855.50"></text></g><g><title>git2::repo::Repository::find_blob (46,427,992 samples, 0.02%)</title><rect x="7.1004%" y="1925" width="0.0151%" height="15" fill="rgb(217,13,45)" fg:x="21836210827" fg:w="46427992"/><text x="7.3504%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (46,427,992 samples, 0.02%)</title><rect x="7.1004%" y="1909" width="0.0151%" height="15" fill="rgb(211,216,49)" fg:x="21836210827" fg:w="46427992"/><text x="7.3504%" y="1919.50"></text></g><g><title>git_odb_read (46,427,992 samples, 0.02%)</title><rect x="7.1004%" y="1893" width="0.0151%" height="15" fill="rgb(221,58,53)" fg:x="21836210827" fg:w="46427992"/><text x="7.3504%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (46,427,992 samples, 0.02%)</title><rect x="7.1004%" y="1877" width="0.0151%" height="15" fill="rgb(220,112,41)" fg:x="21836210827" fg:w="46427992"/><text x="7.3504%" y="1887.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (67,660,592 samples, 0.02%)</title><rect x="7.1004%" y="1941" width="0.0220%" height="15" fill="rgb(236,38,28)" fg:x="21836210827" fg:w="67660592"/><text x="7.3504%" y="1951.50"></text></g><g><title>&lt;gpui::platform::linux::dispatcher::LinuxDispatcher as gpui::platform::PlatformDispatcher&gt;::dispatch (35,538,722 samples, 0.01%)</title><rect x="7.1296%" y="1941" width="0.0116%" height="15" fill="rgb(227,195,22)" fg:x="21925827583" fg:w="35538722"/><text x="7.3796%" y="1951.50"></text></g><g><title>syscall (32,089,686 samples, 0.01%)</title><rect x="7.1307%" y="1925" width="0.0104%" height="15" fill="rgb(214,55,33)" fg:x="21929276619" fg:w="32089686"/><text x="7.3807%" y="1935.50"></text></g><g><title>[unknown] (32,089,686 samples, 0.01%)</title><rect x="7.1307%" y="1909" width="0.0104%" height="15" fill="rgb(248,80,13)" fg:x="21929276619" fg:w="32089686"/><text x="7.3807%" y="1919.50"></text></g><g><title>[unknown] (30,877,949 samples, 0.01%)</title><rect x="7.1311%" y="1893" width="0.0100%" height="15" fill="rgb(238,52,6)" fg:x="21930488356" fg:w="30877949"/><text x="7.3811%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (31,276,965 samples, 0.01%)</title><rect x="7.1501%" y="1813" width="0.0102%" height="15" fill="rgb(224,198,47)" fg:x="21989033496" fg:w="31276965"/><text x="7.4001%" y="1823.50"></text></g><g><title>git2::patch::Patch::from_buffers (32,426,462 samples, 0.01%)</title><rect x="7.1501%" y="1909" width="0.0105%" height="15" fill="rgb(233,171,20)" fg:x="21989033496" fg:w="32426462"/><text x="7.4001%" y="1919.50"></text></g><g><title>git_patch_from_buffers (32,426,462 samples, 0.01%)</title><rect x="7.1501%" y="1893" width="0.0105%" height="15" fill="rgb(241,30,25)" fg:x="21989033496" fg:w="32426462"/><text x="7.4001%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (32,426,462 samples, 0.01%)</title><rect x="7.1501%" y="1877" width="0.0105%" height="15" fill="rgb(207,171,38)" fg:x="21989033496" fg:w="32426462"/><text x="7.4001%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (32,426,462 samples, 0.01%)</title><rect x="7.1501%" y="1861" width="0.0105%" height="15" fill="rgb(234,70,1)" fg:x="21989033496" fg:w="32426462"/><text x="7.4001%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (32,426,462 samples, 0.01%)</title><rect x="7.1501%" y="1845" width="0.0105%" height="15" fill="rgb(232,178,18)" fg:x="21989033496" fg:w="32426462"/><text x="7.4001%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (32,426,462 samples, 0.01%)</title><rect x="7.1501%" y="1829" width="0.0105%" height="15" fill="rgb(241,78,40)" fg:x="21989033496" fg:w="32426462"/><text x="7.4001%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (36,524,382 samples, 0.01%)</title><rect x="7.1492%" y="1941" width="0.0119%" height="15" fill="rgb(222,35,25)" fg:x="21986073309" fg:w="36524382"/><text x="7.3992%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (36,524,382 samples, 0.01%)</title><rect x="7.1492%" y="1925" width="0.0119%" height="15" fill="rgb(207,92,16)" fg:x="21986073309" fg:w="36524382"/><text x="7.3992%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (78,735,450 samples, 0.03%)</title><rect x="7.1613%" y="1941" width="0.0256%" height="15" fill="rgb(216,59,51)" fg:x="22023391688" fg:w="78735450"/><text x="7.4113%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (72,323,102 samples, 0.02%)</title><rect x="7.1634%" y="1925" width="0.0235%" height="15" fill="rgb(213,80,28)" fg:x="22029804036" fg:w="72323102"/><text x="7.4134%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (77,823,997 samples, 0.03%)</title><rect x="7.1884%" y="1941" width="0.0253%" height="15" fill="rgb(220,93,7)" fg:x="22106814023" fg:w="77823997"/><text x="7.4384%" y="1951.50"></text></g><g><title>&lt;util::rel_path::RelPathComponents as core::iter::traits::iterator::Iterator&gt;::next (33,948,873 samples, 0.01%)</title><rect x="7.2160%" y="1845" width="0.0110%" height="15" fill="rgb(225,24,44)" fg:x="22191623178" fg:w="33948873"/><text x="7.4660%" y="1855.50"></text></g><g><title>&lt;worktree::TraversalTarget as sum_tree::SeekTarget&lt;worktree::EntrySummary,worktree::TraversalProgress&gt;&gt;::cmp (37,444,815 samples, 0.01%)</title><rect x="7.2153%" y="1861" width="0.0122%" height="15" fill="rgb(243,74,40)" fg:x="22189389640" fg:w="37444815"/><text x="7.4653%" y="1871.50"></text></g><g><title>worktree::BackgroundScanner::forcibly_load_paths::_{{closure}} (39,923,035 samples, 0.01%)</title><rect x="7.2148%" y="1909" width="0.0130%" height="15" fill="rgb(228,39,7)" fg:x="22188058904" fg:w="39923035"/><text x="7.4648%" y="1919.50"></text></g><g><title>worktree::Snapshot::entry_for_path (39,923,035 samples, 0.01%)</title><rect x="7.2148%" y="1893" width="0.0130%" height="15" fill="rgb(227,79,8)" fg:x="22188058904" fg:w="39923035"/><text x="7.4648%" y="1903.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (38,592,299 samples, 0.01%)</title><rect x="7.2153%" y="1877" width="0.0125%" height="15" fill="rgb(236,58,11)" fg:x="22189389640" fg:w="38592299"/><text x="7.4653%" y="1887.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (66,088,879 samples, 0.02%)</title><rect x="7.2148%" y="1925" width="0.0215%" height="15" fill="rgb(249,63,35)" fg:x="22188058904" fg:w="66088879"/><text x="7.4648%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (183,543,073 samples, 0.06%)</title><rect x="7.2144%" y="1941" width="0.0597%" height="15" fill="rgb(252,114,16)" fg:x="22186719165" fg:w="183543073"/><text x="7.4644%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (116,114,455 samples, 0.04%)</title><rect x="7.2363%" y="1925" width="0.0378%" height="15" fill="rgb(254,151,24)" fg:x="22254147783" fg:w="116114455"/><text x="7.4863%" y="1935.50"></text></g><g><title>ts_malloc_default (39,558,649 samples, 0.01%)</title><rect x="7.3074%" y="1829" width="0.0129%" height="15" fill="rgb(253,54,39)" fg:x="22472833888" fg:w="39558649"/><text x="7.5574%" y="1839.50"></text></g><g><title>malloc (39,558,649 samples, 0.01%)</title><rect x="7.3074%" y="1813" width="0.0129%" height="15" fill="rgb(243,25,45)" fg:x="22472833888" fg:w="39558649"/><text x="7.5574%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (59,079,402 samples, 0.02%)</title><rect x="7.3025%" y="1845" width="0.0192%" height="15" fill="rgb(234,134,9)" fg:x="22457605851" fg:w="59079402"/><text x="7.5525%" y="1855.50"></text></g><g><title>ts_lex (65,208,955 samples, 0.02%)</title><rect x="7.3506%" y="1829" width="0.0212%" height="15" fill="rgb(227,166,31)" fg:x="22605600068" fg:w="65208955"/><text x="7.6006%" y="1839.50"></text></g><g><title>ts_parser__lex (130,887,116 samples, 0.04%)</title><rect x="7.3419%" y="1845" width="0.0426%" height="15" fill="rgb(245,143,41)" fg:x="22578953664" fg:w="130887116"/><text x="7.5919%" y="1855.50"></text></g><g><title>ts_parser_parse (352,318,945 samples, 0.11%)</title><rect x="7.2926%" y="1861" width="0.1146%" height="15" fill="rgb(238,181,32)" fg:x="22427194115" fg:w="352318945"/><text x="7.5426%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (376,042,208 samples, 0.12%)</title><rect x="7.2862%" y="1877" width="0.1223%" height="15" fill="rgb(224,113,18)" fg:x="22407618255" fg:w="376042208"/><text x="7.5362%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (377,233,554 samples, 0.12%)</title><rect x="7.2862%" y="1893" width="0.1227%" height="15" fill="rgb(240,229,28)" fg:x="22407618255" fg:w="377233554"/><text x="7.5362%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (83,229,027 samples, 0.03%)</title><rect x="7.4146%" y="1877" width="0.0271%" height="15" fill="rgb(250,185,3)" fg:x="22802430464" fg:w="83229027"/><text x="7.6646%" y="1887.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (521,421,972 samples, 0.17%)</title><rect x="7.2741%" y="1941" width="0.1695%" height="15" fill="rgb(212,59,25)" fg:x="22370262238" fg:w="521421972"/><text x="7.5241%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (521,421,972 samples, 0.17%)</title><rect x="7.2741%" y="1925" width="0.1695%" height="15" fill="rgb(221,87,20)" fg:x="22370262238" fg:w="521421972"/><text x="7.5241%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (501,888,427 samples, 0.16%)</title><rect x="7.2804%" y="1909" width="0.1632%" height="15" fill="rgb(213,74,28)" fg:x="22389795783" fg:w="501888427"/><text x="7.5304%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (92,570,677 samples, 0.03%)</title><rect x="7.4135%" y="1893" width="0.0301%" height="15" fill="rgb(224,132,34)" fg:x="22799113533" fg:w="92570677"/><text x="7.6635%" y="1903.50"></text></g><g><title>__memmove_avx512_unaligned_erms (34,759,033 samples, 0.01%)</title><rect x="7.4444%" y="1909" width="0.0113%" height="15" fill="rgb(222,101,24)" fg:x="22894044001" fg:w="34759033"/><text x="7.6944%" y="1919.50"></text></g><g><title>ts_language_table_entry (32,323,784 samples, 0.01%)</title><rect x="7.4680%" y="1861" width="0.0105%" height="15" fill="rgb(254,142,4)" fg:x="22966506073" fg:w="32323784"/><text x="7.7180%" y="1871.50"></text></g><g><title>ts_malloc_default (52,287,258 samples, 0.02%)</title><rect x="7.4968%" y="1829" width="0.0170%" height="15" fill="rgb(230,229,49)" fg:x="23055357563" fg:w="52287258"/><text x="7.7468%" y="1839.50"></text></g><g><title>malloc (52,287,258 samples, 0.02%)</title><rect x="7.4968%" y="1813" width="0.0170%" height="15" fill="rgb(238,70,47)" fg:x="23055357563" fg:w="52287258"/><text x="7.7468%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (78,713,807 samples, 0.03%)</title><rect x="7.4914%" y="1845" width="0.0256%" height="15" fill="rgb(231,160,17)" fg:x="23038561854" fg:w="78713807"/><text x="7.7414%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (61,848,828 samples, 0.02%)</title><rect x="7.5375%" y="1845" width="0.0201%" height="15" fill="rgb(218,68,53)" fg:x="23180443217" fg:w="61848828"/><text x="7.7875%" y="1855.50"></text></g><g><title>ts_lex (73,091,690 samples, 0.02%)</title><rect x="7.5702%" y="1829" width="0.0238%" height="15" fill="rgb(236,111,10)" fg:x="23280904490" fg:w="73091690"/><text x="7.8202%" y="1839.50"></text></g><g><title>ts_parser__lex (141,056,477 samples, 0.05%)</title><rect x="7.5576%" y="1845" width="0.0459%" height="15" fill="rgb(224,34,41)" fg:x="23242292045" fg:w="141056477"/><text x="7.8076%" y="1855.50"></text></g><g><title>ts_parser_parse (467,080,111 samples, 0.15%)</title><rect x="7.4787%" y="1861" width="0.1519%" height="15" fill="rgb(241,118,19)" fg:x="22999614955" fg:w="467080111"/><text x="7.7287%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (505,465,219 samples, 0.16%)</title><rect x="7.4680%" y="1877" width="0.1644%" height="15" fill="rgb(238,129,25)" fg:x="22966506073" fg:w="505465219"/><text x="7.7180%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (510,216,145 samples, 0.17%)</title><rect x="7.4672%" y="1893" width="0.1659%" height="15" fill="rgb(238,22,31)" fg:x="22964191106" fg:w="510216145"/><text x="7.7172%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (68,959,850 samples, 0.02%)</title><rect x="7.6444%" y="1877" width="0.0224%" height="15" fill="rgb(222,174,48)" fg:x="23509279617" fg:w="68959850"/><text x="7.8944%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (77,348,922 samples, 0.03%)</title><rect x="7.6441%" y="1893" width="0.0252%" height="15" fill="rgb(206,152,40)" fg:x="23508136827" fg:w="77348922"/><text x="7.8941%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (694,914,813 samples, 0.23%)</title><rect x="7.4436%" y="1941" width="0.2260%" height="15" fill="rgb(218,99,54)" fg:x="22891684210" fg:w="694914813"/><text x="7.6936%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (694,914,813 samples, 0.23%)</title><rect x="7.4436%" y="1925" width="0.2260%" height="15" fill="rgb(220,174,26)" fg:x="22891684210" fg:w="694914813"/><text x="7.6936%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (648,718,728 samples, 0.21%)</title><rect x="7.4586%" y="1909" width="0.2109%" height="15" fill="rgb(245,116,9)" fg:x="22937880295" fg:w="648718728"/><text x="7.7086%" y="1919.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,826,216,744 samples, 0.59%)</title><rect x="7.0865%" y="1957" width="0.5938%" height="15" fill="rgb(209,72,35)" fg:x="21793394101" fg:w="1826216744"/><text x="7.3365%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,847,209,863 samples, 0.60%)</title><rect x="7.0824%" y="1973" width="0.6007%" height="15" fill="rgb(226,126,21)" fg:x="21780714022" fg:w="1847209863"/><text x="7.3324%" y="1983.50"></text></g><g><title>Worker-14 (1,979,019,888 samples, 0.64%)</title><rect x="7.0814%" y="2069" width="0.6435%" height="15" fill="rgb(227,192,1)" fg:x="21777587162" fg:w="1979019888"/><text x="7.3314%" y="2079.50"></text></g><g><title>__GI___clone3 (1,977,195,904 samples, 0.64%)</title><rect x="7.0820%" y="2053" width="0.6429%" height="15" fill="rgb(237,180,29)" fg:x="21779411146" fg:w="1977195904"/><text x="7.3320%" y="2063.50"></text></g><g><title>start_thread (1,977,195,904 samples, 0.64%)</title><rect x="7.0820%" y="2037" width="0.6429%" height="15" fill="rgb(230,197,35)" fg:x="21779411146" fg:w="1977195904"/><text x="7.3320%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (1,977,195,904 samples, 0.64%)</title><rect x="7.0820%" y="2021" width="0.6429%" height="15" fill="rgb(246,193,31)" fg:x="21779411146" fg:w="1977195904"/><text x="7.3320%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (1,977,195,904 samples, 0.64%)</title><rect x="7.0820%" y="2005" width="0.6429%" height="15" fill="rgb(241,36,4)" fg:x="21779411146" fg:w="1977195904"/><text x="7.3320%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (1,977,195,904 samples, 0.64%)</title><rect x="7.0820%" y="1989" width="0.6429%" height="15" fill="rgb(241,130,17)" fg:x="21779411146" fg:w="1977195904"/><text x="7.3320%" y="1999.50"></text></g><g><title>syscall (128,683,165 samples, 0.04%)</title><rect x="7.6830%" y="1973" width="0.0418%" height="15" fill="rgb(206,137,32)" fg:x="23627923885" fg:w="128683165"/><text x="7.9330%" y="1983.50"></text></g><g><title>[unknown] (123,590,835 samples, 0.04%)</title><rect x="7.6847%" y="1957" width="0.0402%" height="15" fill="rgb(237,228,51)" fg:x="23633016215" fg:w="123590835"/><text x="7.9347%" y="1967.50"></text></g><g><title>[unknown] (120,625,238 samples, 0.04%)</title><rect x="7.6856%" y="1941" width="0.0392%" height="15" fill="rgb(243,6,42)" fg:x="23635981812" fg:w="120625238"/><text x="7.9356%" y="1951.50"></text></g><g><title>[unknown] (118,506,328 samples, 0.04%)</title><rect x="7.6863%" y="1925" width="0.0385%" height="15" fill="rgb(251,74,28)" fg:x="23638100722" fg:w="118506328"/><text x="7.9363%" y="1935.50"></text></g><g><title>[unknown] (114,790,173 samples, 0.04%)</title><rect x="7.6875%" y="1909" width="0.0373%" height="15" fill="rgb(218,20,49)" fg:x="23641816877" fg:w="114790173"/><text x="7.9375%" y="1919.50"></text></g><g><title>[unknown] (106,416,191 samples, 0.03%)</title><rect x="7.6903%" y="1893" width="0.0346%" height="15" fill="rgb(238,28,14)" fg:x="23650190859" fg:w="106416191"/><text x="7.9403%" y="1903.50"></text></g><g><title>[unknown] (103,285,683 samples, 0.03%)</title><rect x="7.6913%" y="1877" width="0.0336%" height="15" fill="rgb(229,40,46)" fg:x="23653321367" fg:w="103285683"/><text x="7.9413%" y="1887.50"></text></g><g><title>[unknown] (87,021,023 samples, 0.03%)</title><rect x="7.6966%" y="1861" width="0.0283%" height="15" fill="rgb(244,195,20)" fg:x="23669586027" fg:w="87021023"/><text x="7.9466%" y="1871.50"></text></g><g><title>[unknown] (82,734,721 samples, 0.03%)</title><rect x="7.6980%" y="1845" width="0.0269%" height="15" fill="rgb(253,56,35)" fg:x="23673872329" fg:w="82734721"/><text x="7.9480%" y="1855.50"></text></g><g><title>[unknown] (82,734,721 samples, 0.03%)</title><rect x="7.6980%" y="1829" width="0.0269%" height="15" fill="rgb(210,149,44)" fg:x="23673872329" fg:w="82734721"/><text x="7.9480%" y="1839.50"></text></g><g><title>[unknown] (79,273,266 samples, 0.03%)</title><rect x="7.6991%" y="1813" width="0.0258%" height="15" fill="rgb(240,135,12)" fg:x="23677333784" fg:w="79273266"/><text x="7.9491%" y="1823.50"></text></g><g><title>[unknown] (78,195,708 samples, 0.03%)</title><rect x="7.6994%" y="1797" width="0.0254%" height="15" fill="rgb(251,24,50)" fg:x="23678411342" fg:w="78195708"/><text x="7.9494%" y="1807.50"></text></g><g><title>[unknown] (77,640,307 samples, 0.03%)</title><rect x="7.6996%" y="1781" width="0.0252%" height="15" fill="rgb(243,200,47)" fg:x="23678966743" fg:w="77640307"/><text x="7.9496%" y="1791.50"></text></g><g><title>[unknown] (70,828,045 samples, 0.02%)</title><rect x="7.7018%" y="1765" width="0.0230%" height="15" fill="rgb(224,166,26)" fg:x="23685779005" fg:w="70828045"/><text x="7.9518%" y="1775.50"></text></g><g><title>[unknown] (67,497,479 samples, 0.02%)</title><rect x="7.7029%" y="1749" width="0.0219%" height="15" fill="rgb(233,0,47)" fg:x="23689109571" fg:w="67497479"/><text x="7.9529%" y="1759.50"></text></g><g><title>[unknown] (54,367,814 samples, 0.02%)</title><rect x="7.7072%" y="1733" width="0.0177%" height="15" fill="rgb(253,80,5)" fg:x="23702239236" fg:w="54367814"/><text x="7.9572%" y="1743.50"></text></g><g><title>[unknown] (45,001,630 samples, 0.01%)</title><rect x="7.7102%" y="1717" width="0.0146%" height="15" fill="rgb(214,133,25)" fg:x="23711605420" fg:w="45001630"/><text x="7.9602%" y="1727.50"></text></g><g><title>[unknown] (32,238,057 samples, 0.01%)</title><rect x="7.7144%" y="1701" width="0.0105%" height="15" fill="rgb(209,27,14)" fg:x="23724368993" fg:w="32238057"/><text x="7.9644%" y="1711.50"></text></g><g><title>[libgit2.so.1.9.0] (31,907,619 samples, 0.01%)</title><rect x="7.7463%" y="1829" width="0.0104%" height="15" fill="rgb(219,102,51)" fg:x="23822530533" fg:w="31907619"/><text x="7.9963%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (45,802,189 samples, 0.01%)</title><rect x="7.7460%" y="1925" width="0.0149%" height="15" fill="rgb(237,18,16)" fg:x="23821464523" fg:w="45802189"/><text x="7.9960%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (45,802,189 samples, 0.01%)</title><rect x="7.7460%" y="1909" width="0.0149%" height="15" fill="rgb(241,85,17)" fg:x="23821464523" fg:w="45802189"/><text x="7.9960%" y="1919.50"></text></g><g><title>git_odb_read (45,802,189 samples, 0.01%)</title><rect x="7.7460%" y="1893" width="0.0149%" height="15" fill="rgb(236,90,42)" fg:x="23821464523" fg:w="45802189"/><text x="7.9960%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (45,802,189 samples, 0.01%)</title><rect x="7.7460%" y="1877" width="0.0149%" height="15" fill="rgb(249,57,21)" fg:x="23821464523" fg:w="45802189"/><text x="7.9960%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (44,736,179 samples, 0.01%)</title><rect x="7.7463%" y="1861" width="0.0145%" height="15" fill="rgb(243,12,36)" fg:x="23822530533" fg:w="44736179"/><text x="7.9963%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (44,736,179 samples, 0.01%)</title><rect x="7.7463%" y="1845" width="0.0145%" height="15" fill="rgb(253,128,47)" fg:x="23822530533" fg:w="44736179"/><text x="7.9963%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (65,104,945 samples, 0.02%)</title><rect x="7.7460%" y="1941" width="0.0212%" height="15" fill="rgb(207,33,20)" fg:x="23821464523" fg:w="65104945"/><text x="7.9960%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (32,581,321 samples, 0.01%)</title><rect x="7.7886%" y="1797" width="0.0106%" height="15" fill="rgb(233,215,35)" fg:x="23952529531" fg:w="32581321"/><text x="8.0386%" y="1807.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (42,701,869 samples, 0.01%)</title><rect x="7.7865%" y="1941" width="0.0139%" height="15" fill="rgb(249,188,52)" fg:x="23946068351" fg:w="42701869"/><text x="8.0365%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (42,701,869 samples, 0.01%)</title><rect x="7.7865%" y="1925" width="0.0139%" height="15" fill="rgb(225,12,32)" fg:x="23946068351" fg:w="42701869"/><text x="8.0365%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (37,571,083 samples, 0.01%)</title><rect x="7.7881%" y="1909" width="0.0122%" height="15" fill="rgb(247,98,14)" fg:x="23951199137" fg:w="37571083"/><text x="8.0381%" y="1919.50"></text></g><g><title>git_patch_from_buffers (37,571,083 samples, 0.01%)</title><rect x="7.7881%" y="1893" width="0.0122%" height="15" fill="rgb(247,219,48)" fg:x="23951199137" fg:w="37571083"/><text x="8.0381%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (37,571,083 samples, 0.01%)</title><rect x="7.7881%" y="1877" width="0.0122%" height="15" fill="rgb(253,60,48)" fg:x="23951199137" fg:w="37571083"/><text x="8.0381%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (37,571,083 samples, 0.01%)</title><rect x="7.7881%" y="1861" width="0.0122%" height="15" fill="rgb(245,15,52)" fg:x="23951199137" fg:w="37571083"/><text x="8.0381%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (37,571,083 samples, 0.01%)</title><rect x="7.7881%" y="1845" width="0.0122%" height="15" fill="rgb(220,133,28)" fg:x="23951199137" fg:w="37571083"/><text x="8.0381%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (37,571,083 samples, 0.01%)</title><rect x="7.7881%" y="1829" width="0.0122%" height="15" fill="rgb(217,180,4)" fg:x="23951199137" fg:w="37571083"/><text x="8.0381%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (37,571,083 samples, 0.01%)</title><rect x="7.7881%" y="1813" width="0.0122%" height="15" fill="rgb(251,24,1)" fg:x="23951199137" fg:w="37571083"/><text x="8.0381%" y="1823.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (84,334,957 samples, 0.03%)</title><rect x="7.8039%" y="1925" width="0.0274%" height="15" fill="rgb(212,185,49)" fg:x="23999780961" fg:w="84334957"/><text x="8.0539%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (95,604,448 samples, 0.03%)</title><rect x="7.8007%" y="1941" width="0.0311%" height="15" fill="rgb(215,175,22)" fg:x="23989731659" fg:w="95604448"/><text x="8.0507%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (67,541,574 samples, 0.02%)</title><rect x="7.8325%" y="1941" width="0.0220%" height="15" fill="rgb(250,205,14)" fg:x="24087613154" fg:w="67541574"/><text x="8.0825%" y="1951.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (149,556,346 samples, 0.05%)</title><rect x="7.8547%" y="1941" width="0.0486%" height="15" fill="rgb(225,211,22)" fg:x="24155992112" fg:w="149556346"/><text x="8.1047%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (121,292,602 samples, 0.04%)</title><rect x="7.8639%" y="1925" width="0.0394%" height="15" fill="rgb(251,179,42)" fg:x="24184255856" fg:w="121292602"/><text x="8.1139%" y="1935.50"></text></g><g><title>ts_language_table_entry (32,729,650 samples, 0.01%)</title><rect x="7.9201%" y="1861" width="0.0106%" height="15" fill="rgb(208,216,51)" fg:x="24357042630" fg:w="32729650"/><text x="8.1701%" y="1871.50"></text></g><g><title>ts_malloc_default (54,206,748 samples, 0.02%)</title><rect x="7.9525%" y="1829" width="0.0176%" height="15" fill="rgb(235,36,11)" fg:x="24456639183" fg:w="54206748"/><text x="8.2025%" y="1839.50"></text></g><g><title>malloc (53,163,404 samples, 0.02%)</title><rect x="7.9528%" y="1813" width="0.0173%" height="15" fill="rgb(213,189,28)" fg:x="24457682527" fg:w="53163404"/><text x="8.2028%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (81,052,489 samples, 0.03%)</title><rect x="7.9493%" y="1845" width="0.0264%" height="15" fill="rgb(227,203,42)" fg:x="24446869900" fg:w="81052489"/><text x="8.1993%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (84,490,646 samples, 0.03%)</title><rect x="8.0002%" y="1845" width="0.0275%" height="15" fill="rgb(244,72,36)" fg:x="24603444770" fg:w="84490646"/><text x="8.2502%" y="1855.50"></text></g><g><title>set_contains (31,317,435 samples, 0.01%)</title><rect x="8.0348%" y="1829" width="0.0102%" height="15" fill="rgb(213,53,17)" fg:x="24709683079" fg:w="31317435"/><text x="8.2848%" y="1839.50"></text></g><g><title>ts_lex (98,178,522 samples, 0.03%)</title><rect x="8.0461%" y="1829" width="0.0319%" height="15" fill="rgb(207,167,3)" fg:x="24744394562" fg:w="98178522"/><text x="8.2961%" y="1839.50"></text></g><g><title>ts_parser__lex (185,708,360 samples, 0.06%)</title><rect x="8.0277%" y="1845" width="0.0604%" height="15" fill="rgb(216,98,30)" fg:x="24687935416" fg:w="185708360"/><text x="8.2777%" y="1855.50"></text></g><g><title>ts_parser_parse (560,242,928 samples, 0.18%)</title><rect x="7.9315%" y="1861" width="0.1822%" height="15" fill="rgb(236,123,15)" fg:x="24392212330" fg:w="560242928"/><text x="8.1815%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (596,439,550 samples, 0.19%)</title><rect x="7.9201%" y="1893" width="0.1939%" height="15" fill="rgb(248,81,50)" fg:x="24357042630" fg:w="596439550"/><text x="8.1701%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (596,439,550 samples, 0.19%)</title><rect x="7.9201%" y="1877" width="0.1939%" height="15" fill="rgb(214,120,4)" fg:x="24357042630" fg:w="596439550"/><text x="8.1701%" y="1887.50"></text></g><g><title>ts_tree_cursor_current_status (30,916,538 samples, 0.01%)</title><rect x="8.1330%" y="1861" width="0.0101%" height="15" fill="rgb(208,179,34)" fg:x="25011641431" fg:w="30916538"/><text x="8.3830%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (116,767,906 samples, 0.04%)</title><rect x="8.1217%" y="1877" width="0.0380%" height="15" fill="rgb(227,140,7)" fg:x="24977089327" fg:w="116767906"/><text x="8.3717%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (802,898,173 samples, 0.26%)</title><rect x="7.9034%" y="1925" width="0.2611%" height="15" fill="rgb(214,22,6)" fg:x="24305548458" fg:w="802898173"/><text x="8.1534%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (781,374,599 samples, 0.25%)</title><rect x="7.9104%" y="1909" width="0.2541%" height="15" fill="rgb(207,137,27)" fg:x="24327072032" fg:w="781374599"/><text x="8.1604%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (134,816,478 samples, 0.04%)</title><rect x="8.1206%" y="1893" width="0.0438%" height="15" fill="rgb(210,8,46)" fg:x="24973630153" fg:w="134816478"/><text x="8.3706%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (805,078,209 samples, 0.26%)</title><rect x="7.9034%" y="1941" width="0.2618%" height="15" fill="rgb(240,16,54)" fg:x="24305548458" fg:w="805078209"/><text x="8.1534%" y="1951.50"></text></g><g><title>ts_malloc_default (63,378,057 samples, 0.02%)</title><rect x="8.2175%" y="1829" width="0.0206%" height="15" fill="rgb(211,209,29)" fg:x="25271622701" fg:w="63378057"/><text x="8.4675%" y="1839.50"></text></g><g><title>malloc (62,246,011 samples, 0.02%)</title><rect x="8.2179%" y="1813" width="0.0202%" height="15" fill="rgb(226,228,24)" fg:x="25272754747" fg:w="62246011"/><text x="8.4679%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (87,193,265 samples, 0.03%)</title><rect x="8.2109%" y="1845" width="0.0284%" height="15" fill="rgb(222,84,9)" fg:x="25251288760" fg:w="87193265"/><text x="8.4609%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (55,921,313 samples, 0.02%)</title><rect x="8.2584%" y="1845" width="0.0182%" height="15" fill="rgb(234,203,30)" fg:x="25397516979" fg:w="55921313"/><text x="8.5084%" y="1855.50"></text></g><g><title>ts_lex (81,619,562 samples, 0.03%)</title><rect x="8.2944%" y="1829" width="0.0265%" height="15" fill="rgb(238,109,14)" fg:x="25508181185" fg:w="81619562"/><text x="8.5444%" y="1839.50"></text></g><g><title>ts_parser__lex (179,251,797 samples, 0.06%)</title><rect x="8.2766%" y="1845" width="0.0583%" height="15" fill="rgb(233,206,34)" fg:x="25453438292" fg:w="179251797"/><text x="8.5266%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (39,490,588 samples, 0.01%)</title><rect x="8.3404%" y="1845" width="0.0128%" height="15" fill="rgb(220,167,47)" fg:x="25649450640" fg:w="39490588"/><text x="8.5904%" y="1855.50"></text></g><g><title>ts_parser_parse (505,976,038 samples, 0.16%)</title><rect x="8.1999%" y="1861" width="0.1645%" height="15" fill="rgb(238,105,10)" fg:x="25217343513" fg:w="505976038"/><text x="8.4499%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (542,188,973 samples, 0.18%)</title><rect x="8.1896%" y="1877" width="0.1763%" height="15" fill="rgb(213,227,17)" fg:x="25185664560" fg:w="542188973"/><text x="8.4396%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (545,391,097 samples, 0.18%)</title><rect x="8.1896%" y="1893" width="0.1773%" height="15" fill="rgb(217,132,38)" fg:x="25185664560" fg:w="545391097"/><text x="8.4396%" y="1903.50"></text></g><g><title>ts_tree_cursor_current_status (34,018,187 samples, 0.01%)</title><rect x="8.3835%" y="1861" width="0.0111%" height="15" fill="rgb(242,146,4)" fg:x="25782187528" fg:w="34018187"/><text x="8.6335%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (94,907,209 samples, 0.03%)</title><rect x="8.3747%" y="1877" width="0.0309%" height="15" fill="rgb(212,61,9)" fg:x="25755088812" fg:w="94907209"/><text x="8.6247%" y="1887.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (742,825,635 samples, 0.24%)</title><rect x="8.1652%" y="1941" width="0.2415%" height="15" fill="rgb(247,126,22)" fg:x="25110626667" fg:w="742825635"/><text x="8.4152%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (742,825,635 samples, 0.24%)</title><rect x="8.1652%" y="1925" width="0.2415%" height="15" fill="rgb(220,196,2)" fg:x="25110626667" fg:w="742825635"/><text x="8.4152%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (684,914,622 samples, 0.22%)</title><rect x="8.1840%" y="1909" width="0.2227%" height="15" fill="rgb(208,46,4)" fg:x="25168537680" fg:w="684914622"/><text x="8.4340%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (100,811,461 samples, 0.03%)</title><rect x="8.3739%" y="1893" width="0.0328%" height="15" fill="rgb(252,104,46)" fg:x="25752640841" fg:w="100811461"/><text x="8.6239%" y="1903.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,080,723,639 samples, 0.68%)</title><rect x="7.7327%" y="1957" width="0.6766%" height="15" fill="rgb(237,152,48)" fg:x="23780819914" fg:w="2080723639"/><text x="7.9827%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,113,323,075 samples, 0.69%)</title><rect x="7.7255%" y="1973" width="0.6872%" height="15" fill="rgb(221,59,37)" fg:x="23758550488" fg:w="2113323075"/><text x="7.9755%" y="1983.50"></text></g><g><title>__GI___clone3 (2,221,356,433 samples, 0.72%)</title><rect x="7.7253%" y="2053" width="0.7223%" height="15" fill="rgb(209,202,51)" fg:x="23757790374" fg:w="2221356433"/><text x="7.9753%" y="2063.50"></text></g><g><title>start_thread (2,221,356,433 samples, 0.72%)</title><rect x="7.7253%" y="2037" width="0.7223%" height="15" fill="rgb(228,81,30)" fg:x="23757790374" fg:w="2221356433"/><text x="7.9753%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,221,356,433 samples, 0.72%)</title><rect x="7.7253%" y="2021" width="0.7223%" height="15" fill="rgb(227,42,39)" fg:x="23757790374" fg:w="2221356433"/><text x="7.9753%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,221,356,433 samples, 0.72%)</title><rect x="7.7253%" y="2005" width="0.7223%" height="15" fill="rgb(221,26,2)" fg:x="23757790374" fg:w="2221356433"/><text x="7.9753%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,221,356,433 samples, 0.72%)</title><rect x="7.7253%" y="1989" width="0.7223%" height="15" fill="rgb(254,61,31)" fg:x="23757790374" fg:w="2221356433"/><text x="7.9753%" y="1999.50"></text></g><g><title>syscall (107,273,244 samples, 0.03%)</title><rect x="8.4127%" y="1973" width="0.0349%" height="15" fill="rgb(222,173,38)" fg:x="25871873563" fg:w="107273244"/><text x="8.6627%" y="1983.50"></text></g><g><title>[unknown] (102,482,132 samples, 0.03%)</title><rect x="8.4142%" y="1957" width="0.0333%" height="15" fill="rgb(218,50,12)" fg:x="25876664675" fg:w="102482132"/><text x="8.6642%" y="1967.50"></text></g><g><title>[unknown] (98,481,790 samples, 0.03%)</title><rect x="8.4155%" y="1941" width="0.0320%" height="15" fill="rgb(223,88,40)" fg:x="25880665017" fg:w="98481790"/><text x="8.6655%" y="1951.50"></text></g><g><title>[unknown] (95,359,584 samples, 0.03%)</title><rect x="8.4166%" y="1925" width="0.0310%" height="15" fill="rgb(237,54,19)" fg:x="25883787223" fg:w="95359584"/><text x="8.6666%" y="1935.50"></text></g><g><title>[unknown] (92,560,471 samples, 0.03%)</title><rect x="8.4175%" y="1909" width="0.0301%" height="15" fill="rgb(251,129,25)" fg:x="25886586336" fg:w="92560471"/><text x="8.6675%" y="1919.50"></text></g><g><title>[unknown] (90,246,402 samples, 0.03%)</title><rect x="8.4182%" y="1893" width="0.0293%" height="15" fill="rgb(238,97,19)" fg:x="25888900405" fg:w="90246402"/><text x="8.6682%" y="1903.50"></text></g><g><title>[unknown] (86,071,778 samples, 0.03%)</title><rect x="8.4196%" y="1877" width="0.0280%" height="15" fill="rgb(240,169,18)" fg:x="25893075029" fg:w="86071778"/><text x="8.6696%" y="1887.50"></text></g><g><title>[unknown] (76,579,967 samples, 0.02%)</title><rect x="8.4227%" y="1861" width="0.0249%" height="15" fill="rgb(230,187,49)" fg:x="25902566840" fg:w="76579967"/><text x="8.6727%" y="1871.50"></text></g><g><title>[unknown] (73,845,675 samples, 0.02%)</title><rect x="8.4236%" y="1845" width="0.0240%" height="15" fill="rgb(209,44,26)" fg:x="25905301132" fg:w="73845675"/><text x="8.6736%" y="1855.50"></text></g><g><title>[unknown] (69,342,542 samples, 0.02%)</title><rect x="8.4250%" y="1829" width="0.0225%" height="15" fill="rgb(244,0,6)" fg:x="25909804265" fg:w="69342542"/><text x="8.6750%" y="1839.50"></text></g><g><title>[unknown] (66,031,417 samples, 0.02%)</title><rect x="8.4261%" y="1813" width="0.0215%" height="15" fill="rgb(248,18,21)" fg:x="25913115390" fg:w="66031417"/><text x="8.6761%" y="1823.50"></text></g><g><title>[unknown] (62,472,439 samples, 0.02%)</title><rect x="8.4273%" y="1797" width="0.0203%" height="15" fill="rgb(245,180,19)" fg:x="25916674368" fg:w="62472439"/><text x="8.6773%" y="1807.50"></text></g><g><title>[unknown] (60,955,139 samples, 0.02%)</title><rect x="8.4277%" y="1781" width="0.0198%" height="15" fill="rgb(252,118,36)" fg:x="25918191668" fg:w="60955139"/><text x="8.6777%" y="1791.50"></text></g><g><title>[unknown] (56,357,765 samples, 0.02%)</title><rect x="8.4292%" y="1765" width="0.0183%" height="15" fill="rgb(210,224,19)" fg:x="25922789042" fg:w="56357765"/><text x="8.6792%" y="1775.50"></text></g><g><title>[unknown] (51,704,748 samples, 0.02%)</title><rect x="8.4308%" y="1749" width="0.0168%" height="15" fill="rgb(218,30,24)" fg:x="25927442059" fg:w="51704748"/><text x="8.6808%" y="1759.50"></text></g><g><title>[unknown] (38,016,175 samples, 0.01%)</title><rect x="8.4352%" y="1733" width="0.0124%" height="15" fill="rgb(219,75,50)" fg:x="25941130632" fg:w="38016175"/><text x="8.6852%" y="1743.50"></text></g><g><title>[unknown] (34,712,176 samples, 0.01%)</title><rect x="8.4363%" y="1717" width="0.0113%" height="15" fill="rgb(234,72,50)" fg:x="25944434631" fg:w="34712176"/><text x="8.6863%" y="1727.50"></text></g><g><title>Worker-15 (2,229,812,517 samples, 0.73%)</title><rect x="7.7249%" y="2069" width="0.7251%" height="15" fill="rgb(219,100,48)" fg:x="23756607050" fg:w="2229812517"/><text x="7.9749%" y="2079.50"></text></g><g><title>&lt;fs::RealFs as fs::Fs&gt;::metadata::_{{closure}}::_{{closure}} (31,605,211 samples, 0.01%)</title><rect x="8.4635%" y="1941" width="0.0103%" height="15" fill="rgb(253,5,41)" fg:x="26028189110" fg:w="31605211"/><text x="8.7135%" y="1951.50"></text></g><g><title>std::sys::fs::symlink_metadata (30,871,790 samples, 0.01%)</title><rect x="8.4638%" y="1925" width="0.0100%" height="15" fill="rgb(247,181,11)" fg:x="26028922531" fg:w="30871790"/><text x="8.7138%" y="1935.50"></text></g><g><title>[libgit2.so.1.9.0] (39,637,009 samples, 0.01%)</title><rect x="8.4770%" y="1829" width="0.0129%" height="15" fill="rgb(222,223,25)" fg:x="26069734912" fg:w="39637009"/><text x="8.7270%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (46,555,596 samples, 0.02%)</title><rect x="8.4770%" y="1925" width="0.0151%" height="15" fill="rgb(214,198,28)" fg:x="26069734912" fg:w="46555596"/><text x="8.7270%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (46,555,596 samples, 0.02%)</title><rect x="8.4770%" y="1909" width="0.0151%" height="15" fill="rgb(230,46,43)" fg:x="26069734912" fg:w="46555596"/><text x="8.7270%" y="1919.50"></text></g><g><title>git_odb_read (46,555,596 samples, 0.02%)</title><rect x="8.4770%" y="1893" width="0.0151%" height="15" fill="rgb(233,65,53)" fg:x="26069734912" fg:w="46555596"/><text x="8.7270%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (46,555,596 samples, 0.02%)</title><rect x="8.4770%" y="1877" width="0.0151%" height="15" fill="rgb(221,121,27)" fg:x="26069734912" fg:w="46555596"/><text x="8.7270%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (46,555,596 samples, 0.02%)</title><rect x="8.4770%" y="1861" width="0.0151%" height="15" fill="rgb(247,70,47)" fg:x="26069734912" fg:w="46555596"/><text x="8.7270%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (46,555,596 samples, 0.02%)</title><rect x="8.4770%" y="1845" width="0.0151%" height="15" fill="rgb(228,85,35)" fg:x="26069734912" fg:w="46555596"/><text x="8.7270%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (78,900,864 samples, 0.03%)</title><rect x="8.4770%" y="1941" width="0.0257%" height="15" fill="rgb(209,50,18)" fg:x="26069734912" fg:w="78900864"/><text x="8.7270%" y="1951.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (31,250,909 samples, 0.01%)</title><rect x="8.5258%" y="1941" width="0.0102%" height="15" fill="rgb(250,19,35)" fg:x="26219818115" fg:w="31250909"/><text x="8.7758%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (31,250,909 samples, 0.01%)</title><rect x="8.5258%" y="1925" width="0.0102%" height="15" fill="rgb(253,107,29)" fg:x="26219818115" fg:w="31250909"/><text x="8.7758%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (76,360,551 samples, 0.02%)</title><rect x="8.5366%" y="1941" width="0.0248%" height="15" fill="rgb(252,179,29)" fg:x="26252806134" fg:w="76360551"/><text x="8.7866%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (65,235,063 samples, 0.02%)</title><rect x="8.5402%" y="1925" width="0.0212%" height="15" fill="rgb(238,194,6)" fg:x="26263931622" fg:w="65235063"/><text x="8.7902%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (86,427,293 samples, 0.03%)</title><rect x="8.5625%" y="1941" width="0.0281%" height="15" fill="rgb(238,164,29)" fg:x="26332515648" fg:w="86427293"/><text x="8.8125%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (32,348,602 samples, 0.01%)</title><rect x="8.5908%" y="1925" width="0.0105%" height="15" fill="rgb(224,25,9)" fg:x="26419562857" fg:w="32348602"/><text x="8.8408%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (152,736,414 samples, 0.05%)</title><rect x="8.5906%" y="1941" width="0.0497%" height="15" fill="rgb(244,153,23)" fg:x="26418942941" fg:w="152736414"/><text x="8.8406%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (119,767,896 samples, 0.04%)</title><rect x="8.6013%" y="1925" width="0.0389%" height="15" fill="rgb(212,203,14)" fg:x="26451911459" fg:w="119767896"/><text x="8.8513%" y="1935.50"></text></g><g><title>stack__iter.constprop.0 (47,041,304 samples, 0.02%)</title><rect x="8.6778%" y="1845" width="0.0153%" height="15" fill="rgb(220,164,20)" fg:x="26687154791" fg:w="47041304"/><text x="8.9278%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (43,362,794 samples, 0.01%)</title><rect x="8.7040%" y="1845" width="0.0141%" height="15" fill="rgb(222,203,48)" fg:x="26767729642" fg:w="43362794"/><text x="8.9540%" y="1855.50"></text></g><g><title>ts_lex (53,822,482 samples, 0.02%)</title><rect x="8.7274%" y="1829" width="0.0175%" height="15" fill="rgb(215,159,22)" fg:x="26839607586" fg:w="53822482"/><text x="8.9774%" y="1839.50"></text></g><g><title>ts_parser__lex (114,474,447 samples, 0.04%)</title><rect x="8.7181%" y="1845" width="0.0372%" height="15" fill="rgb(216,183,47)" fg:x="26811092436" fg:w="114474447"/><text x="8.9681%" y="1855.50"></text></g><g><title>ts_parser_parse (328,196,356 samples, 0.11%)</title><rect x="8.6663%" y="1861" width="0.1067%" height="15" fill="rgb(229,195,25)" fg:x="26651931730" fg:w="328196356"/><text x="8.9163%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (354,118,077 samples, 0.12%)</title><rect x="8.6587%" y="1893" width="0.1151%" height="15" fill="rgb(224,132,51)" fg:x="26628534617" fg:w="354118077"/><text x="8.9087%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (354,118,077 samples, 0.12%)</title><rect x="8.6587%" y="1877" width="0.1151%" height="15" fill="rgb(240,63,7)" fg:x="26628534617" fg:w="354118077"/><text x="8.9087%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (66,650,038 samples, 0.02%)</title><rect x="8.7789%" y="1877" width="0.0217%" height="15" fill="rgb(249,182,41)" fg:x="26998009478" fg:w="66650038"/><text x="9.0289%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (464,263,048 samples, 0.15%)</title><rect x="8.6500%" y="1909" width="0.1510%" height="15" fill="rgb(243,47,26)" fg:x="26601672651" fg:w="464263048"/><text x="8.9000%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (73,531,876 samples, 0.02%)</title><rect x="8.7770%" y="1893" width="0.0239%" height="15" fill="rgb(233,48,2)" fg:x="26992403823" fg:w="73531876"/><text x="9.0270%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (494,569,158 samples, 0.16%)</title><rect x="8.6405%" y="1925" width="0.1608%" height="15" fill="rgb(244,165,34)" fg:x="26572510195" fg:w="494569158"/><text x="8.8905%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (496,554,898 samples, 0.16%)</title><rect x="8.6402%" y="1941" width="0.1615%" height="15" fill="rgb(207,89,7)" fg:x="26571679355" fg:w="496554898"/><text x="8.8902%" y="1951.50"></text></g><g><title>ts_language_table_entry (34,700,232 samples, 0.01%)</title><rect x="8.8225%" y="1861" width="0.0113%" height="15" fill="rgb(244,117,36)" fg:x="27132173920" fg:w="34700232"/><text x="9.0725%" y="1871.50"></text></g><g><title>ts_malloc_default (49,118,878 samples, 0.02%)</title><rect x="8.8556%" y="1829" width="0.0160%" height="15" fill="rgb(226,144,34)" fg:x="27234024939" fg:w="49118878"/><text x="9.1056%" y="1839.50"></text></g><g><title>malloc (47,367,793 samples, 0.02%)</title><rect x="8.8562%" y="1813" width="0.0154%" height="15" fill="rgb(213,23,19)" fg:x="27235776024" fg:w="47367793"/><text x="9.1062%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (75,066,599 samples, 0.02%)</title><rect x="8.8491%" y="1845" width="0.0244%" height="15" fill="rgb(217,75,12)" fg:x="27214042255" fg:w="75066599"/><text x="9.0991%" y="1855.50"></text></g><g><title>ts_language_table_entry (41,050,365 samples, 0.01%)</title><rect x="8.8878%" y="1845" width="0.0133%" height="15" fill="rgb(224,159,17)" fg:x="27333049447" fg:w="41050365"/><text x="9.1378%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (118,625,988 samples, 0.04%)</title><rect x="8.9050%" y="1845" width="0.0386%" height="15" fill="rgb(217,118,1)" fg:x="27385764669" fg:w="118625988"/><text x="9.1550%" y="1855.50"></text></g><g><title>set_contains (35,555,542 samples, 0.01%)</title><rect x="8.9485%" y="1829" width="0.0116%" height="15" fill="rgb(232,180,48)" fg:x="27519538652" fg:w="35555542"/><text x="9.1985%" y="1839.50"></text></g><g><title>ts_lex (80,038,783 samples, 0.03%)</title><rect x="8.9619%" y="1829" width="0.0260%" height="15" fill="rgb(230,27,33)" fg:x="27560780883" fg:w="80038783"/><text x="9.2119%" y="1839.50"></text></g><g><title>ts_parser__lex (171,505,516 samples, 0.06%)</title><rect x="8.9435%" y="1845" width="0.0558%" height="15" fill="rgb(205,31,21)" fg:x="27504390657" fg:w="171505516"/><text x="9.1935%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (44,870,180 samples, 0.01%)</title><rect x="9.0169%" y="1845" width="0.0146%" height="15" fill="rgb(253,59,4)" fg:x="27730019973" fg:w="44870180"/><text x="9.2669%" y="1855.50"></text></g><g><title>stack_node_release (31,636,499 samples, 0.01%)</title><rect x="9.0212%" y="1829" width="0.0103%" height="15" fill="rgb(224,201,9)" fg:x="27743253654" fg:w="31636499"/><text x="9.2712%" y="1839.50"></text></g><g><title>ts_subtree_new_node (34,835,035 samples, 0.01%)</title><rect x="9.0350%" y="1845" width="0.0113%" height="15" fill="rgb(229,206,30)" fg:x="27785699529" fg:w="34835035"/><text x="9.2850%" y="1855.50"></text></g><g><title>ts_parser_parse_with_options (692,714,101 samples, 0.23%)</title><rect x="8.8221%" y="1877" width="0.2252%" height="15" fill="rgb(212,67,47)" fg:x="27131068818" fg:w="692714101"/><text x="9.0721%" y="1887.50"></text></g><g><title>ts_parser_parse (654,937,888 samples, 0.21%)</title><rect x="8.8344%" y="1861" width="0.2130%" height="15" fill="rgb(211,96,50)" fg:x="27168845031" fg:w="654937888"/><text x="9.0844%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (697,082,161 samples, 0.23%)</title><rect x="8.8217%" y="1893" width="0.2267%" height="15" fill="rgb(252,114,18)" fg:x="27129838352" fg:w="697082161"/><text x="9.0717%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (60,325,648 samples, 0.02%)</title><rect x="9.0551%" y="1877" width="0.0196%" height="15" fill="rgb(223,58,37)" fg:x="27847475899" fg:w="60325648"/><text x="9.3051%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (62,352,667 samples, 0.02%)</title><rect x="9.0551%" y="1893" width="0.0203%" height="15" fill="rgb(237,70,4)" fg:x="27847475899" fg:w="62352667"/><text x="9.3051%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (842,679,263 samples, 0.27%)</title><rect x="8.8017%" y="1941" width="0.2740%" height="15" fill="rgb(244,85,46)" fg:x="27068234253" fg:w="842679263"/><text x="9.0517%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (842,679,263 samples, 0.27%)</title><rect x="8.8017%" y="1925" width="0.2740%" height="15" fill="rgb(223,39,52)" fg:x="27068234253" fg:w="842679263"/><text x="9.0517%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (805,613,630 samples, 0.26%)</title><rect x="8.8138%" y="1909" width="0.2620%" height="15" fill="rgb(218,200,14)" fg:x="27105299886" fg:w="805613630"/><text x="9.0638%" y="1919.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,927,352,604 samples, 0.63%)</title><rect x="8.4556%" y="1957" width="0.6267%" height="15" fill="rgb(208,171,16)" fg:x="26003907039" fg:w="1927352604"/><text x="8.7056%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,951,758,244 samples, 0.63%)</title><rect x="8.4501%" y="1973" width="0.6346%" height="15" fill="rgb(234,200,18)" fg:x="25987033994" fg:w="1951758244"/><text x="8.7001%" y="1983.50"></text></g><g><title>Worker-16 (2,070,398,802 samples, 0.67%)</title><rect x="8.4499%" y="2069" width="0.6732%" height="15" fill="rgb(228,45,11)" fg:x="25986419567" fg:w="2070398802"/><text x="8.6999%" y="2079.50"></text></g><g><title>__GI___clone3 (2,069,784,375 samples, 0.67%)</title><rect x="8.4501%" y="2053" width="0.6730%" height="15" fill="rgb(237,182,11)" fg:x="25987033994" fg:w="2069784375"/><text x="8.7001%" y="2063.50"></text></g><g><title>start_thread (2,069,784,375 samples, 0.67%)</title><rect x="8.4501%" y="2037" width="0.6730%" height="15" fill="rgb(241,175,49)" fg:x="25987033994" fg:w="2069784375"/><text x="8.7001%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,069,784,375 samples, 0.67%)</title><rect x="8.4501%" y="2021" width="0.6730%" height="15" fill="rgb(247,38,35)" fg:x="25987033994" fg:w="2069784375"/><text x="8.7001%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,069,784,375 samples, 0.67%)</title><rect x="8.4501%" y="2005" width="0.6730%" height="15" fill="rgb(228,39,49)" fg:x="25987033994" fg:w="2069784375"/><text x="8.7001%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,069,784,375 samples, 0.67%)</title><rect x="8.4501%" y="1989" width="0.6730%" height="15" fill="rgb(226,101,26)" fg:x="25987033994" fg:w="2069784375"/><text x="8.7001%" y="1999.50"></text></g><g><title>syscall (118,026,131 samples, 0.04%)</title><rect x="9.0848%" y="1973" width="0.0384%" height="15" fill="rgb(206,141,19)" fg:x="27938792238" fg:w="118026131"/><text x="9.3348%" y="1983.50"></text></g><g><title>[unknown] (108,986,019 samples, 0.04%)</title><rect x="9.0877%" y="1957" width="0.0354%" height="15" fill="rgb(211,200,13)" fg:x="27947832350" fg:w="108986019"/><text x="9.3377%" y="1967.50"></text></g><g><title>[unknown] (101,734,681 samples, 0.03%)</title><rect x="9.0901%" y="1941" width="0.0331%" height="15" fill="rgb(241,121,6)" fg:x="27955083688" fg:w="101734681"/><text x="9.3401%" y="1951.50"></text></g><g><title>[unknown] (97,649,492 samples, 0.03%)</title><rect x="9.0914%" y="1925" width="0.0318%" height="15" fill="rgb(234,221,29)" fg:x="27959168877" fg:w="97649492"/><text x="9.3414%" y="1935.50"></text></g><g><title>[unknown] (96,024,749 samples, 0.03%)</title><rect x="9.0919%" y="1909" width="0.0312%" height="15" fill="rgb(229,136,5)" fg:x="27960793620" fg:w="96024749"/><text x="9.3419%" y="1919.50"></text></g><g><title>[unknown] (94,606,327 samples, 0.03%)</title><rect x="9.0924%" y="1893" width="0.0308%" height="15" fill="rgb(238,36,11)" fg:x="27962212042" fg:w="94606327"/><text x="9.3424%" y="1903.50"></text></g><g><title>[unknown] (94,234,541 samples, 0.03%)</title><rect x="9.0925%" y="1877" width="0.0306%" height="15" fill="rgb(251,55,41)" fg:x="27962583828" fg:w="94234541"/><text x="9.3425%" y="1887.50"></text></g><g><title>[unknown] (85,744,960 samples, 0.03%)</title><rect x="9.0953%" y="1861" width="0.0279%" height="15" fill="rgb(242,34,40)" fg:x="27971073409" fg:w="85744960"/><text x="9.3453%" y="1871.50"></text></g><g><title>[unknown] (82,868,376 samples, 0.03%)</title><rect x="9.0962%" y="1845" width="0.0269%" height="15" fill="rgb(215,42,17)" fg:x="27973949993" fg:w="82868376"/><text x="9.3462%" y="1855.50"></text></g><g><title>[unknown] (80,942,409 samples, 0.03%)</title><rect x="9.0968%" y="1829" width="0.0263%" height="15" fill="rgb(207,44,46)" fg:x="27975875960" fg:w="80942409"/><text x="9.3468%" y="1839.50"></text></g><g><title>[unknown] (76,387,967 samples, 0.02%)</title><rect x="9.0983%" y="1813" width="0.0248%" height="15" fill="rgb(211,206,28)" fg:x="27980430402" fg:w="76387967"/><text x="9.3483%" y="1823.50"></text></g><g><title>[unknown] (74,930,976 samples, 0.02%)</title><rect x="9.0988%" y="1797" width="0.0244%" height="15" fill="rgb(237,167,16)" fg:x="27981887393" fg:w="74930976"/><text x="9.3488%" y="1807.50"></text></g><g><title>[unknown] (70,375,762 samples, 0.02%)</title><rect x="9.1003%" y="1781" width="0.0229%" height="15" fill="rgb(233,66,6)" fg:x="27986442607" fg:w="70375762"/><text x="9.3503%" y="1791.50"></text></g><g><title>[unknown] (65,976,434 samples, 0.02%)</title><rect x="9.1017%" y="1765" width="0.0215%" height="15" fill="rgb(246,123,29)" fg:x="27990841935" fg:w="65976434"/><text x="9.3517%" y="1775.50"></text></g><g><title>[unknown] (58,485,852 samples, 0.02%)</title><rect x="9.1041%" y="1749" width="0.0190%" height="15" fill="rgb(209,62,40)" fg:x="27998332517" fg:w="58485852"/><text x="9.3541%" y="1759.50"></text></g><g><title>[unknown] (43,147,956 samples, 0.01%)</title><rect x="9.1091%" y="1733" width="0.0140%" height="15" fill="rgb(218,4,25)" fg:x="28013670413" fg:w="43147956"/><text x="9.3591%" y="1743.50"></text></g><g><title>[unknown] (36,465,810 samples, 0.01%)</title><rect x="9.1113%" y="1717" width="0.0119%" height="15" fill="rgb(253,91,49)" fg:x="28020352559" fg:w="36465810"/><text x="9.3613%" y="1727.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (44,752,367 samples, 0.01%)</title><rect x="9.1417%" y="1941" width="0.0146%" height="15" fill="rgb(228,155,29)" fg:x="28113837745" fg:w="44752367"/><text x="9.3917%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (38,585,325 samples, 0.01%)</title><rect x="9.1737%" y="1797" width="0.0125%" height="15" fill="rgb(243,57,37)" fg:x="28212264293" fg:w="38585325"/><text x="9.4237%" y="1807.50"></text></g><g><title>git2::patch::Patch::from_buffers (43,971,553 samples, 0.01%)</title><rect x="9.1724%" y="1909" width="0.0143%" height="15" fill="rgb(244,167,17)" fg:x="28208226108" fg:w="43971553"/><text x="9.4224%" y="1919.50"></text></g><g><title>git_patch_from_buffers (43,971,553 samples, 0.01%)</title><rect x="9.1724%" y="1893" width="0.0143%" height="15" fill="rgb(207,181,38)" fg:x="28208226108" fg:w="43971553"/><text x="9.4224%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (43,971,553 samples, 0.01%)</title><rect x="9.1724%" y="1877" width="0.0143%" height="15" fill="rgb(211,8,23)" fg:x="28208226108" fg:w="43971553"/><text x="9.4224%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (43,971,553 samples, 0.01%)</title><rect x="9.1724%" y="1861" width="0.0143%" height="15" fill="rgb(235,11,44)" fg:x="28208226108" fg:w="43971553"/><text x="9.4224%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (43,971,553 samples, 0.01%)</title><rect x="9.1724%" y="1845" width="0.0143%" height="15" fill="rgb(248,18,52)" fg:x="28208226108" fg:w="43971553"/><text x="9.4224%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (43,971,553 samples, 0.01%)</title><rect x="9.1724%" y="1829" width="0.0143%" height="15" fill="rgb(208,4,7)" fg:x="28208226108" fg:w="43971553"/><text x="9.4224%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (43,971,553 samples, 0.01%)</title><rect x="9.1724%" y="1813" width="0.0143%" height="15" fill="rgb(240,17,39)" fg:x="28208226108" fg:w="43971553"/><text x="9.4224%" y="1823.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (46,102,411 samples, 0.01%)</title><rect x="9.1720%" y="1941" width="0.0150%" height="15" fill="rgb(207,170,3)" fg:x="28207068548" fg:w="46102411"/><text x="9.4220%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (46,102,411 samples, 0.01%)</title><rect x="9.1720%" y="1925" width="0.0150%" height="15" fill="rgb(236,100,52)" fg:x="28207068548" fg:w="46102411"/><text x="9.4220%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (61,542,684 samples, 0.02%)</title><rect x="9.1884%" y="1925" width="0.0200%" height="15" fill="rgb(246,78,51)" fg:x="28257576731" fg:w="61542684"/><text x="9.4384%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (67,115,816 samples, 0.02%)</title><rect x="9.1870%" y="1941" width="0.0218%" height="15" fill="rgb(211,17,15)" fg:x="28253170959" fg:w="67115816"/><text x="9.4370%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (86,877,978 samples, 0.03%)</title><rect x="9.2095%" y="1941" width="0.0282%" height="15" fill="rgb(209,59,46)" fg:x="28322423249" fg:w="86877978"/><text x="9.4595%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (46,343,465 samples, 0.02%)</title><rect x="9.2617%" y="1909" width="0.0151%" height="15" fill="rgb(210,92,25)" fg:x="28483022919" fg:w="46343465"/><text x="9.5117%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (189,725,702 samples, 0.06%)</title><rect x="9.2378%" y="1941" width="0.0617%" height="15" fill="rgb(238,174,52)" fg:x="28409301227" fg:w="189725702"/><text x="9.4878%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (154,346,984 samples, 0.05%)</title><rect x="9.2493%" y="1925" width="0.0502%" height="15" fill="rgb(230,73,7)" fg:x="28444679945" fg:w="154346984"/><text x="9.4993%" y="1935.50"></text></g><g><title>ts_language_table_entry (52,406,986 samples, 0.02%)</title><rect x="9.3245%" y="1861" width="0.0170%" height="15" fill="rgb(243,124,40)" fg:x="28676159457" fg:w="52406986"/><text x="9.5745%" y="1871.50"></text></g><g><title>ts_malloc_default (75,052,973 samples, 0.02%)</title><rect x="9.3766%" y="1829" width="0.0244%" height="15" fill="rgb(244,170,11)" fg:x="28836125426" fg:w="75052973"/><text x="9.6266%" y="1839.50"></text></g><g><title>malloc (75,052,973 samples, 0.02%)</title><rect x="9.3766%" y="1813" width="0.0244%" height="15" fill="rgb(207,114,54)" fg:x="28836125426" fg:w="75052973"/><text x="9.6266%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (112,061,522 samples, 0.04%)</title><rect x="9.3657%" y="1845" width="0.0364%" height="15" fill="rgb(205,42,20)" fg:x="28802656680" fg:w="112061522"/><text x="9.6157%" y="1855.50"></text></g><g><title>ts_language_table_entry (34,468,971 samples, 0.01%)</title><rect x="9.4164%" y="1845" width="0.0112%" height="15" fill="rgb(230,30,28)" fg:x="28958716576" fg:w="34468971"/><text x="9.6664%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (276,788,726 samples, 0.09%)</title><rect x="9.4370%" y="1845" width="0.0900%" height="15" fill="rgb(205,73,54)" fg:x="29022093208" fg:w="276788726"/><text x="9.6870%" y="1855.50"></text></g><g><title>set_contains (43,308,288 samples, 0.01%)</title><rect x="9.5323%" y="1829" width="0.0141%" height="15" fill="rgb(254,227,23)" fg:x="29315165108" fg:w="43308288"/><text x="9.7823%" y="1839.50"></text></g><g><title>ts_lex (111,458,333 samples, 0.04%)</title><rect x="9.5467%" y="1829" width="0.0362%" height="15" fill="rgb(228,202,34)" fg:x="29359293381" fg:w="111458333"/><text x="9.7967%" y="1839.50"></text></g><g><title>ts_parser__lex (219,029,745 samples, 0.07%)</title><rect x="9.5270%" y="1845" width="0.0712%" height="15" fill="rgb(222,225,37)" fg:x="29298881934" fg:w="219029745"/><text x="9.7770%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (52,097,592 samples, 0.02%)</title><rect x="9.6182%" y="1845" width="0.0169%" height="15" fill="rgb(221,14,54)" fg:x="29579317561" fg:w="52097592"/><text x="9.8682%" y="1855.50"></text></g><g><title>ts_parser_parse (945,393,125 samples, 0.31%)</title><rect x="9.3419%" y="1861" width="0.3074%" height="15" fill="rgb(254,102,2)" fg:x="28729534632" fg:w="945393125"/><text x="9.5919%" y="1871.50"></text></g><g><title>ts_subtree_new_node (33,036,271 samples, 0.01%)</title><rect x="9.6386%" y="1845" width="0.0107%" height="15" fill="rgb(232,104,17)" fg:x="29641891486" fg:w="33036271"/><text x="9.8886%" y="1855.50"></text></g><g><title>ts_parser_parse_with_options (1,004,852,927 samples, 0.33%)</title><rect x="9.3234%" y="1877" width="0.3267%" height="15" fill="rgb(250,220,14)" fg:x="28672562425" fg:w="1004852927"/><text x="9.5734%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (1,010,848,540 samples, 0.33%)</title><rect x="9.3230%" y="1893" width="0.3287%" height="15" fill="rgb(241,158,9)" fg:x="28671459238" fg:w="1010848540"/><text x="9.5730%" y="1903.50"></text></g><g><title>ts_tree_cursor_current_status (39,395,425 samples, 0.01%)</title><rect x="9.6842%" y="1861" width="0.0128%" height="15" fill="rgb(246,9,43)" fg:x="29782329120" fg:w="39395425"/><text x="9.9342%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (152,850,323 samples, 0.05%)</title><rect x="9.6650%" y="1877" width="0.0497%" height="15" fill="rgb(206,73,33)" fg:x="29723309951" fg:w="152850323"/><text x="9.9150%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (1,265,527,280 samples, 0.41%)</title><rect x="9.3062%" y="1909" width="0.4115%" height="15" fill="rgb(222,79,8)" fg:x="28619647084" fg:w="1265527280"/><text x="9.5562%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (170,177,672 samples, 0.06%)</title><rect x="9.6623%" y="1893" width="0.0553%" height="15" fill="rgb(234,8,54)" fg:x="29714996692" fg:w="170177672"/><text x="9.9123%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (1,287,292,359 samples, 0.42%)</title><rect x="9.2995%" y="1941" width="0.4186%" height="15" fill="rgb(209,134,38)" fg:x="28599026929" fg:w="1287292359"/><text x="9.5495%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (1,286,066,002 samples, 0.42%)</title><rect x="9.2999%" y="1925" width="0.4182%" height="15" fill="rgb(230,127,29)" fg:x="28600253286" fg:w="1286066002"/><text x="9.5499%" y="1935.50"></text></g><g><title>ts_malloc_default (54,926,430 samples, 0.02%)</title><rect x="9.7593%" y="1829" width="0.0179%" height="15" fill="rgb(242,44,41)" fg:x="30013173207" fg:w="54926430"/><text x="10.0093%" y="1839.50"></text></g><g><title>malloc (54,926,430 samples, 0.02%)</title><rect x="9.7593%" y="1813" width="0.0179%" height="15" fill="rgb(222,56,43)" fg:x="30013173207" fg:w="54926430"/><text x="10.0093%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (73,172,205 samples, 0.02%)</title><rect x="9.7556%" y="1845" width="0.0238%" height="15" fill="rgb(238,39,47)" fg:x="30001715338" fg:w="73172205"/><text x="10.0056%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (51,681,012 samples, 0.02%)</title><rect x="9.7934%" y="1845" width="0.0168%" height="15" fill="rgb(226,79,43)" fg:x="30118146457" fg:w="51681012"/><text x="10.0434%" y="1855.50"></text></g><g><title>ts_lex (53,837,963 samples, 0.02%)</title><rect x="9.8233%" y="1829" width="0.0175%" height="15" fill="rgb(242,105,53)" fg:x="30210106546" fg:w="53837963"/><text x="10.0733%" y="1839.50"></text></g><g><title>ts_parser__lex (118,770,642 samples, 0.04%)</title><rect x="9.8102%" y="1845" width="0.0386%" height="15" fill="rgb(251,132,46)" fg:x="30169827469" fg:w="118770642"/><text x="10.0602%" y="1855.50"></text></g><g><title>ts_parser_parse (379,068,273 samples, 0.12%)</title><rect x="9.7468%" y="1861" width="0.1233%" height="15" fill="rgb(231,77,14)" fg:x="29974648800" fg:w="379068273"/><text x="9.9968%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (404,006,847 samples, 0.13%)</title><rect x="9.7391%" y="1893" width="0.1314%" height="15" fill="rgb(240,135,9)" fg:x="29950971109" fg:w="404006847"/><text x="9.9891%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (404,006,847 samples, 0.13%)</title><rect x="9.7391%" y="1877" width="0.1314%" height="15" fill="rgb(248,109,14)" fg:x="29950971109" fg:w="404006847"/><text x="9.9891%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (67,928,412 samples, 0.02%)</title><rect x="9.8796%" y="1877" width="0.0221%" height="15" fill="rgb(227,146,52)" fg:x="30383259491" fg:w="67928412"/><text x="10.1296%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (75,028,033 samples, 0.02%)</title><rect x="9.8790%" y="1893" width="0.0244%" height="15" fill="rgb(232,54,3)" fg:x="30381141558" fg:w="75028033"/><text x="10.1290%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (570,496,871 samples, 0.19%)</title><rect x="9.7181%" y="1941" width="0.1855%" height="15" fill="rgb(229,201,43)" fg:x="29886319288" fg:w="570496871"/><text x="9.9681%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (569,998,437 samples, 0.19%)</title><rect x="9.7182%" y="1925" width="0.1853%" height="15" fill="rgb(252,161,33)" fg:x="29886817722" fg:w="569998437"/><text x="9.9682%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (517,216,708 samples, 0.17%)</title><rect x="9.7354%" y="1909" width="0.1682%" height="15" fill="rgb(226,146,40)" fg:x="29939599451" fg:w="517216708"/><text x="9.9854%" y="1919.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,401,628,248 samples, 0.78%)</title><rect x="9.1300%" y="1957" width="0.7809%" height="15" fill="rgb(219,47,25)" fg:x="28077725403" fg:w="2401628248"/><text x="9.3800%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,425,137,692 samples, 0.79%)</title><rect x="9.1249%" y="1973" width="0.7886%" height="15" fill="rgb(250,135,13)" fg:x="28062054062" fg:w="2425137692"/><text x="9.3749%" y="1983.50"></text></g><g><title>Worker-17 (2,558,212,594 samples, 0.83%)</title><rect x="9.1232%" y="2069" width="0.8318%" height="15" fill="rgb(219,229,18)" fg:x="28056818369" fg:w="2558212594"/><text x="9.3732%" y="2079.50"></text></g><g><title>__GI___clone3 (2,558,212,594 samples, 0.83%)</title><rect x="9.1232%" y="2053" width="0.8318%" height="15" fill="rgb(217,152,27)" fg:x="28056818369" fg:w="2558212594"/><text x="9.3732%" y="2063.50"></text></g><g><title>start_thread (2,558,212,594 samples, 0.83%)</title><rect x="9.1232%" y="2037" width="0.8318%" height="15" fill="rgb(225,71,47)" fg:x="28056818369" fg:w="2558212594"/><text x="9.3732%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,558,212,594 samples, 0.83%)</title><rect x="9.1232%" y="2021" width="0.8318%" height="15" fill="rgb(220,139,14)" fg:x="28056818369" fg:w="2558212594"/><text x="9.3732%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,558,212,594 samples, 0.83%)</title><rect x="9.1232%" y="2005" width="0.8318%" height="15" fill="rgb(247,54,32)" fg:x="28056818369" fg:w="2558212594"/><text x="9.3732%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,558,212,594 samples, 0.83%)</title><rect x="9.1232%" y="1989" width="0.8318%" height="15" fill="rgb(252,131,39)" fg:x="28056818369" fg:w="2558212594"/><text x="9.3732%" y="1999.50"></text></g><g><title>syscall (127,839,209 samples, 0.04%)</title><rect x="9.9134%" y="1973" width="0.0416%" height="15" fill="rgb(210,108,39)" fg:x="30487191754" fg:w="127839209"/><text x="10.1634%" y="1983.50"></text></g><g><title>[unknown] (122,588,591 samples, 0.04%)</title><rect x="9.9151%" y="1957" width="0.0399%" height="15" fill="rgb(205,23,29)" fg:x="30492442372" fg:w="122588591"/><text x="10.1651%" y="1967.50"></text></g><g><title>[unknown] (120,486,841 samples, 0.04%)</title><rect x="9.9158%" y="1941" width="0.0392%" height="15" fill="rgb(246,139,46)" fg:x="30494544122" fg:w="120486841"/><text x="10.1658%" y="1951.50"></text></g><g><title>[unknown] (116,542,888 samples, 0.04%)</title><rect x="9.9171%" y="1925" width="0.0379%" height="15" fill="rgb(250,81,26)" fg:x="30498488075" fg:w="116542888"/><text x="10.1671%" y="1935.50"></text></g><g><title>[unknown] (113,313,014 samples, 0.04%)</title><rect x="9.9182%" y="1909" width="0.0368%" height="15" fill="rgb(214,104,7)" fg:x="30501717949" fg:w="113313014"/><text x="10.1682%" y="1919.50"></text></g><g><title>[unknown] (102,405,342 samples, 0.03%)</title><rect x="9.9217%" y="1893" width="0.0333%" height="15" fill="rgb(233,189,8)" fg:x="30512625621" fg:w="102405342"/><text x="10.1717%" y="1903.50"></text></g><g><title>[unknown] (97,092,703 samples, 0.03%)</title><rect x="9.9234%" y="1877" width="0.0316%" height="15" fill="rgb(228,141,17)" fg:x="30517938260" fg:w="97092703"/><text x="10.1734%" y="1887.50"></text></g><g><title>[unknown] (92,450,741 samples, 0.03%)</title><rect x="9.9249%" y="1861" width="0.0301%" height="15" fill="rgb(247,157,1)" fg:x="30522580222" fg:w="92450741"/><text x="10.1749%" y="1871.50"></text></g><g><title>[unknown] (87,192,293 samples, 0.03%)</title><rect x="9.9267%" y="1845" width="0.0284%" height="15" fill="rgb(249,225,5)" fg:x="30527838670" fg:w="87192293"/><text x="10.1767%" y="1855.50"></text></g><g><title>[unknown] (86,633,000 samples, 0.03%)</title><rect x="9.9268%" y="1829" width="0.0282%" height="15" fill="rgb(242,55,13)" fg:x="30528397963" fg:w="86633000"/><text x="10.1768%" y="1839.50"></text></g><g><title>[unknown] (82,152,111 samples, 0.03%)</title><rect x="9.9283%" y="1813" width="0.0267%" height="15" fill="rgb(230,49,50)" fg:x="30532878852" fg:w="82152111"/><text x="10.1783%" y="1823.50"></text></g><g><title>[unknown] (79,719,175 samples, 0.03%)</title><rect x="9.9291%" y="1797" width="0.0259%" height="15" fill="rgb(241,111,38)" fg:x="30535311788" fg:w="79719175"/><text x="10.1791%" y="1807.50"></text></g><g><title>[unknown] (77,009,225 samples, 0.03%)</title><rect x="9.9300%" y="1781" width="0.0250%" height="15" fill="rgb(252,155,4)" fg:x="30538021738" fg:w="77009225"/><text x="10.1800%" y="1791.50"></text></g><g><title>[unknown] (69,112,061 samples, 0.02%)</title><rect x="9.9325%" y="1765" width="0.0225%" height="15" fill="rgb(212,69,32)" fg:x="30545918902" fg:w="69112061"/><text x="10.1825%" y="1775.50"></text></g><g><title>[unknown] (62,637,257 samples, 0.02%)</title><rect x="9.9346%" y="1749" width="0.0204%" height="15" fill="rgb(243,107,47)" fg:x="30552393706" fg:w="62637257"/><text x="10.1846%" y="1759.50"></text></g><g><title>[unknown] (49,794,704 samples, 0.02%)</title><rect x="9.9388%" y="1733" width="0.0162%" height="15" fill="rgb(247,130,12)" fg:x="30565236259" fg:w="49794704"/><text x="10.1888%" y="1743.50"></text></g><g><title>[unknown] (37,751,718 samples, 0.01%)</title><rect x="9.9427%" y="1717" width="0.0123%" height="15" fill="rgb(233,74,16)" fg:x="30577279245" fg:w="37751718"/><text x="10.1927%" y="1727.50"></text></g><g><title>[libgit2.so.1.9.0] (35,217,564 samples, 0.01%)</title><rect x="9.9719%" y="1829" width="0.0115%" height="15" fill="rgb(208,58,18)" fg:x="30667061603" fg:w="35217564"/><text x="10.2219%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (44,395,401 samples, 0.01%)</title><rect x="9.9715%" y="1925" width="0.0144%" height="15" fill="rgb(242,225,1)" fg:x="30665866609" fg:w="44395401"/><text x="10.2215%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (44,395,401 samples, 0.01%)</title><rect x="9.9715%" y="1909" width="0.0144%" height="15" fill="rgb(249,39,40)" fg:x="30665866609" fg:w="44395401"/><text x="10.2215%" y="1919.50"></text></g><g><title>git_odb_read (44,395,401 samples, 0.01%)</title><rect x="9.9715%" y="1893" width="0.0144%" height="15" fill="rgb(207,72,44)" fg:x="30665866609" fg:w="44395401"/><text x="10.2215%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (44,395,401 samples, 0.01%)</title><rect x="9.9715%" y="1877" width="0.0144%" height="15" fill="rgb(215,193,12)" fg:x="30665866609" fg:w="44395401"/><text x="10.2215%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (44,395,401 samples, 0.01%)</title><rect x="9.9715%" y="1861" width="0.0144%" height="15" fill="rgb(248,41,39)" fg:x="30665866609" fg:w="44395401"/><text x="10.2215%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (44,395,401 samples, 0.01%)</title><rect x="9.9715%" y="1845" width="0.0144%" height="15" fill="rgb(253,85,4)" fg:x="30665866609" fg:w="44395401"/><text x="10.2215%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (74,792,771 samples, 0.02%)</title><rect x="9.9715%" y="1941" width="0.0243%" height="15" fill="rgb(243,70,31)" fg:x="30665866609" fg:w="74792771"/><text x="10.2215%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (33,570,967 samples, 0.01%)</title><rect x="10.0093%" y="1813" width="0.0109%" height="15" fill="rgb(253,195,26)" fg:x="30782011371" fg:w="33570967"/><text x="10.2593%" y="1823.50"></text></g><g><title>[libgit2.so.1.9.0] (55,403,995 samples, 0.02%)</title><rect x="10.0053%" y="1829" width="0.0180%" height="15" fill="rgb(243,42,11)" fg:x="30769658246" fg:w="55403995"/><text x="10.2553%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (58,533,266 samples, 0.02%)</title><rect x="10.0053%" y="1845" width="0.0190%" height="15" fill="rgb(239,66,17)" fg:x="30769658246" fg:w="58533266"/><text x="10.2553%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (79,307,261 samples, 0.03%)</title><rect x="10.0029%" y="1861" width="0.0258%" height="15" fill="rgb(217,132,21)" fg:x="30762301091" fg:w="79307261"/><text x="10.2529%" y="1871.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_index_text::_{{closure}} (102,149,462 samples, 0.03%)</title><rect x="9.9959%" y="1941" width="0.0332%" height="15" fill="rgb(252,202,21)" fg:x="30740659380" fg:w="102149462"/><text x="10.2459%" y="1951.50"></text></g><g><title>git2::repo::Repository::index (80,507,751 samples, 0.03%)</title><rect x="10.0029%" y="1925" width="0.0262%" height="15" fill="rgb(233,98,36)" fg:x="30762301091" fg:w="80507751"/><text x="10.2529%" y="1935.50"></text></g><g><title>git_repository_index (80,507,751 samples, 0.03%)</title><rect x="10.0029%" y="1909" width="0.0262%" height="15" fill="rgb(216,153,54)" fg:x="30762301091" fg:w="80507751"/><text x="10.2529%" y="1919.50"></text></g><g><title>[libgit2.so.1.9.0] (80,507,751 samples, 0.03%)</title><rect x="10.0029%" y="1893" width="0.0262%" height="15" fill="rgb(250,99,7)" fg:x="30762301091" fg:w="80507751"/><text x="10.2529%" y="1903.50"></text></g><g><title>git_index_read (80,507,751 samples, 0.03%)</title><rect x="10.0029%" y="1877" width="0.0262%" height="15" fill="rgb(207,56,50)" fg:x="30762301091" fg:w="80507751"/><text x="10.2529%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (36,917,631 samples, 0.01%)</title><rect x="10.0626%" y="1781" width="0.0120%" height="15" fill="rgb(244,61,34)" fg:x="30945861153" fg:w="36917631"/><text x="10.3126%" y="1791.50"></text></g><g><title>[libgit2.so.1.9.0] (33,585,614 samples, 0.01%)</title><rect x="10.0637%" y="1765" width="0.0109%" height="15" fill="rgb(241,50,38)" fg:x="30949193170" fg:w="33585614"/><text x="10.3137%" y="1775.50"></text></g><g><title>[libgit2.so.1.9.0] (66,812,173 samples, 0.02%)</title><rect x="10.0537%" y="1797" width="0.0217%" height="15" fill="rgb(212,166,30)" fg:x="30918596023" fg:w="66812173"/><text x="10.3037%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (74,952,849 samples, 0.02%)</title><rect x="10.0518%" y="1813" width="0.0244%" height="15" fill="rgb(249,127,32)" fg:x="30912660231" fg:w="74952849"/><text x="10.3018%" y="1823.50"></text></g><g><title>git2::patch::Patch::from_buffers (78,119,184 samples, 0.03%)</title><rect x="10.0518%" y="1909" width="0.0254%" height="15" fill="rgb(209,103,0)" fg:x="30912660231" fg:w="78119184"/><text x="10.3018%" y="1919.50"></text></g><g><title>git_patch_from_buffers (78,119,184 samples, 0.03%)</title><rect x="10.0518%" y="1893" width="0.0254%" height="15" fill="rgb(238,209,51)" fg:x="30912660231" fg:w="78119184"/><text x="10.3018%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (78,119,184 samples, 0.03%)</title><rect x="10.0518%" y="1877" width="0.0254%" height="15" fill="rgb(237,56,23)" fg:x="30912660231" fg:w="78119184"/><text x="10.3018%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (78,119,184 samples, 0.03%)</title><rect x="10.0518%" y="1861" width="0.0254%" height="15" fill="rgb(215,153,46)" fg:x="30912660231" fg:w="78119184"/><text x="10.3018%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (78,119,184 samples, 0.03%)</title><rect x="10.0518%" y="1845" width="0.0254%" height="15" fill="rgb(224,49,31)" fg:x="30912660231" fg:w="78119184"/><text x="10.3018%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (78,119,184 samples, 0.03%)</title><rect x="10.0518%" y="1829" width="0.0254%" height="15" fill="rgb(250,18,42)" fg:x="30912660231" fg:w="78119184"/><text x="10.3018%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (92,631,074 samples, 0.03%)</title><rect x="10.0473%" y="1941" width="0.0301%" height="15" fill="rgb(215,176,39)" fg:x="30898998045" fg:w="92631074"/><text x="10.2973%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (91,490,309 samples, 0.03%)</title><rect x="10.0477%" y="1925" width="0.0297%" height="15" fill="rgb(223,77,29)" fg:x="30900138810" fg:w="91490309"/><text x="10.2977%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (80,280,544 samples, 0.03%)</title><rect x="10.0801%" y="1925" width="0.0261%" height="15" fill="rgb(234,94,52)" fg:x="30999674709" fg:w="80280544"/><text x="10.3301%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (88,292,151 samples, 0.03%)</title><rect x="10.0782%" y="1941" width="0.0287%" height="15" fill="rgb(220,154,50)" fg:x="30993768372" fg:w="88292151"/><text x="10.3282%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (69,029,593 samples, 0.02%)</title><rect x="10.1079%" y="1941" width="0.0224%" height="15" fill="rgb(212,11,10)" fg:x="31085333470" fg:w="69029593"/><text x="10.3579%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (52,084,796 samples, 0.02%)</title><rect x="10.1313%" y="1925" width="0.0169%" height="15" fill="rgb(205,166,19)" fg:x="31157238033" fg:w="52084796"/><text x="10.3813%" y="1935.50"></text></g><g><title>worktree::BackgroundScanner::reload_entries_for_paths::_{{closure}} (52,084,796 samples, 0.02%)</title><rect x="10.1313%" y="1909" width="0.0169%" height="15" fill="rgb(244,198,16)" fg:x="31157238033" fg:w="52084796"/><text x="10.3813%" y="1919.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (38,926,823 samples, 0.01%)</title><rect x="10.1571%" y="1909" width="0.0127%" height="15" fill="rgb(219,69,12)" fg:x="31236486971" fg:w="38926823"/><text x="10.4071%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (184,130,140 samples, 0.06%)</title><rect x="10.1307%" y="1941" width="0.0599%" height="15" fill="rgb(245,30,7)" fg:x="31155210001" fg:w="184130140"/><text x="10.3807%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (130,017,312 samples, 0.04%)</title><rect x="10.1483%" y="1925" width="0.0423%" height="15" fill="rgb(218,221,48)" fg:x="31209322829" fg:w="130017312"/><text x="10.3983%" y="1935.50"></text></g><g><title>stack__iter.constprop.0 (43,023,130 samples, 0.01%)</title><rect x="10.2234%" y="1845" width="0.0140%" height="15" fill="rgb(216,66,15)" fg:x="31440299309" fg:w="43023130"/><text x="10.4734%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (63,990,181 samples, 0.02%)</title><rect x="10.2535%" y="1845" width="0.0208%" height="15" fill="rgb(226,122,50)" fg:x="31532871121" fg:w="63990181"/><text x="10.5035%" y="1855.50"></text></g><g><title>ts_lex (67,752,596 samples, 0.02%)</title><rect x="10.2836%" y="1829" width="0.0220%" height="15" fill="rgb(239,156,16)" fg:x="31625424576" fg:w="67752596"/><text x="10.5336%" y="1839.50"></text></g><g><title>ts_parser__lex (115,771,517 samples, 0.04%)</title><rect x="10.2743%" y="1845" width="0.0376%" height="15" fill="rgb(224,27,38)" fg:x="31596861302" fg:w="115771517"/><text x="10.5243%" y="1855.50"></text></g><g><title>ts_parser_parse (379,730,862 samples, 0.12%)</title><rect x="10.2127%" y="1861" width="0.1235%" height="15" fill="rgb(224,39,27)" fg:x="31407676427" fg:w="379730862"/><text x="10.4627%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (408,117,976 samples, 0.13%)</title><rect x="10.2039%" y="1877" width="0.1327%" height="15" fill="rgb(215,92,29)" fg:x="31380411437" fg:w="408117976"/><text x="10.4539%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (410,062,646 samples, 0.13%)</title><rect x="10.2039%" y="1893" width="0.1333%" height="15" fill="rgb(207,159,16)" fg:x="31380411437" fg:w="410062646"/><text x="10.4539%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (67,953,372 samples, 0.02%)</title><rect x="10.3404%" y="1877" width="0.0221%" height="15" fill="rgb(238,163,47)" fg:x="31800222228" fg:w="67953372"/><text x="10.5904%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (537,231,714 samples, 0.17%)</title><rect x="10.1905%" y="1925" width="0.1747%" height="15" fill="rgb(219,91,49)" fg:x="31339340141" fg:w="537231714"/><text x="10.4405%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (518,578,220 samples, 0.17%)</title><rect x="10.1966%" y="1909" width="0.1686%" height="15" fill="rgb(227,167,31)" fg:x="31357993635" fg:w="518578220"/><text x="10.4466%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (76,349,627 samples, 0.02%)</title><rect x="10.3404%" y="1893" width="0.0248%" height="15" fill="rgb(234,80,54)" fg:x="31800222228" fg:w="76349627"/><text x="10.5904%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (539,507,457 samples, 0.18%)</title><rect x="10.1905%" y="1941" width="0.1754%" height="15" fill="rgb(212,114,2)" fg:x="31339340141" fg:w="539507457"/><text x="10.4405%" y="1951.50"></text></g><g><title>__memmove_avx512_unaligned_erms (34,194,753 samples, 0.01%)</title><rect x="10.3665%" y="1909" width="0.0111%" height="15" fill="rgb(234,50,24)" fg:x="31880560828" fg:w="34194753"/><text x="10.6165%" y="1919.50"></text></g><g><title>stack__iter.constprop.0 (59,597,271 samples, 0.02%)</title><rect x="10.4132%" y="1845" width="0.0194%" height="15" fill="rgb(221,68,8)" fg:x="32023993507" fg:w="59597271"/><text x="10.6632%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (69,594,222 samples, 0.02%)</title><rect x="10.4504%" y="1845" width="0.0226%" height="15" fill="rgb(254,180,31)" fg:x="32138475366" fg:w="69594222"/><text x="10.7004%" y="1855.50"></text></g><g><title>ts_lex (85,572,585 samples, 0.03%)</title><rect x="10.4867%" y="1829" width="0.0278%" height="15" fill="rgb(247,130,50)" fg:x="32250069774" fg:w="85572585"/><text x="10.7367%" y="1839.50"></text></g><g><title>ts_parser__lex (159,731,729 samples, 0.05%)</title><rect x="10.4730%" y="1845" width="0.0519%" height="15" fill="rgb(211,109,4)" fg:x="32208069588" fg:w="159731729"/><text x="10.7230%" y="1855.50"></text></g><g><title>ts_subtree_new_node (32,974,197 samples, 0.01%)</title><rect x="10.5507%" y="1845" width="0.0107%" height="15" fill="rgb(238,50,21)" fg:x="32446910202" fg:w="32974197"/><text x="10.8007%" y="1855.50"></text></g><g><title>ts_parser_parse_with_options (538,305,854 samples, 0.18%)</title><rect x="10.3867%" y="1877" width="0.1750%" height="15" fill="rgb(225,57,45)" fg:x="31942733414" fg:w="538305854"/><text x="10.6367%" y="1887.50"></text></g><g><title>ts_parser_parse (508,636,645 samples, 0.17%)</title><rect x="10.3964%" y="1861" width="0.1654%" height="15" fill="rgb(209,196,50)" fg:x="31972402623" fg:w="508636645"/><text x="10.6464%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (540,646,716 samples, 0.18%)</title><rect x="10.3867%" y="1893" width="0.1758%" height="15" fill="rgb(242,140,13)" fg:x="31942733414" fg:w="540646716"/><text x="10.6367%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (92,924,929 samples, 0.03%)</title><rect x="10.5708%" y="1877" width="0.0302%" height="15" fill="rgb(217,111,7)" fg:x="32508669114" fg:w="92924929"/><text x="10.8208%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (109,430,837 samples, 0.04%)</title><rect x="10.5701%" y="1893" width="0.0356%" height="15" fill="rgb(253,193,51)" fg:x="32506792019" fg:w="109430837"/><text x="10.8201%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (738,623,069 samples, 0.24%)</title><rect x="10.3660%" y="1941" width="0.2402%" height="15" fill="rgb(252,70,29)" fg:x="31878847598" fg:w="738623069"/><text x="10.6160%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (738,053,160 samples, 0.24%)</title><rect x="10.3661%" y="1925" width="0.2400%" height="15" fill="rgb(232,127,12)" fg:x="31879417507" fg:w="738053160"/><text x="10.6161%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (690,483,576 samples, 0.22%)</title><rect x="10.3816%" y="1909" width="0.2245%" height="15" fill="rgb(211,180,21)" fg:x="31926987091" fg:w="690483576"/><text x="10.6316%" y="1919.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,997,969,746 samples, 0.65%)</title><rect x="9.9598%" y="1957" width="0.6497%" height="15" fill="rgb(229,72,13)" fg:x="30629857667" fg:w="1997969746"/><text x="10.2098%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,017,541,956 samples, 0.66%)</title><rect x="9.9552%" y="1973" width="0.6560%" height="15" fill="rgb(240,211,49)" fg:x="30615582925" fg:w="2017541956"/><text x="10.2052%" y="1983.50"></text></g><g><title>Worker-18 (2,131,883,132 samples, 0.69%)</title><rect x="9.9550%" y="2069" width="0.6932%" height="15" fill="rgb(219,149,40)" fg:x="30615030963" fg:w="2131883132"/><text x="10.2050%" y="2079.50"></text></g><g><title>__GI___clone3 (2,131,339,970 samples, 0.69%)</title><rect x="9.9552%" y="2053" width="0.6930%" height="15" fill="rgb(210,127,46)" fg:x="30615574125" fg:w="2131339970"/><text x="10.2052%" y="2063.50"></text></g><g><title>start_thread (2,131,339,970 samples, 0.69%)</title><rect x="9.9552%" y="2037" width="0.6930%" height="15" fill="rgb(220,106,7)" fg:x="30615574125" fg:w="2131339970"/><text x="10.2052%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,131,339,970 samples, 0.69%)</title><rect x="9.9552%" y="2021" width="0.6930%" height="15" fill="rgb(249,31,22)" fg:x="30615574125" fg:w="2131339970"/><text x="10.2052%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,131,339,970 samples, 0.69%)</title><rect x="9.9552%" y="2005" width="0.6930%" height="15" fill="rgb(253,1,49)" fg:x="30615574125" fg:w="2131339970"/><text x="10.2052%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,131,339,970 samples, 0.69%)</title><rect x="9.9552%" y="1989" width="0.6930%" height="15" fill="rgb(227,144,33)" fg:x="30615574125" fg:w="2131339970"/><text x="10.2052%" y="1999.50"></text></g><g><title>syscall (113,789,214 samples, 0.04%)</title><rect x="10.6112%" y="1973" width="0.0370%" height="15" fill="rgb(249,163,44)" fg:x="32633124881" fg:w="113789214"/><text x="10.8612%" y="1983.50"></text></g><g><title>[unknown] (107,545,841 samples, 0.03%)</title><rect x="10.6133%" y="1957" width="0.0350%" height="15" fill="rgb(234,15,39)" fg:x="32639368254" fg:w="107545841"/><text x="10.8633%" y="1967.50"></text></g><g><title>[unknown] (99,136,093 samples, 0.03%)</title><rect x="10.6160%" y="1941" width="0.0322%" height="15" fill="rgb(207,66,16)" fg:x="32647778002" fg:w="99136093"/><text x="10.8660%" y="1951.50"></text></g><g><title>[unknown] (95,928,902 samples, 0.03%)</title><rect x="10.6170%" y="1925" width="0.0312%" height="15" fill="rgb(233,112,24)" fg:x="32650985193" fg:w="95928902"/><text x="10.8670%" y="1935.50"></text></g><g><title>[unknown] (94,272,566 samples, 0.03%)</title><rect x="10.6176%" y="1909" width="0.0307%" height="15" fill="rgb(230,90,22)" fg:x="32652641529" fg:w="94272566"/><text x="10.8676%" y="1919.50"></text></g><g><title>[unknown] (92,852,252 samples, 0.03%)</title><rect x="10.6180%" y="1893" width="0.0302%" height="15" fill="rgb(229,61,13)" fg:x="32654061843" fg:w="92852252"/><text x="10.8680%" y="1903.50"></text></g><g><title>[unknown] (89,876,319 samples, 0.03%)</title><rect x="10.6190%" y="1877" width="0.0292%" height="15" fill="rgb(225,57,24)" fg:x="32657037776" fg:w="89876319"/><text x="10.8690%" y="1887.50"></text></g><g><title>[unknown] (85,364,862 samples, 0.03%)</title><rect x="10.6205%" y="1861" width="0.0278%" height="15" fill="rgb(208,169,48)" fg:x="32661549233" fg:w="85364862"/><text x="10.8705%" y="1871.50"></text></g><g><title>[unknown] (81,260,663 samples, 0.03%)</title><rect x="10.6218%" y="1845" width="0.0264%" height="15" fill="rgb(244,218,51)" fg:x="32665653432" fg:w="81260663"/><text x="10.8718%" y="1855.50"></text></g><g><title>[unknown] (75,976,115 samples, 0.02%)</title><rect x="10.6235%" y="1829" width="0.0247%" height="15" fill="rgb(214,148,10)" fg:x="32670937980" fg:w="75976115"/><text x="10.8735%" y="1839.50"></text></g><g><title>[unknown] (75,975,781 samples, 0.02%)</title><rect x="10.6235%" y="1813" width="0.0247%" height="15" fill="rgb(225,174,27)" fg:x="32670938314" fg:w="75975781"/><text x="10.8735%" y="1823.50"></text></g><g><title>[unknown] (75,055,124 samples, 0.02%)</title><rect x="10.6238%" y="1797" width="0.0244%" height="15" fill="rgb(230,96,26)" fg:x="32671858971" fg:w="75055124"/><text x="10.8738%" y="1807.50"></text></g><g><title>[unknown] (71,611,325 samples, 0.02%)</title><rect x="10.6249%" y="1781" width="0.0233%" height="15" fill="rgb(232,10,30)" fg:x="32675302770" fg:w="71611325"/><text x="10.8749%" y="1791.50"></text></g><g><title>[unknown] (68,894,819 samples, 0.02%)</title><rect x="10.6258%" y="1765" width="0.0224%" height="15" fill="rgb(222,8,50)" fg:x="32678019276" fg:w="68894819"/><text x="10.8758%" y="1775.50"></text></g><g><title>[unknown] (53,069,845 samples, 0.02%)</title><rect x="10.6310%" y="1749" width="0.0173%" height="15" fill="rgb(213,81,27)" fg:x="32693844250" fg:w="53069845"/><text x="10.8810%" y="1759.50"></text></g><g><title>[unknown] (44,492,361 samples, 0.01%)</title><rect x="10.6338%" y="1733" width="0.0145%" height="15" fill="rgb(245,50,10)" fg:x="32702421734" fg:w="44492361"/><text x="10.8838%" y="1743.50"></text></g><g><title>[unknown] (39,843,269 samples, 0.01%)</title><rect x="10.6353%" y="1717" width="0.0130%" height="15" fill="rgb(216,100,18)" fg:x="32707070826" fg:w="39843269"/><text x="10.8853%" y="1727.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (54,318,142 samples, 0.02%)</title><rect x="10.6792%" y="1925" width="0.0177%" height="15" fill="rgb(236,147,54)" fg:x="32842175079" fg:w="54318142"/><text x="10.9292%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (89,515,001 samples, 0.03%)</title><rect x="10.6682%" y="1941" width="0.0291%" height="15" fill="rgb(205,143,26)" fg:x="32808399603" fg:w="89515001"/><text x="10.9182%" y="1951.50"></text></g><g><title>ts_malloc_default (45,325,656 samples, 0.01%)</title><rect x="10.7607%" y="1829" width="0.0147%" height="15" fill="rgb(236,26,9)" fg:x="33092861053" fg:w="45325656"/><text x="11.0107%" y="1839.50"></text></g><g><title>malloc (45,325,656 samples, 0.01%)</title><rect x="10.7607%" y="1813" width="0.0147%" height="15" fill="rgb(221,165,53)" fg:x="33092861053" fg:w="45325656"/><text x="11.0107%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (65,913,499 samples, 0.02%)</title><rect x="10.7556%" y="1845" width="0.0214%" height="15" fill="rgb(214,110,17)" fg:x="33077271132" fg:w="65913499"/><text x="11.0056%" y="1855.50"></text></g><g><title>ts_language_next_state (38,327,300 samples, 0.01%)</title><rect x="10.7863%" y="1845" width="0.0125%" height="15" fill="rgb(237,197,12)" fg:x="33171689486" fg:w="38327300"/><text x="11.0363%" y="1855.50"></text></g><g><title>ts_language_table_entry (85,668,668 samples, 0.03%)</title><rect x="10.7988%" y="1845" width="0.0279%" height="15" fill="rgb(205,84,17)" fg:x="33210016786" fg:w="85668668"/><text x="11.0488%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (260,816,056 samples, 0.08%)</title><rect x="10.8367%" y="1845" width="0.0848%" height="15" fill="rgb(237,18,45)" fg:x="33326446055" fg:w="260816056"/><text x="11.0867%" y="1855.50"></text></g><g><title>ts_lex (76,994,632 samples, 0.03%)</title><rect x="10.9452%" y="1829" width="0.0250%" height="15" fill="rgb(221,87,14)" fg:x="33660198469" fg:w="76994632"/><text x="11.1952%" y="1839.50"></text></g><g><title>ts_lexer__advance (32,223,625 samples, 0.01%)</title><rect x="11.0393%" y="1653" width="0.0105%" height="15" fill="rgb(238,186,15)" fg:x="33949684315" fg:w="32223625"/><text x="11.2893%" y="1663.50"></text></g><g><title>callback__lexer_advance (57,116,970 samples, 0.02%)</title><rect x="11.0338%" y="1669" width="0.0186%" height="15" fill="rgb(208,115,11)" fg:x="33932707732" fg:w="57116970"/><text x="11.2838%" y="1679.50"></text></g><g><title>[perf-181794.map] (117,722,358 samples, 0.04%)</title><rect x="11.0193%" y="1701" width="0.0383%" height="15" fill="rgb(254,175,0)" fg:x="33888223290" fg:w="117722358"/><text x="11.2693%" y="1711.50"></text></g><g><title>wasmtime::runtime::trampoline::func::array_call_shim (96,263,385 samples, 0.03%)</title><rect x="11.0263%" y="1685" width="0.0313%" height="15" fill="rgb(227,24,42)" fg:x="33909682263" fg:w="96263385"/><text x="11.2763%" y="1695.50"></text></g><g><title>wasmtime::runtime::func::invoke_wasm_and_catch_traps (213,001,205 samples, 0.07%)</title><rect x="10.9895%" y="1781" width="0.0693%" height="15" fill="rgb(223,211,37)" fg:x="33796311173" fg:w="213001205"/><text x="11.2395%" y="1791.50"></text></g><g><title>wasmtime_setjmp_29_0_1 (207,311,079 samples, 0.07%)</title><rect x="10.9913%" y="1765" width="0.0674%" height="15" fill="rgb(235,49,27)" fg:x="33802001299" fg:w="207311079"/><text x="11.2413%" y="1775.50"></text></g><g><title>wasmtime_setjmp_inverted (206,325,433 samples, 0.07%)</title><rect x="10.9916%" y="1749" width="0.0671%" height="15" fill="rgb(254,97,51)" fg:x="33802986945" fg:w="206325433"/><text x="11.2416%" y="1759.50"></text></g><g><title>[perf-181794.map] (205,260,674 samples, 0.07%)</title><rect x="10.9920%" y="1733" width="0.0667%" height="15" fill="rgb(249,51,40)" fg:x="33804051704" fg:w="205260674"/><text x="11.2420%" y="1743.50"></text></g><g><title>[perf-181794.map] (204,002,464 samples, 0.07%)</title><rect x="10.9924%" y="1717" width="0.0663%" height="15" fill="rgb(210,128,45)" fg:x="33805309914" fg:w="204002464"/><text x="11.2424%" y="1727.50"></text></g><g><title>wasmtime_func_call_unchecked (221,794,837 samples, 0.07%)</title><rect x="10.9878%" y="1797" width="0.0721%" height="15" fill="rgb(224,137,50)" fg:x="33791293327" fg:w="221794837"/><text x="11.2378%" y="1807.50"></text></g><g><title>ts_wasm_store__call (273,356,484 samples, 0.09%)</title><rect x="10.9848%" y="1813" width="0.0889%" height="15" fill="rgb(242,15,9)" fg:x="33781860739" fg:w="273356484"/><text x="11.2348%" y="1823.50"></text></g><g><title>wasmtime_table_get (42,129,059 samples, 0.01%)</title><rect x="11.0599%" y="1797" width="0.0137%" height="15" fill="rgb(233,187,41)" fg:x="34013088164" fg:w="42129059"/><text x="11.3099%" y="1807.50"></text></g><g><title>ts_wasm_store__call_lex_function (293,282,836 samples, 0.10%)</title><rect x="10.9817%" y="1829" width="0.0954%" height="15" fill="rgb(227,2,29)" fg:x="33772448095" fg:w="293282836"/><text x="11.2317%" y="1839.50"></text></g><g><title>ts_parser__lex (479,681,837 samples, 0.16%)</title><rect x="10.9215%" y="1845" width="0.1560%" height="15" fill="rgb(222,70,3)" fg:x="33587262111" fg:w="479681837"/><text x="11.1715%" y="1855.50"></text></g><g><title>[unknown] (165,246,446 samples, 0.05%)</title><rect x="23.1899%" y="1829" width="0.0537%" height="15" fill="rgb(213,11,42)" fg:x="71316700514" fg:w="165246446"/><text x="23.4399%" y="1839.50"></text></g><g><title>[unknown] (140,575,516 samples, 0.05%)</title><rect x="23.1979%" y="1813" width="0.0457%" height="15" fill="rgb(225,150,9)" fg:x="71341371444" fg:w="140575516"/><text x="23.4479%" y="1823.50"></text></g><g><title>[unknown] (139,568,580 samples, 0.05%)</title><rect x="23.1982%" y="1797" width="0.0454%" height="15" fill="rgb(230,162,45)" fg:x="71342378380" fg:w="139568580"/><text x="23.4482%" y="1807.50"></text></g><g><title>[unknown] (127,724,874 samples, 0.04%)</title><rect x="23.2021%" y="1781" width="0.0415%" height="15" fill="rgb(222,14,52)" fg:x="71354222086" fg:w="127724874"/><text x="23.4521%" y="1791.50"></text></g><g><title>[unknown] (125,459,521 samples, 0.04%)</title><rect x="23.2028%" y="1765" width="0.0408%" height="15" fill="rgb(254,198,14)" fg:x="71356487439" fg:w="125459521"/><text x="23.4528%" y="1775.50"></text></g><g><title>[unknown] (115,005,876 samples, 0.04%)</title><rect x="23.2062%" y="1749" width="0.0374%" height="15" fill="rgb(220,217,30)" fg:x="71366941084" fg:w="115005876"/><text x="23.4562%" y="1759.50"></text></g><g><title>[unknown] (107,156,643 samples, 0.03%)</title><rect x="23.2087%" y="1733" width="0.0348%" height="15" fill="rgb(215,146,41)" fg:x="71374790317" fg:w="107156643"/><text x="23.4587%" y="1743.50"></text></g><g><title>[unknown] (96,979,969 samples, 0.03%)</title><rect x="23.2121%" y="1717" width="0.0315%" height="15" fill="rgb(217,27,36)" fg:x="71384966991" fg:w="96979969"/><text x="23.4621%" y="1727.50"></text></g><g><title>[unknown] (88,562,009 samples, 0.03%)</title><rect x="23.2148%" y="1701" width="0.0288%" height="15" fill="rgb(219,218,39)" fg:x="71393384951" fg:w="88562009"/><text x="23.4648%" y="1711.50"></text></g><g><title>[unknown] (77,995,131 samples, 0.03%)</title><rect x="23.2182%" y="1685" width="0.0254%" height="15" fill="rgb(219,4,42)" fg:x="71403951829" fg:w="77995131"/><text x="23.4682%" y="1695.50"></text></g><g><title>[unknown] (48,935,155 samples, 0.02%)</title><rect x="23.2277%" y="1669" width="0.0159%" height="15" fill="rgb(249,119,36)" fg:x="71433011805" fg:w="48935155"/><text x="23.4777%" y="1679.50"></text></g><g><title>__memmove_avx512_unaligned_erms (1,177,293,133 samples, 0.38%)</title><rect x="23.2436%" y="1829" width="0.3828%" height="15" fill="rgb(209,23,33)" fg:x="71481946960" fg:w="1177293133"/><text x="23.4936%" y="1839.50"></text></g><g><title>__memmove_avx512_unaligned_erms (421,994,688 samples, 0.14%)</title><rect x="23.6680%" y="1781" width="0.1372%" height="15" fill="rgb(211,10,0)" fg:x="72787004923" fg:w="421994688"/><text x="23.9180%" y="1791.50"></text></g><g><title>_int_malloc (36,725,889 samples, 0.01%)</title><rect x="23.8165%" y="1765" width="0.0119%" height="15" fill="rgb(208,99,37)" fg:x="73243912742" fg:w="36725889"/><text x="24.0665%" y="1775.50"></text></g><g><title>ts_realloc_default (526,899,154 samples, 0.17%)</title><rect x="23.6579%" y="1813" width="0.1713%" height="15" fill="rgb(213,132,31)" fg:x="72756225045" fg:w="526899154"/><text x="23.9079%" y="1823.50"></text></g><g><title>realloc (526,899,154 samples, 0.17%)</title><rect x="23.6579%" y="1797" width="0.1713%" height="15" fill="rgb(243,129,40)" fg:x="72756225045" fg:w="526899154"/><text x="23.9079%" y="1807.50"></text></g><g><title>_int_realloc (74,124,588 samples, 0.02%)</title><rect x="23.8052%" y="1781" width="0.0241%" height="15" fill="rgb(210,66,33)" fg:x="73208999611" fg:w="74124588"/><text x="24.0552%" y="1791.50"></text></g><g><title>ts_subtree_new_node (43,888,610,379 samples, 14.27%)</title><rect x="23.6553%" y="1829" width="14.2711%" height="15" fill="rgb(209,189,4)" fg:x="72747992579" fg:w="43888610379"/><text x="23.9053%" y="1839.50">ts_subtree_new_node</text></g><g><title>ts_subtree_summarize_children (43,353,478,759 samples, 14.10%)</title><rect x="23.8293%" y="1813" width="14.0971%" height="15" fill="rgb(214,107,37)" fg:x="73283124199" fg:w="43353478759"/><text x="24.0793%" y="1823.50">ts_subtree_summarize_..</text></g><g><title>[unknown] (178,721,994 samples, 0.06%)</title><rect x="37.8683%" y="1797" width="0.0581%" height="15" fill="rgb(245,88,54)" fg:x="116457880964" fg:w="178721994"/><text x="38.1183%" y="1807.50"></text></g><g><title>[unknown] (161,009,826 samples, 0.05%)</title><rect x="37.8741%" y="1781" width="0.0524%" height="15" fill="rgb(205,146,20)" fg:x="116475593132" fg:w="161009826"/><text x="38.1241%" y="1791.50"></text></g><g><title>[unknown] (159,827,358 samples, 0.05%)</title><rect x="37.8744%" y="1765" width="0.0520%" height="15" fill="rgb(220,161,25)" fg:x="116476775600" fg:w="159827358"/><text x="38.1244%" y="1775.50"></text></g><g><title>[unknown] (146,991,308 samples, 0.05%)</title><rect x="37.8786%" y="1749" width="0.0478%" height="15" fill="rgb(215,152,15)" fg:x="116489611650" fg:w="146991308"/><text x="38.1286%" y="1759.50"></text></g><g><title>[unknown] (143,349,284 samples, 0.05%)</title><rect x="37.8798%" y="1733" width="0.0466%" height="15" fill="rgb(233,192,44)" fg:x="116493253674" fg:w="143349284"/><text x="38.1298%" y="1743.50"></text></g><g><title>[unknown] (132,549,648 samples, 0.04%)</title><rect x="37.8833%" y="1717" width="0.0431%" height="15" fill="rgb(240,170,46)" fg:x="116504053310" fg:w="132549648"/><text x="38.1333%" y="1727.50"></text></g><g><title>[unknown] (124,436,540 samples, 0.04%)</title><rect x="37.8859%" y="1701" width="0.0405%" height="15" fill="rgb(207,104,33)" fg:x="116512166418" fg:w="124436540"/><text x="38.1359%" y="1711.50"></text></g><g><title>[unknown] (111,554,594 samples, 0.04%)</title><rect x="37.8901%" y="1685" width="0.0363%" height="15" fill="rgb(219,21,39)" fg:x="116525048364" fg:w="111554594"/><text x="38.1401%" y="1695.50"></text></g><g><title>[unknown] (100,203,258 samples, 0.03%)</title><rect x="37.8938%" y="1669" width="0.0326%" height="15" fill="rgb(214,133,29)" fg:x="116536399700" fg:w="100203258"/><text x="38.1438%" y="1679.50"></text></g><g><title>[unknown] (88,623,669 samples, 0.03%)</title><rect x="37.8976%" y="1653" width="0.0288%" height="15" fill="rgb(226,93,6)" fg:x="116547979289" fg:w="88623669"/><text x="38.1476%" y="1663.50"></text></g><g><title>[unknown] (58,642,518 samples, 0.02%)</title><rect x="37.9073%" y="1637" width="0.0191%" height="15" fill="rgb(252,222,34)" fg:x="116577960440" fg:w="58642518"/><text x="38.1573%" y="1647.50"></text></g><g><title>[unknown] (41,459,737 samples, 0.01%)</title><rect x="37.9129%" y="1621" width="0.0135%" height="15" fill="rgb(252,92,48)" fg:x="116595143221" fg:w="41459737"/><text x="38.1629%" y="1631.50"></text></g><g><title>[unknown] (34,565,391 samples, 0.01%)</title><rect x="37.9152%" y="1605" width="0.0112%" height="15" fill="rgb(245,223,24)" fg:x="116602037567" fg:w="34565391"/><text x="38.1652%" y="1615.50"></text></g><g><title>ts_parser__recover (82,576,857,350 samples, 26.85%)</title><rect x="11.0775%" y="1845" width="26.8513%" height="15" fill="rgb(205,176,3)" fg:x="34066943948" fg:w="82576857350"/><text x="11.3275%" y="1855.50">ts_parser__recover</text></g><g><title>[unknown] (137,360,457 samples, 0.04%)</title><rect x="49.4377%" y="1797" width="0.0447%" height="15" fill="rgb(235,151,15)" fg:x="152037707843" fg:w="137360457"/><text x="49.6877%" y="1807.50"></text></g><g><title>[unknown] (122,656,631 samples, 0.04%)</title><rect x="49.4425%" y="1781" width="0.0399%" height="15" fill="rgb(237,209,11)" fg:x="152052411669" fg:w="122656631"/><text x="49.6925%" y="1791.50"></text></g><g><title>[unknown] (122,656,631 samples, 0.04%)</title><rect x="49.4425%" y="1765" width="0.0399%" height="15" fill="rgb(243,227,24)" fg:x="152052411669" fg:w="122656631"/><text x="49.6925%" y="1775.50"></text></g><g><title>[unknown] (114,903,098 samples, 0.04%)</title><rect x="49.4450%" y="1749" width="0.0374%" height="15" fill="rgb(239,193,16)" fg:x="152060165202" fg:w="114903098"/><text x="49.6950%" y="1759.50"></text></g><g><title>[unknown] (114,903,098 samples, 0.04%)</title><rect x="49.4450%" y="1733" width="0.0374%" height="15" fill="rgb(231,27,9)" fg:x="152060165202" fg:w="114903098"/><text x="49.6950%" y="1743.50"></text></g><g><title>[unknown] (97,434,055 samples, 0.03%)</title><rect x="49.4507%" y="1717" width="0.0317%" height="15" fill="rgb(219,169,10)" fg:x="152077634245" fg:w="97434055"/><text x="49.7007%" y="1727.50"></text></g><g><title>[unknown] (91,541,493 samples, 0.03%)</title><rect x="49.4526%" y="1701" width="0.0298%" height="15" fill="rgb(244,229,43)" fg:x="152083526807" fg:w="91541493"/><text x="49.7026%" y="1711.50"></text></g><g><title>[unknown] (77,451,813 samples, 0.03%)</title><rect x="49.4572%" y="1685" width="0.0252%" height="15" fill="rgb(254,38,20)" fg:x="152097616487" fg:w="77451813"/><text x="49.7072%" y="1695.50"></text></g><g><title>[unknown] (71,747,070 samples, 0.02%)</title><rect x="49.4590%" y="1669" width="0.0233%" height="15" fill="rgb(250,47,30)" fg:x="152103321230" fg:w="71747070"/><text x="49.7090%" y="1679.50"></text></g><g><title>[unknown] (59,378,880 samples, 0.02%)</title><rect x="49.4630%" y="1653" width="0.0193%" height="15" fill="rgb(224,124,36)" fg:x="152115689420" fg:w="59378880"/><text x="49.7130%" y="1663.50"></text></g><g><title>[unknown] (37,054,650 samples, 0.01%)</title><rect x="49.4703%" y="1637" width="0.0120%" height="15" fill="rgb(246,68,51)" fg:x="152138013650" fg:w="37054650"/><text x="49.7203%" y="1647.50"></text></g><g><title>stack_node_release (35,540,061,659 samples, 11.56%)</title><rect x="37.9420%" y="1829" width="11.5565%" height="15" fill="rgb(253,43,49)" fg:x="116684431035" fg:w="35540061659"/><text x="38.1920%" y="1839.50">stack_node_release</text></g><g><title>ts_subtree_release (35,533,180,041 samples, 11.55%)</title><rect x="37.9442%" y="1813" width="11.5542%" height="15" fill="rgb(219,54,36)" fg:x="116691312653" fg:w="35533180041"/><text x="38.1942%" y="1823.50">ts_subtree_release</text></g><g><title>cfree@GLIBC_2.2.5 (48,213,773 samples, 0.02%)</title><rect x="49.4827%" y="1797" width="0.0157%" height="15" fill="rgb(227,133,34)" fg:x="152176278921" fg:w="48213773"/><text x="49.7327%" y="1807.50"></text></g><g><title>ts_stack_remove_version (35,551,175,181 samples, 11.56%)</title><rect x="37.9392%" y="1845" width="11.5601%" height="15" fill="rgb(247,227,15)" fg:x="116675900731" fg:w="35551175181"/><text x="38.1892%" y="1855.50">ts_stack_remove_v..</text></g><g><title>ts_subtree_new_node (47,374,351 samples, 0.02%)</title><rect x="49.5070%" y="1845" width="0.0154%" height="15" fill="rgb(229,96,14)" fg:x="152250750056" fg:w="47374351"/><text x="49.7570%" y="1855.50"></text></g><g><title>ts_subtree_summarize_children (32,165,685 samples, 0.01%)</title><rect x="49.5119%" y="1829" width="0.0105%" height="15" fill="rgb(220,79,17)" fg:x="152265958722" fg:w="32165685"/><text x="49.7619%" y="1839.50"></text></g><g><title>ts_parser_parse (119,315,476,483 samples, 38.80%)</title><rect x="10.7262%" y="1861" width="38.7975%" height="15" fill="rgb(205,131,53)" fg:x="32986832210" fg:w="119315476483"/><text x="10.9762%" y="1871.50">ts_parser_parse</text></g><g><title>ts_parser_parse_with_options (119,359,488,831 samples, 38.81%)</title><rect x="10.7135%" y="1877" width="38.8118%" height="15" fill="rgb(209,50,29)" fg:x="32947537888" fg:w="119359488831"/><text x="10.9635%" y="1887.50">ts_parser_parse_with_options</text></g><g><title>language::syntax_map::parse_text (119,360,740,127 samples, 38.81%)</title><rect x="10.7135%" y="1893" width="38.8122%" height="15" fill="rgb(245,86,46)" fg:x="32947537888" fg:w="119360740127"/><text x="10.9635%" y="1903.50">language::syntax_map::parse_text</text></g><g><title>ts_query_cursor__advance (80,044,685 samples, 0.03%)</title><rect x="49.5299%" y="1877" width="0.0260%" height="15" fill="rgb(235,66,46)" fg:x="152321273250" fg:w="80044685"/><text x="49.7799%" y="1887.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (119,511,800,083 samples, 38.86%)</title><rect x="10.6973%" y="1941" width="38.8613%" height="15" fill="rgb(232,148,31)" fg:x="32897914604" fg:w="119511800083"/><text x="10.9473%" y="1951.50">language::buffer::Buffer::reparse::_{{closure}}</text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (119,511,800,083 samples, 38.86%)</title><rect x="10.6973%" y="1925" width="38.8613%" height="15" fill="rgb(217,149,8)" fg:x="32897914604" fg:w="119511800083"/><text x="10.9473%" y="1935.50">language::syntax_map::SyntaxSnapshot::reparse</text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (119,486,161,985 samples, 38.85%)</title><rect x="10.7057%" y="1909" width="38.8530%" height="15" fill="rgb(209,183,11)" fg:x="32923552702" fg:w="119486161985"/><text x="10.9557%" y="1919.50">language::syntax_map::SyntaxSnapshot::reparse_with_ranges</text></g><g><title>ts_query_cursor_next_match (89,671,351 samples, 0.03%)</title><rect x="49.5295%" y="1893" width="0.0292%" height="15" fill="rgb(208,55,20)" fg:x="152320043336" fg:w="89671351"/><text x="49.7795%" y="1903.50"></text></g><g><title>language::Language::new_with_id (41,575,278 samples, 0.01%)</title><rect x="49.5589%" y="1925" width="0.0135%" height="15" fill="rgb(218,39,14)" fg:x="152410569375" fg:w="41575278"/><text x="49.8089%" y="1935.50"></text></g><g><title>tree_sitter::Query::new (41,575,278 samples, 0.01%)</title><rect x="49.5589%" y="1909" width="0.0135%" height="15" fill="rgb(216,169,33)" fg:x="152410569375" fg:w="41575278"/><text x="49.8089%" y="1919.50"></text></g><g><title>ts_query_new (41,575,278 samples, 0.01%)</title><rect x="49.5589%" y="1893" width="0.0135%" height="15" fill="rgb(233,80,24)" fg:x="152410569375" fg:w="41575278"/><text x="49.8089%" y="1903.50"></text></g><g><title>language::Language::with_brackets_query (100,535,394 samples, 0.03%)</title><rect x="49.5725%" y="1909" width="0.0327%" height="15" fill="rgb(213,179,31)" fg:x="152452144653" fg:w="100535394"/><text x="49.8225%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (100,535,394 samples, 0.03%)</title><rect x="49.5725%" y="1893" width="0.0327%" height="15" fill="rgb(209,19,5)" fg:x="152452144653" fg:w="100535394"/><text x="49.8225%" y="1903.50"></text></g><g><title>ts_query_new (100,535,394 samples, 0.03%)</title><rect x="49.5725%" y="1877" width="0.0327%" height="15" fill="rgb(219,18,35)" fg:x="152452144653" fg:w="100535394"/><text x="49.8225%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (79,220,373 samples, 0.03%)</title><rect x="49.5794%" y="1861" width="0.0258%" height="15" fill="rgb(209,169,16)" fg:x="152473459674" fg:w="79220373"/><text x="49.8294%" y="1871.50"></text></g><g><title>ts_query__perform_analysis (204,967,852 samples, 0.07%)</title><rect x="49.6128%" y="1861" width="0.0666%" height="15" fill="rgb(245,90,51)" fg:x="152576345563" fg:w="204967852"/><text x="49.8628%" y="1871.50"></text></g><g><title>language::Language::with_embedding_query (229,736,754 samples, 0.07%)</title><rect x="49.6051%" y="1909" width="0.0747%" height="15" fill="rgb(220,99,45)" fg:x="152552680047" fg:w="229736754"/><text x="49.8551%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (229,736,754 samples, 0.07%)</title><rect x="49.6051%" y="1893" width="0.0747%" height="15" fill="rgb(249,89,25)" fg:x="152552680047" fg:w="229736754"/><text x="49.8551%" y="1903.50"></text></g><g><title>ts_query_new (229,736,754 samples, 0.07%)</title><rect x="49.6051%" y="1877" width="0.0747%" height="15" fill="rgb(239,193,0)" fg:x="152552680047" fg:w="229736754"/><text x="49.8551%" y="1887.50"></text></g><g><title>language::Language::with_highlights_query (183,385,623 samples, 0.06%)</title><rect x="49.6798%" y="1909" width="0.0596%" height="15" fill="rgb(231,126,1)" fg:x="152782416801" fg:w="183385623"/><text x="49.9298%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (183,385,623 samples, 0.06%)</title><rect x="49.6798%" y="1893" width="0.0596%" height="15" fill="rgb(243,166,3)" fg:x="152782416801" fg:w="183385623"/><text x="49.9298%" y="1903.50"></text></g><g><title>ts_query_new (182,171,247 samples, 0.06%)</title><rect x="49.6802%" y="1877" width="0.0592%" height="15" fill="rgb(223,22,34)" fg:x="152783631177" fg:w="182171247"/><text x="49.9302%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (137,438,743 samples, 0.04%)</title><rect x="49.6948%" y="1861" width="0.0447%" height="15" fill="rgb(251,52,51)" fg:x="152828363681" fg:w="137438743"/><text x="49.9448%" y="1871.50"></text></g><g><title>language::Language::with_indents_query (75,129,927 samples, 0.02%)</title><rect x="49.7463%" y="1909" width="0.0244%" height="15" fill="rgb(221,165,28)" fg:x="152986771685" fg:w="75129927"/><text x="49.9963%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (75,129,927 samples, 0.02%)</title><rect x="49.7463%" y="1893" width="0.0244%" height="15" fill="rgb(218,121,47)" fg:x="152986771685" fg:w="75129927"/><text x="49.9963%" y="1903.50"></text></g><g><title>ts_query_new (75,129,927 samples, 0.02%)</title><rect x="49.7463%" y="1877" width="0.0244%" height="15" fill="rgb(209,120,9)" fg:x="152986771685" fg:w="75129927"/><text x="49.9963%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (50,775,090 samples, 0.02%)</title><rect x="49.7542%" y="1861" width="0.0165%" height="15" fill="rgb(236,68,12)" fg:x="153011126522" fg:w="50775090"/><text x="50.0042%" y="1871.50"></text></g><g><title>ts_query_new (373,528,677 samples, 0.12%)</title><rect x="49.7781%" y="1877" width="0.1215%" height="15" fill="rgb(225,194,26)" fg:x="153084700158" fg:w="373528677"/><text x="50.0281%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (342,874,543 samples, 0.11%)</title><rect x="49.7881%" y="1861" width="0.1115%" height="15" fill="rgb(231,84,39)" fg:x="153115354292" fg:w="342874543"/><text x="50.0381%" y="1871.50"></text></g><g><title>language::Language::with_outline_query (374,672,676 samples, 0.12%)</title><rect x="49.7781%" y="1909" width="0.1218%" height="15" fill="rgb(210,11,45)" fg:x="153084700158" fg:w="374672676"/><text x="50.0281%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (374,672,676 samples, 0.12%)</title><rect x="49.7781%" y="1893" width="0.1218%" height="15" fill="rgb(224,54,52)" fg:x="153084700158" fg:w="374672676"/><text x="50.0281%" y="1903.50"></text></g><g><title>ts_query_new (53,658,851 samples, 0.02%)</title><rect x="49.9075%" y="1877" width="0.0174%" height="15" fill="rgb(238,102,14)" fg:x="153482575289" fg:w="53658851"/><text x="50.1575%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (35,410,820 samples, 0.01%)</title><rect x="49.9134%" y="1861" width="0.0115%" height="15" fill="rgb(243,160,52)" fg:x="153500823320" fg:w="35410820"/><text x="50.1634%" y="1871.50"></text></g><g><title>language::language_registry::LanguageRegistry::load_language::_{{closure}} (1,128,168,709 samples, 0.37%)</title><rect x="49.5587%" y="1941" width="0.3668%" height="15" fill="rgb(216,114,19)" fg:x="152409714687" fg:w="1128168709"/><text x="49.8087%" y="1951.50"></text></g><g><title>language::Language::with_queries (1,085,738,743 samples, 0.35%)</title><rect x="49.5725%" y="1925" width="0.3530%" height="15" fill="rgb(244,166,37)" fg:x="152452144653" fg:w="1085738743"/><text x="49.8225%" y="1935.50"></text></g><g><title>language::Language::with_text_object_query (55,308,107 samples, 0.02%)</title><rect x="49.9075%" y="1909" width="0.0180%" height="15" fill="rgb(246,29,44)" fg:x="153482575289" fg:w="55308107"/><text x="50.1575%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (55,308,107 samples, 0.02%)</title><rect x="49.9075%" y="1893" width="0.0180%" height="15" fill="rgb(215,56,53)" fg:x="153482575289" fg:w="55308107"/><text x="50.1575%" y="1903.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (120,781,930,813 samples, 39.27%)</title><rect x="10.6555%" y="1957" width="39.2743%" height="15" fill="rgb(217,60,2)" fg:x="32769179353" fg:w="120781930813"/><text x="10.9055%" y="1967.50">async_task::raw::RawTask&lt;F,T,S,M&gt;::run</text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (120,794,361,115 samples, 39.28%)</title><rect x="10.6527%" y="1973" width="39.2784%" height="15" fill="rgb(207,26,24)" fg:x="32760542684" fg:w="120794361115"/><text x="10.9027%" y="1983.50">std::sys::backtrace::__rust_begin_short_backtrace</text></g><g><title>__GI___clone3 (120,823,119,143 samples, 39.29%)</title><rect x="10.6527%" y="2053" width="39.2877%" height="15" fill="rgb(252,210,15)" fg:x="32760542684" fg:w="120823119143"/><text x="10.9027%" y="2063.50">__GI___clone3</text></g><g><title>start_thread (120,823,119,143 samples, 39.29%)</title><rect x="10.6527%" y="2037" width="39.2877%" height="15" fill="rgb(253,209,26)" fg:x="32760542684" fg:w="120823119143"/><text x="10.9027%" y="2047.50">start_thread</text></g><g><title>set_alt_signal_stack_and_start (120,823,119,143 samples, 39.29%)</title><rect x="10.6527%" y="2021" width="39.2877%" height="15" fill="rgb(238,170,14)" fg:x="32760542684" fg:w="120823119143"/><text x="10.9027%" y="2031.50">set_alt_signal_stack_and_start</text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (120,823,119,143 samples, 39.29%)</title><rect x="10.6527%" y="2005" width="39.2877%" height="15" fill="rgb(216,178,15)" fg:x="32760542684" fg:w="120823119143"/><text x="10.9027%" y="2015.50">std::sys::pal::unix::thread::Thread::new::thread_start</text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (120,823,119,143 samples, 39.29%)</title><rect x="10.6527%" y="1989" width="39.2877%" height="15" fill="rgb(250,197,2)" fg:x="32760542684" fg:w="120823119143"/><text x="10.9027%" y="1999.50">core::ops::function::FnOnce::call_once{{vtable.shim}}</text></g><g><title>Worker-19 (120,843,793,131 samples, 39.29%)</title><rect x="10.6482%" y="2069" width="39.2944%" height="15" fill="rgb(212,70,42)" fg:x="32746914095" fg:w="120843793131"/><text x="10.8982%" y="2079.50">Worker-19</text></g><g><title>git2::repo::Repository::find_blob (39,202,610 samples, 0.01%)</title><rect x="49.9612%" y="1925" width="0.0127%" height="15" fill="rgb(227,213,9)" fg:x="153647809329" fg:w="39202610"/><text x="50.2112%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (39,202,610 samples, 0.01%)</title><rect x="49.9612%" y="1909" width="0.0127%" height="15" fill="rgb(245,99,25)" fg:x="153647809329" fg:w="39202610"/><text x="50.2112%" y="1919.50"></text></g><g><title>git_odb_read (39,202,610 samples, 0.01%)</title><rect x="49.9612%" y="1893" width="0.0127%" height="15" fill="rgb(250,82,29)" fg:x="153647809329" fg:w="39202610"/><text x="50.2112%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (39,202,610 samples, 0.01%)</title><rect x="49.9612%" y="1877" width="0.0127%" height="15" fill="rgb(241,226,54)" fg:x="153647809329" fg:w="39202610"/><text x="50.2112%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (39,202,610 samples, 0.01%)</title><rect x="49.9612%" y="1861" width="0.0127%" height="15" fill="rgb(221,99,41)" fg:x="153647809329" fg:w="39202610"/><text x="50.2112%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (39,202,610 samples, 0.01%)</title><rect x="49.9612%" y="1845" width="0.0127%" height="15" fill="rgb(213,90,21)" fg:x="153647809329" fg:w="39202610"/><text x="50.2112%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (56,116,141 samples, 0.02%)</title><rect x="49.9612%" y="1941" width="0.0182%" height="15" fill="rgb(205,208,24)" fg:x="153647809329" fg:w="56116141"/><text x="50.2112%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (31,994,697 samples, 0.01%)</title><rect x="50.0024%" y="1797" width="0.0104%" height="15" fill="rgb(246,31,12)" fg:x="153774456615" fg:w="31994697"/><text x="50.2524%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (37,241,630 samples, 0.01%)</title><rect x="50.0015%" y="1813" width="0.0121%" height="15" fill="rgb(213,154,6)" fg:x="153771487790" fg:w="37241630"/><text x="50.2515%" y="1823.50"></text></g><g><title>git2::patch::Patch::from_buffers (38,860,312 samples, 0.01%)</title><rect x="50.0013%" y="1909" width="0.0126%" height="15" fill="rgb(222,163,29)" fg:x="153770978925" fg:w="38860312"/><text x="50.2513%" y="1919.50"></text></g><g><title>git_patch_from_buffers (38,860,312 samples, 0.01%)</title><rect x="50.0013%" y="1893" width="0.0126%" height="15" fill="rgb(227,201,8)" fg:x="153770978925" fg:w="38860312"/><text x="50.2513%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (38,860,312 samples, 0.01%)</title><rect x="50.0013%" y="1877" width="0.0126%" height="15" fill="rgb(233,9,32)" fg:x="153770978925" fg:w="38860312"/><text x="50.2513%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (38,860,312 samples, 0.01%)</title><rect x="50.0013%" y="1861" width="0.0126%" height="15" fill="rgb(217,54,24)" fg:x="153770978925" fg:w="38860312"/><text x="50.2513%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (38,860,312 samples, 0.01%)</title><rect x="50.0013%" y="1845" width="0.0126%" height="15" fill="rgb(235,192,0)" fg:x="153770978925" fg:w="38860312"/><text x="50.2513%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (38,860,312 samples, 0.01%)</title><rect x="50.0013%" y="1829" width="0.0126%" height="15" fill="rgb(235,45,9)" fg:x="153770978925" fg:w="38860312"/><text x="50.2513%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (41,664,641 samples, 0.01%)</title><rect x="50.0007%" y="1941" width="0.0135%" height="15" fill="rgb(246,42,40)" fg:x="153769108686" fg:w="41664641"/><text x="50.2507%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (41,664,641 samples, 0.01%)</title><rect x="50.0007%" y="1925" width="0.0135%" height="15" fill="rgb(248,111,24)" fg:x="153769108686" fg:w="41664641"/><text x="50.2507%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (82,975,032 samples, 0.03%)</title><rect x="50.0148%" y="1941" width="0.0270%" height="15" fill="rgb(249,65,22)" fg:x="153812435108" fg:w="82975032"/><text x="50.2648%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (78,021,135 samples, 0.03%)</title><rect x="50.0164%" y="1925" width="0.0254%" height="15" fill="rgb(238,111,51)" fg:x="153817389005" fg:w="78021135"/><text x="50.2664%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (72,608,049 samples, 0.02%)</title><rect x="50.0428%" y="1941" width="0.0236%" height="15" fill="rgb(250,118,22)" fg:x="153898756163" fg:w="72608049"/><text x="50.2928%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (40,589,026 samples, 0.01%)</title><rect x="50.0675%" y="1925" width="0.0132%" height="15" fill="rgb(234,84,26)" fg:x="153974478077" fg:w="40589026"/><text x="50.3175%" y="1935.50"></text></g><g><title>worktree::BackgroundScanner::reload_entries_for_paths::_{{closure}} (39,616,106 samples, 0.01%)</title><rect x="50.0678%" y="1909" width="0.0129%" height="15" fill="rgb(243,172,12)" fg:x="153975450997" fg:w="39616106"/><text x="50.3178%" y="1919.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (42,239,496 samples, 0.01%)</title><rect x="50.0922%" y="1909" width="0.0137%" height="15" fill="rgb(236,150,49)" fg:x="154050399632" fg:w="42239496"/><text x="50.3422%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (185,271,769 samples, 0.06%)</title><rect x="50.0665%" y="1941" width="0.0602%" height="15" fill="rgb(225,197,26)" fg:x="153971364212" fg:w="185271769"/><text x="50.3165%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (141,568,878 samples, 0.05%)</title><rect x="50.0807%" y="1925" width="0.0460%" height="15" fill="rgb(214,17,42)" fg:x="154015067103" fg:w="141568878"/><text x="50.3307%" y="1935.50"></text></g><g><title>stack__iter.constprop.0 (30,844,058 samples, 0.01%)</title><rect x="50.1595%" y="1845" width="0.0100%" height="15" fill="rgb(224,165,40)" fg:x="154257562189" fg:w="30844058"/><text x="50.4095%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (35,984,025 samples, 0.01%)</title><rect x="50.1866%" y="1845" width="0.0117%" height="15" fill="rgb(246,100,4)" fg:x="154340828851" fg:w="35984025"/><text x="50.4366%" y="1855.50"></text></g><g><title>ts_lex (63,054,997 samples, 0.02%)</title><rect x="50.2059%" y="1829" width="0.0205%" height="15" fill="rgb(222,103,0)" fg:x="154400288856" fg:w="63054997"/><text x="50.4559%" y="1839.50"></text></g><g><title>ts_parser__lex (133,087,531 samples, 0.04%)</title><rect x="50.1983%" y="1845" width="0.0433%" height="15" fill="rgb(227,189,26)" fg:x="154376812876" fg:w="133087531"/><text x="50.4483%" y="1855.50"></text></g><g><title>ts_parser__recover (416,156,058 samples, 0.14%)</title><rect x="50.2416%" y="1845" width="0.1353%" height="15" fill="rgb(214,202,17)" fg:x="154509900407" fg:w="416156058"/><text x="50.4916%" y="1855.50"></text></g><g><title>ts_subtree_new_node (211,170,965 samples, 0.07%)</title><rect x="50.3082%" y="1829" width="0.0687%" height="15" fill="rgb(229,111,3)" fg:x="154714885500" fg:w="211170965"/><text x="50.5582%" y="1839.50"></text></g><g><title>ts_subtree_summarize_children (206,420,598 samples, 0.07%)</title><rect x="50.3098%" y="1813" width="0.0671%" height="15" fill="rgb(229,172,15)" fg:x="154719635867" fg:w="206420598"/><text x="50.5598%" y="1823.50"></text></g><g><title>ts_stack_remove_version (196,338,548 samples, 0.06%)</title><rect x="50.3784%" y="1845" width="0.0638%" height="15" fill="rgb(230,224,35)" fg:x="154930637868" fg:w="196338548"/><text x="50.6284%" y="1855.50"></text></g><g><title>stack_node_release (196,338,548 samples, 0.06%)</title><rect x="50.3784%" y="1829" width="0.0638%" height="15" fill="rgb(251,141,6)" fg:x="154930637868" fg:w="196338548"/><text x="50.6284%" y="1839.50"></text></g><g><title>ts_subtree_release (196,338,548 samples, 0.06%)</title><rect x="50.3784%" y="1813" width="0.0638%" height="15" fill="rgb(225,208,6)" fg:x="154930637868" fg:w="196338548"/><text x="50.6284%" y="1823.50"></text></g><g><title>ts_parser_parse (939,601,804 samples, 0.31%)</title><rect x="50.1511%" y="1861" width="0.3055%" height="15" fill="rgb(246,181,16)" fg:x="154231587672" fg:w="939601804"/><text x="50.4011%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (971,960,846 samples, 0.32%)</title><rect x="50.1418%" y="1893" width="0.3160%" height="15" fill="rgb(227,129,36)" fg:x="154203056264" fg:w="971960846"/><text x="50.3918%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (971,960,846 samples, 0.32%)</title><rect x="50.1418%" y="1877" width="0.3160%" height="15" fill="rgb(248,117,24)" fg:x="154203056264" fg:w="971960846"/><text x="50.3918%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (59,873,419 samples, 0.02%)</title><rect x="50.4638%" y="1877" width="0.0195%" height="15" fill="rgb(214,185,35)" fg:x="155193346136" fg:w="59873419"/><text x="50.7138%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (1,078,195,006 samples, 0.35%)</title><rect x="50.1339%" y="1909" width="0.3506%" height="15" fill="rgb(236,150,34)" fg:x="154178648729" fg:w="1078195006"/><text x="50.3839%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (64,654,208 samples, 0.02%)</title><rect x="50.4634%" y="1893" width="0.0210%" height="15" fill="rgb(243,228,27)" fg:x="155192189527" fg:w="64654208"/><text x="50.7134%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (1,101,616,816 samples, 0.36%)</title><rect x="50.1269%" y="1941" width="0.3582%" height="15" fill="rgb(245,77,44)" fg:x="154157248429" fg:w="1101616816"/><text x="50.3769%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (1,101,616,816 samples, 0.36%)</title><rect x="50.1269%" y="1925" width="0.3582%" height="15" fill="rgb(235,214,42)" fg:x="154157248429" fg:w="1101616816"/><text x="50.3769%" y="1935.50"></text></g><g><title>ts_malloc_default (65,523,663 samples, 0.02%)</title><rect x="50.5367%" y="1829" width="0.0213%" height="15" fill="rgb(221,74,3)" fg:x="155417431254" fg:w="65523663"/><text x="50.7867%" y="1839.50"></text></g><g><title>malloc (65,523,663 samples, 0.02%)</title><rect x="50.5367%" y="1813" width="0.0213%" height="15" fill="rgb(206,121,29)" fg:x="155417431254" fg:w="65523663"/><text x="50.7867%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (83,536,395 samples, 0.03%)</title><rect x="50.5318%" y="1845" width="0.0272%" height="15" fill="rgb(249,131,53)" fg:x="155402575973" fg:w="83536395"/><text x="50.7818%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (47,339,340 samples, 0.02%)</title><rect x="50.5739%" y="1845" width="0.0154%" height="15" fill="rgb(236,170,29)" fg:x="155531869251" fg:w="47339340"/><text x="50.8239%" y="1855.50"></text></g><g><title>ts_lex (71,249,949 samples, 0.02%)</title><rect x="50.6046%" y="1829" width="0.0232%" height="15" fill="rgb(247,96,15)" fg:x="155626499144" fg:w="71249949"/><text x="50.8546%" y="1839.50"></text></g><g><title>ts_parser__lex (153,755,455 samples, 0.05%)</title><rect x="50.5893%" y="1845" width="0.0500%" height="15" fill="rgb(211,210,7)" fg:x="155579208591" fg:w="153755455"/><text x="50.8393%" y="1855.50"></text></g><g><title>ts_parser_parse (454,799,067 samples, 0.15%)</title><rect x="50.5161%" y="1861" width="0.1479%" height="15" fill="rgb(240,88,50)" fg:x="155354155924" fg:w="454799067"/><text x="50.7661%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (481,174,841 samples, 0.16%)</title><rect x="50.5081%" y="1877" width="0.1565%" height="15" fill="rgb(209,229,26)" fg:x="155329624864" fg:w="481174841"/><text x="50.7581%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (487,927,533 samples, 0.16%)</title><rect x="50.5070%" y="1893" width="0.1587%" height="15" fill="rgb(210,68,23)" fg:x="155326093181" fg:w="487927533"/><text x="50.7570%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (76,810,954 samples, 0.02%)</title><rect x="50.6724%" y="1877" width="0.0250%" height="15" fill="rgb(229,180,13)" fg:x="155834860374" fg:w="76810954"/><text x="50.9224%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (84,066,884 samples, 0.03%)</title><rect x="50.6724%" y="1893" width="0.0273%" height="15" fill="rgb(236,53,44)" fg:x="155834860374" fg:w="84066884"/><text x="50.9224%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (614,207,000 samples, 0.20%)</title><rect x="50.5006%" y="1909" width="0.1997%" height="15" fill="rgb(244,214,29)" fg:x="155306535136" fg:w="614207000"/><text x="50.7506%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (664,025,468 samples, 0.22%)</title><rect x="50.4851%" y="1941" width="0.2159%" height="15" fill="rgb(220,75,29)" fg:x="155258865245" fg:w="664025468"/><text x="50.7351%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (663,198,853 samples, 0.22%)</title><rect x="50.4854%" y="1925" width="0.2157%" height="15" fill="rgb(214,183,37)" fg:x="155259691860" fg:w="663198853"/><text x="50.7354%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,325,733,506 samples, 0.76%)</title><rect x="49.9476%" y="1957" width="0.7563%" height="15" fill="rgb(239,117,29)" fg:x="153605893684" fg:w="2325733506"/><text x="50.1976%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,349,293,536 samples, 0.76%)</title><rect x="49.9435%" y="1973" width="0.7639%" height="15" fill="rgb(237,171,35)" fg:x="153593336289" fg:w="2349293536"/><text x="50.1935%" y="1983.50"></text></g><g><title>Worker-1 (2,459,467,195 samples, 0.80%)</title><rect x="49.9427%" y="2069" width="0.7997%" height="15" fill="rgb(229,178,53)" fg:x="153590707226" fg:w="2459467195"/><text x="50.1927%" y="2079.50"></text></g><g><title>__GI___clone3 (2,456,838,132 samples, 0.80%)</title><rect x="49.9435%" y="2053" width="0.7989%" height="15" fill="rgb(210,102,19)" fg:x="153593336289" fg:w="2456838132"/><text x="50.1935%" y="2063.50"></text></g><g><title>start_thread (2,456,838,132 samples, 0.80%)</title><rect x="49.9435%" y="2037" width="0.7989%" height="15" fill="rgb(235,127,22)" fg:x="153593336289" fg:w="2456838132"/><text x="50.1935%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,456,838,132 samples, 0.80%)</title><rect x="49.9435%" y="2021" width="0.7989%" height="15" fill="rgb(244,31,31)" fg:x="153593336289" fg:w="2456838132"/><text x="50.1935%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,456,838,132 samples, 0.80%)</title><rect x="49.9435%" y="2005" width="0.7989%" height="15" fill="rgb(231,43,21)" fg:x="153593336289" fg:w="2456838132"/><text x="50.1935%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,456,838,132 samples, 0.80%)</title><rect x="49.9435%" y="1989" width="0.7989%" height="15" fill="rgb(217,131,35)" fg:x="153593336289" fg:w="2456838132"/><text x="50.1935%" y="1999.50"></text></g><g><title>syscall (107,544,596 samples, 0.03%)</title><rect x="50.7074%" y="1973" width="0.0350%" height="15" fill="rgb(221,149,4)" fg:x="155942629825" fg:w="107544596"/><text x="50.9574%" y="1983.50"></text></g><g><title>[unknown] (102,737,018 samples, 0.03%)</title><rect x="50.7090%" y="1957" width="0.0334%" height="15" fill="rgb(232,170,28)" fg:x="155947437403" fg:w="102737018"/><text x="50.9590%" y="1967.50"></text></g><g><title>[unknown] (101,630,533 samples, 0.03%)</title><rect x="50.7094%" y="1941" width="0.0330%" height="15" fill="rgb(238,56,10)" fg:x="155948543888" fg:w="101630533"/><text x="50.9594%" y="1951.50"></text></g><g><title>[unknown] (100,427,524 samples, 0.03%)</title><rect x="50.7098%" y="1925" width="0.0327%" height="15" fill="rgb(235,196,14)" fg:x="155949746897" fg:w="100427524"/><text x="50.9598%" y="1935.50"></text></g><g><title>[unknown] (100,423,904 samples, 0.03%)</title><rect x="50.7098%" y="1909" width="0.0327%" height="15" fill="rgb(216,45,48)" fg:x="155949750517" fg:w="100423904"/><text x="50.9598%" y="1919.50"></text></g><g><title>[unknown] (92,475,283 samples, 0.03%)</title><rect x="50.7123%" y="1893" width="0.0301%" height="15" fill="rgb(238,213,17)" fg:x="155957699138" fg:w="92475283"/><text x="50.9623%" y="1903.50"></text></g><g><title>[unknown] (88,587,178 samples, 0.03%)</title><rect x="50.7136%" y="1877" width="0.0288%" height="15" fill="rgb(212,13,2)" fg:x="155961587243" fg:w="88587178"/><text x="50.9636%" y="1887.50"></text></g><g><title>[unknown] (75,387,201 samples, 0.02%)</title><rect x="50.7179%" y="1861" width="0.0245%" height="15" fill="rgb(240,114,20)" fg:x="155974787220" fg:w="75387201"/><text x="50.9679%" y="1871.50"></text></g><g><title>[unknown] (74,363,353 samples, 0.02%)</title><rect x="50.7182%" y="1845" width="0.0242%" height="15" fill="rgb(228,41,40)" fg:x="155975811068" fg:w="74363353"/><text x="50.9682%" y="1855.50"></text></g><g><title>[unknown] (72,054,440 samples, 0.02%)</title><rect x="50.7190%" y="1829" width="0.0234%" height="15" fill="rgb(244,132,35)" fg:x="155978119981" fg:w="72054440"/><text x="50.9690%" y="1839.50"></text></g><g><title>[unknown] (68,020,127 samples, 0.02%)</title><rect x="50.7203%" y="1813" width="0.0221%" height="15" fill="rgb(253,189,4)" fg:x="155982154294" fg:w="68020127"/><text x="50.9703%" y="1823.50"></text></g><g><title>[unknown] (66,831,994 samples, 0.02%)</title><rect x="50.7207%" y="1797" width="0.0217%" height="15" fill="rgb(224,37,19)" fg:x="155983342427" fg:w="66831994"/><text x="50.9707%" y="1807.50"></text></g><g><title>[unknown] (64,025,068 samples, 0.02%)</title><rect x="50.7216%" y="1781" width="0.0208%" height="15" fill="rgb(235,223,18)" fg:x="155986149353" fg:w="64025068"/><text x="50.9716%" y="1791.50"></text></g><g><title>[unknown] (59,598,324 samples, 0.02%)</title><rect x="50.7230%" y="1765" width="0.0194%" height="15" fill="rgb(235,163,25)" fg:x="155990576097" fg:w="59598324"/><text x="50.9730%" y="1775.50"></text></g><g><title>[unknown] (52,093,125 samples, 0.02%)</title><rect x="50.7255%" y="1749" width="0.0169%" height="15" fill="rgb(217,145,28)" fg:x="155998081296" fg:w="52093125"/><text x="50.9755%" y="1759.50"></text></g><g><title>[unknown] (44,688,144 samples, 0.01%)</title><rect x="50.7279%" y="1733" width="0.0145%" height="15" fill="rgb(223,223,32)" fg:x="156005486277" fg:w="44688144"/><text x="50.9779%" y="1743.50"></text></g><g><title>[unknown] (39,593,710 samples, 0.01%)</title><rect x="50.7295%" y="1717" width="0.0129%" height="15" fill="rgb(227,189,39)" fg:x="156010580711" fg:w="39593710"/><text x="50.9795%" y="1727.50"></text></g><g><title>[libgit2.so.1.9.0] (39,216,763 samples, 0.01%)</title><rect x="50.7661%" y="1829" width="0.0128%" height="15" fill="rgb(248,10,22)" fg:x="156123160270" fg:w="39216763"/><text x="51.0161%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (54,761,773 samples, 0.02%)</title><rect x="50.7655%" y="1845" width="0.0178%" height="15" fill="rgb(248,46,39)" fg:x="156121327764" fg:w="54761773"/><text x="51.0155%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (55,522,674 samples, 0.02%)</title><rect x="50.7655%" y="1877" width="0.0181%" height="15" fill="rgb(248,113,48)" fg:x="156121327764" fg:w="55522674"/><text x="51.0155%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (55,522,674 samples, 0.02%)</title><rect x="50.7655%" y="1861" width="0.0181%" height="15" fill="rgb(245,16,25)" fg:x="156121327764" fg:w="55522674"/><text x="51.0155%" y="1871.50"></text></g><g><title>git2::repo::Repository::find_blob (56,820,980 samples, 0.02%)</title><rect x="50.7655%" y="1925" width="0.0185%" height="15" fill="rgb(249,152,16)" fg:x="156121327764" fg:w="56820980"/><text x="51.0155%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (56,820,980 samples, 0.02%)</title><rect x="50.7655%" y="1909" width="0.0185%" height="15" fill="rgb(250,16,1)" fg:x="156121327764" fg:w="56820980"/><text x="51.0155%" y="1919.50"></text></g><g><title>git_odb_read (56,820,980 samples, 0.02%)</title><rect x="50.7655%" y="1893" width="0.0185%" height="15" fill="rgb(249,138,3)" fg:x="156121327764" fg:w="56820980"/><text x="51.0155%" y="1903.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (77,868,204 samples, 0.03%)</title><rect x="50.7653%" y="1941" width="0.0253%" height="15" fill="rgb(227,71,41)" fg:x="156120455933" fg:w="77868204"/><text x="51.0153%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (37,288,681 samples, 0.01%)</title><rect x="50.8121%" y="1925" width="0.0121%" height="15" fill="rgb(209,184,23)" fg:x="156264579840" fg:w="37288681"/><text x="51.0621%" y="1935.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (37,803,312 samples, 0.01%)</title><rect x="50.8121%" y="1941" width="0.0123%" height="15" fill="rgb(223,215,31)" fg:x="156264579840" fg:w="37803312"/><text x="51.0621%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (79,258,245 samples, 0.03%)</title><rect x="50.8244%" y="1941" width="0.0258%" height="15" fill="rgb(210,146,28)" fg:x="156302383152" fg:w="79258245"/><text x="51.0744%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (74,187,574 samples, 0.02%)</title><rect x="50.8261%" y="1925" width="0.0241%" height="15" fill="rgb(209,183,41)" fg:x="156307453823" fg:w="74187574"/><text x="51.0761%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (78,141,631 samples, 0.03%)</title><rect x="50.8512%" y="1941" width="0.0254%" height="15" fill="rgb(209,224,45)" fg:x="156384796439" fg:w="78141631"/><text x="51.1012%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (36,405,784 samples, 0.01%)</title><rect x="50.9003%" y="1909" width="0.0118%" height="15" fill="rgb(224,209,51)" fg:x="156535639222" fg:w="36405784"/><text x="51.1503%" y="1919.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (144,134,625 samples, 0.05%)</title><rect x="50.8877%" y="1925" width="0.0469%" height="15" fill="rgb(223,17,39)" fg:x="156496836681" fg:w="144134625"/><text x="51.1377%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (201,660,338 samples, 0.07%)</title><rect x="50.8773%" y="1941" width="0.0656%" height="15" fill="rgb(234,204,37)" fg:x="156465015590" fg:w="201660338"/><text x="51.1273%" y="1951.50"></text></g><g><title>stack__iter.constprop.0 (45,167,840 samples, 0.01%)</title><rect x="50.9717%" y="1845" width="0.0147%" height="15" fill="rgb(236,120,5)" fg:x="156755235033" fg:w="45167840"/><text x="51.2217%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (49,683,216 samples, 0.02%)</title><rect x="50.9961%" y="1845" width="0.0162%" height="15" fill="rgb(248,97,27)" fg:x="156830404369" fg:w="49683216"/><text x="51.2461%" y="1855.50"></text></g><g><title>ts_lex (59,887,856 samples, 0.02%)</title><rect x="51.0189%" y="1829" width="0.0195%" height="15" fill="rgb(240,66,17)" fg:x="156900559368" fg:w="59887856"/><text x="51.2689%" y="1839.50"></text></g><g><title>ts_parser__lex (103,610,303 samples, 0.03%)</title><rect x="51.0123%" y="1845" width="0.0337%" height="15" fill="rgb(210,79,3)" fg:x="156880087585" fg:w="103610303"/><text x="51.2623%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (34,224,103 samples, 0.01%)</title><rect x="51.0516%" y="1845" width="0.0111%" height="15" fill="rgb(214,176,27)" fg:x="157001032992" fg:w="34224103"/><text x="51.3016%" y="1855.50"></text></g><g><title>ts_parser_parse (338,470,918 samples, 0.11%)</title><rect x="50.9634%" y="1861" width="0.1101%" height="15" fill="rgb(235,185,3)" fg:x="156729708753" fg:w="338470918"/><text x="51.2134%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (366,799,293 samples, 0.12%)</title><rect x="50.9551%" y="1893" width="0.1193%" height="15" fill="rgb(227,24,12)" fg:x="156704305563" fg:w="366799293"/><text x="51.2051%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (366,799,293 samples, 0.12%)</title><rect x="50.9551%" y="1877" width="0.1193%" height="15" fill="rgb(252,169,48)" fg:x="156704305563" fg:w="366799293"/><text x="51.2051%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (74,058,525 samples, 0.02%)</title><rect x="51.0777%" y="1877" width="0.0241%" height="15" fill="rgb(212,65,1)" fg:x="157081336824" fg:w="74058525"/><text x="51.3277%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (474,236,099 samples, 0.15%)</title><rect x="50.9488%" y="1909" width="0.1542%" height="15" fill="rgb(242,39,24)" fg:x="156684851206" fg:w="474236099"/><text x="51.1988%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (81,181,663 samples, 0.03%)</title><rect x="51.0766%" y="1893" width="0.0264%" height="15" fill="rgb(249,32,23)" fg:x="157077905642" fg:w="81181663"/><text x="51.3266%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (493,752,975 samples, 0.16%)</title><rect x="50.9429%" y="1925" width="0.1606%" height="15" fill="rgb(251,195,23)" fg:x="156666675928" fg:w="493752975"/><text x="51.1929%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (499,044,973 samples, 0.16%)</title><rect x="50.9429%" y="1941" width="0.1623%" height="15" fill="rgb(236,174,8)" fg:x="156666675928" fg:w="499044973"/><text x="51.1929%" y="1951.50"></text></g><g><title>__memmove_avx512_unaligned_erms (33,497,082 samples, 0.01%)</title><rect x="51.1055%" y="1909" width="0.0109%" height="15" fill="rgb(220,197,8)" fg:x="157166924827" fg:w="33497082"/><text x="51.3555%" y="1919.50"></text></g><g><title>ts_language_table_entry (35,824,828 samples, 0.01%)</title><rect x="51.1297%" y="1861" width="0.0116%" height="15" fill="rgb(240,108,37)" fg:x="157241364918" fg:w="35824828"/><text x="51.3797%" y="1871.50"></text></g><g><title>ts_malloc_default (52,994,404 samples, 0.02%)</title><rect x="51.1619%" y="1829" width="0.0172%" height="15" fill="rgb(232,176,24)" fg:x="157340308458" fg:w="52994404"/><text x="51.4119%" y="1839.50"></text></g><g><title>malloc (52,994,404 samples, 0.02%)</title><rect x="51.1619%" y="1813" width="0.0172%" height="15" fill="rgb(243,35,29)" fg:x="157340308458" fg:w="52994404"/><text x="51.4119%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (82,192,236 samples, 0.03%)</title><rect x="51.1537%" y="1845" width="0.0267%" height="15" fill="rgb(210,37,18)" fg:x="157314977005" fg:w="82192236"/><text x="51.4037%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (63,374,278 samples, 0.02%)</title><rect x="51.2037%" y="1845" width="0.0206%" height="15" fill="rgb(224,184,40)" fg:x="157468645747" fg:w="63374278"/><text x="51.4537%" y="1855.50"></text></g><g><title>ts_lex (92,169,837 samples, 0.03%)</title><rect x="51.2376%" y="1829" width="0.0300%" height="15" fill="rgb(236,39,29)" fg:x="157572972447" fg:w="92169837"/><text x="51.4876%" y="1839.50"></text></g><g><title>ts_parser__lex (160,818,465 samples, 0.05%)</title><rect x="51.2243%" y="1845" width="0.0523%" height="15" fill="rgb(232,48,39)" fg:x="157532020025" fg:w="160818465"/><text x="51.4743%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (31,907,799 samples, 0.01%)</title><rect x="51.2817%" y="1845" width="0.0104%" height="15" fill="rgb(236,34,42)" fg:x="157708591783" fg:w="31907799"/><text x="51.5317%" y="1855.50"></text></g><g><title>ts_parser_parse (500,452,889 samples, 0.16%)</title><rect x="51.1421%" y="1861" width="0.1627%" height="15" fill="rgb(243,106,37)" fg:x="157279280991" fg:w="500452889"/><text x="51.3921%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (541,985,935 samples, 0.18%)</title><rect x="51.1289%" y="1877" width="0.1762%" height="15" fill="rgb(218,96,6)" fg:x="157238810829" fg:w="541985935"/><text x="51.3789%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (543,711,941 samples, 0.18%)</title><rect x="51.1287%" y="1893" width="0.1768%" height="15" fill="rgb(235,130,12)" fg:x="157238213928" fg:w="543711941"/><text x="51.3787%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (101,771,948 samples, 0.03%)</title><rect x="51.3159%" y="1877" width="0.0331%" height="15" fill="rgb(231,95,0)" fg:x="157813853052" fg:w="101771948"/><text x="51.5659%" y="1887.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (757,302,549 samples, 0.25%)</title><rect x="51.1052%" y="1941" width="0.2463%" height="15" fill="rgb(228,12,23)" fg:x="157165720901" fg:w="757302549"/><text x="51.3552%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (757,302,549 samples, 0.25%)</title><rect x="51.1052%" y="1925" width="0.2463%" height="15" fill="rgb(216,12,1)" fg:x="157165720901" fg:w="757302549"/><text x="51.3552%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (699,307,781 samples, 0.23%)</title><rect x="51.1240%" y="1909" width="0.2274%" height="15" fill="rgb(219,59,3)" fg:x="157223715669" fg:w="699307781"/><text x="51.3740%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (115,643,914 samples, 0.04%)</title><rect x="51.3138%" y="1893" width="0.0376%" height="15" fill="rgb(215,208,46)" fg:x="157807379536" fg:w="115643914"/><text x="51.5638%" y="1903.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,865,208,110 samples, 0.61%)</title><rect x="50.7489%" y="1957" width="0.6065%" height="15" fill="rgb(254,224,29)" fg:x="156070156299" fg:w="1865208110"/><text x="50.9989%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,891,135,423 samples, 0.61%)</title><rect x="50.7439%" y="1973" width="0.6149%" height="15" fill="rgb(232,14,29)" fg:x="156054607968" fg:w="1891135423"/><text x="50.9939%" y="1983.50"></text></g><g><title>Worker-20 (2,003,756,426 samples, 0.65%)</title><rect x="50.7424%" y="2069" width="0.6516%" height="15" fill="rgb(208,45,52)" fg:x="156050174421" fg:w="2003756426"/><text x="50.9924%" y="2079.50"></text></g><g><title>__GI___clone3 (2,003,077,358 samples, 0.65%)</title><rect x="50.7426%" y="2053" width="0.6513%" height="15" fill="rgb(234,191,28)" fg:x="156050853489" fg:w="2003077358"/><text x="50.9926%" y="2063.50"></text></g><g><title>start_thread (2,003,077,358 samples, 0.65%)</title><rect x="50.7426%" y="2037" width="0.6513%" height="15" fill="rgb(244,67,43)" fg:x="156050853489" fg:w="2003077358"/><text x="50.9926%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,003,077,358 samples, 0.65%)</title><rect x="50.7426%" y="2021" width="0.6513%" height="15" fill="rgb(236,189,24)" fg:x="156050853489" fg:w="2003077358"/><text x="50.9926%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,003,077,358 samples, 0.65%)</title><rect x="50.7426%" y="2005" width="0.6513%" height="15" fill="rgb(239,214,33)" fg:x="156050853489" fg:w="2003077358"/><text x="50.9926%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,003,077,358 samples, 0.65%)</title><rect x="50.7426%" y="1989" width="0.6513%" height="15" fill="rgb(226,176,41)" fg:x="156050853489" fg:w="2003077358"/><text x="50.9926%" y="1999.50"></text></g><g><title>syscall (108,187,456 samples, 0.04%)</title><rect x="51.3588%" y="1973" width="0.0352%" height="15" fill="rgb(248,47,8)" fg:x="157945743391" fg:w="108187456"/><text x="51.6088%" y="1983.50"></text></g><g><title>[unknown] (103,835,951 samples, 0.03%)</title><rect x="51.3602%" y="1957" width="0.0338%" height="15" fill="rgb(218,81,44)" fg:x="157950094896" fg:w="103835951"/><text x="51.6102%" y="1967.50"></text></g><g><title>[unknown] (101,109,888 samples, 0.03%)</title><rect x="51.3611%" y="1941" width="0.0329%" height="15" fill="rgb(213,98,6)" fg:x="157952820959" fg:w="101109888"/><text x="51.6111%" y="1951.50"></text></g><g><title>[unknown] (98,171,357 samples, 0.03%)</title><rect x="51.3620%" y="1925" width="0.0319%" height="15" fill="rgb(222,85,22)" fg:x="157955759490" fg:w="98171357"/><text x="51.6120%" y="1935.50"></text></g><g><title>[unknown] (94,157,034 samples, 0.03%)</title><rect x="51.3634%" y="1909" width="0.0306%" height="15" fill="rgb(239,46,39)" fg:x="157959773813" fg:w="94157034"/><text x="51.6134%" y="1919.50"></text></g><g><title>[unknown] (91,798,691 samples, 0.03%)</title><rect x="51.3641%" y="1893" width="0.0298%" height="15" fill="rgb(237,12,29)" fg:x="157962132156" fg:w="91798691"/><text x="51.6141%" y="1903.50"></text></g><g><title>[unknown] (91,798,691 samples, 0.03%)</title><rect x="51.3641%" y="1877" width="0.0298%" height="15" fill="rgb(214,77,8)" fg:x="157962132156" fg:w="91798691"/><text x="51.6141%" y="1887.50"></text></g><g><title>[unknown] (84,039,603 samples, 0.03%)</title><rect x="51.3666%" y="1861" width="0.0273%" height="15" fill="rgb(217,168,37)" fg:x="157969891244" fg:w="84039603"/><text x="51.6166%" y="1871.50"></text></g><g><title>[unknown] (81,006,711 samples, 0.03%)</title><rect x="51.3676%" y="1845" width="0.0263%" height="15" fill="rgb(221,217,23)" fg:x="157972924136" fg:w="81006711"/><text x="51.6176%" y="1855.50"></text></g><g><title>[unknown] (78,362,605 samples, 0.03%)</title><rect x="51.3685%" y="1829" width="0.0255%" height="15" fill="rgb(243,229,36)" fg:x="157975568242" fg:w="78362605"/><text x="51.6185%" y="1839.50"></text></g><g><title>[unknown] (78,284,440 samples, 0.03%)</title><rect x="51.3685%" y="1813" width="0.0255%" height="15" fill="rgb(251,163,40)" fg:x="157975646407" fg:w="78284440"/><text x="51.6185%" y="1823.50"></text></g><g><title>[unknown] (74,119,112 samples, 0.02%)</title><rect x="51.3699%" y="1797" width="0.0241%" height="15" fill="rgb(237,222,12)" fg:x="157979811735" fg:w="74119112"/><text x="51.6199%" y="1807.50"></text></g><g><title>[unknown] (72,226,928 samples, 0.02%)</title><rect x="51.3705%" y="1781" width="0.0235%" height="15" fill="rgb(248,132,6)" fg:x="157981703919" fg:w="72226928"/><text x="51.6205%" y="1791.50"></text></g><g><title>[unknown] (65,887,843 samples, 0.02%)</title><rect x="51.3725%" y="1765" width="0.0214%" height="15" fill="rgb(227,167,50)" fg:x="157988043004" fg:w="65887843"/><text x="51.6225%" y="1775.50"></text></g><g><title>[unknown] (55,942,459 samples, 0.02%)</title><rect x="51.3758%" y="1749" width="0.0182%" height="15" fill="rgb(242,84,37)" fg:x="157997988388" fg:w="55942459"/><text x="51.6258%" y="1759.50"></text></g><g><title>[unknown] (49,056,678 samples, 0.02%)</title><rect x="51.3780%" y="1733" width="0.0160%" height="15" fill="rgb(212,4,50)" fg:x="158004874169" fg:w="49056678"/><text x="51.6280%" y="1743.50"></text></g><g><title>[unknown] (45,903,265 samples, 0.01%)</title><rect x="51.3790%" y="1717" width="0.0149%" height="15" fill="rgb(230,228,32)" fg:x="158008027582" fg:w="45903265"/><text x="51.6290%" y="1727.50"></text></g><g><title>[unknown] (32,188,647 samples, 0.01%)</title><rect x="51.3835%" y="1701" width="0.0105%" height="15" fill="rgb(248,217,23)" fg:x="158021742200" fg:w="32188647"/><text x="51.6335%" y="1711.50"></text></g><g><title>[libgit2.so.1.9.0] (38,899,097 samples, 0.01%)</title><rect x="51.4116%" y="1829" width="0.0126%" height="15" fill="rgb(238,197,32)" fg:x="158108171487" fg:w="38899097"/><text x="51.6616%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (50,127,543 samples, 0.02%)</title><rect x="51.4116%" y="1925" width="0.0163%" height="15" fill="rgb(236,106,1)" fg:x="158108171487" fg:w="50127543"/><text x="51.6616%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (50,127,543 samples, 0.02%)</title><rect x="51.4116%" y="1909" width="0.0163%" height="15" fill="rgb(219,228,13)" fg:x="158108171487" fg:w="50127543"/><text x="51.6616%" y="1919.50"></text></g><g><title>git_odb_read (50,127,543 samples, 0.02%)</title><rect x="51.4116%" y="1893" width="0.0163%" height="15" fill="rgb(238,30,35)" fg:x="158108171487" fg:w="50127543"/><text x="51.6616%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (50,127,543 samples, 0.02%)</title><rect x="51.4116%" y="1877" width="0.0163%" height="15" fill="rgb(236,70,23)" fg:x="158108171487" fg:w="50127543"/><text x="51.6616%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (50,127,543 samples, 0.02%)</title><rect x="51.4116%" y="1861" width="0.0163%" height="15" fill="rgb(249,104,48)" fg:x="158108171487" fg:w="50127543"/><text x="51.6616%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (50,127,543 samples, 0.02%)</title><rect x="51.4116%" y="1845" width="0.0163%" height="15" fill="rgb(254,117,50)" fg:x="158108171487" fg:w="50127543"/><text x="51.6616%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (87,970,870 samples, 0.03%)</title><rect x="51.4116%" y="1941" width="0.0286%" height="15" fill="rgb(223,152,4)" fg:x="158108171487" fg:w="87970870"/><text x="51.6616%" y="1951.50"></text></g><g><title>git2::tree::Tree::get_path (34,128,450 samples, 0.01%)</title><rect x="51.4291%" y="1925" width="0.0111%" height="15" fill="rgb(245,6,2)" fg:x="158162013907" fg:w="34128450"/><text x="51.6791%" y="1935.50"></text></g><g><title>git_tree_entry_bypath (33,060,463 samples, 0.01%)</title><rect x="51.4295%" y="1909" width="0.0108%" height="15" fill="rgb(249,150,24)" fg:x="158163081894" fg:w="33060463"/><text x="51.6795%" y="1919.50"></text></g><g><title>git_tree_entry_bypath (31,874,671 samples, 0.01%)</title><rect x="51.4298%" y="1893" width="0.0104%" height="15" fill="rgb(228,185,42)" fg:x="158164267686" fg:w="31874671"/><text x="51.6798%" y="1903.50"></text></g><g><title>&lt;gpui::platform::linux::dispatcher::LinuxDispatcher as gpui::platform::PlatformDispatcher&gt;::dispatch (32,256,679 samples, 0.01%)</title><rect x="51.4447%" y="1941" width="0.0105%" height="15" fill="rgb(226,39,33)" fg:x="158209942120" fg:w="32256679"/><text x="51.6947%" y="1951.50"></text></g><g><title>syscall (31,150,192 samples, 0.01%)</title><rect x="51.4451%" y="1925" width="0.0101%" height="15" fill="rgb(221,166,19)" fg:x="158211048607" fg:w="31150192"/><text x="51.6951%" y="1935.50"></text></g><g><title>[libgit2.so.1.9.0] (38,633,299 samples, 0.01%)</title><rect x="51.4641%" y="1813" width="0.0126%" height="15" fill="rgb(209,109,2)" fg:x="158269526509" fg:w="38633299"/><text x="51.7141%" y="1823.50"></text></g><g><title>[libgit2.so.1.9.0] (35,137,342 samples, 0.01%)</title><rect x="51.4652%" y="1797" width="0.0114%" height="15" fill="rgb(252,216,26)" fg:x="158273022466" fg:w="35137342"/><text x="51.7152%" y="1807.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (43,660,888 samples, 0.01%)</title><rect x="51.4631%" y="1941" width="0.0142%" height="15" fill="rgb(227,173,36)" fg:x="158266598195" fg:w="43660888"/><text x="51.7131%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (43,660,888 samples, 0.01%)</title><rect x="51.4631%" y="1925" width="0.0142%" height="15" fill="rgb(209,90,7)" fg:x="158266598195" fg:w="43660888"/><text x="51.7131%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (41,906,243 samples, 0.01%)</title><rect x="51.4637%" y="1909" width="0.0136%" height="15" fill="rgb(250,194,11)" fg:x="158268352840" fg:w="41906243"/><text x="51.7137%" y="1919.50"></text></g><g><title>git_patch_from_buffers (41,906,243 samples, 0.01%)</title><rect x="51.4637%" y="1893" width="0.0136%" height="15" fill="rgb(220,72,50)" fg:x="158268352840" fg:w="41906243"/><text x="51.7137%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (41,906,243 samples, 0.01%)</title><rect x="51.4637%" y="1877" width="0.0136%" height="15" fill="rgb(222,106,48)" fg:x="158268352840" fg:w="41906243"/><text x="51.7137%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (40,732,574 samples, 0.01%)</title><rect x="51.4641%" y="1861" width="0.0132%" height="15" fill="rgb(216,220,45)" fg:x="158269526509" fg:w="40732574"/><text x="51.7141%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (40,732,574 samples, 0.01%)</title><rect x="51.4641%" y="1845" width="0.0132%" height="15" fill="rgb(234,112,18)" fg:x="158269526509" fg:w="40732574"/><text x="51.7141%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (40,732,574 samples, 0.01%)</title><rect x="51.4641%" y="1829" width="0.0132%" height="15" fill="rgb(206,179,9)" fg:x="158269526509" fg:w="40732574"/><text x="51.7141%" y="1839.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (60,863,044 samples, 0.02%)</title><rect x="51.4810%" y="1925" width="0.0198%" height="15" fill="rgb(215,115,40)" fg:x="158321562224" fg:w="60863044"/><text x="51.7310%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (72,030,676 samples, 0.02%)</title><rect x="51.4781%" y="1941" width="0.0234%" height="15" fill="rgb(222,69,34)" fg:x="158312728262" fg:w="72030676"/><text x="51.7281%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (80,537,821 samples, 0.03%)</title><rect x="51.5022%" y="1941" width="0.0262%" height="15" fill="rgb(209,161,10)" fg:x="158386871033" fg:w="80537821"/><text x="51.7522%" y="1951.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (107,045,176 samples, 0.03%)</title><rect x="51.5350%" y="1941" width="0.0348%" height="15" fill="rgb(217,6,38)" fg:x="158487613505" fg:w="107045176"/><text x="51.7850%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (90,028,965 samples, 0.03%)</title><rect x="51.5405%" y="1925" width="0.0293%" height="15" fill="rgb(229,229,48)" fg:x="158504629716" fg:w="90028965"/><text x="51.7905%" y="1935.50"></text></g><g><title>stack__iter.constprop.0 (42,504,877 samples, 0.01%)</title><rect x="51.6024%" y="1845" width="0.0138%" height="15" fill="rgb(225,21,28)" fg:x="158694915772" fg:w="42504877"/><text x="51.8524%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (49,867,025 samples, 0.02%)</title><rect x="51.6350%" y="1845" width="0.0162%" height="15" fill="rgb(206,33,13)" fg:x="158795315964" fg:w="49867025"/><text x="51.8850%" y="1855.50"></text></g><g><title>ts_lex (40,712,761 samples, 0.01%)</title><rect x="51.6602%" y="1829" width="0.0132%" height="15" fill="rgb(242,178,17)" fg:x="158872758833" fg:w="40712761"/><text x="51.9102%" y="1839.50"></text></g><g><title>ts_parser__lex (98,412,891 samples, 0.03%)</title><rect x="51.6513%" y="1845" width="0.0320%" height="15" fill="rgb(220,162,5)" fg:x="158845182989" fg:w="98412891"/><text x="51.9013%" y="1855.50"></text></g><g><title>ts_parser_parse_with_options (375,360,089 samples, 0.12%)</title><rect x="51.5808%" y="1877" width="0.1221%" height="15" fill="rgb(210,33,43)" fg:x="158628526523" fg:w="375360089"/><text x="51.8308%" y="1887.50"></text></g><g><title>ts_parser_parse (341,083,992 samples, 0.11%)</title><rect x="51.5920%" y="1861" width="0.1109%" height="15" fill="rgb(216,116,54)" fg:x="158662802620" fg:w="341083992"/><text x="51.8420%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (377,522,856 samples, 0.12%)</title><rect x="51.5808%" y="1893" width="0.1228%" height="15" fill="rgb(249,92,24)" fg:x="158628526523" fg:w="377522856"/><text x="51.8308%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (75,237,720 samples, 0.02%)</title><rect x="51.7075%" y="1877" width="0.0245%" height="15" fill="rgb(231,189,14)" fg:x="159018242413" fg:w="75237720"/><text x="51.9575%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (504,654,864 samples, 0.16%)</title><rect x="51.5698%" y="1925" width="0.1641%" height="15" fill="rgb(230,8,41)" fg:x="158594658681" fg:w="504654864"/><text x="51.8198%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (486,784,473 samples, 0.16%)</title><rect x="51.5756%" y="1909" width="0.1583%" height="15" fill="rgb(249,7,27)" fg:x="158612529072" fg:w="486784473"/><text x="51.8256%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (82,310,288 samples, 0.03%)</title><rect x="51.7071%" y="1893" width="0.0268%" height="15" fill="rgb(232,86,5)" fg:x="159017003257" fg:w="82310288"/><text x="51.9571%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (505,783,910 samples, 0.16%)</title><rect x="51.5698%" y="1941" width="0.1645%" height="15" fill="rgb(224,175,18)" fg:x="158594658681" fg:w="505783910"/><text x="51.8198%" y="1951.50"></text></g><g><title>ts_malloc_default (43,961,608 samples, 0.01%)</title><rect x="51.7775%" y="1829" width="0.0143%" height="15" fill="rgb(220,129,12)" fg:x="159233275153" fg:w="43961608"/><text x="52.0275%" y="1839.50"></text></g><g><title>malloc (43,961,608 samples, 0.01%)</title><rect x="51.7775%" y="1813" width="0.0143%" height="15" fill="rgb(210,19,36)" fg:x="159233275153" fg:w="43961608"/><text x="52.0275%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (69,651,642 samples, 0.02%)</title><rect x="51.7701%" y="1845" width="0.0226%" height="15" fill="rgb(219,96,14)" fg:x="159210540310" fg:w="69651642"/><text x="52.0201%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (55,159,236 samples, 0.02%)</title><rect x="51.8125%" y="1845" width="0.0179%" height="15" fill="rgb(249,106,1)" fg:x="159341067538" fg:w="55159236"/><text x="52.0625%" y="1855.50"></text></g><g><title>ts_lex (61,424,301 samples, 0.02%)</title><rect x="51.8431%" y="1829" width="0.0200%" height="15" fill="rgb(249,155,20)" fg:x="159435040361" fg:w="61424301"/><text x="52.0931%" y="1839.50"></text></g><g><title>ts_parser__lex (155,234,185 samples, 0.05%)</title><rect x="51.8304%" y="1845" width="0.0505%" height="15" fill="rgb(244,168,9)" fg:x="159396226774" fg:w="155234185"/><text x="52.0804%" y="1855.50"></text></g><g><title>ts_parser__recover (143,576,020 samples, 0.05%)</title><rect x="51.8809%" y="1845" width="0.0467%" height="15" fill="rgb(216,23,50)" fg:x="159551460959" fg:w="143576020"/><text x="52.1309%" y="1855.50"></text></g><g><title>ts_subtree_new_node (70,615,583 samples, 0.02%)</title><rect x="51.9046%" y="1829" width="0.0230%" height="15" fill="rgb(224,219,20)" fg:x="159624421396" fg:w="70615583"/><text x="52.1546%" y="1839.50"></text></g><g><title>ts_subtree_summarize_children (65,749,361 samples, 0.02%)</title><rect x="51.9062%" y="1813" width="0.0214%" height="15" fill="rgb(222,156,15)" fg:x="159629287618" fg:w="65749361"/><text x="52.1562%" y="1823.50"></text></g><g><title>ts_stack_remove_version (68,359,688 samples, 0.02%)</title><rect x="51.9342%" y="1845" width="0.0222%" height="15" fill="rgb(231,97,17)" fg:x="159715270146" fg:w="68359688"/><text x="52.1842%" y="1855.50"></text></g><g><title>stack_node_release (68,359,688 samples, 0.02%)</title><rect x="51.9342%" y="1829" width="0.0222%" height="15" fill="rgb(218,70,48)" fg:x="159715270146" fg:w="68359688"/><text x="52.1842%" y="1839.50"></text></g><g><title>ts_subtree_release (68,359,688 samples, 0.02%)</title><rect x="51.9342%" y="1813" width="0.0222%" height="15" fill="rgb(212,196,52)" fg:x="159715270146" fg:w="68359688"/><text x="52.1842%" y="1823.50"></text></g><g><title>ts_parser_parse (661,378,929 samples, 0.22%)</title><rect x="51.7599%" y="1861" width="0.2151%" height="15" fill="rgb(243,203,18)" fg:x="159179223106" fg:w="661378929"/><text x="52.0099%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (687,347,096 samples, 0.22%)</title><rect x="51.7522%" y="1877" width="0.2235%" height="15" fill="rgb(252,125,41)" fg:x="159155655055" fg:w="687347096"/><text x="52.0022%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (689,479,831 samples, 0.22%)</title><rect x="51.7519%" y="1893" width="0.2242%" height="15" fill="rgb(223,180,33)" fg:x="159154622731" fg:w="689479831"/><text x="52.0019%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (81,063,376 samples, 0.03%)</title><rect x="51.9850%" y="1877" width="0.0264%" height="15" fill="rgb(254,159,46)" fg:x="159871579930" fg:w="81063376"/><text x="52.2350%" y="1887.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (859,197,209 samples, 0.28%)</title><rect x="51.7343%" y="1941" width="0.2794%" height="15" fill="rgb(254,38,10)" fg:x="159100442591" fg:w="859197209"/><text x="51.9843%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (859,197,209 samples, 0.28%)</title><rect x="51.7343%" y="1925" width="0.2794%" height="15" fill="rgb(208,217,32)" fg:x="159100442591" fg:w="859197209"/><text x="51.9843%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (813,175,549 samples, 0.26%)</title><rect x="51.7492%" y="1909" width="0.2644%" height="15" fill="rgb(221,120,13)" fg:x="159146464251" fg:w="813175549"/><text x="51.9992%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (91,888,949 samples, 0.03%)</title><rect x="51.9838%" y="1893" width="0.0299%" height="15" fill="rgb(246,54,52)" fg:x="159867750851" fg:w="91888949"/><text x="52.2338%" y="1903.50"></text></g><g><title>language::Language::with_brackets_query (39,353,146 samples, 0.01%)</title><rect x="52.0190%" y="1909" width="0.0128%" height="15" fill="rgb(242,34,25)" fg:x="159976041015" fg:w="39353146"/><text x="52.2690%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (39,353,146 samples, 0.01%)</title><rect x="52.0190%" y="1893" width="0.0128%" height="15" fill="rgb(247,209,9)" fg:x="159976041015" fg:w="39353146"/><text x="52.2690%" y="1903.50"></text></g><g><title>ts_query_new (39,353,146 samples, 0.01%)</title><rect x="52.0190%" y="1877" width="0.0128%" height="15" fill="rgb(228,71,26)" fg:x="159976041015" fg:w="39353146"/><text x="52.2690%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (32,148,536 samples, 0.01%)</title><rect x="52.0213%" y="1861" width="0.0105%" height="15" fill="rgb(222,145,49)" fg:x="159983245625" fg:w="32148536"/><text x="52.2713%" y="1871.50"></text></g><g><title>language::Language::with_debug_variables_query (41,010,935 samples, 0.01%)</title><rect x="52.0318%" y="1909" width="0.0133%" height="15" fill="rgb(218,121,17)" fg:x="160015394161" fg:w="41010935"/><text x="52.2818%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (41,010,935 samples, 0.01%)</title><rect x="52.0318%" y="1893" width="0.0133%" height="15" fill="rgb(244,50,7)" fg:x="160015394161" fg:w="41010935"/><text x="52.2818%" y="1903.50"></text></g><g><title>ts_query_new (41,010,935 samples, 0.01%)</title><rect x="52.0318%" y="1877" width="0.0133%" height="15" fill="rgb(246,229,37)" fg:x="160015394161" fg:w="41010935"/><text x="52.2818%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (32,999,993 samples, 0.01%)</title><rect x="52.0344%" y="1861" width="0.0107%" height="15" fill="rgb(225,18,5)" fg:x="160023405103" fg:w="32999993"/><text x="52.2844%" y="1871.50"></text></g><g><title>language::Language::with_embedding_query (65,973,574 samples, 0.02%)</title><rect x="52.0451%" y="1909" width="0.0215%" height="15" fill="rgb(213,204,8)" fg:x="160056405096" fg:w="65973574"/><text x="52.2951%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (65,973,574 samples, 0.02%)</title><rect x="52.0451%" y="1893" width="0.0215%" height="15" fill="rgb(238,103,6)" fg:x="160056405096" fg:w="65973574"/><text x="52.2951%" y="1903.50"></text></g><g><title>ts_query_new (65,973,574 samples, 0.02%)</title><rect x="52.0451%" y="1877" width="0.0215%" height="15" fill="rgb(222,25,35)" fg:x="160056405096" fg:w="65973574"/><text x="52.2951%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (56,728,783 samples, 0.02%)</title><rect x="52.0481%" y="1861" width="0.0184%" height="15" fill="rgb(213,203,35)" fg:x="160065649887" fg:w="56728783"/><text x="52.2981%" y="1871.50"></text></g><g><title>language::Language::with_highlights_query (62,759,631 samples, 0.02%)</title><rect x="52.0666%" y="1909" width="0.0204%" height="15" fill="rgb(221,79,53)" fg:x="160122378670" fg:w="62759631"/><text x="52.3166%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (62,759,631 samples, 0.02%)</title><rect x="52.0666%" y="1893" width="0.0204%" height="15" fill="rgb(243,200,35)" fg:x="160122378670" fg:w="62759631"/><text x="52.3166%" y="1903.50"></text></g><g><title>ts_query_new (59,757,738 samples, 0.02%)</title><rect x="52.0675%" y="1877" width="0.0194%" height="15" fill="rgb(248,60,25)" fg:x="160125380563" fg:w="59757738"/><text x="52.3175%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (47,692,393 samples, 0.02%)</title><rect x="52.0715%" y="1861" width="0.0155%" height="15" fill="rgb(227,53,46)" fg:x="160137445908" fg:w="47692393"/><text x="52.3215%" y="1871.50"></text></g><g><title>ts_query__perform_analysis (94,176,673 samples, 0.03%)</title><rect x="52.1018%" y="1861" width="0.0306%" height="15" fill="rgb(216,120,32)" fg:x="160230771778" fg:w="94176673"/><text x="52.3518%" y="1871.50"></text></g><g><title>language::Language::with_injection_query (103,260,548 samples, 0.03%)</title><rect x="52.0992%" y="1909" width="0.0336%" height="15" fill="rgb(220,134,1)" fg:x="160222875734" fg:w="103260548"/><text x="52.3492%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (103,260,548 samples, 0.03%)</title><rect x="52.0992%" y="1893" width="0.0336%" height="15" fill="rgb(237,168,5)" fg:x="160222875734" fg:w="103260548"/><text x="52.3492%" y="1903.50"></text></g><g><title>ts_query_new (101,995,871 samples, 0.03%)</title><rect x="52.0996%" y="1877" width="0.0332%" height="15" fill="rgb(231,100,33)" fg:x="160224140411" fg:w="101995871"/><text x="52.3496%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (99,198,435 samples, 0.03%)</title><rect x="52.1348%" y="1861" width="0.0323%" height="15" fill="rgb(236,177,47)" fg:x="160332316841" fg:w="99198435"/><text x="52.3848%" y="1871.50"></text></g><g><title>language::Language::with_outline_query (107,502,158 samples, 0.03%)</title><rect x="52.1328%" y="1909" width="0.0350%" height="15" fill="rgb(235,7,49)" fg:x="160326136282" fg:w="107502158"/><text x="52.3828%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (107,502,158 samples, 0.03%)</title><rect x="52.1328%" y="1893" width="0.0350%" height="15" fill="rgb(232,119,22)" fg:x="160326136282" fg:w="107502158"/><text x="52.3828%" y="1903.50"></text></g><g><title>ts_query_new (107,502,158 samples, 0.03%)</title><rect x="52.1328%" y="1877" width="0.0350%" height="15" fill="rgb(254,73,53)" fg:x="160326136282" fg:w="107502158"/><text x="52.3828%" y="1887.50"></text></g><g><title>language::Language::with_runnable_query (46,602,912 samples, 0.02%)</title><rect x="52.1707%" y="1909" width="0.0152%" height="15" fill="rgb(251,35,20)" fg:x="160442496832" fg:w="46602912"/><text x="52.4207%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (46,602,912 samples, 0.02%)</title><rect x="52.1707%" y="1893" width="0.0152%" height="15" fill="rgb(241,119,20)" fg:x="160442496832" fg:w="46602912"/><text x="52.4207%" y="1903.50"></text></g><g><title>ts_query_new (46,602,912 samples, 0.02%)</title><rect x="52.1707%" y="1877" width="0.0152%" height="15" fill="rgb(207,102,14)" fg:x="160442496832" fg:w="46602912"/><text x="52.4207%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (39,021,775 samples, 0.01%)</title><rect x="52.1731%" y="1861" width="0.0127%" height="15" fill="rgb(248,201,50)" fg:x="160450077969" fg:w="39021775"/><text x="52.4231%" y="1871.50"></text></g><g><title>language::language_registry::LanguageRegistry::load_language::_{{closure}} (559,855,552 samples, 0.18%)</title><rect x="52.0136%" y="1941" width="0.1820%" height="15" fill="rgb(222,185,44)" fg:x="159959639800" fg:w="559855552"/><text x="52.2636%" y="1951.50"></text></g><g><title>language::Language::with_queries (543,454,337 samples, 0.18%)</title><rect x="52.0190%" y="1925" width="0.1767%" height="15" fill="rgb(218,107,18)" fg:x="159976041015" fg:w="543454337"/><text x="52.2690%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,457,559,223 samples, 0.80%)</title><rect x="51.4002%" y="1957" width="0.7991%" height="15" fill="rgb(237,177,39)" fg:x="158073038093" fg:w="2457559223"/><text x="51.6502%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,484,280,584 samples, 0.81%)</title><rect x="51.3943%" y="1973" width="0.8078%" height="15" fill="rgb(246,69,6)" fg:x="158054848265" fg:w="2484280584"/><text x="51.6443%" y="1983.50"></text></g><g><title>Worker-21 (2,583,961,996 samples, 0.84%)</title><rect x="51.3940%" y="2069" width="0.8402%" height="15" fill="rgb(234,208,37)" fg:x="158053930847" fg:w="2583961996"/><text x="51.6440%" y="2079.50"></text></g><g><title>__GI___clone3 (2,583,961,996 samples, 0.84%)</title><rect x="51.3940%" y="2053" width="0.8402%" height="15" fill="rgb(225,4,6)" fg:x="158053930847" fg:w="2583961996"/><text x="51.6440%" y="2063.50"></text></g><g><title>start_thread (2,583,961,996 samples, 0.84%)</title><rect x="51.3940%" y="2037" width="0.8402%" height="15" fill="rgb(233,45,0)" fg:x="158053930847" fg:w="2583961996"/><text x="51.6440%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,583,961,996 samples, 0.84%)</title><rect x="51.3940%" y="2021" width="0.8402%" height="15" fill="rgb(226,136,5)" fg:x="158053930847" fg:w="2583961996"/><text x="51.6440%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,583,961,996 samples, 0.84%)</title><rect x="51.3940%" y="2005" width="0.8402%" height="15" fill="rgb(211,91,47)" fg:x="158053930847" fg:w="2583961996"/><text x="51.6440%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,583,961,996 samples, 0.84%)</title><rect x="51.3940%" y="1989" width="0.8402%" height="15" fill="rgb(242,88,51)" fg:x="158053930847" fg:w="2583961996"/><text x="51.6440%" y="1999.50"></text></g><g><title>syscall (98,763,994 samples, 0.03%)</title><rect x="52.2021%" y="1973" width="0.0321%" height="15" fill="rgb(230,91,28)" fg:x="160539128849" fg:w="98763994"/><text x="52.4521%" y="1983.50"></text></g><g><title>[unknown] (91,958,624 samples, 0.03%)</title><rect x="52.2043%" y="1957" width="0.0299%" height="15" fill="rgb(254,186,29)" fg:x="160545934219" fg:w="91958624"/><text x="52.4543%" y="1967.50"></text></g><g><title>[unknown] (89,749,607 samples, 0.03%)</title><rect x="52.2050%" y="1941" width="0.0292%" height="15" fill="rgb(238,6,4)" fg:x="160548143236" fg:w="89749607"/><text x="52.4550%" y="1951.50"></text></g><g><title>[unknown] (87,392,019 samples, 0.03%)</title><rect x="52.2058%" y="1925" width="0.0284%" height="15" fill="rgb(221,151,16)" fg:x="160550500824" fg:w="87392019"/><text x="52.4558%" y="1935.50"></text></g><g><title>[unknown] (84,327,778 samples, 0.03%)</title><rect x="52.2068%" y="1909" width="0.0274%" height="15" fill="rgb(251,143,52)" fg:x="160553565065" fg:w="84327778"/><text x="52.4568%" y="1919.50"></text></g><g><title>[unknown] (81,761,478 samples, 0.03%)</title><rect x="52.2076%" y="1893" width="0.0266%" height="15" fill="rgb(206,90,15)" fg:x="160556131365" fg:w="81761478"/><text x="52.4576%" y="1903.50"></text></g><g><title>[unknown] (79,182,080 samples, 0.03%)</title><rect x="52.2084%" y="1877" width="0.0257%" height="15" fill="rgb(218,35,8)" fg:x="160558710763" fg:w="79182080"/><text x="52.4584%" y="1887.50"></text></g><g><title>[unknown] (70,718,587 samples, 0.02%)</title><rect x="52.2112%" y="1861" width="0.0230%" height="15" fill="rgb(239,215,6)" fg:x="160567174256" fg:w="70718587"/><text x="52.4612%" y="1871.50"></text></g><g><title>[unknown] (69,483,208 samples, 0.02%)</title><rect x="52.2116%" y="1845" width="0.0226%" height="15" fill="rgb(245,116,39)" fg:x="160568409635" fg:w="69483208"/><text x="52.4616%" y="1855.50"></text></g><g><title>[unknown] (69,483,208 samples, 0.02%)</title><rect x="52.2116%" y="1829" width="0.0226%" height="15" fill="rgb(242,65,28)" fg:x="160568409635" fg:w="69483208"/><text x="52.4616%" y="1839.50"></text></g><g><title>[unknown] (66,854,690 samples, 0.02%)</title><rect x="52.2124%" y="1813" width="0.0217%" height="15" fill="rgb(252,132,53)" fg:x="160571038153" fg:w="66854690"/><text x="52.4624%" y="1823.50"></text></g><g><title>[unknown] (63,677,495 samples, 0.02%)</title><rect x="52.2135%" y="1797" width="0.0207%" height="15" fill="rgb(224,159,50)" fg:x="160574215348" fg:w="63677495"/><text x="52.4635%" y="1807.50"></text></g><g><title>[unknown] (58,220,367 samples, 0.02%)</title><rect x="52.2153%" y="1781" width="0.0189%" height="15" fill="rgb(224,93,4)" fg:x="160579672476" fg:w="58220367"/><text x="52.4653%" y="1791.50"></text></g><g><title>[unknown] (57,316,347 samples, 0.02%)</title><rect x="52.2156%" y="1765" width="0.0186%" height="15" fill="rgb(208,81,34)" fg:x="160580576496" fg:w="57316347"/><text x="52.4656%" y="1775.50"></text></g><g><title>[unknown] (49,329,833 samples, 0.02%)</title><rect x="52.2181%" y="1749" width="0.0160%" height="15" fill="rgb(233,92,54)" fg:x="160588563010" fg:w="49329833"/><text x="52.4681%" y="1759.50"></text></g><g><title>[unknown] (41,147,633 samples, 0.01%)</title><rect x="52.2208%" y="1733" width="0.0134%" height="15" fill="rgb(237,21,14)" fg:x="160596745210" fg:w="41147633"/><text x="52.4708%" y="1743.50"></text></g><g><title>[unknown] (37,236,867 samples, 0.01%)</title><rect x="52.2221%" y="1717" width="0.0121%" height="15" fill="rgb(249,128,51)" fg:x="160600655976" fg:w="37236867"/><text x="52.4721%" y="1727.50"></text></g><g><title>git2::repo::Repository::find_blob (34,637,038 samples, 0.01%)</title><rect x="52.2532%" y="1925" width="0.0113%" height="15" fill="rgb(223,129,24)" fg:x="160696342095" fg:w="34637038"/><text x="52.5032%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (34,637,038 samples, 0.01%)</title><rect x="52.2532%" y="1909" width="0.0113%" height="15" fill="rgb(231,168,25)" fg:x="160696342095" fg:w="34637038"/><text x="52.5032%" y="1919.50"></text></g><g><title>git_odb_read (34,637,038 samples, 0.01%)</title><rect x="52.2532%" y="1893" width="0.0113%" height="15" fill="rgb(224,39,20)" fg:x="160696342095" fg:w="34637038"/><text x="52.5032%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (34,637,038 samples, 0.01%)</title><rect x="52.2532%" y="1877" width="0.0113%" height="15" fill="rgb(225,152,53)" fg:x="160696342095" fg:w="34637038"/><text x="52.5032%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (34,637,038 samples, 0.01%)</title><rect x="52.2532%" y="1861" width="0.0113%" height="15" fill="rgb(252,17,24)" fg:x="160696342095" fg:w="34637038"/><text x="52.5032%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (34,637,038 samples, 0.01%)</title><rect x="52.2532%" y="1845" width="0.0113%" height="15" fill="rgb(250,114,30)" fg:x="160696342095" fg:w="34637038"/><text x="52.5032%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (62,825,368 samples, 0.02%)</title><rect x="52.2532%" y="1941" width="0.0204%" height="15" fill="rgb(229,5,4)" fg:x="160696342095" fg:w="62825368"/><text x="52.5032%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (79,940,646 samples, 0.03%)</title><rect x="52.3064%" y="1925" width="0.0260%" height="15" fill="rgb(225,176,49)" fg:x="160860118919" fg:w="79940646"/><text x="52.5564%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (92,048,397 samples, 0.03%)</title><rect x="52.3037%" y="1941" width="0.0299%" height="15" fill="rgb(224,221,49)" fg:x="160851692574" fg:w="92048397"/><text x="52.5537%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (64,428,304 samples, 0.02%)</title><rect x="52.3352%" y="1941" width="0.0209%" height="15" fill="rgb(253,169,27)" fg:x="160948553480" fg:w="64428304"/><text x="52.5852%" y="1951.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (145,563,052 samples, 0.05%)</title><rect x="52.3565%" y="1941" width="0.0473%" height="15" fill="rgb(211,206,16)" fg:x="161014047730" fg:w="145563052"/><text x="52.6065%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (120,312,860 samples, 0.04%)</title><rect x="52.3647%" y="1925" width="0.0391%" height="15" fill="rgb(244,87,35)" fg:x="161039297922" fg:w="120312860"/><text x="52.6147%" y="1935.50"></text></g><g><title>ts_language_table_entry (34,165,535 samples, 0.01%)</title><rect x="52.4185%" y="1861" width="0.0111%" height="15" fill="rgb(246,28,10)" fg:x="161204603674" fg:w="34165535"/><text x="52.6685%" y="1871.50"></text></g><g><title>ts_malloc_default (41,755,055 samples, 0.01%)</title><rect x="52.4532%" y="1829" width="0.0136%" height="15" fill="rgb(229,12,44)" fg:x="161311431960" fg:w="41755055"/><text x="52.7032%" y="1839.50"></text></g><g><title>malloc (41,755,055 samples, 0.01%)</title><rect x="52.4532%" y="1813" width="0.0136%" height="15" fill="rgb(210,145,37)" fg:x="161311431960" fg:w="41755055"/><text x="52.7032%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (71,608,251 samples, 0.02%)</title><rect x="52.4455%" y="1845" width="0.0233%" height="15" fill="rgb(227,112,52)" fg:x="161287608035" fg:w="71608251"/><text x="52.6955%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (32,696,705 samples, 0.01%)</title><rect x="52.4836%" y="1845" width="0.0106%" height="15" fill="rgb(238,155,34)" fg:x="161404807083" fg:w="32696705"/><text x="52.7336%" y="1855.50"></text></g><g><title>ts_lex (96,000,034 samples, 0.03%)</title><rect x="52.5097%" y="1829" width="0.0312%" height="15" fill="rgb(239,226,36)" fg:x="161485069642" fg:w="96000034"/><text x="52.7597%" y="1839.50"></text></g><g><title>ts_parser__lex (174,423,383 samples, 0.06%)</title><rect x="52.4942%" y="1845" width="0.0567%" height="15" fill="rgb(230,16,23)" fg:x="161437503788" fg:w="174423383"/><text x="52.7442%" y="1855.50"></text></g><g><title>ts_parser_parse (460,026,678 samples, 0.15%)</title><rect x="52.4303%" y="1861" width="0.1496%" height="15" fill="rgb(236,171,36)" fg:x="161241070279" fg:w="460026678"/><text x="52.6803%" y="1871.50"></text></g><g><title>ts_subtree_new_node (31,805,308 samples, 0.01%)</title><rect x="52.5696%" y="1845" width="0.0103%" height="15" fill="rgb(221,22,14)" fg:x="161669291649" fg:w="31805308"/><text x="52.8196%" y="1855.50"></text></g><g><title>language::syntax_map::parse_text (498,632,675 samples, 0.16%)</title><rect x="52.4181%" y="1893" width="0.1621%" height="15" fill="rgb(242,43,11)" fg:x="161203404087" fg:w="498632675"/><text x="52.6681%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (498,632,675 samples, 0.16%)</title><rect x="52.4181%" y="1877" width="0.1621%" height="15" fill="rgb(232,69,23)" fg:x="161203404087" fg:w="498632675"/><text x="52.6681%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (89,729,523 samples, 0.03%)</title><rect x="52.5874%" y="1877" width="0.0292%" height="15" fill="rgb(216,180,54)" fg:x="161724042339" fg:w="89729523"/><text x="52.8374%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (666,158,196 samples, 0.22%)</title><rect x="52.4038%" y="1925" width="0.2166%" height="15" fill="rgb(216,5,24)" fg:x="161159610782" fg:w="666158196"/><text x="52.6538%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (644,490,684 samples, 0.21%)</title><rect x="52.4109%" y="1909" width="0.2096%" height="15" fill="rgb(225,89,9)" fg:x="161181278294" fg:w="644490684"/><text x="52.6609%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (106,084,288 samples, 0.03%)</title><rect x="52.5860%" y="1893" width="0.0345%" height="15" fill="rgb(243,75,33)" fg:x="161719684690" fg:w="106084288"/><text x="52.8360%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (667,175,044 samples, 0.22%)</title><rect x="52.4038%" y="1941" width="0.2169%" height="15" fill="rgb(247,141,45)" fg:x="161159610782" fg:w="667175044"/><text x="52.6538%" y="1951.50"></text></g><g><title>ts_language_table_entry (35,797,486 samples, 0.01%)</title><rect x="52.6469%" y="1861" width="0.0116%" height="15" fill="rgb(232,177,36)" fg:x="161907168121" fg:w="35797486"/><text x="52.8969%" y="1871.50"></text></g><g><title>ts_malloc_default (61,813,275 samples, 0.02%)</title><rect x="52.6858%" y="1829" width="0.0201%" height="15" fill="rgb(219,125,36)" fg:x="162026657112" fg:w="61813275"/><text x="52.9358%" y="1839.50"></text></g><g><title>malloc (61,813,275 samples, 0.02%)</title><rect x="52.6858%" y="1813" width="0.0201%" height="15" fill="rgb(227,94,9)" fg:x="162026657112" fg:w="61813275"/><text x="52.9358%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (89,728,532 samples, 0.03%)</title><rect x="52.6773%" y="1845" width="0.0292%" height="15" fill="rgb(240,34,52)" fg:x="162000737590" fg:w="89728532"/><text x="52.9273%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (72,235,618 samples, 0.02%)</title><rect x="52.7317%" y="1845" width="0.0235%" height="15" fill="rgb(216,45,12)" fg:x="162167964006" fg:w="72235618"/><text x="52.9817%" y="1855.50"></text></g><g><title>ts_lex (102,868,394 samples, 0.03%)</title><rect x="52.7725%" y="1829" width="0.0334%" height="15" fill="rgb(246,21,19)" fg:x="162293273223" fg:w="102868394"/><text x="53.0225%" y="1839.50"></text></g><g><title>ts_parser__lex (194,248,828 samples, 0.06%)</title><rect x="52.7552%" y="1845" width="0.0632%" height="15" fill="rgb(213,98,42)" fg:x="162240199624" fg:w="194248828"/><text x="53.0052%" y="1855.50"></text></g><g><title>ts_parser_parse (575,291,762 samples, 0.19%)</title><rect x="52.6599%" y="1861" width="0.1871%" height="15" fill="rgb(250,136,47)" fg:x="161947223015" fg:w="575291762"/><text x="52.9099%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (618,503,684 samples, 0.20%)</title><rect x="52.6467%" y="1877" width="0.2011%" height="15" fill="rgb(251,124,27)" fg:x="161906581291" fg:w="618503684"/><text x="52.8967%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (623,484,450 samples, 0.20%)</title><rect x="52.6459%" y="1893" width="0.2027%" height="15" fill="rgb(229,180,14)" fg:x="161903907331" fg:w="623484450"/><text x="52.8959%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (128,433,365 samples, 0.04%)</title><rect x="52.8612%" y="1877" width="0.0418%" height="15" fill="rgb(245,216,25)" fg:x="162566077059" fg:w="128433365"/><text x="53.1112%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (141,768,186 samples, 0.05%)</title><rect x="52.8584%" y="1893" width="0.0461%" height="15" fill="rgb(251,43,5)" fg:x="162557656241" fg:w="141768186"/><text x="53.1084%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (820,080,887 samples, 0.27%)</title><rect x="52.6380%" y="1909" width="0.2667%" height="15" fill="rgb(250,128,24)" fg:x="161879810975" fg:w="820080887"/><text x="52.8880%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (874,963,570 samples, 0.28%)</title><rect x="52.6208%" y="1941" width="0.2845%" height="15" fill="rgb(217,117,27)" fg:x="161826785826" fg:w="874963570"/><text x="52.8708%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (873,925,504 samples, 0.28%)</title><rect x="52.6211%" y="1925" width="0.2842%" height="15" fill="rgb(245,147,4)" fg:x="161827823892" fg:w="873925504"/><text x="52.8711%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,064,088,698 samples, 0.67%)</title><rect x="52.2409%" y="1957" width="0.6712%" height="15" fill="rgb(242,201,35)" fg:x="160658644530" fg:w="2064088698"/><text x="52.4909%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,085,461,663 samples, 0.68%)</title><rect x="52.2350%" y="1973" width="0.6781%" height="15" fill="rgb(218,181,1)" fg:x="160640339485" fg:w="2085461663"/><text x="52.4850%" y="1983.50"></text></g><g><title>Worker-22 (2,210,675,069 samples, 0.72%)</title><rect x="52.2342%" y="2069" width="0.7188%" height="15" fill="rgb(222,6,29)" fg:x="160637892843" fg:w="2210675069"/><text x="52.4842%" y="2079.50"></text></g><g><title>__GI___clone3 (2,210,675,069 samples, 0.72%)</title><rect x="52.2342%" y="2053" width="0.7188%" height="15" fill="rgb(208,186,3)" fg:x="160637892843" fg:w="2210675069"/><text x="52.4842%" y="2063.50"></text></g><g><title>start_thread (2,210,675,069 samples, 0.72%)</title><rect x="52.2342%" y="2037" width="0.7188%" height="15" fill="rgb(216,36,26)" fg:x="160637892843" fg:w="2210675069"/><text x="52.4842%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,210,675,069 samples, 0.72%)</title><rect x="52.2342%" y="2021" width="0.7188%" height="15" fill="rgb(248,201,23)" fg:x="160637892843" fg:w="2210675069"/><text x="52.4842%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,210,675,069 samples, 0.72%)</title><rect x="52.2342%" y="2005" width="0.7188%" height="15" fill="rgb(251,170,31)" fg:x="160637892843" fg:w="2210675069"/><text x="52.4842%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,210,675,069 samples, 0.72%)</title><rect x="52.2342%" y="1989" width="0.7188%" height="15" fill="rgb(207,110,25)" fg:x="160637892843" fg:w="2210675069"/><text x="52.4842%" y="1999.50"></text></g><g><title>syscall (122,766,764 samples, 0.04%)</title><rect x="52.9131%" y="1973" width="0.0399%" height="15" fill="rgb(250,54,15)" fg:x="162725801148" fg:w="122766764"/><text x="53.1631%" y="1983.50"></text></g><g><title>[unknown] (115,445,343 samples, 0.04%)</title><rect x="52.9155%" y="1957" width="0.0375%" height="15" fill="rgb(227,68,33)" fg:x="162733122569" fg:w="115445343"/><text x="53.1655%" y="1967.50"></text></g><g><title>[unknown] (111,990,373 samples, 0.04%)</title><rect x="52.9166%" y="1941" width="0.0364%" height="15" fill="rgb(238,34,41)" fg:x="162736577539" fg:w="111990373"/><text x="53.1666%" y="1951.50"></text></g><g><title>[unknown] (110,827,854 samples, 0.04%)</title><rect x="52.9170%" y="1925" width="0.0360%" height="15" fill="rgb(220,11,15)" fg:x="162737740058" fg:w="110827854"/><text x="53.1670%" y="1935.50"></text></g><g><title>[unknown] (106,582,049 samples, 0.03%)</title><rect x="52.9184%" y="1909" width="0.0347%" height="15" fill="rgb(246,111,35)" fg:x="162741985863" fg:w="106582049"/><text x="53.1684%" y="1919.50"></text></g><g><title>[unknown] (103,267,688 samples, 0.03%)</title><rect x="52.9194%" y="1893" width="0.0336%" height="15" fill="rgb(209,88,53)" fg:x="162745300224" fg:w="103267688"/><text x="53.1694%" y="1903.50"></text></g><g><title>[unknown] (99,683,865 samples, 0.03%)</title><rect x="52.9206%" y="1877" width="0.0324%" height="15" fill="rgb(231,185,47)" fg:x="162748884047" fg:w="99683865"/><text x="53.1706%" y="1887.50"></text></g><g><title>[unknown] (93,804,026 samples, 0.03%)</title><rect x="52.9225%" y="1861" width="0.0305%" height="15" fill="rgb(233,154,1)" fg:x="162754763886" fg:w="93804026"/><text x="53.1725%" y="1871.50"></text></g><g><title>[unknown] (92,413,491 samples, 0.03%)</title><rect x="52.9230%" y="1845" width="0.0300%" height="15" fill="rgb(225,15,46)" fg:x="162756154421" fg:w="92413491"/><text x="53.1730%" y="1855.50"></text></g><g><title>[unknown] (89,851,438 samples, 0.03%)</title><rect x="52.9238%" y="1829" width="0.0292%" height="15" fill="rgb(211,135,41)" fg:x="162758716474" fg:w="89851438"/><text x="53.1738%" y="1839.50"></text></g><g><title>[unknown] (84,880,283 samples, 0.03%)</title><rect x="52.9254%" y="1813" width="0.0276%" height="15" fill="rgb(208,54,0)" fg:x="162763687629" fg:w="84880283"/><text x="53.1754%" y="1823.50"></text></g><g><title>[unknown] (80,152,756 samples, 0.03%)</title><rect x="52.9270%" y="1797" width="0.0261%" height="15" fill="rgb(244,136,14)" fg:x="162768415156" fg:w="80152756"/><text x="53.1770%" y="1807.50"></text></g><g><title>[unknown] (76,703,229 samples, 0.02%)</title><rect x="52.9281%" y="1781" width="0.0249%" height="15" fill="rgb(241,56,14)" fg:x="162771864683" fg:w="76703229"/><text x="53.1781%" y="1791.50"></text></g><g><title>[unknown] (70,973,466 samples, 0.02%)</title><rect x="52.9299%" y="1765" width="0.0231%" height="15" fill="rgb(205,80,24)" fg:x="162777594446" fg:w="70973466"/><text x="53.1799%" y="1775.50"></text></g><g><title>[unknown] (62,162,497 samples, 0.02%)</title><rect x="52.9328%" y="1749" width="0.0202%" height="15" fill="rgb(220,57,4)" fg:x="162786405415" fg:w="62162497"/><text x="53.1828%" y="1759.50"></text></g><g><title>[unknown] (51,770,816 samples, 0.02%)</title><rect x="52.9362%" y="1733" width="0.0168%" height="15" fill="rgb(226,193,50)" fg:x="162796797096" fg:w="51770816"/><text x="53.1862%" y="1743.50"></text></g><g><title>[unknown] (45,060,408 samples, 0.01%)</title><rect x="52.9384%" y="1717" width="0.0147%" height="15" fill="rgb(231,168,22)" fg:x="162803507504" fg:w="45060408"/><text x="53.1884%" y="1727.50"></text></g><g><title>[unknown] (33,486,249 samples, 0.01%)</title><rect x="52.9421%" y="1701" width="0.0109%" height="15" fill="rgb(254,215,14)" fg:x="162815081663" fg:w="33486249"/><text x="53.1921%" y="1711.50"></text></g><g><title>[libgit2.so.1.9.0] (37,213,663 samples, 0.01%)</title><rect x="52.9759%" y="1829" width="0.0121%" height="15" fill="rgb(211,115,16)" fg:x="162918817765" fg:w="37213663"/><text x="53.2259%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (48,503,243 samples, 0.02%)</title><rect x="52.9755%" y="1925" width="0.0158%" height="15" fill="rgb(236,210,16)" fg:x="162917658377" fg:w="48503243"/><text x="53.2255%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (48,503,243 samples, 0.02%)</title><rect x="52.9755%" y="1909" width="0.0158%" height="15" fill="rgb(221,94,12)" fg:x="162917658377" fg:w="48503243"/><text x="53.2255%" y="1919.50"></text></g><g><title>git_odb_read (48,503,243 samples, 0.02%)</title><rect x="52.9755%" y="1893" width="0.0158%" height="15" fill="rgb(235,218,49)" fg:x="162917658377" fg:w="48503243"/><text x="53.2255%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (48,503,243 samples, 0.02%)</title><rect x="52.9755%" y="1877" width="0.0158%" height="15" fill="rgb(217,114,14)" fg:x="162917658377" fg:w="48503243"/><text x="53.2255%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (48,503,243 samples, 0.02%)</title><rect x="52.9755%" y="1861" width="0.0158%" height="15" fill="rgb(216,145,22)" fg:x="162917658377" fg:w="48503243"/><text x="53.2255%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (48,503,243 samples, 0.02%)</title><rect x="52.9755%" y="1845" width="0.0158%" height="15" fill="rgb(217,112,39)" fg:x="162917658377" fg:w="48503243"/><text x="53.2255%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (76,109,220 samples, 0.02%)</title><rect x="52.9750%" y="1941" width="0.0247%" height="15" fill="rgb(225,85,32)" fg:x="162916150552" fg:w="76109220"/><text x="53.2250%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (36,250,046 samples, 0.01%)</title><rect x="53.0225%" y="1797" width="0.0118%" height="15" fill="rgb(245,209,47)" fg:x="163062129577" fg:w="36250046"/><text x="53.2725%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (40,167,506 samples, 0.01%)</title><rect x="53.0225%" y="1813" width="0.0131%" height="15" fill="rgb(218,220,15)" fg:x="163062129577" fg:w="40167506"/><text x="53.2725%" y="1823.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (42,465,583 samples, 0.01%)</title><rect x="53.0221%" y="1941" width="0.0138%" height="15" fill="rgb(222,202,31)" fg:x="163060889030" fg:w="42465583"/><text x="53.2721%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (42,465,583 samples, 0.01%)</title><rect x="53.0221%" y="1925" width="0.0138%" height="15" fill="rgb(243,203,4)" fg:x="163060889030" fg:w="42465583"/><text x="53.2721%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (41,225,036 samples, 0.01%)</title><rect x="53.0225%" y="1909" width="0.0134%" height="15" fill="rgb(237,92,17)" fg:x="163062129577" fg:w="41225036"/><text x="53.2725%" y="1919.50"></text></g><g><title>git_patch_from_buffers (41,225,036 samples, 0.01%)</title><rect x="53.0225%" y="1893" width="0.0134%" height="15" fill="rgb(231,119,7)" fg:x="163062129577" fg:w="41225036"/><text x="53.2725%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (41,225,036 samples, 0.01%)</title><rect x="53.0225%" y="1877" width="0.0134%" height="15" fill="rgb(237,82,41)" fg:x="163062129577" fg:w="41225036"/><text x="53.2725%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (41,225,036 samples, 0.01%)</title><rect x="53.0225%" y="1861" width="0.0134%" height="15" fill="rgb(226,81,48)" fg:x="163062129577" fg:w="41225036"/><text x="53.2725%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (41,225,036 samples, 0.01%)</title><rect x="53.0225%" y="1845" width="0.0134%" height="15" fill="rgb(234,70,51)" fg:x="163062129577" fg:w="41225036"/><text x="53.2725%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (41,225,036 samples, 0.01%)</title><rect x="53.0225%" y="1829" width="0.0134%" height="15" fill="rgb(251,86,4)" fg:x="163062129577" fg:w="41225036"/><text x="53.2725%" y="1839.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (75,881,940 samples, 0.02%)</title><rect x="53.0370%" y="1925" width="0.0247%" height="15" fill="rgb(244,144,28)" fg:x="163106894686" fg:w="75881940"/><text x="53.2870%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (79,795,380 samples, 0.03%)</title><rect x="53.0362%" y="1941" width="0.0259%" height="15" fill="rgb(232,161,39)" fg:x="163104383410" fg:w="79795380"/><text x="53.2862%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (70,169,334 samples, 0.02%)</title><rect x="53.0632%" y="1941" width="0.0228%" height="15" fill="rgb(247,34,51)" fg:x="163187517471" fg:w="70169334"/><text x="53.3132%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (31,946,108 samples, 0.01%)</title><rect x="53.0870%" y="1925" width="0.0104%" height="15" fill="rgb(225,132,2)" fg:x="163260708628" fg:w="31946108"/><text x="53.3370%" y="1935.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (32,626,291 samples, 0.01%)</title><rect x="53.1109%" y="1909" width="0.0106%" height="15" fill="rgb(209,159,44)" fg:x="163333957047" fg:w="32626291"/><text x="53.3609%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (172,346,919 samples, 0.06%)</title><rect x="53.0861%" y="1941" width="0.0560%" height="15" fill="rgb(251,214,1)" fg:x="163257686805" fg:w="172346919"/><text x="53.3361%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (137,378,988 samples, 0.04%)</title><rect x="53.0974%" y="1925" width="0.0447%" height="15" fill="rgb(247,84,47)" fg:x="163292654736" fg:w="137378988"/><text x="53.3474%" y="1935.50"></text></g><g><title>ts_malloc_default (45,372,207 samples, 0.01%)</title><rect x="53.1821%" y="1829" width="0.0148%" height="15" fill="rgb(240,111,43)" fg:x="163553079020" fg:w="45372207"/><text x="53.4321%" y="1839.50"></text></g><g><title>malloc (43,132,350 samples, 0.01%)</title><rect x="53.1828%" y="1813" width="0.0140%" height="15" fill="rgb(215,214,35)" fg:x="163555318877" fg:w="43132350"/><text x="53.4328%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (71,311,086 samples, 0.02%)</title><rect x="53.1770%" y="1845" width="0.0232%" height="15" fill="rgb(248,207,23)" fg:x="163537377489" fg:w="71311086"/><text x="53.4270%" y="1855.50"></text></g><g><title>ts_lex (77,121,012 samples, 0.03%)</title><rect x="53.2336%" y="1829" width="0.0251%" height="15" fill="rgb(214,186,4)" fg:x="163711575867" fg:w="77121012"/><text x="53.4836%" y="1839.50"></text></g><g><title>ts_parser__lex (137,800,121 samples, 0.04%)</title><rect x="53.2226%" y="1845" width="0.0448%" height="15" fill="rgb(220,133,22)" fg:x="163677693789" fg:w="137800121"/><text x="53.4726%" y="1855.50"></text></g><g><title>language::syntax_map::parse_text (406,362,343 samples, 0.13%)</title><rect x="53.1604%" y="1893" width="0.1321%" height="15" fill="rgb(239,134,19)" fg:x="163486368938" fg:w="406362343"/><text x="53.4104%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (406,362,343 samples, 0.13%)</title><rect x="53.1604%" y="1877" width="0.1321%" height="15" fill="rgb(250,140,9)" fg:x="163486368938" fg:w="406362343"/><text x="53.4104%" y="1887.50"></text></g><g><title>ts_parser_parse (382,739,452 samples, 0.12%)</title><rect x="53.1681%" y="1861" width="0.1245%" height="15" fill="rgb(225,59,14)" fg:x="163509991829" fg:w="382739452"/><text x="53.4181%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (85,754,746 samples, 0.03%)</title><rect x="53.3021%" y="1877" width="0.0279%" height="15" fill="rgb(214,152,51)" fg:x="163922045883" fg:w="85754746"/><text x="53.5521%" y="1887.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (586,981,894 samples, 0.19%)</title><rect x="53.1421%" y="1941" width="0.1909%" height="15" fill="rgb(251,227,43)" fg:x="163430033724" fg:w="586981894"/><text x="53.3921%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (586,981,894 samples, 0.19%)</title><rect x="53.1421%" y="1925" width="0.1909%" height="15" fill="rgb(241,96,17)" fg:x="163430033724" fg:w="586981894"/><text x="53.3921%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (560,567,898 samples, 0.18%)</title><rect x="53.1507%" y="1909" width="0.1823%" height="15" fill="rgb(234,198,43)" fg:x="163456447720" fg:w="560567898"/><text x="53.4007%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (99,584,175 samples, 0.03%)</title><rect x="53.3006%" y="1893" width="0.0324%" height="15" fill="rgb(220,108,29)" fg:x="163917431443" fg:w="99584175"/><text x="53.5506%" y="1903.50"></text></g><g><title>ts_malloc_default (45,051,170 samples, 0.01%)</title><rect x="53.3732%" y="1829" width="0.0146%" height="15" fill="rgb(226,163,33)" fg:x="164140688536" fg:w="45051170"/><text x="53.6232%" y="1839.50"></text></g><g><title>malloc (45,051,170 samples, 0.01%)</title><rect x="53.3732%" y="1813" width="0.0146%" height="15" fill="rgb(205,194,45)" fg:x="164140688536" fg:w="45051170"/><text x="53.6232%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (75,129,214 samples, 0.02%)</title><rect x="53.3658%" y="1845" width="0.0244%" height="15" fill="rgb(206,143,44)" fg:x="164118090149" fg:w="75129214"/><text x="53.6158%" y="1855.50"></text></g><g><title>ts_language_table_entry (36,180,166 samples, 0.01%)</title><rect x="53.4023%" y="1845" width="0.0118%" height="15" fill="rgb(236,136,36)" fg:x="164230156964" fg:w="36180166"/><text x="53.6523%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (93,797,044 samples, 0.03%)</title><rect x="53.4171%" y="1845" width="0.0305%" height="15" fill="rgb(249,172,42)" fg:x="164275692820" fg:w="93797044"/><text x="53.6671%" y="1855.50"></text></g><g><title>ts_lex (67,700,248 samples, 0.02%)</title><rect x="53.4599%" y="1829" width="0.0220%" height="15" fill="rgb(216,139,23)" fg:x="164407520991" fg:w="67700248"/><text x="53.7099%" y="1839.50"></text></g><g><title>ts_parser__lex (135,131,078 samples, 0.04%)</title><rect x="53.4476%" y="1845" width="0.0439%" height="15" fill="rgb(207,166,20)" fg:x="164369489864" fg:w="135131078"/><text x="53.6976%" y="1855.50"></text></g><g><title>ts_parser_parse (507,044,963 samples, 0.16%)</title><rect x="53.3504%" y="1861" width="0.1649%" height="15" fill="rgb(210,209,22)" fg:x="164070513570" fg:w="507044963"/><text x="53.6004%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (525,702,773 samples, 0.17%)</title><rect x="53.3447%" y="1893" width="0.1709%" height="15" fill="rgb(232,118,20)" fg:x="164052964279" fg:w="525702773"/><text x="53.5947%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (525,702,773 samples, 0.17%)</title><rect x="53.3447%" y="1877" width="0.1709%" height="15" fill="rgb(238,113,42)" fg:x="164052964279" fg:w="525702773"/><text x="53.5947%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (76,099,940 samples, 0.02%)</title><rect x="53.5232%" y="1877" width="0.0247%" height="15" fill="rgb(231,42,5)" fg:x="164601984821" fg:w="76099940"/><text x="53.7732%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (80,934,947 samples, 0.03%)</title><rect x="53.5224%" y="1893" width="0.0263%" height="15" fill="rgb(243,166,24)" fg:x="164599514111" fg:w="80934947"/><text x="53.7724%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (636,538,767 samples, 0.21%)</title><rect x="53.3421%" y="1909" width="0.2070%" height="15" fill="rgb(237,226,12)" fg:x="164045129633" fg:w="636538767"/><text x="53.5921%" y="1919.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (666,148,589 samples, 0.22%)</title><rect x="53.3330%" y="1925" width="0.2166%" height="15" fill="rgb(229,133,24)" fg:x="164017015618" fg:w="666148589"/><text x="53.5830%" y="1935.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (667,319,495 samples, 0.22%)</title><rect x="53.3330%" y="1941" width="0.2170%" height="15" fill="rgb(238,33,43)" fg:x="164017015618" fg:w="667319495"/><text x="53.5830%" y="1951.50"></text></g><g><title>&lt;fs::RealFs as fs::Fs&gt;::open_repo (40,235,642 samples, 0.01%)</title><rect x="53.5561%" y="1925" width="0.0131%" height="15" fill="rgb(227,59,38)" fg:x="164703192486" fg:w="40235642"/><text x="53.8061%" y="1935.50"></text></g><g><title>git::repository::RealGitRepository::new (40,235,642 samples, 0.01%)</title><rect x="53.5561%" y="1909" width="0.0131%" height="15" fill="rgb(230,97,0)" fg:x="164703192486" fg:w="40235642"/><text x="53.8061%" y="1919.50"></text></g><g><title>std::sys::sync::once::futex::Once::call (39,006,107 samples, 0.01%)</title><rect x="53.5565%" y="1893" width="0.0127%" height="15" fill="rgb(250,173,50)" fg:x="164704422021" fg:w="39006107"/><text x="53.8065%" y="1903.50"></text></g><g><title>std::sync::poison::once::Once::call_once::{{closure}} (39,006,107 samples, 0.01%)</title><rect x="53.5565%" y="1877" width="0.0127%" height="15" fill="rgb(240,15,50)" fg:x="164704422021" fg:w="39006107"/><text x="53.8065%" y="1887.50"></text></g><g><title>git_libgit2_init (39,006,107 samples, 0.01%)</title><rect x="53.5565%" y="1861" width="0.0127%" height="15" fill="rgb(221,93,22)" fg:x="164704422021" fg:w="39006107"/><text x="53.8065%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (39,006,107 samples, 0.01%)</title><rect x="53.5565%" y="1845" width="0.0127%" height="15" fill="rgb(245,180,53)" fg:x="164704422021" fg:w="39006107"/><text x="53.8065%" y="1855.50"></text></g><g><title>project::git_store::Repository::spawn_local_git_worker::_{{closure}}::_{{closure}}::_{{closure}} (40,771,026 samples, 0.01%)</title><rect x="53.5561%" y="1941" width="0.0133%" height="15" fill="rgb(231,88,51)" fg:x="164703192486" fg:w="40771026"/><text x="53.8061%" y="1951.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,885,508,999 samples, 0.61%)</title><rect x="52.9584%" y="1957" width="0.6131%" height="15" fill="rgb(240,58,21)" fg:x="162864939570" fg:w="1885508999"/><text x="53.2084%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,912,065,550 samples, 0.62%)</title><rect x="52.9535%" y="1973" width="0.6217%" height="15" fill="rgb(237,21,10)" fg:x="162849932134" fg:w="1912065550"/><text x="53.2035%" y="1983.50"></text></g><g><title>Worker-23 (2,039,200,872 samples, 0.66%)</title><rect x="52.9530%" y="2069" width="0.6631%" height="15" fill="rgb(218,43,11)" fg:x="162848567912" fg:w="2039200872"/><text x="53.2030%" y="2079.50"></text></g><g><title>__GI___clone3 (2,039,200,872 samples, 0.66%)</title><rect x="52.9530%" y="2053" width="0.6631%" height="15" fill="rgb(218,221,29)" fg:x="162848567912" fg:w="2039200872"/><text x="53.2030%" y="2063.50"></text></g><g><title>start_thread (2,038,748,588 samples, 0.66%)</title><rect x="52.9532%" y="2037" width="0.6629%" height="15" fill="rgb(214,118,42)" fg:x="162849020196" fg:w="2038748588"/><text x="53.2032%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,038,748,588 samples, 0.66%)</title><rect x="52.9532%" y="2021" width="0.6629%" height="15" fill="rgb(251,200,26)" fg:x="162849020196" fg:w="2038748588"/><text x="53.2032%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,038,748,588 samples, 0.66%)</title><rect x="52.9532%" y="2005" width="0.6629%" height="15" fill="rgb(237,101,39)" fg:x="162849020196" fg:w="2038748588"/><text x="53.2032%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,038,748,588 samples, 0.66%)</title><rect x="52.9532%" y="1989" width="0.6629%" height="15" fill="rgb(251,117,11)" fg:x="162849020196" fg:w="2038748588"/><text x="53.2032%" y="1999.50"></text></g><g><title>syscall (125,771,100 samples, 0.04%)</title><rect x="53.5752%" y="1973" width="0.0409%" height="15" fill="rgb(216,223,23)" fg:x="164761997684" fg:w="125771100"/><text x="53.8252%" y="1983.50"></text></g><g><title>[unknown] (121,893,011 samples, 0.04%)</title><rect x="53.5765%" y="1957" width="0.0396%" height="15" fill="rgb(251,54,12)" fg:x="164765875773" fg:w="121893011"/><text x="53.8265%" y="1967.50"></text></g><g><title>[unknown] (115,080,108 samples, 0.04%)</title><rect x="53.5787%" y="1941" width="0.0374%" height="15" fill="rgb(254,176,54)" fg:x="164772688676" fg:w="115080108"/><text x="53.8287%" y="1951.50"></text></g><g><title>[unknown] (110,097,099 samples, 0.04%)</title><rect x="53.5803%" y="1925" width="0.0358%" height="15" fill="rgb(210,32,8)" fg:x="164777671685" fg:w="110097099"/><text x="53.8303%" y="1935.50"></text></g><g><title>[unknown] (107,761,274 samples, 0.04%)</title><rect x="53.5811%" y="1909" width="0.0350%" height="15" fill="rgb(235,52,38)" fg:x="164780007510" fg:w="107761274"/><text x="53.8311%" y="1919.50"></text></g><g><title>[unknown] (104,891,458 samples, 0.03%)</title><rect x="53.5820%" y="1893" width="0.0341%" height="15" fill="rgb(231,4,44)" fg:x="164782877326" fg:w="104891458"/><text x="53.8320%" y="1903.50"></text></g><g><title>[unknown] (99,424,554 samples, 0.03%)</title><rect x="53.5838%" y="1877" width="0.0323%" height="15" fill="rgb(249,2,32)" fg:x="164788344230" fg:w="99424554"/><text x="53.8338%" y="1887.50"></text></g><g><title>[unknown] (92,861,639 samples, 0.03%)</title><rect x="53.5859%" y="1861" width="0.0302%" height="15" fill="rgb(224,65,26)" fg:x="164794907145" fg:w="92861639"/><text x="53.8359%" y="1871.50"></text></g><g><title>[unknown] (87,380,716 samples, 0.03%)</title><rect x="53.5877%" y="1845" width="0.0284%" height="15" fill="rgb(250,73,40)" fg:x="164800388068" fg:w="87380716"/><text x="53.8377%" y="1855.50"></text></g><g><title>[unknown] (86,701,499 samples, 0.03%)</title><rect x="53.5879%" y="1829" width="0.0282%" height="15" fill="rgb(253,177,16)" fg:x="164801067285" fg:w="86701499"/><text x="53.8379%" y="1839.50"></text></g><g><title>[unknown] (83,537,513 samples, 0.03%)</title><rect x="53.5889%" y="1813" width="0.0272%" height="15" fill="rgb(217,32,34)" fg:x="164804231271" fg:w="83537513"/><text x="53.8389%" y="1823.50"></text></g><g><title>[unknown] (79,312,380 samples, 0.03%)</title><rect x="53.5903%" y="1797" width="0.0258%" height="15" fill="rgb(212,7,10)" fg:x="164808456404" fg:w="79312380"/><text x="53.8403%" y="1807.50"></text></g><g><title>[unknown] (72,784,265 samples, 0.02%)</title><rect x="53.5924%" y="1781" width="0.0237%" height="15" fill="rgb(245,89,8)" fg:x="164814984519" fg:w="72784265"/><text x="53.8424%" y="1791.50"></text></g><g><title>[unknown] (67,303,698 samples, 0.02%)</title><rect x="53.5942%" y="1765" width="0.0219%" height="15" fill="rgb(237,16,53)" fg:x="164820465086" fg:w="67303698"/><text x="53.8442%" y="1775.50"></text></g><g><title>[unknown] (57,306,297 samples, 0.02%)</title><rect x="53.5975%" y="1749" width="0.0186%" height="15" fill="rgb(250,204,30)" fg:x="164830462487" fg:w="57306297"/><text x="53.8475%" y="1759.50"></text></g><g><title>[unknown] (44,588,187 samples, 0.01%)</title><rect x="53.6016%" y="1733" width="0.0145%" height="15" fill="rgb(208,77,27)" fg:x="164843180597" fg:w="44588187"/><text x="53.8516%" y="1743.50"></text></g><g><title>[unknown] (39,486,507 samples, 0.01%)</title><rect x="53.6033%" y="1717" width="0.0128%" height="15" fill="rgb(250,204,28)" fg:x="164848282277" fg:w="39486507"/><text x="53.8533%" y="1727.50"></text></g><g><title>[libgit2.so.1.9.0] (36,046,668 samples, 0.01%)</title><rect x="53.6355%" y="1829" width="0.0117%" height="15" fill="rgb(244,63,21)" fg:x="164947261360" fg:w="36046668"/><text x="53.8855%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (52,604,217 samples, 0.02%)</title><rect x="53.6350%" y="1925" width="0.0171%" height="15" fill="rgb(236,85,44)" fg:x="164946007890" fg:w="52604217"/><text x="53.8850%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (52,604,217 samples, 0.02%)</title><rect x="53.6350%" y="1909" width="0.0171%" height="15" fill="rgb(215,98,4)" fg:x="164946007890" fg:w="52604217"/><text x="53.8850%" y="1919.50"></text></g><g><title>git_odb_read (52,604,217 samples, 0.02%)</title><rect x="53.6350%" y="1893" width="0.0171%" height="15" fill="rgb(235,38,11)" fg:x="164946007890" fg:w="52604217"/><text x="53.8850%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (52,604,217 samples, 0.02%)</title><rect x="53.6350%" y="1877" width="0.0171%" height="15" fill="rgb(254,186,25)" fg:x="164946007890" fg:w="52604217"/><text x="53.8850%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (52,604,217 samples, 0.02%)</title><rect x="53.6350%" y="1861" width="0.0171%" height="15" fill="rgb(225,55,31)" fg:x="164946007890" fg:w="52604217"/><text x="53.8850%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (52,604,217 samples, 0.02%)</title><rect x="53.6350%" y="1845" width="0.0171%" height="15" fill="rgb(211,15,21)" fg:x="164946007890" fg:w="52604217"/><text x="53.8850%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (72,320,593 samples, 0.02%)</title><rect x="53.6347%" y="1941" width="0.0235%" height="15" fill="rgb(215,187,41)" fg:x="164945012781" fg:w="72320593"/><text x="53.8847%" y="1951.50"></text></g><g><title>&lt;gpui::platform::linux::dispatcher::LinuxDispatcher as gpui::platform::PlatformDispatcher&gt;::dispatch (31,675,777 samples, 0.01%)</title><rect x="53.6647%" y="1941" width="0.0103%" height="15" fill="rgb(248,69,32)" fg:x="165037353254" fg:w="31675777"/><text x="53.9147%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (37,148,233 samples, 0.01%)</title><rect x="53.6819%" y="1813" width="0.0121%" height="15" fill="rgb(252,102,52)" fg:x="165090161324" fg:w="37148233"/><text x="53.9319%" y="1823.50"></text></g><g><title>[libgit2.so.1.9.0] (34,707,278 samples, 0.01%)</title><rect x="53.6827%" y="1797" width="0.0113%" height="15" fill="rgb(253,140,32)" fg:x="165092602279" fg:w="34707278"/><text x="53.9327%" y="1807.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (42,899,105 samples, 0.01%)</title><rect x="53.6807%" y="1941" width="0.0139%" height="15" fill="rgb(216,56,42)" fg:x="165086395975" fg:w="42899105"/><text x="53.9307%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (42,899,105 samples, 0.01%)</title><rect x="53.6807%" y="1925" width="0.0139%" height="15" fill="rgb(216,184,14)" fg:x="165086395975" fg:w="42899105"/><text x="53.9307%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (40,391,651 samples, 0.01%)</title><rect x="53.6815%" y="1909" width="0.0131%" height="15" fill="rgb(237,187,27)" fg:x="165088903429" fg:w="40391651"/><text x="53.9315%" y="1919.50"></text></g><g><title>git_patch_from_buffers (40,391,651 samples, 0.01%)</title><rect x="53.6815%" y="1893" width="0.0131%" height="15" fill="rgb(219,65,3)" fg:x="165088903429" fg:w="40391651"/><text x="53.9315%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (40,391,651 samples, 0.01%)</title><rect x="53.6815%" y="1877" width="0.0131%" height="15" fill="rgb(245,83,25)" fg:x="165088903429" fg:w="40391651"/><text x="53.9315%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (40,391,651 samples, 0.01%)</title><rect x="53.6815%" y="1861" width="0.0131%" height="15" fill="rgb(214,205,45)" fg:x="165088903429" fg:w="40391651"/><text x="53.9315%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (40,391,651 samples, 0.01%)</title><rect x="53.6815%" y="1845" width="0.0131%" height="15" fill="rgb(241,20,18)" fg:x="165088903429" fg:w="40391651"/><text x="53.9315%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (39,133,756 samples, 0.01%)</title><rect x="53.6819%" y="1829" width="0.0127%" height="15" fill="rgb(232,163,23)" fg:x="165090161324" fg:w="39133756"/><text x="53.9319%" y="1839.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (103,436,338 samples, 0.03%)</title><rect x="53.6950%" y="1941" width="0.0336%" height="15" fill="rgb(214,5,46)" fg:x="165130431621" fg:w="103436338"/><text x="53.9450%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (91,787,559 samples, 0.03%)</title><rect x="53.6988%" y="1925" width="0.0298%" height="15" fill="rgb(229,78,17)" fg:x="165142080400" fg:w="91787559"/><text x="53.9488%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (73,202,622 samples, 0.02%)</title><rect x="53.7301%" y="1941" width="0.0238%" height="15" fill="rgb(248,89,10)" fg:x="165238231663" fg:w="73202622"/><text x="53.9801%" y="1951.50"></text></g><g><title>util::paths::PathMatcher::check_with_end_separator (32,470,900 samples, 0.01%)</title><rect x="53.7818%" y="1909" width="0.0106%" height="15" fill="rgb(248,54,15)" fg:x="165397266916" fg:w="32470900"/><text x="54.0318%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (156,235,365 samples, 0.05%)</title><rect x="53.7539%" y="1941" width="0.0508%" height="15" fill="rgb(223,116,6)" fg:x="165311434285" fg:w="156235365"/><text x="54.0039%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (132,653,324 samples, 0.04%)</title><rect x="53.7615%" y="1925" width="0.0431%" height="15" fill="rgb(205,125,38)" fg:x="165335016326" fg:w="132653324"/><text x="54.0115%" y="1935.50"></text></g><g><title>ts_language_table_entry (33,407,027 samples, 0.01%)</title><rect x="53.8191%" y="1861" width="0.0109%" height="15" fill="rgb(251,78,38)" fg:x="165511979139" fg:w="33407027"/><text x="54.0691%" y="1871.50"></text></g><g><title>ts_malloc_default (38,133,624 samples, 0.01%)</title><rect x="53.8481%" y="1829" width="0.0124%" height="15" fill="rgb(253,78,28)" fg:x="165601194860" fg:w="38133624"/><text x="54.0981%" y="1839.50"></text></g><g><title>malloc (36,966,158 samples, 0.01%)</title><rect x="53.8485%" y="1813" width="0.0120%" height="15" fill="rgb(209,120,3)" fg:x="165602362326" fg:w="36966158"/><text x="54.0985%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (56,309,544 samples, 0.02%)</title><rect x="53.8439%" y="1845" width="0.0183%" height="15" fill="rgb(238,229,9)" fg:x="165588421715" fg:w="56309544"/><text x="54.0939%" y="1855.50"></text></g><g><title>ts_lex (82,005,392 samples, 0.03%)</title><rect x="53.8943%" y="1829" width="0.0267%" height="15" fill="rgb(253,159,18)" fg:x="165743318158" fg:w="82005392"/><text x="54.1443%" y="1839.50"></text></g><g><title>ts_parser__lex (151,565,538 samples, 0.05%)</title><rect x="53.8820%" y="1845" width="0.0493%" height="15" fill="rgb(244,42,34)" fg:x="165705534229" fg:w="151565538"/><text x="54.1320%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (38,311,085 samples, 0.01%)</title><rect x="53.9334%" y="1845" width="0.0125%" height="15" fill="rgb(224,8,7)" fg:x="165863517392" fg:w="38311085"/><text x="54.1834%" y="1855.50"></text></g><g><title>ts_subtree_new_node (35,343,822 samples, 0.01%)</title><rect x="53.9465%" y="1845" width="0.0115%" height="15" fill="rgb(210,201,45)" fg:x="165903729184" fg:w="35343822"/><text x="54.1965%" y="1855.50"></text></g><g><title>ts_parser_parse (394,953,159 samples, 0.13%)</title><rect x="53.8305%" y="1861" width="0.1284%" height="15" fill="rgb(252,185,21)" fg:x="165547148445" fg:w="394953159"/><text x="54.0805%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (431,274,057 samples, 0.14%)</title><rect x="53.8191%" y="1877" width="0.1402%" height="15" fill="rgb(223,131,1)" fg:x="165511979139" fg:w="431274057"/><text x="54.0691%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (432,170,614 samples, 0.14%)</title><rect x="53.8191%" y="1893" width="0.1405%" height="15" fill="rgb(245,141,16)" fg:x="165511979139" fg:w="432170614"/><text x="54.0691%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (97,846,600 samples, 0.03%)</title><rect x="53.9676%" y="1877" width="0.0318%" height="15" fill="rgb(229,55,45)" fg:x="165968667226" fg:w="97846600"/><text x="54.2176%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (606,648,340 samples, 0.20%)</title><rect x="53.8047%" y="1925" width="0.1973%" height="15" fill="rgb(208,92,15)" fg:x="165467669650" fg:w="606648340"/><text x="54.0547%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (579,821,576 samples, 0.19%)</title><rect x="53.8134%" y="1909" width="0.1885%" height="15" fill="rgb(234,185,47)" fg:x="165494496414" fg:w="579821576"/><text x="54.0634%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (110,287,344 samples, 0.04%)</title><rect x="53.9661%" y="1893" width="0.0359%" height="15" fill="rgb(253,104,50)" fg:x="165964030646" fg:w="110287344"/><text x="54.2161%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (607,720,156 samples, 0.20%)</title><rect x="53.8047%" y="1941" width="0.1976%" height="15" fill="rgb(205,70,7)" fg:x="165467669650" fg:w="607720156"/><text x="54.0547%" y="1951.50"></text></g><g><title>ts_malloc_default (76,560,142 samples, 0.02%)</title><rect x="54.0576%" y="1829" width="0.0249%" height="15" fill="rgb(240,178,43)" fg:x="166245571383" fg:w="76560142"/><text x="54.3076%" y="1839.50"></text></g><g><title>malloc (76,560,142 samples, 0.02%)</title><rect x="54.0576%" y="1813" width="0.0249%" height="15" fill="rgb(214,112,2)" fg:x="166245571383" fg:w="76560142"/><text x="54.3076%" y="1823.50"></text></g><g><title>_int_malloc (31,755,610 samples, 0.01%)</title><rect x="54.0722%" y="1797" width="0.0103%" height="15" fill="rgb(206,46,17)" fg:x="166290375915" fg:w="31755610"/><text x="54.3222%" y="1807.50"></text></g><g><title>stack__iter.constprop.0 (103,024,305 samples, 0.03%)</title><rect x="54.0499%" y="1845" width="0.0335%" height="15" fill="rgb(225,220,16)" fg:x="166221912343" fg:w="103024305"/><text x="54.2999%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (59,662,391 samples, 0.02%)</title><rect x="54.1075%" y="1845" width="0.0194%" height="15" fill="rgb(238,65,40)" fg:x="166398873999" fg:w="59662391"/><text x="54.3575%" y="1855.50"></text></g><g><title>set_contains (36,444,520 samples, 0.01%)</title><rect x="54.1304%" y="1829" width="0.0119%" height="15" fill="rgb(230,151,21)" fg:x="166469410636" fg:w="36444520"/><text x="54.3804%" y="1839.50"></text></g><g><title>ts_lex (96,401,597 samples, 0.03%)</title><rect x="54.1433%" y="1829" width="0.0313%" height="15" fill="rgb(218,58,49)" fg:x="166509080732" fg:w="96401597"/><text x="54.3933%" y="1839.50"></text></g><g><title>ts_parser__lex (190,371,471 samples, 0.06%)</title><rect x="54.1269%" y="1845" width="0.0619%" height="15" fill="rgb(219,179,14)" fg:x="166458536390" fg:w="190371471"/><text x="54.3769%" y="1855.50"></text></g><g><title>ts_subtree_new_node (37,894,926 samples, 0.01%)</title><rect x="54.2068%" y="1845" width="0.0123%" height="15" fill="rgb(223,72,1)" fg:x="166704284556" fg:w="37894926"/><text x="54.4568%" y="1855.50"></text></g><g><title>ts_parser_parse (564,373,702 samples, 0.18%)</title><rect x="54.0359%" y="1861" width="0.1835%" height="15" fill="rgb(238,126,10)" fg:x="166178915112" fg:w="564373702"/><text x="54.2859%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (595,807,777 samples, 0.19%)</title><rect x="54.0267%" y="1877" width="0.1937%" height="15" fill="rgb(224,206,38)" fg:x="166150627256" fg:w="595807777"/><text x="54.2767%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (603,911,564 samples, 0.20%)</title><rect x="54.0259%" y="1893" width="0.1964%" height="15" fill="rgb(212,201,54)" fg:x="166148126384" fg:w="603911564"/><text x="54.2759%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (108,445,337 samples, 0.04%)</title><rect x="54.2293%" y="1877" width="0.0353%" height="15" fill="rgb(218,154,48)" fg:x="166773585737" fg:w="108445337"/><text x="54.4793%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (112,922,008 samples, 0.04%)</title><rect x="54.2291%" y="1893" width="0.0367%" height="15" fill="rgb(232,93,24)" fg:x="166773066102" fg:w="112922008"/><text x="54.4791%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (762,658,433 samples, 0.25%)</title><rect x="54.0182%" y="1909" width="0.2480%" height="15" fill="rgb(245,30,21)" fg:x="166124397992" fg:w="762658433"/><text x="54.2682%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (814,017,926 samples, 0.26%)</title><rect x="54.0023%" y="1941" width="0.2647%" height="15" fill="rgb(242,148,29)" fg:x="166075389806" fg:w="814017926"/><text x="54.2523%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (814,017,926 samples, 0.26%)</title><rect x="54.0023%" y="1925" width="0.2647%" height="15" fill="rgb(244,153,54)" fg:x="166075389806" fg:w="814017926"/><text x="54.2523%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,003,954,498 samples, 0.65%)</title><rect x="53.6219%" y="1957" width="0.6516%" height="15" fill="rgb(252,87,22)" fg:x="164905653256" fg:w="2003954498"/><text x="53.8719%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,021,917,163 samples, 0.66%)</title><rect x="53.6172%" y="1973" width="0.6575%" height="15" fill="rgb(210,51,29)" fg:x="164891032247" fg:w="2021917163"/><text x="53.8672%" y="1983.50"></text></g><g><title>Worker-24 (2,145,640,246 samples, 0.70%)</title><rect x="53.6161%" y="2069" width="0.6977%" height="15" fill="rgb(242,136,47)" fg:x="164887768784" fg:w="2145640246"/><text x="53.8661%" y="2079.50"></text></g><g><title>__GI___clone3 (2,144,580,652 samples, 0.70%)</title><rect x="53.6165%" y="2053" width="0.6973%" height="15" fill="rgb(238,68,4)" fg:x="164888828378" fg:w="2144580652"/><text x="53.8665%" y="2063.50"></text></g><g><title>start_thread (2,144,580,652 samples, 0.70%)</title><rect x="53.6165%" y="2037" width="0.6973%" height="15" fill="rgb(242,161,30)" fg:x="164888828378" fg:w="2144580652"/><text x="53.8665%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,144,580,652 samples, 0.70%)</title><rect x="53.6165%" y="2021" width="0.6973%" height="15" fill="rgb(218,58,44)" fg:x="164888828378" fg:w="2144580652"/><text x="53.8665%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,144,580,652 samples, 0.70%)</title><rect x="53.6165%" y="2005" width="0.6973%" height="15" fill="rgb(252,125,32)" fg:x="164888828378" fg:w="2144580652"/><text x="53.8665%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,144,580,652 samples, 0.70%)</title><rect x="53.6165%" y="1989" width="0.6973%" height="15" fill="rgb(219,178,0)" fg:x="164888828378" fg:w="2144580652"/><text x="53.8665%" y="1999.50"></text></g><g><title>syscall (120,459,620 samples, 0.04%)</title><rect x="54.2746%" y="1973" width="0.0392%" height="15" fill="rgb(213,152,7)" fg:x="166912949410" fg:w="120459620"/><text x="54.5246%" y="1983.50"></text></g><g><title>[unknown] (116,227,359 samples, 0.04%)</title><rect x="54.2760%" y="1957" width="0.0378%" height="15" fill="rgb(249,109,34)" fg:x="166917181671" fg:w="116227359"/><text x="54.5260%" y="1967.50"></text></g><g><title>[unknown] (110,081,836 samples, 0.04%)</title><rect x="54.2780%" y="1941" width="0.0358%" height="15" fill="rgb(232,96,21)" fg:x="166923327194" fg:w="110081836"/><text x="54.5280%" y="1951.50"></text></g><g><title>[unknown] (106,448,622 samples, 0.03%)</title><rect x="54.2792%" y="1925" width="0.0346%" height="15" fill="rgb(228,27,39)" fg:x="166926960408" fg:w="106448622"/><text x="54.5292%" y="1935.50"></text></g><g><title>[unknown] (104,440,252 samples, 0.03%)</title><rect x="54.2798%" y="1909" width="0.0340%" height="15" fill="rgb(211,182,52)" fg:x="166928968778" fg:w="104440252"/><text x="54.5298%" y="1919.50"></text></g><g><title>[unknown] (100,172,215 samples, 0.03%)</title><rect x="54.2812%" y="1893" width="0.0326%" height="15" fill="rgb(234,178,38)" fg:x="166933236815" fg:w="100172215"/><text x="54.5312%" y="1903.50"></text></g><g><title>[unknown] (100,172,215 samples, 0.03%)</title><rect x="54.2812%" y="1877" width="0.0326%" height="15" fill="rgb(221,111,3)" fg:x="166933236815" fg:w="100172215"/><text x="54.5312%" y="1887.50"></text></g><g><title>[unknown] (85,845,927 samples, 0.03%)</title><rect x="54.2859%" y="1861" width="0.0279%" height="15" fill="rgb(228,175,21)" fg:x="166947563103" fg:w="85845927"/><text x="54.5359%" y="1871.50"></text></g><g><title>[unknown] (81,165,919 samples, 0.03%)</title><rect x="54.2874%" y="1845" width="0.0264%" height="15" fill="rgb(228,174,43)" fg:x="166952243111" fg:w="81165919"/><text x="54.5374%" y="1855.50"></text></g><g><title>[unknown] (79,305,622 samples, 0.03%)</title><rect x="54.2880%" y="1829" width="0.0258%" height="15" fill="rgb(211,191,0)" fg:x="166954103408" fg:w="79305622"/><text x="54.5380%" y="1839.50"></text></g><g><title>[unknown] (75,211,952 samples, 0.02%)</title><rect x="54.2893%" y="1813" width="0.0245%" height="15" fill="rgb(253,117,3)" fg:x="166958197078" fg:w="75211952"/><text x="54.5393%" y="1823.50"></text></g><g><title>[unknown] (70,936,326 samples, 0.02%)</title><rect x="54.2907%" y="1797" width="0.0231%" height="15" fill="rgb(241,127,19)" fg:x="166962472704" fg:w="70936326"/><text x="54.5407%" y="1807.50"></text></g><g><title>[unknown] (68,126,919 samples, 0.02%)</title><rect x="54.2916%" y="1781" width="0.0222%" height="15" fill="rgb(218,103,12)" fg:x="166965282111" fg:w="68126919"/><text x="54.5416%" y="1791.50"></text></g><g><title>[unknown] (58,215,367 samples, 0.02%)</title><rect x="54.2949%" y="1765" width="0.0189%" height="15" fill="rgb(236,214,43)" fg:x="166975193663" fg:w="58215367"/><text x="54.5449%" y="1775.50"></text></g><g><title>[unknown] (52,455,854 samples, 0.02%)</title><rect x="54.2967%" y="1749" width="0.0171%" height="15" fill="rgb(244,144,19)" fg:x="166980953176" fg:w="52455854"/><text x="54.5467%" y="1759.50"></text></g><g><title>[unknown] (40,795,665 samples, 0.01%)</title><rect x="54.3005%" y="1733" width="0.0133%" height="15" fill="rgb(246,188,10)" fg:x="166992613365" fg:w="40795665"/><text x="54.5505%" y="1743.50"></text></g><g><title>[unknown] (32,594,718 samples, 0.01%)</title><rect x="54.3032%" y="1717" width="0.0106%" height="15" fill="rgb(212,193,33)" fg:x="167000814312" fg:w="32594718"/><text x="54.5532%" y="1727.50"></text></g><g><title>[libgit2.so.1.9.0] (40,302,694 samples, 0.01%)</title><rect x="54.3302%" y="1829" width="0.0131%" height="15" fill="rgb(241,51,29)" fg:x="167083717490" fg:w="40302694"/><text x="54.5802%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (51,266,789 samples, 0.02%)</title><rect x="54.3302%" y="1925" width="0.0167%" height="15" fill="rgb(211,58,19)" fg:x="167083717490" fg:w="51266789"/><text x="54.5802%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (51,266,789 samples, 0.02%)</title><rect x="54.3302%" y="1909" width="0.0167%" height="15" fill="rgb(229,111,26)" fg:x="167083717490" fg:w="51266789"/><text x="54.5802%" y="1919.50"></text></g><g><title>git_odb_read (51,266,789 samples, 0.02%)</title><rect x="54.3302%" y="1893" width="0.0167%" height="15" fill="rgb(213,115,40)" fg:x="167083717490" fg:w="51266789"/><text x="54.5802%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (51,266,789 samples, 0.02%)</title><rect x="54.3302%" y="1877" width="0.0167%" height="15" fill="rgb(209,56,44)" fg:x="167083717490" fg:w="51266789"/><text x="54.5802%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (51,266,789 samples, 0.02%)</title><rect x="54.3302%" y="1861" width="0.0167%" height="15" fill="rgb(230,108,32)" fg:x="167083717490" fg:w="51266789"/><text x="54.5802%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (51,266,789 samples, 0.02%)</title><rect x="54.3302%" y="1845" width="0.0167%" height="15" fill="rgb(216,165,31)" fg:x="167083717490" fg:w="51266789"/><text x="54.5802%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (78,758,892 samples, 0.03%)</title><rect x="54.3302%" y="1941" width="0.0256%" height="15" fill="rgb(218,122,21)" fg:x="167083717490" fg:w="78758892"/><text x="54.5802%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (43,484,486 samples, 0.01%)</title><rect x="54.3758%" y="1797" width="0.0141%" height="15" fill="rgb(223,224,47)" fg:x="167224077710" fg:w="43484486"/><text x="54.6258%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (47,546,243 samples, 0.02%)</title><rect x="54.3751%" y="1813" width="0.0155%" height="15" fill="rgb(238,102,44)" fg:x="167222076423" fg:w="47546243"/><text x="54.6251%" y="1823.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (53,226,911 samples, 0.02%)</title><rect x="54.3742%" y="1941" width="0.0173%" height="15" fill="rgb(236,46,40)" fg:x="167219247034" fg:w="53226911"/><text x="54.6242%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (53,226,911 samples, 0.02%)</title><rect x="54.3742%" y="1925" width="0.0173%" height="15" fill="rgb(247,202,50)" fg:x="167219247034" fg:w="53226911"/><text x="54.6242%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (50,397,522 samples, 0.02%)</title><rect x="54.3751%" y="1909" width="0.0164%" height="15" fill="rgb(209,99,20)" fg:x="167222076423" fg:w="50397522"/><text x="54.6251%" y="1919.50"></text></g><g><title>git_patch_from_buffers (50,397,522 samples, 0.02%)</title><rect x="54.3751%" y="1893" width="0.0164%" height="15" fill="rgb(252,27,34)" fg:x="167222076423" fg:w="50397522"/><text x="54.6251%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (50,397,522 samples, 0.02%)</title><rect x="54.3751%" y="1877" width="0.0164%" height="15" fill="rgb(215,206,23)" fg:x="167222076423" fg:w="50397522"/><text x="54.6251%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (50,397,522 samples, 0.02%)</title><rect x="54.3751%" y="1861" width="0.0164%" height="15" fill="rgb(212,135,36)" fg:x="167222076423" fg:w="50397522"/><text x="54.6251%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (50,397,522 samples, 0.02%)</title><rect x="54.3751%" y="1845" width="0.0164%" height="15" fill="rgb(240,189,1)" fg:x="167222076423" fg:w="50397522"/><text x="54.6251%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (50,397,522 samples, 0.02%)</title><rect x="54.3751%" y="1829" width="0.0164%" height="15" fill="rgb(242,56,20)" fg:x="167222076423" fg:w="50397522"/><text x="54.6251%" y="1839.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (78,541,294 samples, 0.03%)</title><rect x="54.3946%" y="1925" width="0.0255%" height="15" fill="rgb(247,132,33)" fg:x="167281858469" fg:w="78541294"/><text x="54.6446%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (88,846,620 samples, 0.03%)</title><rect x="54.3919%" y="1941" width="0.0289%" height="15" fill="rgb(208,149,11)" fg:x="167273439948" fg:w="88846620"/><text x="54.6419%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (73,899,241 samples, 0.02%)</title><rect x="54.4219%" y="1941" width="0.0240%" height="15" fill="rgb(211,33,11)" fg:x="167365920217" fg:w="73899241"/><text x="54.6719%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (116,058,495 samples, 0.04%)</title><rect x="54.4599%" y="1925" width="0.0377%" height="15" fill="rgb(221,29,38)" fg:x="167482626878" fg:w="116058495"/><text x="54.7099%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (167,906,987 samples, 0.05%)</title><rect x="54.4514%" y="1941" width="0.0546%" height="15" fill="rgb(206,182,49)" fg:x="167456701139" fg:w="167906987"/><text x="54.7014%" y="1951.50"></text></g><g><title>ts_malloc_default (32,284,989 samples, 0.01%)</title><rect x="54.5490%" y="1829" width="0.0105%" height="15" fill="rgb(216,140,1)" fg:x="167756866923" fg:w="32284989"/><text x="54.7990%" y="1839.50"></text></g><g><title>malloc (32,284,989 samples, 0.01%)</title><rect x="54.5490%" y="1813" width="0.0105%" height="15" fill="rgb(232,57,40)" fg:x="167756866923" fg:w="32284989"/><text x="54.7990%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (47,368,609 samples, 0.02%)</title><rect x="54.5448%" y="1845" width="0.0154%" height="15" fill="rgb(224,186,18)" fg:x="167743943669" fg:w="47368609"/><text x="54.7948%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (46,134,163 samples, 0.02%)</title><rect x="54.5730%" y="1845" width="0.0150%" height="15" fill="rgb(215,121,11)" fg:x="167830605729" fg:w="46134163"/><text x="54.8230%" y="1855.50"></text></g><g><title>ts_lex (95,022,880 samples, 0.03%)</title><rect x="54.6007%" y="1829" width="0.0309%" height="15" fill="rgb(245,147,10)" fg:x="167915763697" fg:w="95022880"/><text x="54.8507%" y="1839.50"></text></g><g><title>ts_parser__lex (177,153,556 samples, 0.06%)</title><rect x="54.5880%" y="1845" width="0.0576%" height="15" fill="rgb(238,153,13)" fg:x="167876739892" fg:w="177153556"/><text x="54.8380%" y="1855.50"></text></g><g><title>ts_parser_parse (421,550,309 samples, 0.14%)</title><rect x="54.5324%" y="1861" width="0.1371%" height="15" fill="rgb(233,108,0)" fg:x="167705644390" fg:w="421550309"/><text x="54.7824%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (453,874,958 samples, 0.15%)</title><rect x="54.5227%" y="1877" width="0.1476%" height="15" fill="rgb(212,157,17)" fg:x="167675825902" fg:w="453874958"/><text x="54.7727%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (456,123,703 samples, 0.15%)</title><rect x="54.5227%" y="1893" width="0.1483%" height="15" fill="rgb(225,213,38)" fg:x="167675825902" fg:w="456123703"/><text x="54.7727%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (91,121,501 samples, 0.03%)</title><rect x="54.6768%" y="1877" width="0.0296%" height="15" fill="rgb(248,16,11)" fg:x="168149664044" fg:w="91121501"/><text x="54.9268%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (601,425,048 samples, 0.20%)</title><rect x="54.5137%" y="1909" width="0.1956%" height="15" fill="rgb(241,33,4)" fg:x="167648244731" fg:w="601425048"/><text x="54.7637%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (100,968,648 samples, 0.03%)</title><rect x="54.6765%" y="1893" width="0.0328%" height="15" fill="rgb(222,26,43)" fg:x="168148701131" fg:w="100968648"/><text x="54.9265%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (625,079,099 samples, 0.20%)</title><rect x="54.5064%" y="1925" width="0.2033%" height="15" fill="rgb(243,29,36)" fg:x="167625766536" fg:w="625079099"/><text x="54.7564%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (627,501,582 samples, 0.20%)</title><rect x="54.5060%" y="1941" width="0.2040%" height="15" fill="rgb(241,9,27)" fg:x="167624608126" fg:w="627501582"/><text x="54.7560%" y="1951.50"></text></g><g><title>ts_malloc_default (63,079,304 samples, 0.02%)</title><rect x="54.7567%" y="1829" width="0.0205%" height="15" fill="rgb(205,117,26)" fg:x="168395619862" fg:w="63079304"/><text x="55.0067%" y="1839.50"></text></g><g><title>malloc (63,079,304 samples, 0.02%)</title><rect x="54.7567%" y="1813" width="0.0205%" height="15" fill="rgb(209,80,39)" fg:x="168395619862" fg:w="63079304"/><text x="55.0067%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (82,685,092 samples, 0.03%)</title><rect x="54.7511%" y="1845" width="0.0269%" height="15" fill="rgb(239,155,6)" fg:x="168378357691" fg:w="82685092"/><text x="55.0011%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (58,546,538 samples, 0.02%)</title><rect x="54.7983%" y="1845" width="0.0190%" height="15" fill="rgb(212,104,12)" fg:x="168523374798" fg:w="58546538"/><text x="55.0483%" y="1855.50"></text></g><g><title>ts_lex (68,641,069 samples, 0.02%)</title><rect x="54.8305%" y="1829" width="0.0223%" height="15" fill="rgb(234,204,3)" fg:x="168622482519" fg:w="68641069"/><text x="55.0805%" y="1839.50"></text></g><g><title>ts_parser__lex (160,707,681 samples, 0.05%)</title><rect x="54.8173%" y="1845" width="0.0523%" height="15" fill="rgb(251,218,7)" fg:x="168581921336" fg:w="160707681"/><text x="55.0673%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (37,304,361 samples, 0.01%)</title><rect x="54.8782%" y="1845" width="0.0121%" height="15" fill="rgb(221,81,32)" fg:x="168768981388" fg:w="37304361"/><text x="55.1282%" y="1855.50"></text></g><g><title>ts_parser_parse (492,264,277 samples, 0.16%)</title><rect x="54.7396%" y="1861" width="0.1601%" height="15" fill="rgb(214,152,26)" fg:x="168342854344" fg:w="492264277"/><text x="54.9896%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (526,773,897 samples, 0.17%)</title><rect x="54.7299%" y="1877" width="0.1713%" height="15" fill="rgb(223,22,3)" fg:x="168313032389" fg:w="526773897"/><text x="54.9799%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (535,100,876 samples, 0.17%)</title><rect x="54.7287%" y="1893" width="0.1740%" height="15" fill="rgb(207,174,7)" fg:x="168309363378" fg:w="535100876"/><text x="54.9787%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (90,441,318 samples, 0.03%)</title><rect x="54.9078%" y="1877" width="0.0294%" height="15" fill="rgb(224,19,52)" fg:x="168860162646" fg:w="90441318"/><text x="55.1578%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (97,268,547 samples, 0.03%)</title><rect x="54.9071%" y="1893" width="0.0316%" height="15" fill="rgb(228,24,14)" fg:x="168857944966" fg:w="97268547"/><text x="55.1571%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (668,270,306 samples, 0.22%)</title><rect x="54.7221%" y="1909" width="0.2173%" height="15" fill="rgb(230,153,43)" fg:x="168289071460" fg:w="668270306"/><text x="54.9721%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (706,327,441 samples, 0.23%)</title><rect x="54.7101%" y="1941" width="0.2297%" height="15" fill="rgb(231,106,12)" fg:x="168252109708" fg:w="706327441"/><text x="54.9601%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (706,327,441 samples, 0.23%)</title><rect x="54.7101%" y="1925" width="0.2297%" height="15" fill="rgb(215,92,2)" fg:x="168252109708" fg:w="706327441"/><text x="54.9601%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,934,311,130 samples, 0.63%)</title><rect x="54.3181%" y="1957" width="0.6290%" height="15" fill="rgb(249,143,25)" fg:x="167046680599" fg:w="1934311130"/><text x="54.5681%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,951,907,217 samples, 0.63%)</title><rect x="54.3144%" y="1973" width="0.6347%" height="15" fill="rgb(252,7,35)" fg:x="167035396376" fg:w="1951907217"/><text x="54.5644%" y="1983.50"></text></g><g><title>Worker-25 (2,060,856,816 samples, 0.67%)</title><rect x="54.3138%" y="2069" width="0.6701%" height="15" fill="rgb(216,69,40)" fg:x="167033409030" fg:w="2060856816"/><text x="54.5638%" y="2079.50"></text></g><g><title>__GI___clone3 (2,060,015,819 samples, 0.67%)</title><rect x="54.3141%" y="2053" width="0.6698%" height="15" fill="rgb(240,36,33)" fg:x="167034250027" fg:w="2060015819"/><text x="54.5641%" y="2063.50"></text></g><g><title>start_thread (2,060,015,819 samples, 0.67%)</title><rect x="54.3141%" y="2037" width="0.6698%" height="15" fill="rgb(231,128,14)" fg:x="167034250027" fg:w="2060015819"/><text x="54.5641%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,060,015,819 samples, 0.67%)</title><rect x="54.3141%" y="2021" width="0.6698%" height="15" fill="rgb(245,143,14)" fg:x="167034250027" fg:w="2060015819"/><text x="54.5641%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,060,015,819 samples, 0.67%)</title><rect x="54.3141%" y="2005" width="0.6698%" height="15" fill="rgb(222,130,28)" fg:x="167034250027" fg:w="2060015819"/><text x="54.5641%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,060,015,819 samples, 0.67%)</title><rect x="54.3141%" y="1989" width="0.6698%" height="15" fill="rgb(212,10,48)" fg:x="167034250027" fg:w="2060015819"/><text x="54.5641%" y="1999.50"></text></g><g><title>syscall (106,962,253 samples, 0.03%)</title><rect x="54.9491%" y="1973" width="0.0348%" height="15" fill="rgb(254,118,45)" fg:x="168987303593" fg:w="106962253"/><text x="55.1991%" y="1983.50"></text></g><g><title>[unknown] (102,614,496 samples, 0.03%)</title><rect x="54.9506%" y="1957" width="0.0334%" height="15" fill="rgb(228,6,45)" fg:x="168991651350" fg:w="102614496"/><text x="55.2006%" y="1967.50"></text></g><g><title>[unknown] (99,648,745 samples, 0.03%)</title><rect x="54.9515%" y="1941" width="0.0324%" height="15" fill="rgb(241,18,35)" fg:x="168994617101" fg:w="99648745"/><text x="55.2015%" y="1951.50"></text></g><g><title>[unknown] (96,413,180 samples, 0.03%)</title><rect x="54.9526%" y="1925" width="0.0314%" height="15" fill="rgb(227,214,53)" fg:x="168997852666" fg:w="96413180"/><text x="55.2026%" y="1935.50"></text></g><g><title>[unknown] (93,845,459 samples, 0.03%)</title><rect x="54.9534%" y="1909" width="0.0305%" height="15" fill="rgb(224,107,51)" fg:x="169000420387" fg:w="93845459"/><text x="55.2034%" y="1919.50"></text></g><g><title>[unknown] (87,362,404 samples, 0.03%)</title><rect x="54.9555%" y="1893" width="0.0284%" height="15" fill="rgb(248,60,28)" fg:x="169006903442" fg:w="87362404"/><text x="55.2055%" y="1903.50"></text></g><g><title>[unknown] (85,835,784 samples, 0.03%)</title><rect x="54.9560%" y="1877" width="0.0279%" height="15" fill="rgb(249,101,23)" fg:x="169008430062" fg:w="85835784"/><text x="55.2060%" y="1887.50"></text></g><g><title>[unknown] (69,617,282 samples, 0.02%)</title><rect x="54.9613%" y="1861" width="0.0226%" height="15" fill="rgb(228,51,19)" fg:x="169024648564" fg:w="69617282"/><text x="55.2113%" y="1871.50"></text></g><g><title>[unknown] (66,351,438 samples, 0.02%)</title><rect x="54.9623%" y="1845" width="0.0216%" height="15" fill="rgb(213,20,6)" fg:x="169027914408" fg:w="66351438"/><text x="55.2123%" y="1855.50"></text></g><g><title>[unknown] (64,052,749 samples, 0.02%)</title><rect x="54.9631%" y="1829" width="0.0208%" height="15" fill="rgb(212,124,10)" fg:x="169030213097" fg:w="64052749"/><text x="55.2131%" y="1839.50"></text></g><g><title>[unknown] (59,791,563 samples, 0.02%)</title><rect x="54.9645%" y="1813" width="0.0194%" height="15" fill="rgb(248,3,40)" fg:x="169034474283" fg:w="59791563"/><text x="55.2145%" y="1823.50"></text></g><g><title>[unknown] (58,588,609 samples, 0.02%)</title><rect x="54.9649%" y="1797" width="0.0191%" height="15" fill="rgb(223,178,23)" fg:x="169035677237" fg:w="58588609"/><text x="55.2149%" y="1807.50"></text></g><g><title>[unknown] (53,457,265 samples, 0.02%)</title><rect x="54.9665%" y="1781" width="0.0174%" height="15" fill="rgb(240,132,45)" fg:x="169040808581" fg:w="53457265"/><text x="55.2165%" y="1791.50"></text></g><g><title>[unknown] (42,785,914 samples, 0.01%)</title><rect x="54.9700%" y="1765" width="0.0139%" height="15" fill="rgb(245,164,36)" fg:x="169051479932" fg:w="42785914"/><text x="55.2200%" y="1775.50"></text></g><g><title>[unknown] (39,621,401 samples, 0.01%)</title><rect x="54.9710%" y="1749" width="0.0129%" height="15" fill="rgb(231,188,53)" fg:x="169054644445" fg:w="39621401"/><text x="55.2210%" y="1759.50"></text></g><g><title>[libgit2.so.1.9.0] (35,540,615 samples, 0.01%)</title><rect x="55.0068%" y="1829" width="0.0116%" height="15" fill="rgb(237,198,39)" fg:x="169164732905" fg:w="35540615"/><text x="55.2568%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (47,702,845 samples, 0.02%)</title><rect x="55.0065%" y="1925" width="0.0155%" height="15" fill="rgb(223,120,35)" fg:x="169163614834" fg:w="47702845"/><text x="55.2565%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (47,702,845 samples, 0.02%)</title><rect x="55.0065%" y="1909" width="0.0155%" height="15" fill="rgb(253,107,49)" fg:x="169163614834" fg:w="47702845"/><text x="55.2565%" y="1919.50"></text></g><g><title>git_odb_read (47,702,845 samples, 0.02%)</title><rect x="55.0065%" y="1893" width="0.0155%" height="15" fill="rgb(216,44,31)" fg:x="169163614834" fg:w="47702845"/><text x="55.2565%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (46,584,774 samples, 0.02%)</title><rect x="55.0068%" y="1877" width="0.0151%" height="15" fill="rgb(253,87,21)" fg:x="169164732905" fg:w="46584774"/><text x="55.2568%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (46,584,774 samples, 0.02%)</title><rect x="55.0068%" y="1861" width="0.0151%" height="15" fill="rgb(226,18,2)" fg:x="169164732905" fg:w="46584774"/><text x="55.2568%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (46,584,774 samples, 0.02%)</title><rect x="55.0068%" y="1845" width="0.0151%" height="15" fill="rgb(216,8,46)" fg:x="169164732905" fg:w="46584774"/><text x="55.2568%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (79,917,999 samples, 0.03%)</title><rect x="55.0061%" y="1941" width="0.0260%" height="15" fill="rgb(226,140,39)" fg:x="169162433708" fg:w="79917999"/><text x="55.2561%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (48,754,818 samples, 0.02%)</title><rect x="55.0566%" y="1813" width="0.0159%" height="15" fill="rgb(221,194,54)" fg:x="169317898834" fg:w="48754818"/><text x="55.3066%" y="1823.50"></text></g><g><title>[libgit2.so.1.9.0] (43,432,743 samples, 0.01%)</title><rect x="55.0584%" y="1797" width="0.0141%" height="15" fill="rgb(213,92,11)" fg:x="169323220909" fg:w="43432743"/><text x="55.3084%" y="1807.50"></text></g><g><title>git2::patch::Patch::from_buffers (49,835,709 samples, 0.02%)</title><rect x="55.0566%" y="1909" width="0.0162%" height="15" fill="rgb(229,162,46)" fg:x="169317898834" fg:w="49835709"/><text x="55.3066%" y="1919.50"></text></g><g><title>git_patch_from_buffers (49,835,709 samples, 0.02%)</title><rect x="55.0566%" y="1893" width="0.0162%" height="15" fill="rgb(214,111,36)" fg:x="169317898834" fg:w="49835709"/><text x="55.3066%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (49,835,709 samples, 0.02%)</title><rect x="55.0566%" y="1877" width="0.0162%" height="15" fill="rgb(207,6,21)" fg:x="169317898834" fg:w="49835709"/><text x="55.3066%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (49,835,709 samples, 0.02%)</title><rect x="55.0566%" y="1861" width="0.0162%" height="15" fill="rgb(213,127,38)" fg:x="169317898834" fg:w="49835709"/><text x="55.3066%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (49,835,709 samples, 0.02%)</title><rect x="55.0566%" y="1845" width="0.0162%" height="15" fill="rgb(238,118,32)" fg:x="169317898834" fg:w="49835709"/><text x="55.3066%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (49,835,709 samples, 0.02%)</title><rect x="55.0566%" y="1829" width="0.0162%" height="15" fill="rgb(240,139,39)" fg:x="169317898834" fg:w="49835709"/><text x="55.3066%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (57,009,404 samples, 0.02%)</title><rect x="55.0554%" y="1941" width="0.0185%" height="15" fill="rgb(235,10,37)" fg:x="169313941112" fg:w="57009404"/><text x="55.3054%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (57,009,404 samples, 0.02%)</title><rect x="55.0554%" y="1925" width="0.0185%" height="15" fill="rgb(249,171,38)" fg:x="169313941112" fg:w="57009404"/><text x="55.3054%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (58,859,690 samples, 0.02%)</title><rect x="55.0743%" y="1941" width="0.0191%" height="15" fill="rgb(242,144,32)" fg:x="169372138286" fg:w="58859690"/><text x="55.3243%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (53,065,453 samples, 0.02%)</title><rect x="55.0762%" y="1925" width="0.0173%" height="15" fill="rgb(217,117,21)" fg:x="169377932523" fg:w="53065453"/><text x="55.3262%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (79,885,704 samples, 0.03%)</title><rect x="55.0941%" y="1941" width="0.0260%" height="15" fill="rgb(249,87,1)" fg:x="169433210524" fg:w="79885704"/><text x="55.3441%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (37,068,540 samples, 0.01%)</title><rect x="55.1381%" y="1909" width="0.0121%" height="15" fill="rgb(248,196,48)" fg:x="169568443830" fg:w="37068540"/><text x="55.3881%" y="1919.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (147,887,093 samples, 0.05%)</title><rect x="55.1275%" y="1925" width="0.0481%" height="15" fill="rgb(251,206,33)" fg:x="169535830157" fg:w="147887093"/><text x="55.3775%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (198,276,605 samples, 0.06%)</title><rect x="55.1201%" y="1941" width="0.0645%" height="15" fill="rgb(232,141,28)" fg:x="169513096228" fg:w="198276605"/><text x="55.3701%" y="1951.50"></text></g><g><title>stack__iter.constprop.0 (46,921,245 samples, 0.02%)</title><rect x="55.2099%" y="1845" width="0.0153%" height="15" fill="rgb(209,167,14)" fg:x="169789126663" fg:w="46921245"/><text x="55.4599%" y="1855.50"></text></g><g><title>ts_lex (60,853,138 samples, 0.02%)</title><rect x="55.2569%" y="1829" width="0.0198%" height="15" fill="rgb(225,11,50)" fg:x="169933775118" fg:w="60853138"/><text x="55.5069%" y="1839.50"></text></g><g><title>ts_parser__lex (139,006,670 samples, 0.05%)</title><rect x="55.2464%" y="1845" width="0.0452%" height="15" fill="rgb(209,50,20)" fg:x="169901523687" fg:w="139006670"/><text x="55.4964%" y="1855.50"></text></g><g><title>language::syntax_map::parse_text (354,779,892 samples, 0.12%)</title><rect x="55.1942%" y="1893" width="0.1154%" height="15" fill="rgb(212,17,46)" fg:x="169740971186" fg:w="354779892"/><text x="55.4442%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (352,343,488 samples, 0.11%)</title><rect x="55.1950%" y="1877" width="0.1146%" height="15" fill="rgb(216,101,39)" fg:x="169743407590" fg:w="352343488"/><text x="55.4450%" y="1887.50"></text></g><g><title>ts_parser_parse (334,202,174 samples, 0.11%)</title><rect x="55.2009%" y="1861" width="0.1087%" height="15" fill="rgb(212,228,48)" fg:x="169761548904" fg:w="334202174"/><text x="55.4509%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (86,771,175 samples, 0.03%)</title><rect x="55.3127%" y="1877" width="0.0282%" height="15" fill="rgb(250,6,50)" fg:x="170105252693" fg:w="86771175"/><text x="55.5627%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (485,563,075 samples, 0.16%)</title><rect x="55.1849%" y="1925" width="0.1579%" height="15" fill="rgb(250,160,48)" fg:x="169712214034" fg:w="485563075"/><text x="55.4349%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (468,635,966 samples, 0.15%)</title><rect x="55.1904%" y="1909" width="0.1524%" height="15" fill="rgb(244,216,33)" fg:x="169729141143" fg:w="468635966"/><text x="55.4404%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (92,524,416 samples, 0.03%)</title><rect x="55.3127%" y="1893" width="0.0301%" height="15" fill="rgb(207,157,5)" fg:x="170105252693" fg:w="92524416"/><text x="55.5627%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (487,376,573 samples, 0.16%)</title><rect x="55.1846%" y="1941" width="0.1585%" height="15" fill="rgb(228,199,8)" fg:x="169711372833" fg:w="487376573"/><text x="55.4346%" y="1951.50"></text></g><g><title>__memmove_avx512_unaligned_erms (40,712,077 samples, 0.01%)</title><rect x="55.3431%" y="1909" width="0.0132%" height="15" fill="rgb(227,80,20)" fg:x="170198749406" fg:w="40712077"/><text x="55.5931%" y="1919.50"></text></g><g><title>ts_malloc_default (56,666,871 samples, 0.02%)</title><rect x="55.4046%" y="1829" width="0.0184%" height="15" fill="rgb(222,9,33)" fg:x="170387911069" fg:w="56666871"/><text x="55.6546%" y="1839.50"></text></g><g><title>malloc (55,650,888 samples, 0.02%)</title><rect x="55.4049%" y="1813" width="0.0181%" height="15" fill="rgb(239,44,28)" fg:x="170388927052" fg:w="55650888"/><text x="55.6549%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (77,798,107 samples, 0.03%)</title><rect x="55.3981%" y="1845" width="0.0253%" height="15" fill="rgb(249,187,43)" fg:x="170368043774" fg:w="77798107"/><text x="55.6481%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (79,803,366 samples, 0.03%)</title><rect x="55.4434%" y="1845" width="0.0259%" height="15" fill="rgb(216,141,28)" fg:x="170507221585" fg:w="79803366"/><text x="55.6934%" y="1855.50"></text></g><g><title>set_contains (32,886,651 samples, 0.01%)</title><rect x="55.4739%" y="1829" width="0.0107%" height="15" fill="rgb(230,154,53)" fg:x="170601243717" fg:w="32886651"/><text x="55.7239%" y="1839.50"></text></g><g><title>ts_lex (70,615,010 samples, 0.02%)</title><rect x="55.4870%" y="1829" width="0.0230%" height="15" fill="rgb(227,82,4)" fg:x="170641343123" fg:w="70615010"/><text x="55.7370%" y="1839.50"></text></g><g><title>ts_parser__lex (176,806,841 samples, 0.06%)</title><rect x="55.4693%" y="1845" width="0.0575%" height="15" fill="rgb(220,107,16)" fg:x="170587024951" fg:w="176806841"/><text x="55.7193%" y="1855.50"></text></g><g><title>ts_parser__recover (166,147,454 samples, 0.05%)</title><rect x="55.5268%" y="1845" width="0.0540%" height="15" fill="rgb(207,187,2)" fg:x="170763831792" fg:w="166147454"/><text x="55.7768%" y="1855.50"></text></g><g><title>ts_subtree_new_node (76,757,963 samples, 0.02%)</title><rect x="55.5559%" y="1829" width="0.0250%" height="15" fill="rgb(210,162,52)" fg:x="170853221283" fg:w="76757963"/><text x="55.8059%" y="1839.50"></text></g><g><title>ts_subtree_summarize_children (64,637,290 samples, 0.02%)</title><rect x="55.5598%" y="1813" width="0.0210%" height="15" fill="rgb(217,216,49)" fg:x="170865341956" fg:w="64637290"/><text x="55.8098%" y="1823.50"></text></g><g><title>ts_stack_remove_version (86,213,193 samples, 0.03%)</title><rect x="55.5866%" y="1845" width="0.0280%" height="15" fill="rgb(218,146,49)" fg:x="170947566751" fg:w="86213193"/><text x="55.8366%" y="1855.50"></text></g><g><title>stack_node_release (86,213,193 samples, 0.03%)</title><rect x="55.5866%" y="1829" width="0.0280%" height="15" fill="rgb(216,55,40)" fg:x="170947566751" fg:w="86213193"/><text x="55.8366%" y="1839.50"></text></g><g><title>ts_subtree_release (85,317,053 samples, 0.03%)</title><rect x="55.5868%" y="1813" width="0.0277%" height="15" fill="rgb(208,196,21)" fg:x="170948462891" fg:w="85317053"/><text x="55.8368%" y="1823.50"></text></g><g><title>ts_parser_parse (772,917,446 samples, 0.25%)</title><rect x="55.3822%" y="1861" width="0.2513%" height="15" fill="rgb(242,117,42)" fg:x="170319204178" fg:w="772917446"/><text x="55.6322%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (803,318,858 samples, 0.26%)</title><rect x="55.3729%" y="1877" width="0.2612%" height="15" fill="rgb(210,11,23)" fg:x="170290538502" fg:w="803318858"/><text x="55.6229%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (806,546,080 samples, 0.26%)</title><rect x="55.3729%" y="1893" width="0.2623%" height="15" fill="rgb(217,110,2)" fg:x="170290538502" fg:w="806546080"/><text x="55.6229%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (80,210,845 samples, 0.03%)</title><rect x="55.6442%" y="1877" width="0.0261%" height="15" fill="rgb(229,77,54)" fg:x="171124933869" fg:w="80210845"/><text x="55.8942%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (88,350,903 samples, 0.03%)</title><rect x="55.6437%" y="1893" width="0.0287%" height="15" fill="rgb(218,53,16)" fg:x="171123339711" fg:w="88350903"/><text x="55.8937%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (951,350,268 samples, 0.31%)</title><rect x="55.3635%" y="1909" width="0.3093%" height="15" fill="rgb(215,38,13)" fg:x="170261466984" fg:w="951350268"/><text x="55.6135%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (1,016,083,015 samples, 0.33%)</title><rect x="55.3431%" y="1941" width="0.3304%" height="15" fill="rgb(235,42,18)" fg:x="170198749406" fg:w="1016083015"/><text x="55.5931%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (1,016,083,015 samples, 0.33%)</title><rect x="55.3431%" y="1925" width="0.3304%" height="15" fill="rgb(219,66,54)" fg:x="170198749406" fg:w="1016083015"/><text x="55.5931%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,113,862,948 samples, 0.69%)</title><rect x="54.9901%" y="1957" width="0.6874%" height="15" fill="rgb(222,205,4)" fg:x="169113280716" fg:w="2113862948"/><text x="55.2401%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,143,921,209 samples, 0.70%)</title><rect x="54.9847%" y="1973" width="0.6971%" height="15" fill="rgb(227,213,46)" fg:x="169096589684" fg:w="2143921209"/><text x="55.2347%" y="1983.50"></text></g><g><title>__GI___clone3 (2,275,108,179 samples, 0.74%)</title><rect x="54.9842%" y="2053" width="0.7398%" height="15" fill="rgb(250,145,42)" fg:x="169095082363" fg:w="2275108179"/><text x="55.2342%" y="2063.50"></text></g><g><title>start_thread (2,275,108,179 samples, 0.74%)</title><rect x="54.9842%" y="2037" width="0.7398%" height="15" fill="rgb(219,15,2)" fg:x="169095082363" fg:w="2275108179"/><text x="55.2342%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,275,108,179 samples, 0.74%)</title><rect x="54.9842%" y="2021" width="0.7398%" height="15" fill="rgb(231,181,52)" fg:x="169095082363" fg:w="2275108179"/><text x="55.2342%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,275,108,179 samples, 0.74%)</title><rect x="54.9842%" y="2005" width="0.7398%" height="15" fill="rgb(235,1,42)" fg:x="169095082363" fg:w="2275108179"/><text x="55.2342%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,275,108,179 samples, 0.74%)</title><rect x="54.9842%" y="1989" width="0.7398%" height="15" fill="rgb(249,88,27)" fg:x="169095082363" fg:w="2275108179"/><text x="55.2342%" y="1999.50"></text></g><g><title>syscall (129,679,649 samples, 0.04%)</title><rect x="55.6818%" y="1973" width="0.0422%" height="15" fill="rgb(235,145,16)" fg:x="171240510893" fg:w="129679649"/><text x="55.9318%" y="1983.50"></text></g><g><title>[unknown] (128,729,112 samples, 0.04%)</title><rect x="55.6821%" y="1957" width="0.0419%" height="15" fill="rgb(237,114,19)" fg:x="171241461430" fg:w="128729112"/><text x="55.9321%" y="1967.50"></text></g><g><title>[unknown] (126,399,490 samples, 0.04%)</title><rect x="55.6829%" y="1941" width="0.0411%" height="15" fill="rgb(238,51,50)" fg:x="171243791052" fg:w="126399490"/><text x="55.9329%" y="1951.50"></text></g><g><title>[unknown] (122,205,438 samples, 0.04%)</title><rect x="55.6842%" y="1925" width="0.0397%" height="15" fill="rgb(205,194,25)" fg:x="171247985104" fg:w="122205438"/><text x="55.9342%" y="1935.50"></text></g><g><title>[unknown] (120,680,992 samples, 0.04%)</title><rect x="55.6847%" y="1909" width="0.0392%" height="15" fill="rgb(215,203,17)" fg:x="171249509550" fg:w="120680992"/><text x="55.9347%" y="1919.50"></text></g><g><title>[unknown] (114,936,920 samples, 0.04%)</title><rect x="55.6866%" y="1893" width="0.0374%" height="15" fill="rgb(233,112,49)" fg:x="171255253622" fg:w="114936920"/><text x="55.9366%" y="1903.50"></text></g><g><title>[unknown] (111,605,696 samples, 0.04%)</title><rect x="55.6877%" y="1877" width="0.0363%" height="15" fill="rgb(241,130,26)" fg:x="171258584846" fg:w="111605696"/><text x="55.9377%" y="1887.50"></text></g><g><title>[unknown] (103,204,207 samples, 0.03%)</title><rect x="55.6904%" y="1861" width="0.0336%" height="15" fill="rgb(252,223,19)" fg:x="171266986335" fg:w="103204207"/><text x="55.9404%" y="1871.50"></text></g><g><title>[unknown] (102,231,711 samples, 0.03%)</title><rect x="55.6907%" y="1845" width="0.0332%" height="15" fill="rgb(211,95,25)" fg:x="171267958831" fg:w="102231711"/><text x="55.9407%" y="1855.50"></text></g><g><title>[unknown] (97,848,711 samples, 0.03%)</title><rect x="55.6922%" y="1829" width="0.0318%" height="15" fill="rgb(251,182,27)" fg:x="171272341831" fg:w="97848711"/><text x="55.9422%" y="1839.50"></text></g><g><title>[unknown] (91,353,297 samples, 0.03%)</title><rect x="55.6943%" y="1813" width="0.0297%" height="15" fill="rgb(238,24,4)" fg:x="171278837245" fg:w="91353297"/><text x="55.9443%" y="1823.50"></text></g><g><title>[unknown] (89,023,003 samples, 0.03%)</title><rect x="55.6950%" y="1797" width="0.0289%" height="15" fill="rgb(224,220,25)" fg:x="171281167539" fg:w="89023003"/><text x="55.9450%" y="1807.50"></text></g><g><title>[unknown] (79,356,491 samples, 0.03%)</title><rect x="55.6982%" y="1781" width="0.0258%" height="15" fill="rgb(239,133,26)" fg:x="171290834051" fg:w="79356491"/><text x="55.9482%" y="1791.50"></text></g><g><title>[unknown] (72,761,326 samples, 0.02%)</title><rect x="55.7003%" y="1765" width="0.0237%" height="15" fill="rgb(211,94,48)" fg:x="171297429216" fg:w="72761326"/><text x="55.9503%" y="1775.50"></text></g><g><title>[unknown] (65,520,256 samples, 0.02%)</title><rect x="55.7027%" y="1749" width="0.0213%" height="15" fill="rgb(239,87,6)" fg:x="171304670286" fg:w="65520256"/><text x="55.9527%" y="1759.50"></text></g><g><title>[unknown] (54,120,186 samples, 0.02%)</title><rect x="55.7064%" y="1733" width="0.0176%" height="15" fill="rgb(227,62,0)" fg:x="171316070356" fg:w="54120186"/><text x="55.9564%" y="1743.50"></text></g><g><title>[unknown] (44,449,067 samples, 0.01%)</title><rect x="55.7095%" y="1717" width="0.0145%" height="15" fill="rgb(211,226,4)" fg:x="171325741475" fg:w="44449067"/><text x="55.9595%" y="1727.50"></text></g><g><title>Worker-26 (2,276,370,323 samples, 0.74%)</title><rect x="54.9839%" y="2069" width="0.7402%" height="15" fill="rgb(253,38,52)" fg:x="169094265846" fg:w="2276370323"/><text x="55.2339%" y="2079.50"></text></g><g><title>git2::repo::Repository::find_blob (33,093,549 samples, 0.01%)</title><rect x="55.7478%" y="1925" width="0.0108%" height="15" fill="rgb(229,126,40)" fg:x="171443434927" fg:w="33093549"/><text x="55.9978%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (33,093,549 samples, 0.01%)</title><rect x="55.7478%" y="1909" width="0.0108%" height="15" fill="rgb(229,165,44)" fg:x="171443434927" fg:w="33093549"/><text x="55.9978%" y="1919.50"></text></g><g><title>git_odb_read (33,093,549 samples, 0.01%)</title><rect x="55.7478%" y="1893" width="0.0108%" height="15" fill="rgb(247,95,47)" fg:x="171443434927" fg:w="33093549"/><text x="55.9978%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (33,093,549 samples, 0.01%)</title><rect x="55.7478%" y="1877" width="0.0108%" height="15" fill="rgb(216,140,30)" fg:x="171443434927" fg:w="33093549"/><text x="55.9978%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (33,093,549 samples, 0.01%)</title><rect x="55.7478%" y="1861" width="0.0108%" height="15" fill="rgb(246,214,8)" fg:x="171443434927" fg:w="33093549"/><text x="55.9978%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (33,093,549 samples, 0.01%)</title><rect x="55.7478%" y="1845" width="0.0108%" height="15" fill="rgb(227,224,15)" fg:x="171443434927" fg:w="33093549"/><text x="55.9978%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (56,120,975 samples, 0.02%)</title><rect x="55.7470%" y="1941" width="0.0182%" height="15" fill="rgb(233,175,4)" fg:x="171440890900" fg:w="56120975"/><text x="55.9970%" y="1951.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_index_text::_{{closure}} (32,517,595 samples, 0.01%)</title><rect x="55.7652%" y="1941" width="0.0106%" height="15" fill="rgb(221,66,45)" fg:x="171497011875" fg:w="32517595"/><text x="56.0152%" y="1951.50"></text></g><g><title>git2::repo::Repository::find_blob (30,843,009 samples, 0.01%)</title><rect x="55.7658%" y="1925" width="0.0100%" height="15" fill="rgb(221,178,18)" fg:x="171498686461" fg:w="30843009"/><text x="56.0158%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (30,843,009 samples, 0.01%)</title><rect x="55.7658%" y="1909" width="0.0100%" height="15" fill="rgb(213,81,29)" fg:x="171498686461" fg:w="30843009"/><text x="56.0158%" y="1919.50"></text></g><g><title>[libgit2.so.1.9.0] (42,866,301 samples, 0.01%)</title><rect x="55.7898%" y="1797" width="0.0139%" height="15" fill="rgb(220,89,49)" fg:x="171572589023" fg:w="42866301"/><text x="56.0398%" y="1807.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (49,280,877 samples, 0.02%)</title><rect x="55.7884%" y="1941" width="0.0160%" height="15" fill="rgb(227,60,33)" fg:x="171568172645" fg:w="49280877"/><text x="56.0384%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (49,280,877 samples, 0.02%)</title><rect x="55.7884%" y="1925" width="0.0160%" height="15" fill="rgb(205,113,12)" fg:x="171568172645" fg:w="49280877"/><text x="56.0384%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (44,864,499 samples, 0.01%)</title><rect x="55.7898%" y="1909" width="0.0146%" height="15" fill="rgb(211,32,1)" fg:x="171572589023" fg:w="44864499"/><text x="56.0398%" y="1919.50"></text></g><g><title>git_patch_from_buffers (44,864,499 samples, 0.01%)</title><rect x="55.7898%" y="1893" width="0.0146%" height="15" fill="rgb(246,2,12)" fg:x="171572589023" fg:w="44864499"/><text x="56.0398%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (44,864,499 samples, 0.01%)</title><rect x="55.7898%" y="1877" width="0.0146%" height="15" fill="rgb(243,37,27)" fg:x="171572589023" fg:w="44864499"/><text x="56.0398%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (44,864,499 samples, 0.01%)</title><rect x="55.7898%" y="1861" width="0.0146%" height="15" fill="rgb(248,211,31)" fg:x="171572589023" fg:w="44864499"/><text x="56.0398%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (44,864,499 samples, 0.01%)</title><rect x="55.7898%" y="1845" width="0.0146%" height="15" fill="rgb(242,146,47)" fg:x="171572589023" fg:w="44864499"/><text x="56.0398%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (44,864,499 samples, 0.01%)</title><rect x="55.7898%" y="1829" width="0.0146%" height="15" fill="rgb(206,70,20)" fg:x="171572589023" fg:w="44864499"/><text x="56.0398%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (44,864,499 samples, 0.01%)</title><rect x="55.7898%" y="1813" width="0.0146%" height="15" fill="rgb(215,10,51)" fg:x="171572589023" fg:w="44864499"/><text x="56.0398%" y="1823.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (83,336,045 samples, 0.03%)</title><rect x="55.8047%" y="1941" width="0.0271%" height="15" fill="rgb(243,178,53)" fg:x="171618492191" fg:w="83336045"/><text x="56.0547%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (74,830,535 samples, 0.02%)</title><rect x="55.8075%" y="1925" width="0.0243%" height="15" fill="rgb(233,221,20)" fg:x="171626997701" fg:w="74830535"/><text x="56.0575%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (81,198,982 samples, 0.03%)</title><rect x="55.8326%" y="1941" width="0.0264%" height="15" fill="rgb(218,95,35)" fg:x="171704087496" fg:w="81198982"/><text x="56.0826%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (32,844,617 samples, 0.01%)</title><rect x="55.8758%" y="1909" width="0.0107%" height="15" fill="rgb(229,13,5)" fg:x="171837116660" fg:w="32844617"/><text x="56.1258%" y="1919.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (114,599,448 samples, 0.04%)</title><rect x="55.8677%" y="1925" width="0.0373%" height="15" fill="rgb(252,164,30)" fg:x="171812181139" fg:w="114599448"/><text x="56.1177%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (157,774,745 samples, 0.05%)</title><rect x="55.8590%" y="1941" width="0.0513%" height="15" fill="rgb(232,68,36)" fg:x="171785286478" fg:w="157774745"/><text x="56.1090%" y="1951.50"></text></g><g><title>stack__iter.constprop.0 (51,451,473 samples, 0.02%)</title><rect x="55.9455%" y="1845" width="0.0167%" height="15" fill="rgb(219,59,54)" fg:x="172051437942" fg:w="51451473"/><text x="56.1955%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (87,525,355 samples, 0.03%)</title><rect x="55.9843%" y="1845" width="0.0285%" height="15" fill="rgb(250,92,33)" fg:x="172170795443" fg:w="87525355"/><text x="56.2343%" y="1855.50"></text></g><g><title>ts_lex (79,815,120 samples, 0.03%)</title><rect x="56.0226%" y="1829" width="0.0260%" height="15" fill="rgb(229,162,54)" fg:x="172288620941" fg:w="79815120"/><text x="56.2726%" y="1839.50"></text></g><g><title>callback__lexer_advance (42,050,882 samples, 0.01%)</title><rect x="56.0803%" y="1669" width="0.0137%" height="15" fill="rgb(244,114,52)" fg:x="172465930068" fg:w="42050882"/><text x="56.3303%" y="1679.50"></text></g><g><title>[perf-181794.map] (70,244,550 samples, 0.02%)</title><rect x="56.0743%" y="1701" width="0.0228%" height="15" fill="rgb(212,211,43)" fg:x="172447586960" fg:w="70244550"/><text x="56.3243%" y="1711.50"></text></g><g><title>wasmtime::runtime::trampoline::func::array_call_shim (66,595,716 samples, 0.02%)</title><rect x="56.0755%" y="1685" width="0.0217%" height="15" fill="rgb(226,147,8)" fg:x="172451235794" fg:w="66595716"/><text x="56.3255%" y="1695.50"></text></g><g><title>wasmtime_func_call_unchecked (103,299,275 samples, 0.03%)</title><rect x="56.0640%" y="1797" width="0.0336%" height="15" fill="rgb(226,23,13)" fg:x="172415790032" fg:w="103299275"/><text x="56.3140%" y="1807.50"></text></g><g><title>wasmtime::runtime::func::invoke_wasm_and_catch_traps (103,299,275 samples, 0.03%)</title><rect x="56.0640%" y="1781" width="0.0336%" height="15" fill="rgb(240,63,4)" fg:x="172415790032" fg:w="103299275"/><text x="56.3140%" y="1791.50"></text></g><g><title>wasmtime_setjmp_29_0_1 (100,837,961 samples, 0.03%)</title><rect x="56.0648%" y="1765" width="0.0328%" height="15" fill="rgb(221,1,32)" fg:x="172418251346" fg:w="100837961"/><text x="56.3148%" y="1775.50"></text></g><g><title>wasmtime_setjmp_inverted (100,837,961 samples, 0.03%)</title><rect x="56.0648%" y="1749" width="0.0328%" height="15" fill="rgb(242,117,10)" fg:x="172418251346" fg:w="100837961"/><text x="56.3148%" y="1759.50"></text></g><g><title>[perf-181794.map] (100,837,961 samples, 0.03%)</title><rect x="56.0648%" y="1733" width="0.0328%" height="15" fill="rgb(249,172,44)" fg:x="172418251346" fg:w="100837961"/><text x="56.3148%" y="1743.50"></text></g><g><title>[perf-181794.map] (100,837,961 samples, 0.03%)</title><rect x="56.0648%" y="1717" width="0.0328%" height="15" fill="rgb(244,46,45)" fg:x="172418251346" fg:w="100837961"/><text x="56.3148%" y="1727.50"></text></g><g><title>ts_wasm_store__call (111,866,185 samples, 0.04%)</title><rect x="56.0636%" y="1813" width="0.0364%" height="15" fill="rgb(206,43,17)" fg:x="172414505648" fg:w="111866185"/><text x="56.3136%" y="1823.50"></text></g><g><title>ts_wasm_store__call_lex_function (117,026,592 samples, 0.04%)</title><rect x="56.0627%" y="1829" width="0.0381%" height="15" fill="rgb(239,218,39)" fg:x="172411826705" fg:w="117026592"/><text x="56.3127%" y="1839.50"></text></g><g><title>ts_parser__lex (271,667,499 samples, 0.09%)</title><rect x="56.0128%" y="1845" width="0.0883%" height="15" fill="rgb(208,169,54)" fg:x="172258320798" fg:w="271667499"/><text x="56.2628%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (32,891,318 samples, 0.01%)</title><rect x="56.1135%" y="1845" width="0.0107%" height="15" fill="rgb(247,25,42)" fg:x="172568104117" fg:w="32891318"/><text x="56.3635%" y="1855.50"></text></g><g><title>ts_parser_parse (620,386,699 samples, 0.20%)</title><rect x="55.9357%" y="1861" width="0.2017%" height="15" fill="rgb(226,23,31)" fg:x="172021249338" fg:w="620386699"/><text x="56.1857%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (655,075,023 samples, 0.21%)</title><rect x="55.9248%" y="1877" width="0.2130%" height="15" fill="rgb(247,16,28)" fg:x="171987879179" fg:w="655075023"/><text x="56.1748%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (657,255,619 samples, 0.21%)</title><rect x="55.9248%" y="1893" width="0.2137%" height="15" fill="rgb(231,147,38)" fg:x="171987879179" fg:w="657255619"/><text x="56.1748%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (89,954,283 samples, 0.03%)</title><rect x="56.1446%" y="1877" width="0.0293%" height="15" fill="rgb(253,81,48)" fg:x="172663655169" fg:w="89954283"/><text x="56.3946%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (789,195,419 samples, 0.26%)</title><rect x="55.9194%" y="1909" width="0.2566%" height="15" fill="rgb(249,222,43)" fg:x="171971042056" fg:w="789195419"/><text x="56.1694%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (100,331,826 samples, 0.03%)</title><rect x="56.1434%" y="1893" width="0.0326%" height="15" fill="rgb(221,3,27)" fg:x="172659905649" fg:w="100331826"/><text x="56.3934%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (821,520,161 samples, 0.27%)</title><rect x="55.9103%" y="1925" width="0.2671%" height="15" fill="rgb(228,180,5)" fg:x="171943061223" fg:w="821520161"/><text x="56.1603%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (822,364,939 samples, 0.27%)</title><rect x="55.9103%" y="1941" width="0.2674%" height="15" fill="rgb(227,131,42)" fg:x="171943061223" fg:w="822364939"/><text x="56.1603%" y="1951.50"></text></g><g><title>ts_language_table_entry (31,107,174 samples, 0.01%)</title><rect x="56.2011%" y="1861" width="0.0101%" height="15" fill="rgb(212,3,39)" fg:x="172837375639" fg:w="31107174"/><text x="56.4511%" y="1871.50"></text></g><g><title>ts_malloc_default (46,197,136 samples, 0.02%)</title><rect x="56.2318%" y="1829" width="0.0150%" height="15" fill="rgb(226,45,5)" fg:x="172931942047" fg:w="46197136"/><text x="56.4818%" y="1839.50"></text></g><g><title>malloc (46,197,136 samples, 0.02%)</title><rect x="56.2318%" y="1813" width="0.0150%" height="15" fill="rgb(215,167,45)" fg:x="172931942047" fg:w="46197136"/><text x="56.4818%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (71,888,696 samples, 0.02%)</title><rect x="56.2252%" y="1845" width="0.0234%" height="15" fill="rgb(250,218,53)" fg:x="172911481888" fg:w="71888696"/><text x="56.4752%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (68,529,200 samples, 0.02%)</title><rect x="56.2673%" y="1845" width="0.0223%" height="15" fill="rgb(207,140,0)" fg:x="173041220365" fg:w="68529200"/><text x="56.5173%" y="1855.50"></text></g><g><title>set_contains (35,319,684 samples, 0.01%)</title><rect x="56.2935%" y="1829" width="0.0115%" height="15" fill="rgb(238,133,51)" fg:x="173121529051" fg:w="35319684"/><text x="56.5435%" y="1839.50"></text></g><g><title>ts_lex (76,546,021 samples, 0.02%)</title><rect x="56.3061%" y="1829" width="0.0249%" height="15" fill="rgb(218,203,53)" fg:x="173160374215" fg:w="76546021"/><text x="56.5561%" y="1839.50"></text></g><g><title>ts_parser__lex (172,252,673 samples, 0.06%)</title><rect x="56.2896%" y="1845" width="0.0560%" height="15" fill="rgb(226,184,25)" fg:x="173109749565" fg:w="172252673"/><text x="56.5396%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (31,885,135 samples, 0.01%)</title><rect x="56.3643%" y="1845" width="0.0104%" height="15" fill="rgb(231,121,21)" fg:x="173339504309" fg:w="31885135"/><text x="56.6143%" y="1855.50"></text></g><g><title>ts_subtree_new_node (34,466,599 samples, 0.01%)</title><rect x="56.3763%" y="1845" width="0.0112%" height="15" fill="rgb(251,14,34)" fg:x="173376407890" fg:w="34466599"/><text x="56.6263%" y="1855.50"></text></g><g><title>ts_subtree_summarize_children (31,128,284 samples, 0.01%)</title><rect x="56.3774%" y="1829" width="0.0101%" height="15" fill="rgb(249,193,11)" fg:x="173379746205" fg:w="31128284"/><text x="56.6274%" y="1839.50"></text></g><g><title>ts_parser_parse (542,119,045 samples, 0.18%)</title><rect x="56.2116%" y="1861" width="0.1763%" height="15" fill="rgb(220,172,37)" fg:x="172869869251" fg:w="542119045"/><text x="56.4616%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (576,953,901 samples, 0.19%)</title><rect x="56.2007%" y="1877" width="0.1876%" height="15" fill="rgb(231,229,43)" fg:x="172836276296" fg:w="576953901"/><text x="56.4507%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (578,981,520 samples, 0.19%)</title><rect x="56.2004%" y="1893" width="0.1883%" height="15" fill="rgb(250,161,5)" fg:x="172835277897" fg:w="578981520"/><text x="56.4504%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (67,804,102 samples, 0.02%)</title><rect x="56.3966%" y="1877" width="0.0220%" height="15" fill="rgb(218,225,18)" fg:x="173438797314" fg:w="67804102"/><text x="56.6466%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (696,654,439 samples, 0.23%)</title><rect x="56.1932%" y="1909" width="0.2265%" height="15" fill="rgb(245,45,42)" fg:x="172813247825" fg:w="696654439"/><text x="56.4432%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (73,395,724 samples, 0.02%)</title><rect x="56.3959%" y="1893" width="0.0239%" height="15" fill="rgb(211,115,1)" fg:x="173436506540" fg:w="73395724"/><text x="56.6459%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (745,662,101 samples, 0.24%)</title><rect x="56.1777%" y="1941" width="0.2425%" height="15" fill="rgb(248,133,52)" fg:x="172765426162" fg:w="745662101"/><text x="56.4277%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (745,662,101 samples, 0.24%)</title><rect x="56.1777%" y="1925" width="0.2425%" height="15" fill="rgb(238,100,21)" fg:x="172765426162" fg:w="745662101"/><text x="56.4277%" y="1935.50"></text></g><g><title>language::Language::with_outline_query (60,666,303 samples, 0.02%)</title><rect x="56.4495%" y="1909" width="0.0197%" height="15" fill="rgb(247,144,11)" fg:x="173601516955" fg:w="60666303"/><text x="56.6995%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (60,666,303 samples, 0.02%)</title><rect x="56.4495%" y="1893" width="0.0197%" height="15" fill="rgb(206,164,16)" fg:x="173601516955" fg:w="60666303"/><text x="56.6995%" y="1903.50"></text></g><g><title>ts_query_new (60,666,303 samples, 0.02%)</title><rect x="56.4495%" y="1877" width="0.0197%" height="15" fill="rgb(222,34,3)" fg:x="173601516955" fg:w="60666303"/><text x="56.6995%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (57,244,024 samples, 0.02%)</title><rect x="56.4506%" y="1861" width="0.0186%" height="15" fill="rgb(248,82,4)" fg:x="173604939234" fg:w="57244024"/><text x="56.7006%" y="1871.50"></text></g><g><title>language::Language::with_queries (164,862,417 samples, 0.05%)</title><rect x="56.4226%" y="1925" width="0.0536%" height="15" fill="rgb(228,81,46)" fg:x="173518571624" fg:w="164862417"/><text x="56.6726%" y="1935.50"></text></g><g><title>language::language_registry::LanguageRegistry::load_language::_{{closure}} (171,108,256 samples, 0.06%)</title><rect x="56.4209%" y="1941" width="0.0556%" height="15" fill="rgb(227,67,47)" fg:x="173513463406" fg:w="171108256"/><text x="56.6709%" y="1951.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold::flatten::_{{closure}} (80,848,049 samples, 0.03%)</title><rect x="56.4897%" y="1877" width="0.0263%" height="15" fill="rgb(215,93,53)" fg:x="173724906067" fg:w="80848049"/><text x="56.7397%" y="1887.50"></text></g><g><title>sysinfo::unix::linux::process::retrieve_all_new_process_info (51,752,911 samples, 0.02%)</title><rect x="56.4991%" y="1861" width="0.0168%" height="15" fill="rgb(248,194,39)" fg:x="173754001205" fg:w="51752911"/><text x="56.7491%" y="1871.50"></text></g><g><title>sysinfo::unix::linux::process::update_proc_info (51,752,911 samples, 0.02%)</title><rect x="56.4991%" y="1845" width="0.0168%" height="15" fill="rgb(215,5,19)" fg:x="173754001205" fg:w="51752911"/><text x="56.7491%" y="1855.50"></text></g><g><title>&lt;core::iter::adapters::filter_map::FilterMap&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (99,231,207 samples, 0.03%)</title><rect x="56.4890%" y="1893" width="0.0323%" height="15" fill="rgb(226,215,51)" fg:x="173722811382" fg:w="99231207"/><text x="56.7390%" y="1903.50"></text></g><g><title>sysinfo::common::system::System::new_with_specifics (100,454,595 samples, 0.03%)</title><rect x="56.4890%" y="1925" width="0.0327%" height="15" fill="rgb(225,56,26)" fg:x="173722811382" fg:w="100454595"/><text x="56.7390%" y="1935.50"></text></g><g><title>sysinfo::common::system::System::refresh_processes_specifics (100,454,595 samples, 0.03%)</title><rect x="56.4890%" y="1909" width="0.0327%" height="15" fill="rgb(222,75,29)" fg:x="173722811382" fg:w="100454595"/><text x="56.7390%" y="1919.50"></text></g><g><title>terminal::TerminalBuilder::new::_{{closure}} (118,309,707 samples, 0.04%)</title><rect x="56.4868%" y="1941" width="0.0385%" height="15" fill="rgb(236,139,6)" fg:x="173716059368" fg:w="118309707"/><text x="56.7368%" y="1951.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,446,399,439 samples, 0.80%)</title><rect x="55.7302%" y="1957" width="0.7955%" height="15" fill="rgb(223,137,36)" fg:x="171389231802" fg:w="2446399439"/><text x="55.9802%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,473,799,606 samples, 0.80%)</title><rect x="55.7245%" y="1973" width="0.8044%" height="15" fill="rgb(226,99,2)" fg:x="171371924736" fg:w="2473799606"/><text x="55.9745%" y="1983.50"></text></g><g><title>__GI___clone3 (2,572,398,031 samples, 0.84%)</title><rect x="55.7241%" y="2053" width="0.8365%" height="15" fill="rgb(206,133,23)" fg:x="171370636169" fg:w="2572398031"/><text x="55.9741%" y="2063.50"></text></g><g><title>start_thread (2,572,398,031 samples, 0.84%)</title><rect x="55.7241%" y="2037" width="0.8365%" height="15" fill="rgb(243,173,15)" fg:x="171370636169" fg:w="2572398031"/><text x="55.9741%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,572,398,031 samples, 0.84%)</title><rect x="55.7241%" y="2021" width="0.8365%" height="15" fill="rgb(228,69,28)" fg:x="171370636169" fg:w="2572398031"/><text x="55.9741%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,572,398,031 samples, 0.84%)</title><rect x="55.7241%" y="2005" width="0.8365%" height="15" fill="rgb(212,51,22)" fg:x="171370636169" fg:w="2572398031"/><text x="55.9741%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,572,398,031 samples, 0.84%)</title><rect x="55.7241%" y="1989" width="0.8365%" height="15" fill="rgb(227,113,0)" fg:x="171370636169" fg:w="2572398031"/><text x="55.9741%" y="1999.50"></text></g><g><title>syscall (97,309,858 samples, 0.03%)</title><rect x="56.5289%" y="1973" width="0.0316%" height="15" fill="rgb(252,84,27)" fg:x="173845724342" fg:w="97309858"/><text x="56.7789%" y="1983.50"></text></g><g><title>[unknown] (95,592,592 samples, 0.03%)</title><rect x="56.5295%" y="1957" width="0.0311%" height="15" fill="rgb(223,145,39)" fg:x="173847441608" fg:w="95592592"/><text x="56.7795%" y="1967.50"></text></g><g><title>[unknown] (93,497,475 samples, 0.03%)</title><rect x="56.5302%" y="1941" width="0.0304%" height="15" fill="rgb(239,219,30)" fg:x="173849536725" fg:w="93497475"/><text x="56.7802%" y="1951.50"></text></g><g><title>[unknown] (91,622,357 samples, 0.03%)</title><rect x="56.5308%" y="1925" width="0.0298%" height="15" fill="rgb(224,196,39)" fg:x="173851411843" fg:w="91622357"/><text x="56.7808%" y="1935.50"></text></g><g><title>[unknown] (89,402,913 samples, 0.03%)</title><rect x="56.5315%" y="1909" width="0.0291%" height="15" fill="rgb(205,35,43)" fg:x="173853631287" fg:w="89402913"/><text x="56.7815%" y="1919.50"></text></g><g><title>[unknown] (86,897,228 samples, 0.03%)</title><rect x="56.5323%" y="1893" width="0.0283%" height="15" fill="rgb(228,201,21)" fg:x="173856136972" fg:w="86897228"/><text x="56.7823%" y="1903.50"></text></g><g><title>[unknown] (82,396,798 samples, 0.03%)</title><rect x="56.5338%" y="1877" width="0.0268%" height="15" fill="rgb(237,118,16)" fg:x="173860637402" fg:w="82396798"/><text x="56.7838%" y="1887.50"></text></g><g><title>[unknown] (72,855,976 samples, 0.02%)</title><rect x="56.5369%" y="1861" width="0.0237%" height="15" fill="rgb(241,17,19)" fg:x="173870178224" fg:w="72855976"/><text x="56.7869%" y="1871.50"></text></g><g><title>[unknown] (69,212,821 samples, 0.02%)</title><rect x="56.5381%" y="1845" width="0.0225%" height="15" fill="rgb(214,10,25)" fg:x="173873821379" fg:w="69212821"/><text x="56.7881%" y="1855.50"></text></g><g><title>[unknown] (67,450,785 samples, 0.02%)</title><rect x="56.5387%" y="1829" width="0.0219%" height="15" fill="rgb(238,37,29)" fg:x="173875583415" fg:w="67450785"/><text x="56.7887%" y="1839.50"></text></g><g><title>[unknown] (67,046,043 samples, 0.02%)</title><rect x="56.5388%" y="1813" width="0.0218%" height="15" fill="rgb(253,83,25)" fg:x="173875988157" fg:w="67046043"/><text x="56.7888%" y="1823.50"></text></g><g><title>[unknown] (66,051,984 samples, 0.02%)</title><rect x="56.5391%" y="1797" width="0.0215%" height="15" fill="rgb(234,192,12)" fg:x="173876982216" fg:w="66051984"/><text x="56.7891%" y="1807.50"></text></g><g><title>[unknown] (62,590,406 samples, 0.02%)</title><rect x="56.5402%" y="1781" width="0.0204%" height="15" fill="rgb(241,216,45)" fg:x="173880443794" fg:w="62590406"/><text x="56.7902%" y="1791.50"></text></g><g><title>[unknown] (54,142,807 samples, 0.02%)</title><rect x="56.5430%" y="1765" width="0.0176%" height="15" fill="rgb(242,22,33)" fg:x="173888891393" fg:w="54142807"/><text x="56.7930%" y="1775.50"></text></g><g><title>[unknown] (52,659,467 samples, 0.02%)</title><rect x="56.5435%" y="1749" width="0.0171%" height="15" fill="rgb(231,105,49)" fg:x="173890374733" fg:w="52659467"/><text x="56.7935%" y="1759.50"></text></g><g><title>[unknown] (40,434,050 samples, 0.01%)</title><rect x="56.5474%" y="1733" width="0.0131%" height="15" fill="rgb(218,204,15)" fg:x="173902600150" fg:w="40434050"/><text x="56.7974%" y="1743.50"></text></g><g><title>[unknown] (35,744,031 samples, 0.01%)</title><rect x="56.5490%" y="1717" width="0.0116%" height="15" fill="rgb(235,138,41)" fg:x="173907290169" fg:w="35744031"/><text x="56.7990%" y="1727.50"></text></g><g><title>Worker-27 (2,586,230,637 samples, 0.84%)</title><rect x="55.7241%" y="2069" width="0.8410%" height="15" fill="rgb(246,0,9)" fg:x="171370636169" fg:w="2586230637"/><text x="55.9741%" y="2079.50"></text></g><g><title>[libgit2.so.1.9.0] (32,869,055 samples, 0.01%)</title><rect x="56.5814%" y="1829" width="0.0107%" height="15" fill="rgb(210,74,4)" fg:x="174007088818" fg:w="32869055"/><text x="56.8314%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (44,624,289 samples, 0.01%)</title><rect x="56.5814%" y="1925" width="0.0145%" height="15" fill="rgb(250,60,41)" fg:x="174007088818" fg:w="44624289"/><text x="56.8314%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (44,624,289 samples, 0.01%)</title><rect x="56.5814%" y="1909" width="0.0145%" height="15" fill="rgb(220,115,12)" fg:x="174007088818" fg:w="44624289"/><text x="56.8314%" y="1919.50"></text></g><g><title>git_odb_read (44,624,289 samples, 0.01%)</title><rect x="56.5814%" y="1893" width="0.0145%" height="15" fill="rgb(237,100,13)" fg:x="174007088818" fg:w="44624289"/><text x="56.8314%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (44,624,289 samples, 0.01%)</title><rect x="56.5814%" y="1877" width="0.0145%" height="15" fill="rgb(213,55,26)" fg:x="174007088818" fg:w="44624289"/><text x="56.8314%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (44,624,289 samples, 0.01%)</title><rect x="56.5814%" y="1861" width="0.0145%" height="15" fill="rgb(216,17,4)" fg:x="174007088818" fg:w="44624289"/><text x="56.8314%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (44,624,289 samples, 0.01%)</title><rect x="56.5814%" y="1845" width="0.0145%" height="15" fill="rgb(220,153,47)" fg:x="174007088818" fg:w="44624289"/><text x="56.8314%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (73,918,240 samples, 0.02%)</title><rect x="56.5810%" y="1941" width="0.0240%" height="15" fill="rgb(215,131,9)" fg:x="174005900797" fg:w="73918240"/><text x="56.8310%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (37,304,499 samples, 0.01%)</title><rect x="56.6266%" y="1797" width="0.0121%" height="15" fill="rgb(233,46,42)" fg:x="174145909680" fg:w="37304499"/><text x="56.8766%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (44,339,962 samples, 0.01%)</title><rect x="56.6257%" y="1829" width="0.0144%" height="15" fill="rgb(226,86,7)" fg:x="174143371475" fg:w="44339962"/><text x="56.8757%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (44,339,962 samples, 0.01%)</title><rect x="56.6257%" y="1813" width="0.0144%" height="15" fill="rgb(239,226,21)" fg:x="174143371475" fg:w="44339962"/><text x="56.8757%" y="1823.50"></text></g><g><title>git2::patch::Patch::from_buffers (45,569,469 samples, 0.01%)</title><rect x="56.6257%" y="1909" width="0.0148%" height="15" fill="rgb(244,137,22)" fg:x="174143371475" fg:w="45569469"/><text x="56.8757%" y="1919.50"></text></g><g><title>git_patch_from_buffers (45,569,469 samples, 0.01%)</title><rect x="56.6257%" y="1893" width="0.0148%" height="15" fill="rgb(211,139,35)" fg:x="174143371475" fg:w="45569469"/><text x="56.8757%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (45,569,469 samples, 0.01%)</title><rect x="56.6257%" y="1877" width="0.0148%" height="15" fill="rgb(214,62,50)" fg:x="174143371475" fg:w="45569469"/><text x="56.8757%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (45,569,469 samples, 0.01%)</title><rect x="56.6257%" y="1861" width="0.0148%" height="15" fill="rgb(212,113,44)" fg:x="174143371475" fg:w="45569469"/><text x="56.8757%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (45,569,469 samples, 0.01%)</title><rect x="56.6257%" y="1845" width="0.0148%" height="15" fill="rgb(226,150,43)" fg:x="174143371475" fg:w="45569469"/><text x="56.8757%" y="1855.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (49,968,970 samples, 0.02%)</title><rect x="56.6250%" y="1941" width="0.0162%" height="15" fill="rgb(250,71,37)" fg:x="174140981106" fg:w="49968970"/><text x="56.8750%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (49,968,970 samples, 0.02%)</title><rect x="56.6250%" y="1925" width="0.0162%" height="15" fill="rgb(219,76,19)" fg:x="174140981106" fg:w="49968970"/><text x="56.8750%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (65,026,996 samples, 0.02%)</title><rect x="56.6412%" y="1941" width="0.0211%" height="15" fill="rgb(250,39,11)" fg:x="174190950076" fg:w="65026996"/><text x="56.8912%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (56,500,530 samples, 0.02%)</title><rect x="56.6440%" y="1925" width="0.0184%" height="15" fill="rgb(230,64,31)" fg:x="174199476542" fg:w="56500530"/><text x="56.8940%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (76,600,486 samples, 0.02%)</title><rect x="56.6631%" y="1941" width="0.0249%" height="15" fill="rgb(208,222,23)" fg:x="174258284160" fg:w="76600486"/><text x="56.9131%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (35,068,932 samples, 0.01%)</title><rect x="56.7105%" y="1909" width="0.0114%" height="15" fill="rgb(227,125,18)" fg:x="174403985297" fg:w="35068932"/><text x="56.9605%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (164,664,009 samples, 0.05%)</title><rect x="56.6884%" y="1941" width="0.0535%" height="15" fill="rgb(234,210,9)" fg:x="174336046778" fg:w="164664009"/><text x="56.9384%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (134,758,440 samples, 0.04%)</title><rect x="56.6981%" y="1925" width="0.0438%" height="15" fill="rgb(217,127,24)" fg:x="174365952347" fg:w="134758440"/><text x="56.9481%" y="1935.50"></text></g><g><title>ts_language_table_entry (32,615,964 samples, 0.01%)</title><rect x="56.7578%" y="1861" width="0.0106%" height="15" fill="rgb(239,141,48)" fg:x="174549538605" fg:w="32615964"/><text x="57.0078%" y="1871.50"></text></g><g><title>ts_malloc_default (38,118,716 samples, 0.01%)</title><rect x="56.7881%" y="1829" width="0.0124%" height="15" fill="rgb(227,109,8)" fg:x="174642693621" fg:w="38118716"/><text x="57.0381%" y="1839.50"></text></g><g><title>malloc (38,118,716 samples, 0.01%)</title><rect x="56.7881%" y="1813" width="0.0124%" height="15" fill="rgb(235,184,23)" fg:x="174642693621" fg:w="38118716"/><text x="57.0381%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (67,411,823 samples, 0.02%)</title><rect x="56.7813%" y="1845" width="0.0219%" height="15" fill="rgb(227,226,48)" fg:x="174621875051" fg:w="67411823"/><text x="57.0313%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (41,331,720 samples, 0.01%)</title><rect x="56.8207%" y="1845" width="0.0134%" height="15" fill="rgb(206,150,11)" fg:x="174743094816" fg:w="41331720"/><text x="57.0707%" y="1855.50"></text></g><g><title>ts_lex (79,219,859 samples, 0.03%)</title><rect x="56.8503%" y="1829" width="0.0258%" height="15" fill="rgb(254,2,33)" fg:x="174833887028" fg:w="79219859"/><text x="57.1003%" y="1839.50"></text></g><g><title>ts_parser__lex (165,721,174 samples, 0.05%)</title><rect x="56.8342%" y="1845" width="0.0539%" height="15" fill="rgb(243,160,20)" fg:x="174784426536" fg:w="165721174"/><text x="57.0842%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (39,226,217 samples, 0.01%)</title><rect x="56.8954%" y="1845" width="0.0128%" height="15" fill="rgb(218,208,30)" fg:x="174972600376" fg:w="39226217"/><text x="57.1454%" y="1855.50"></text></g><g><title>ts_subtree_new_node (32,074,548 samples, 0.01%)</title><rect x="56.9095%" y="1845" width="0.0104%" height="15" fill="rgb(224,120,49)" fg:x="175016153094" fg:w="32074548"/><text x="57.1595%" y="1855.50"></text></g><g><title>ts_parser_parse (465,773,857 samples, 0.15%)</title><rect x="56.7692%" y="1861" width="0.1515%" height="15" fill="rgb(246,12,2)" fg:x="174584543424" fg:w="465773857"/><text x="57.0192%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (501,933,418 samples, 0.16%)</title><rect x="56.7578%" y="1893" width="0.1632%" height="15" fill="rgb(236,117,3)" fg:x="174549538605" fg:w="501933418"/><text x="57.0078%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (501,933,418 samples, 0.16%)</title><rect x="56.7578%" y="1877" width="0.1632%" height="15" fill="rgb(216,128,52)" fg:x="174549538605" fg:w="501933418"/><text x="57.0078%" y="1887.50"></text></g><g><title>ts_tree_cursor_current_status (32,084,946 samples, 0.01%)</title><rect x="56.9372%" y="1861" width="0.0104%" height="15" fill="rgb(246,145,19)" fg:x="175101223707" fg:w="32084946"/><text x="57.1872%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (106,588,568 samples, 0.03%)</title><rect x="56.9263%" y="1877" width="0.0347%" height="15" fill="rgb(222,11,46)" fg:x="175067865149" fg:w="106588568"/><text x="57.1763%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (683,224,581 samples, 0.22%)</title><rect x="56.7419%" y="1925" width="0.2222%" height="15" fill="rgb(245,82,36)" fg:x="174500710787" fg:w="683224581"/><text x="56.9919%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (666,573,569 samples, 0.22%)</title><rect x="56.7473%" y="1909" width="0.2167%" height="15" fill="rgb(250,73,51)" fg:x="174517361799" fg:w="666573569"/><text x="56.9973%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (117,370,299 samples, 0.04%)</title><rect x="56.9259%" y="1893" width="0.0382%" height="15" fill="rgb(221,189,23)" fg:x="175066565069" fg:w="117370299"/><text x="57.1759%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (685,346,792 samples, 0.22%)</title><rect x="56.7419%" y="1941" width="0.2229%" height="15" fill="rgb(210,33,7)" fg:x="174500710787" fg:w="685346792"/><text x="56.9919%" y="1951.50"></text></g><g><title>ts_malloc_default (48,997,794 samples, 0.02%)</title><rect x="57.0099%" y="1829" width="0.0159%" height="15" fill="rgb(210,107,22)" fg:x="175324978684" fg:w="48997794"/><text x="57.2599%" y="1839.50"></text></g><g><title>malloc (48,997,794 samples, 0.02%)</title><rect x="57.0099%" y="1813" width="0.0159%" height="15" fill="rgb(222,116,37)" fg:x="175324978684" fg:w="48997794"/><text x="57.2599%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (70,245,747 samples, 0.02%)</title><rect x="57.0064%" y="1845" width="0.0228%" height="15" fill="rgb(254,17,48)" fg:x="175314218749" fg:w="70245747"/><text x="57.2564%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (62,072,843 samples, 0.02%)</title><rect x="57.0508%" y="1845" width="0.0202%" height="15" fill="rgb(224,36,32)" fg:x="175450502383" fg:w="62072843"/><text x="57.3008%" y="1855.50"></text></g><g><title>ts_lex (66,837,339 samples, 0.02%)</title><rect x="57.0825%" y="1829" width="0.0217%" height="15" fill="rgb(232,90,46)" fg:x="175548201292" fg:w="66837339"/><text x="57.3325%" y="1839.50"></text></g><g><title>ts_parser__lex (141,621,270 samples, 0.05%)</title><rect x="57.0709%" y="1845" width="0.0461%" height="15" fill="rgb(241,66,40)" fg:x="175512575226" fg:w="141621270"/><text x="57.3209%" y="1855.50"></text></g><g><title>ts_parser_parse (460,057,135 samples, 0.15%)</title><rect x="56.9941%" y="1861" width="0.1496%" height="15" fill="rgb(249,184,29)" fg:x="175276298944" fg:w="460057135"/><text x="57.2441%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (483,930,643 samples, 0.16%)</title><rect x="56.9868%" y="1877" width="0.1574%" height="15" fill="rgb(231,181,1)" fg:x="175253689353" fg:w="483930643"/><text x="57.2368%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (487,023,352 samples, 0.16%)</title><rect x="56.9868%" y="1893" width="0.1584%" height="15" fill="rgb(224,94,2)" fg:x="175253689353" fg:w="487023352"/><text x="57.2368%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (73,571,681 samples, 0.02%)</title><rect x="57.1526%" y="1877" width="0.0239%" height="15" fill="rgb(229,170,15)" fg:x="175763804069" fg:w="73571681"/><text x="57.4026%" y="1887.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (653,804,919 samples, 0.21%)</title><rect x="56.9648%" y="1941" width="0.2126%" height="15" fill="rgb(240,127,35)" fg:x="175186057579" fg:w="653804919"/><text x="57.2148%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (652,741,111 samples, 0.21%)</title><rect x="56.9651%" y="1925" width="0.2123%" height="15" fill="rgb(248,196,34)" fg:x="175187121387" fg:w="652741111"/><text x="57.2151%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (607,173,477 samples, 0.20%)</title><rect x="56.9799%" y="1909" width="0.1974%" height="15" fill="rgb(236,137,7)" fg:x="175232689021" fg:w="607173477"/><text x="57.2299%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (81,893,286 samples, 0.03%)</title><rect x="57.1507%" y="1893" width="0.0266%" height="15" fill="rgb(235,127,16)" fg:x="175757969212" fg:w="81893286"/><text x="57.4007%" y="1903.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,876,760,417 samples, 0.61%)</title><rect x="56.5707%" y="1957" width="0.6103%" height="15" fill="rgb(250,192,54)" fg:x="173974236513" fg:w="1876760417"/><text x="56.8207%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,904,641,909 samples, 0.62%)</title><rect x="56.5663%" y="1973" width="0.6193%" height="15" fill="rgb(218,98,20)" fg:x="173960571063" fg:w="1904641909"/><text x="56.8163%" y="1983.50"></text></g><g><title>Worker-28 (2,016,440,055 samples, 0.66%)</title><rect x="56.5651%" y="2069" width="0.6557%" height="15" fill="rgb(230,176,47)" fg:x="173956866806" fg:w="2016440055"/><text x="56.8151%" y="2079.50"></text></g><g><title>__GI___clone3 (2,016,440,055 samples, 0.66%)</title><rect x="56.5651%" y="2053" width="0.6557%" height="15" fill="rgb(244,2,33)" fg:x="173956866806" fg:w="2016440055"/><text x="56.8151%" y="2063.50"></text></g><g><title>start_thread (2,016,440,055 samples, 0.66%)</title><rect x="56.5651%" y="2037" width="0.6557%" height="15" fill="rgb(231,100,17)" fg:x="173956866806" fg:w="2016440055"/><text x="56.8151%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,016,440,055 samples, 0.66%)</title><rect x="56.5651%" y="2021" width="0.6557%" height="15" fill="rgb(245,23,12)" fg:x="173956866806" fg:w="2016440055"/><text x="56.8151%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,016,440,055 samples, 0.66%)</title><rect x="56.5651%" y="2005" width="0.6557%" height="15" fill="rgb(249,55,22)" fg:x="173956866806" fg:w="2016440055"/><text x="56.8151%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,016,440,055 samples, 0.66%)</title><rect x="56.5651%" y="1989" width="0.6557%" height="15" fill="rgb(207,134,9)" fg:x="173956866806" fg:w="2016440055"/><text x="56.8151%" y="1999.50"></text></g><g><title>syscall (108,093,889 samples, 0.04%)</title><rect x="57.1856%" y="1973" width="0.0351%" height="15" fill="rgb(218,134,0)" fg:x="175865212972" fg:w="108093889"/><text x="57.4356%" y="1983.50"></text></g><g><title>[unknown] (102,444,902 samples, 0.03%)</title><rect x="57.1875%" y="1957" width="0.0333%" height="15" fill="rgb(213,212,33)" fg:x="175870861959" fg:w="102444902"/><text x="57.4375%" y="1967.50"></text></g><g><title>[unknown] (94,202,337 samples, 0.03%)</title><rect x="57.1901%" y="1941" width="0.0306%" height="15" fill="rgb(252,106,18)" fg:x="175879104524" fg:w="94202337"/><text x="57.4401%" y="1951.50"></text></g><g><title>[unknown] (91,024,396 samples, 0.03%)</title><rect x="57.1912%" y="1925" width="0.0296%" height="15" fill="rgb(208,126,42)" fg:x="175882282465" fg:w="91024396"/><text x="57.4412%" y="1935.50"></text></g><g><title>[unknown] (89,355,122 samples, 0.03%)</title><rect x="57.1917%" y="1909" width="0.0291%" height="15" fill="rgb(246,175,29)" fg:x="175883951739" fg:w="89355122"/><text x="57.4417%" y="1919.50"></text></g><g><title>[unknown] (82,246,884 samples, 0.03%)</title><rect x="57.1940%" y="1893" width="0.0267%" height="15" fill="rgb(215,13,50)" fg:x="175891059977" fg:w="82246884"/><text x="57.4440%" y="1903.50"></text></g><g><title>[unknown] (79,422,870 samples, 0.03%)</title><rect x="57.1949%" y="1877" width="0.0258%" height="15" fill="rgb(216,172,15)" fg:x="175893883991" fg:w="79422870"/><text x="57.4449%" y="1887.50"></text></g><g><title>[unknown] (71,221,581 samples, 0.02%)</title><rect x="57.1976%" y="1861" width="0.0232%" height="15" fill="rgb(212,103,13)" fg:x="175902085280" fg:w="71221581"/><text x="57.4476%" y="1871.50"></text></g><g><title>[unknown] (70,409,623 samples, 0.02%)</title><rect x="57.1979%" y="1845" width="0.0229%" height="15" fill="rgb(231,171,36)" fg:x="175902897238" fg:w="70409623"/><text x="57.4479%" y="1855.50"></text></g><g><title>[unknown] (68,414,367 samples, 0.02%)</title><rect x="57.1985%" y="1829" width="0.0222%" height="15" fill="rgb(250,123,20)" fg:x="175904892494" fg:w="68414367"/><text x="57.4485%" y="1839.50"></text></g><g><title>[unknown] (65,301,806 samples, 0.02%)</title><rect x="57.1995%" y="1813" width="0.0212%" height="15" fill="rgb(212,53,50)" fg:x="175908005055" fg:w="65301806"/><text x="57.4495%" y="1823.50"></text></g><g><title>[unknown] (64,229,764 samples, 0.02%)</title><rect x="57.1999%" y="1797" width="0.0209%" height="15" fill="rgb(243,54,12)" fg:x="175909077097" fg:w="64229764"/><text x="57.4499%" y="1807.50"></text></g><g><title>[unknown] (58,908,068 samples, 0.02%)</title><rect x="57.2016%" y="1781" width="0.0192%" height="15" fill="rgb(234,101,34)" fg:x="175914398793" fg:w="58908068"/><text x="57.4516%" y="1791.50"></text></g><g><title>[unknown] (53,476,097 samples, 0.02%)</title><rect x="57.2034%" y="1765" width="0.0174%" height="15" fill="rgb(254,67,22)" fg:x="175919830764" fg:w="53476097"/><text x="57.4534%" y="1775.50"></text></g><g><title>[unknown] (44,344,343 samples, 0.01%)</title><rect x="57.2063%" y="1749" width="0.0144%" height="15" fill="rgb(250,35,47)" fg:x="175928962518" fg:w="44344343"/><text x="57.4563%" y="1759.50"></text></g><g><title>[unknown] (35,156,998 samples, 0.01%)</title><rect x="57.2093%" y="1733" width="0.0114%" height="15" fill="rgb(226,126,38)" fg:x="175938149863" fg:w="35156998"/><text x="57.4593%" y="1743.50"></text></g><g><title>[libgit2.so.1.9.0] (36,938,211 samples, 0.01%)</title><rect x="57.2446%" y="1829" width="0.0120%" height="15" fill="rgb(216,138,53)" fg:x="176046675595" fg:w="36938211"/><text x="57.4946%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (48,463,520 samples, 0.02%)</title><rect x="57.2443%" y="1925" width="0.0158%" height="15" fill="rgb(246,199,43)" fg:x="176045606495" fg:w="48463520"/><text x="57.4943%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (48,463,520 samples, 0.02%)</title><rect x="57.2443%" y="1909" width="0.0158%" height="15" fill="rgb(232,125,11)" fg:x="176045606495" fg:w="48463520"/><text x="57.4943%" y="1919.50"></text></g><g><title>git_odb_read (48,463,520 samples, 0.02%)</title><rect x="57.2443%" y="1893" width="0.0158%" height="15" fill="rgb(218,219,45)" fg:x="176045606495" fg:w="48463520"/><text x="57.4943%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (48,463,520 samples, 0.02%)</title><rect x="57.2443%" y="1877" width="0.0158%" height="15" fill="rgb(216,102,54)" fg:x="176045606495" fg:w="48463520"/><text x="57.4943%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (48,463,520 samples, 0.02%)</title><rect x="57.2443%" y="1861" width="0.0158%" height="15" fill="rgb(250,228,7)" fg:x="176045606495" fg:w="48463520"/><text x="57.4943%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (48,463,520 samples, 0.02%)</title><rect x="57.2443%" y="1845" width="0.0158%" height="15" fill="rgb(226,125,25)" fg:x="176045606495" fg:w="48463520"/><text x="57.4943%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (79,030,963 samples, 0.03%)</title><rect x="57.2441%" y="1941" width="0.0257%" height="15" fill="rgb(224,165,27)" fg:x="176044942732" fg:w="79030963"/><text x="57.4941%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (34,017,022 samples, 0.01%)</title><rect x="57.2890%" y="1797" width="0.0111%" height="15" fill="rgb(233,86,3)" fg:x="176183028533" fg:w="34017022"/><text x="57.5390%" y="1807.50"></text></g><g><title>git2::patch::Patch::from_buffers (37,205,387 samples, 0.01%)</title><rect x="57.2883%" y="1909" width="0.0121%" height="15" fill="rgb(228,116,20)" fg:x="176180959823" fg:w="37205387"/><text x="57.5383%" y="1919.50"></text></g><g><title>git_patch_from_buffers (37,205,387 samples, 0.01%)</title><rect x="57.2883%" y="1893" width="0.0121%" height="15" fill="rgb(209,192,17)" fg:x="176180959823" fg:w="37205387"/><text x="57.5383%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (37,205,387 samples, 0.01%)</title><rect x="57.2883%" y="1877" width="0.0121%" height="15" fill="rgb(224,88,34)" fg:x="176180959823" fg:w="37205387"/><text x="57.5383%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (37,205,387 samples, 0.01%)</title><rect x="57.2883%" y="1861" width="0.0121%" height="15" fill="rgb(233,38,6)" fg:x="176180959823" fg:w="37205387"/><text x="57.5383%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (37,205,387 samples, 0.01%)</title><rect x="57.2883%" y="1845" width="0.0121%" height="15" fill="rgb(212,59,30)" fg:x="176180959823" fg:w="37205387"/><text x="57.5383%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (37,205,387 samples, 0.01%)</title><rect x="57.2883%" y="1829" width="0.0121%" height="15" fill="rgb(213,80,3)" fg:x="176180959823" fg:w="37205387"/><text x="57.5383%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (37,205,387 samples, 0.01%)</title><rect x="57.2883%" y="1813" width="0.0121%" height="15" fill="rgb(251,178,7)" fg:x="176180959823" fg:w="37205387"/><text x="57.5383%" y="1823.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (40,330,858 samples, 0.01%)</title><rect x="57.2876%" y="1941" width="0.0131%" height="15" fill="rgb(213,154,26)" fg:x="176178815430" fg:w="40330858"/><text x="57.5376%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (39,080,545 samples, 0.01%)</title><rect x="57.2880%" y="1925" width="0.0127%" height="15" fill="rgb(238,165,49)" fg:x="176180065743" fg:w="39080545"/><text x="57.5380%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (85,759,241 samples, 0.03%)</title><rect x="57.3007%" y="1941" width="0.0279%" height="15" fill="rgb(248,91,46)" fg:x="176219146288" fg:w="85759241"/><text x="57.5507%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (74,673,905 samples, 0.02%)</title><rect x="57.3043%" y="1925" width="0.0243%" height="15" fill="rgb(244,21,52)" fg:x="176230231624" fg:w="74673905"/><text x="57.5543%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (68,127,503 samples, 0.02%)</title><rect x="57.3296%" y="1941" width="0.0222%" height="15" fill="rgb(247,122,20)" fg:x="176307943292" fg:w="68127503"/><text x="57.5796%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (31,501,598 samples, 0.01%)</title><rect x="57.3523%" y="1925" width="0.0102%" height="15" fill="rgb(218,27,9)" fg:x="176377916694" fg:w="31501598"/><text x="57.6023%" y="1935.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (36,791,202 samples, 0.01%)</title><rect x="57.3777%" y="1909" width="0.0120%" height="15" fill="rgb(246,7,6)" fg:x="176455886004" fg:w="36791202"/><text x="57.6277%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (183,881,966 samples, 0.06%)</title><rect x="57.3517%" y="1941" width="0.0598%" height="15" fill="rgb(227,135,54)" fg:x="176376070795" fg:w="183881966"/><text x="57.6017%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (150,534,469 samples, 0.05%)</title><rect x="57.3626%" y="1925" width="0.0489%" height="15" fill="rgb(247,14,11)" fg:x="176409418292" fg:w="150534469"/><text x="57.6126%" y="1935.50"></text></g><g><title>ts_malloc_default (43,168,591 samples, 0.01%)</title><rect x="57.4489%" y="1829" width="0.0140%" height="15" fill="rgb(206,149,34)" fg:x="176675010919" fg:w="43168591"/><text x="57.6989%" y="1839.50"></text></g><g><title>malloc (41,160,596 samples, 0.01%)</title><rect x="57.4496%" y="1813" width="0.0134%" height="15" fill="rgb(227,228,4)" fg:x="176677018914" fg:w="41160596"/><text x="57.6996%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (66,022,102 samples, 0.02%)</title><rect x="57.4426%" y="1845" width="0.0215%" height="15" fill="rgb(238,218,28)" fg:x="176655495946" fg:w="66022102"/><text x="57.6926%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (35,158,481 samples, 0.01%)</title><rect x="57.4787%" y="1845" width="0.0114%" height="15" fill="rgb(252,86,40)" fg:x="176766646048" fg:w="35158481"/><text x="57.7287%" y="1855.50"></text></g><g><title>ts_lex (78,313,800 samples, 0.03%)</title><rect x="57.5038%" y="1829" width="0.0255%" height="15" fill="rgb(251,225,11)" fg:x="176843587068" fg:w="78313800"/><text x="57.7538%" y="1839.50"></text></g><g><title>ts_parser__lex (159,418,907 samples, 0.05%)</title><rect x="57.4902%" y="1845" width="0.0518%" height="15" fill="rgb(206,46,49)" fg:x="176801804529" fg:w="159418907"/><text x="57.7402%" y="1855.50"></text></g><g><title>ts_parser_parse (431,799,946 samples, 0.14%)</title><rect x="57.4341%" y="1861" width="0.1404%" height="15" fill="rgb(245,128,24)" fg:x="176629255194" fg:w="431799946"/><text x="57.6841%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (461,375,438 samples, 0.15%)</title><rect x="57.4259%" y="1877" width="0.1500%" height="15" fill="rgb(219,177,34)" fg:x="176604042835" fg:w="461375438"/><text x="57.6759%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (463,615,463 samples, 0.15%)</title><rect x="57.4255%" y="1893" width="0.1508%" height="15" fill="rgb(218,60,48)" fg:x="176602875683" fg:w="463615463"/><text x="57.6755%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (81,505,719 samples, 0.03%)</title><rect x="57.5860%" y="1877" width="0.0265%" height="15" fill="rgb(221,11,5)" fg:x="177096575058" fg:w="81505719"/><text x="57.8360%" y="1887.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (629,894,734 samples, 0.20%)</title><rect x="57.4115%" y="1941" width="0.2048%" height="15" fill="rgb(220,148,13)" fg:x="176559952761" fg:w="629894734"/><text x="57.6615%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (628,813,576 samples, 0.20%)</title><rect x="57.4119%" y="1925" width="0.2045%" height="15" fill="rgb(210,16,3)" fg:x="176561033919" fg:w="628813576"/><text x="57.6619%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (608,826,458 samples, 0.20%)</title><rect x="57.4184%" y="1909" width="0.1980%" height="15" fill="rgb(236,80,2)" fg:x="176581021037" fg:w="608826458"/><text x="57.6684%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (97,706,001 samples, 0.03%)</title><rect x="57.5846%" y="1893" width="0.0318%" height="15" fill="rgb(239,129,19)" fg:x="177092141494" fg:w="97706001"/><text x="57.8346%" y="1903.50"></text></g><g><title>ts_malloc_default (53,880,269 samples, 0.02%)</title><rect x="57.6628%" y="1829" width="0.0175%" height="15" fill="rgb(220,106,35)" fg:x="177332621042" fg:w="53880269"/><text x="57.9128%" y="1839.50"></text></g><g><title>malloc (53,880,269 samples, 0.02%)</title><rect x="57.6628%" y="1813" width="0.0175%" height="15" fill="rgb(252,139,45)" fg:x="177332621042" fg:w="53880269"/><text x="57.9128%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (76,256,864 samples, 0.02%)</title><rect x="57.6564%" y="1845" width="0.0248%" height="15" fill="rgb(229,8,36)" fg:x="177312890959" fg:w="76256864"/><text x="57.9064%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (69,333,645 samples, 0.02%)</title><rect x="57.7046%" y="1845" width="0.0225%" height="15" fill="rgb(230,126,33)" fg:x="177461119730" fg:w="69333645"/><text x="57.9546%" y="1855.50"></text></g><g><title>set_contains (34,065,499 samples, 0.01%)</title><rect x="57.7332%" y="1829" width="0.0111%" height="15" fill="rgb(239,140,21)" fg:x="177549165345" fg:w="34065499"/><text x="57.9832%" y="1839.50"></text></g><g><title>ts_lex (80,468,210 samples, 0.03%)</title><rect x="57.7453%" y="1829" width="0.0262%" height="15" fill="rgb(254,104,9)" fg:x="177586458011" fg:w="80468210"/><text x="57.9953%" y="1839.50"></text></g><g><title>ts_parser__lex (174,514,420 samples, 0.06%)</title><rect x="57.7271%" y="1845" width="0.0567%" height="15" fill="rgb(239,52,14)" fg:x="177530453375" fg:w="174514420"/><text x="57.9771%" y="1855.50"></text></g><g><title>ts_parser_parse (493,109,005 samples, 0.16%)</title><rect x="57.6457%" y="1861" width="0.1603%" height="15" fill="rgb(208,227,44)" fg:x="177280151836" fg:w="493109005"/><text x="57.8957%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (515,559,129 samples, 0.17%)</title><rect x="57.6387%" y="1877" width="0.1676%" height="15" fill="rgb(246,18,19)" fg:x="177258476350" fg:w="515559129"/><text x="57.8887%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (518,649,483 samples, 0.17%)</title><rect x="57.6387%" y="1893" width="0.1686%" height="15" fill="rgb(235,228,25)" fg:x="177258476350" fg:w="518649483"/><text x="57.8887%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (88,886,128 samples, 0.03%)</title><rect x="57.8183%" y="1877" width="0.0289%" height="15" fill="rgb(240,156,20)" fg:x="177810962921" fg:w="88886128"/><text x="58.0683%" y="1887.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (716,930,203 samples, 0.23%)</title><rect x="57.6163%" y="1941" width="0.2331%" height="15" fill="rgb(224,8,20)" fg:x="177189847495" fg:w="716930203"/><text x="57.8663%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (716,930,203 samples, 0.23%)</title><rect x="57.6163%" y="1925" width="0.2331%" height="15" fill="rgb(214,12,52)" fg:x="177189847495" fg:w="716930203"/><text x="57.8663%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (670,616,935 samples, 0.22%)</title><rect x="57.6314%" y="1909" width="0.2181%" height="15" fill="rgb(211,220,47)" fg:x="177236160763" fg:w="670616935"/><text x="57.8814%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (97,991,506 samples, 0.03%)</title><rect x="57.8176%" y="1893" width="0.0319%" height="15" fill="rgb(250,173,5)" fg:x="177808786192" fg:w="97991506"/><text x="58.0676%" y="1903.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,941,151,695 samples, 0.63%)</title><rect x="57.2261%" y="1957" width="0.6312%" height="15" fill="rgb(250,125,52)" fg:x="175989605245" fg:w="1941151695"/><text x="57.4761%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,965,409,346 samples, 0.64%)</title><rect x="57.2215%" y="1973" width="0.6391%" height="15" fill="rgb(209,133,18)" fg:x="175975580019" fg:w="1965409346"/><text x="57.4715%" y="1983.50"></text></g><g><title>Worker-29 (2,081,128,673 samples, 0.68%)</title><rect x="57.2208%" y="2069" width="0.6767%" height="15" fill="rgb(216,173,22)" fg:x="175973306861" fg:w="2081128673"/><text x="57.4708%" y="2079.50"></text></g><g><title>__GI___clone3 (2,080,107,047 samples, 0.68%)</title><rect x="57.2211%" y="2053" width="0.6764%" height="15" fill="rgb(205,3,22)" fg:x="175974328487" fg:w="2080107047"/><text x="57.4711%" y="2063.50"></text></g><g><title>start_thread (2,080,107,047 samples, 0.68%)</title><rect x="57.2211%" y="2037" width="0.6764%" height="15" fill="rgb(248,22,20)" fg:x="175974328487" fg:w="2080107047"/><text x="57.4711%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,080,107,047 samples, 0.68%)</title><rect x="57.2211%" y="2021" width="0.6764%" height="15" fill="rgb(233,6,29)" fg:x="175974328487" fg:w="2080107047"/><text x="57.4711%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,080,107,047 samples, 0.68%)</title><rect x="57.2211%" y="2005" width="0.6764%" height="15" fill="rgb(240,22,54)" fg:x="175974328487" fg:w="2080107047"/><text x="57.4711%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,080,107,047 samples, 0.68%)</title><rect x="57.2211%" y="1989" width="0.6764%" height="15" fill="rgb(231,133,32)" fg:x="175974328487" fg:w="2080107047"/><text x="57.4711%" y="1999.50"></text></g><g><title>syscall (113,446,169 samples, 0.04%)</title><rect x="57.8606%" y="1973" width="0.0369%" height="15" fill="rgb(248,193,4)" fg:x="177940989365" fg:w="113446169"/><text x="58.1106%" y="1983.50"></text></g><g><title>[unknown] (104,155,231 samples, 0.03%)</title><rect x="57.8636%" y="1957" width="0.0339%" height="15" fill="rgb(211,178,46)" fg:x="177950280303" fg:w="104155231"/><text x="58.1136%" y="1967.50"></text></g><g><title>[unknown] (101,927,479 samples, 0.03%)</title><rect x="57.8643%" y="1941" width="0.0331%" height="15" fill="rgb(224,5,42)" fg:x="177952508055" fg:w="101927479"/><text x="58.1143%" y="1951.50"></text></g><g><title>[unknown] (97,879,450 samples, 0.03%)</title><rect x="57.8657%" y="1925" width="0.0318%" height="15" fill="rgb(239,176,25)" fg:x="177956556084" fg:w="97879450"/><text x="58.1157%" y="1935.50"></text></g><g><title>[unknown] (96,527,655 samples, 0.03%)</title><rect x="57.8661%" y="1909" width="0.0314%" height="15" fill="rgb(245,187,50)" fg:x="177957907879" fg:w="96527655"/><text x="58.1161%" y="1919.50"></text></g><g><title>[unknown] (92,851,584 samples, 0.03%)</title><rect x="57.8673%" y="1893" width="0.0302%" height="15" fill="rgb(248,24,15)" fg:x="177961583950" fg:w="92851584"/><text x="58.1173%" y="1903.50"></text></g><g><title>[unknown] (91,896,470 samples, 0.03%)</title><rect x="57.8676%" y="1877" width="0.0299%" height="15" fill="rgb(205,166,13)" fg:x="177962539064" fg:w="91896470"/><text x="58.1176%" y="1887.50"></text></g><g><title>[unknown] (85,682,059 samples, 0.03%)</title><rect x="57.8696%" y="1861" width="0.0279%" height="15" fill="rgb(208,114,23)" fg:x="177968753475" fg:w="85682059"/><text x="58.1196%" y="1871.50"></text></g><g><title>[unknown] (82,773,945 samples, 0.03%)</title><rect x="57.8706%" y="1845" width="0.0269%" height="15" fill="rgb(239,127,18)" fg:x="177971661589" fg:w="82773945"/><text x="58.1206%" y="1855.50"></text></g><g><title>[unknown] (76,034,423 samples, 0.02%)</title><rect x="57.8728%" y="1829" width="0.0247%" height="15" fill="rgb(219,154,28)" fg:x="177978401111" fg:w="76034423"/><text x="58.1228%" y="1839.50"></text></g><g><title>[unknown] (73,758,678 samples, 0.02%)</title><rect x="57.8735%" y="1813" width="0.0240%" height="15" fill="rgb(225,157,23)" fg:x="177980676856" fg:w="73758678"/><text x="58.1235%" y="1823.50"></text></g><g><title>[unknown] (69,208,509 samples, 0.02%)</title><rect x="57.8750%" y="1797" width="0.0225%" height="15" fill="rgb(219,8,6)" fg:x="177985227025" fg:w="69208509"/><text x="58.1250%" y="1807.50"></text></g><g><title>[unknown] (65,935,658 samples, 0.02%)</title><rect x="57.8760%" y="1781" width="0.0214%" height="15" fill="rgb(212,47,6)" fg:x="177988499876" fg:w="65935658"/><text x="58.1260%" y="1791.50"></text></g><g><title>[unknown] (63,137,845 samples, 0.02%)</title><rect x="57.8769%" y="1765" width="0.0205%" height="15" fill="rgb(224,190,4)" fg:x="177991297689" fg:w="63137845"/><text x="58.1269%" y="1775.50"></text></g><g><title>[unknown] (58,464,821 samples, 0.02%)</title><rect x="57.8785%" y="1749" width="0.0190%" height="15" fill="rgb(239,183,29)" fg:x="177995970713" fg:w="58464821"/><text x="58.1285%" y="1759.50"></text></g><g><title>[unknown] (46,631,739 samples, 0.02%)</title><rect x="57.8823%" y="1733" width="0.0152%" height="15" fill="rgb(213,57,7)" fg:x="178007803795" fg:w="46631739"/><text x="58.1323%" y="1743.50"></text></g><g><title>[unknown] (39,626,906 samples, 0.01%)</title><rect x="57.8846%" y="1717" width="0.0129%" height="15" fill="rgb(216,148,1)" fg:x="178014808628" fg:w="39626906"/><text x="58.1346%" y="1727.50"></text></g><g><title>[unknown] (32,633,917 samples, 0.01%)</title><rect x="57.8869%" y="1701" width="0.0106%" height="15" fill="rgb(236,182,29)" fg:x="178021801617" fg:w="32633917"/><text x="58.1369%" y="1711.50"></text></g><g><title>git2::repo::Repository::find_blob (35,517,518 samples, 0.01%)</title><rect x="57.9176%" y="1925" width="0.0115%" height="15" fill="rgb(244,120,48)" fg:x="178116372763" fg:w="35517518"/><text x="58.1676%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (35,517,518 samples, 0.01%)</title><rect x="57.9176%" y="1909" width="0.0115%" height="15" fill="rgb(206,71,34)" fg:x="178116372763" fg:w="35517518"/><text x="58.1676%" y="1919.50"></text></g><g><title>git_odb_read (35,517,518 samples, 0.01%)</title><rect x="57.9176%" y="1893" width="0.0115%" height="15" fill="rgb(242,32,6)" fg:x="178116372763" fg:w="35517518"/><text x="58.1676%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (35,517,518 samples, 0.01%)</title><rect x="57.9176%" y="1877" width="0.0115%" height="15" fill="rgb(241,35,3)" fg:x="178116372763" fg:w="35517518"/><text x="58.1676%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (35,517,518 samples, 0.01%)</title><rect x="57.9176%" y="1861" width="0.0115%" height="15" fill="rgb(222,62,19)" fg:x="178116372763" fg:w="35517518"/><text x="58.1676%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (35,517,518 samples, 0.01%)</title><rect x="57.9176%" y="1845" width="0.0115%" height="15" fill="rgb(223,110,41)" fg:x="178116372763" fg:w="35517518"/><text x="58.1676%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (63,191,644 samples, 0.02%)</title><rect x="57.9176%" y="1941" width="0.0205%" height="15" fill="rgb(208,224,4)" fg:x="178116372763" fg:w="63191644"/><text x="58.1676%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (31,358,008 samples, 0.01%)</title><rect x="57.9389%" y="1813" width="0.0102%" height="15" fill="rgb(241,137,19)" fg:x="178181948088" fg:w="31358008"/><text x="58.1889%" y="1823.50"></text></g><g><title>[libgit2.so.1.9.0] (42,675,643 samples, 0.01%)</title><rect x="57.9389%" y="1829" width="0.0139%" height="15" fill="rgb(244,24,17)" fg:x="178181948088" fg:w="42675643"/><text x="58.1889%" y="1839.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_index_text::_{{closure}} (50,503,813 samples, 0.02%)</title><rect x="57.9382%" y="1941" width="0.0164%" height="15" fill="rgb(245,178,49)" fg:x="178179564407" fg:w="50503813"/><text x="58.1882%" y="1951.50"></text></g><g><title>git2::repo::Repository::find_blob (48,120,132 samples, 0.02%)</title><rect x="57.9389%" y="1925" width="0.0156%" height="15" fill="rgb(219,160,38)" fg:x="178181948088" fg:w="48120132"/><text x="58.1889%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (48,120,132 samples, 0.02%)</title><rect x="57.9389%" y="1909" width="0.0156%" height="15" fill="rgb(228,137,14)" fg:x="178181948088" fg:w="48120132"/><text x="58.1889%" y="1919.50"></text></g><g><title>git_odb_read (48,120,132 samples, 0.02%)</title><rect x="57.9389%" y="1893" width="0.0156%" height="15" fill="rgb(237,134,11)" fg:x="178181948088" fg:w="48120132"/><text x="58.1889%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (48,120,132 samples, 0.02%)</title><rect x="57.9389%" y="1877" width="0.0156%" height="15" fill="rgb(211,126,44)" fg:x="178181948088" fg:w="48120132"/><text x="58.1889%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (48,120,132 samples, 0.02%)</title><rect x="57.9389%" y="1861" width="0.0156%" height="15" fill="rgb(226,171,33)" fg:x="178181948088" fg:w="48120132"/><text x="58.1889%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (48,120,132 samples, 0.02%)</title><rect x="57.9389%" y="1845" width="0.0156%" height="15" fill="rgb(253,99,13)" fg:x="178181948088" fg:w="48120132"/><text x="58.1889%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (45,605,042 samples, 0.01%)</title><rect x="57.9727%" y="1813" width="0.0148%" height="15" fill="rgb(244,48,7)" fg:x="178285782404" fg:w="45605042"/><text x="58.2227%" y="1823.50"></text></g><g><title>[libgit2.so.1.9.0] (44,394,447 samples, 0.01%)</title><rect x="57.9731%" y="1797" width="0.0144%" height="15" fill="rgb(244,217,54)" fg:x="178286992999" fg:w="44394447"/><text x="58.2231%" y="1807.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (50,919,537 samples, 0.02%)</title><rect x="57.9717%" y="1941" width="0.0166%" height="15" fill="rgb(224,15,18)" fg:x="178282708231" fg:w="50919537"/><text x="58.2217%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (50,919,537 samples, 0.02%)</title><rect x="57.9717%" y="1925" width="0.0166%" height="15" fill="rgb(244,99,12)" fg:x="178282708231" fg:w="50919537"/><text x="58.2217%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (47,845,364 samples, 0.02%)</title><rect x="57.9727%" y="1909" width="0.0156%" height="15" fill="rgb(233,226,8)" fg:x="178285782404" fg:w="47845364"/><text x="58.2227%" y="1919.50"></text></g><g><title>git_patch_from_buffers (47,845,364 samples, 0.02%)</title><rect x="57.9727%" y="1893" width="0.0156%" height="15" fill="rgb(229,211,3)" fg:x="178285782404" fg:w="47845364"/><text x="58.2227%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (47,845,364 samples, 0.02%)</title><rect x="57.9727%" y="1877" width="0.0156%" height="15" fill="rgb(216,140,21)" fg:x="178285782404" fg:w="47845364"/><text x="58.2227%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (47,845,364 samples, 0.02%)</title><rect x="57.9727%" y="1861" width="0.0156%" height="15" fill="rgb(234,122,30)" fg:x="178285782404" fg:w="47845364"/><text x="58.2227%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (47,845,364 samples, 0.02%)</title><rect x="57.9727%" y="1845" width="0.0156%" height="15" fill="rgb(236,25,46)" fg:x="178285782404" fg:w="47845364"/><text x="58.2227%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (47,845,364 samples, 0.02%)</title><rect x="57.9727%" y="1829" width="0.0156%" height="15" fill="rgb(217,52,54)" fg:x="178285782404" fg:w="47845364"/><text x="58.2227%" y="1839.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (77,689,863 samples, 0.03%)</title><rect x="57.9909%" y="1925" width="0.0253%" height="15" fill="rgb(222,29,26)" fg:x="178341661736" fg:w="77689863"/><text x="58.2409%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (86,754,626 samples, 0.03%)</title><rect x="57.9887%" y="1941" width="0.0282%" height="15" fill="rgb(216,177,29)" fg:x="178334989607" fg:w="86754626"/><text x="58.2387%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (79,342,998 samples, 0.03%)</title><rect x="58.0186%" y="1941" width="0.0258%" height="15" fill="rgb(247,136,51)" fg:x="178427001671" fg:w="79342998"/><text x="58.2686%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (34,475,870 samples, 0.01%)</title><rect x="58.0663%" y="1909" width="0.0112%" height="15" fill="rgb(231,47,47)" fg:x="178573624708" fg:w="34475870"/><text x="58.3163%" y="1919.50"></text></g><g><title>util::paths::PathMatcher::check_with_end_separator (30,774,169 samples, 0.01%)</title><rect x="58.0778%" y="1909" width="0.0100%" height="15" fill="rgb(211,192,36)" fg:x="178609031154" fg:w="30774169"/><text x="58.3278%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (170,156,955 samples, 0.06%)</title><rect x="58.0447%" y="1941" width="0.0553%" height="15" fill="rgb(229,156,32)" fg:x="178507340736" fg:w="170156955"/><text x="58.2947%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (146,142,245 samples, 0.05%)</title><rect x="58.0526%" y="1925" width="0.0475%" height="15" fill="rgb(248,213,20)" fg:x="178531355446" fg:w="146142245"/><text x="58.3026%" y="1935.50"></text></g><g><title>stack__iter.constprop.0 (35,093,021 samples, 0.01%)</title><rect x="58.1441%" y="1845" width="0.0114%" height="15" fill="rgb(217,64,7)" fg:x="178812937613" fg:w="35093021"/><text x="58.3941%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (61,618,133 samples, 0.02%)</title><rect x="58.1655%" y="1845" width="0.0200%" height="15" fill="rgb(232,142,8)" fg:x="178878562149" fg:w="61618133"/><text x="58.4155%" y="1855.50"></text></g><g><title>ts_lex (67,303,431 samples, 0.02%)</title><rect x="58.1979%" y="1829" width="0.0219%" height="15" fill="rgb(224,92,44)" fg:x="178978424824" fg:w="67303431"/><text x="58.4479%" y="1839.50"></text></g><g><title>ts_parser__lex (150,768,686 samples, 0.05%)</title><rect x="58.1855%" y="1845" width="0.0490%" height="15" fill="rgb(214,169,17)" fg:x="178940180282" fg:w="150768686"/><text x="58.4355%" y="1855.50"></text></g><g><title>ts_parser_parse (390,524,023 samples, 0.13%)</title><rect x="58.1336%" y="1861" width="0.1270%" height="15" fill="rgb(210,59,37)" fg:x="178780499379" fg:w="390524023"/><text x="58.3836%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (423,078,654 samples, 0.14%)</title><rect x="58.1233%" y="1893" width="0.1376%" height="15" fill="rgb(214,116,48)" fg:x="178749065873" fg:w="423078654"/><text x="58.3733%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (423,078,654 samples, 0.14%)</title><rect x="58.1233%" y="1877" width="0.1376%" height="15" fill="rgb(244,191,6)" fg:x="178749065873" fg:w="423078654"/><text x="58.3733%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (71,781,597 samples, 0.02%)</title><rect x="58.2685%" y="1877" width="0.0233%" height="15" fill="rgb(241,50,52)" fg:x="179195375867" fg:w="71781597"/><text x="58.5185%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (563,873,109 samples, 0.18%)</title><rect x="58.1118%" y="1909" width="0.1834%" height="15" fill="rgb(236,75,39)" fg:x="178713409366" fg:w="563873109"/><text x="58.3618%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (85,712,890 samples, 0.03%)</title><rect x="58.2672%" y="1893" width="0.0279%" height="15" fill="rgb(236,99,0)" fg:x="179191569585" fg:w="85712890"/><text x="58.5172%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (602,156,937 samples, 0.20%)</title><rect x="58.1001%" y="1925" width="0.1958%" height="15" fill="rgb(207,202,15)" fg:x="178677497691" fg:w="602156937"/><text x="58.3501%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (603,227,181 samples, 0.20%)</title><rect x="58.1001%" y="1941" width="0.1961%" height="15" fill="rgb(233,207,14)" fg:x="178677497691" fg:w="603227181"/><text x="58.3501%" y="1951.50"></text></g><g><title>ts_language_table_entry (39,446,036 samples, 0.01%)</title><rect x="58.3177%" y="1861" width="0.0128%" height="15" fill="rgb(226,27,51)" fg:x="179346739889" fg:w="39446036"/><text x="58.5677%" y="1871.50"></text></g><g><title>_int_malloc (33,110,431 samples, 0.01%)</title><rect x="58.3760%" y="1797" width="0.0108%" height="15" fill="rgb(206,104,42)" fg:x="179525910166" fg:w="33110431"/><text x="58.6260%" y="1807.50"></text></g><g><title>ts_malloc_default (91,909,061 samples, 0.03%)</title><rect x="58.3572%" y="1829" width="0.0299%" height="15" fill="rgb(212,225,4)" fg:x="179468288128" fg:w="91909061"/><text x="58.6072%" y="1839.50"></text></g><g><title>malloc (91,909,061 samples, 0.03%)</title><rect x="58.3572%" y="1813" width="0.0299%" height="15" fill="rgb(233,96,42)" fg:x="179468288128" fg:w="91909061"/><text x="58.6072%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (122,079,201 samples, 0.04%)</title><rect x="58.3485%" y="1845" width="0.0397%" height="15" fill="rgb(229,21,32)" fg:x="179441403842" fg:w="122079201"/><text x="58.5985%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (64,819,741 samples, 0.02%)</title><rect x="58.4071%" y="1845" width="0.0211%" height="15" fill="rgb(226,216,24)" fg:x="179621608515" fg:w="64819741"/><text x="58.6571%" y="1855.50"></text></g><g><title>ts_lex (95,966,543 samples, 0.03%)</title><rect x="58.4454%" y="1829" width="0.0312%" height="15" fill="rgb(221,163,17)" fg:x="179739596069" fg:w="95966543"/><text x="58.6954%" y="1839.50"></text></g><g><title>ts_parser__lex (180,399,748 samples, 0.06%)</title><rect x="58.4281%" y="1845" width="0.0587%" height="15" fill="rgb(216,216,42)" fg:x="179686428256" fg:w="180399748"/><text x="58.6781%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (40,164,045 samples, 0.01%)</title><rect x="58.4923%" y="1845" width="0.0131%" height="15" fill="rgb(240,118,7)" fg:x="179883684743" fg:w="40164045"/><text x="58.7423%" y="1855.50"></text></g><g><title>ts_subtree_new_node (31,250,382 samples, 0.01%)</title><rect x="58.5079%" y="1845" width="0.0102%" height="15" fill="rgb(221,67,37)" fg:x="179931820687" fg:w="31250382"/><text x="58.7579%" y="1855.50"></text></g><g><title>ts_parser_parse (574,837,929 samples, 0.19%)</title><rect x="58.3316%" y="1861" width="0.1869%" height="15" fill="rgb(241,32,44)" fg:x="179389507313" fg:w="574837929"/><text x="58.5816%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (621,932,746 samples, 0.20%)</title><rect x="58.3173%" y="1877" width="0.2022%" height="15" fill="rgb(235,204,43)" fg:x="179345668727" fg:w="621932746"/><text x="58.5673%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (625,451,402 samples, 0.20%)</title><rect x="58.3171%" y="1893" width="0.2034%" height="15" fill="rgb(213,116,10)" fg:x="179345064996" fg:w="625451402"/><text x="58.5671%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (93,791,612 samples, 0.03%)</title><rect x="58.5299%" y="1877" width="0.0305%" height="15" fill="rgb(239,15,48)" fg:x="179999207294" fg:w="93791612"/><text x="58.7799%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (104,078,324 samples, 0.03%)</title><rect x="58.5286%" y="1893" width="0.0338%" height="15" fill="rgb(207,123,36)" fg:x="179995245963" fg:w="104078324"/><text x="58.7786%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (819,472,707 samples, 0.27%)</title><rect x="58.2962%" y="1941" width="0.2665%" height="15" fill="rgb(209,103,30)" fg:x="179280724872" fg:w="819472707"/><text x="58.5462%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (819,472,707 samples, 0.27%)</title><rect x="58.2962%" y="1925" width="0.2665%" height="15" fill="rgb(238,100,19)" fg:x="179280724872" fg:w="819472707"/><text x="58.5462%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (774,828,455 samples, 0.25%)</title><rect x="58.3107%" y="1909" width="0.2519%" height="15" fill="rgb(244,30,14)" fg:x="179325369124" fg:w="774828455"/><text x="58.5607%" y="1919.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,043,207,499 samples, 0.66%)</title><rect x="57.9057%" y="1957" width="0.6644%" height="15" fill="rgb(249,174,6)" fg:x="178079789489" fg:w="2043207499"/><text x="58.1557%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,062,133,850 samples, 0.67%)</title><rect x="57.9015%" y="1973" width="0.6705%" height="15" fill="rgb(235,213,41)" fg:x="178066725661" fg:w="2062133850"/><text x="58.1515%" y="1983.50"></text></g><g><title>Worker-2 (2,197,155,455 samples, 0.71%)</title><rect x="57.8975%" y="2069" width="0.7144%" height="15" fill="rgb(213,118,6)" fg:x="178054435534" fg:w="2197155455"/><text x="58.1475%" y="2079.50"></text></g><g><title>__GI___clone3 (2,194,422,288 samples, 0.71%)</title><rect x="57.8984%" y="2053" width="0.7136%" height="15" fill="rgb(235,44,51)" fg:x="178057168701" fg:w="2194422288"/><text x="58.1484%" y="2063.50"></text></g><g><title>start_thread (2,187,254,214 samples, 0.71%)</title><rect x="57.9007%" y="2037" width="0.7112%" height="15" fill="rgb(217,9,53)" fg:x="178064336775" fg:w="2187254214"/><text x="58.1507%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,187,254,214 samples, 0.71%)</title><rect x="57.9007%" y="2021" width="0.7112%" height="15" fill="rgb(237,172,34)" fg:x="178064336775" fg:w="2187254214"/><text x="58.1507%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,187,254,214 samples, 0.71%)</title><rect x="57.9007%" y="2005" width="0.7112%" height="15" fill="rgb(206,206,11)" fg:x="178064336775" fg:w="2187254214"/><text x="58.1507%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,187,254,214 samples, 0.71%)</title><rect x="57.9007%" y="1989" width="0.7112%" height="15" fill="rgb(214,149,29)" fg:x="178064336775" fg:w="2187254214"/><text x="58.1507%" y="1999.50"></text></g><g><title>syscall (122,731,478 samples, 0.04%)</title><rect x="58.5720%" y="1973" width="0.0399%" height="15" fill="rgb(208,123,3)" fg:x="180128859511" fg:w="122731478"/><text x="58.8220%" y="1983.50"></text></g><g><title>[unknown] (120,359,867 samples, 0.04%)</title><rect x="58.5728%" y="1957" width="0.0391%" height="15" fill="rgb(229,126,4)" fg:x="180131231122" fg:w="120359867"/><text x="58.8228%" y="1967.50"></text></g><g><title>[unknown] (113,343,818 samples, 0.04%)</title><rect x="58.5751%" y="1941" width="0.0369%" height="15" fill="rgb(222,92,36)" fg:x="180138247171" fg:w="113343818"/><text x="58.8251%" y="1951.50"></text></g><g><title>[unknown] (111,758,669 samples, 0.04%)</title><rect x="58.5756%" y="1925" width="0.0363%" height="15" fill="rgb(216,39,41)" fg:x="180139832320" fg:w="111758669"/><text x="58.8256%" y="1935.50"></text></g><g><title>[unknown] (110,526,618 samples, 0.04%)</title><rect x="58.5760%" y="1909" width="0.0359%" height="15" fill="rgb(253,127,28)" fg:x="180141064371" fg:w="110526618"/><text x="58.8260%" y="1919.50"></text></g><g><title>[unknown] (104,830,383 samples, 0.03%)</title><rect x="58.5778%" y="1893" width="0.0341%" height="15" fill="rgb(249,152,51)" fg:x="180146760606" fg:w="104830383"/><text x="58.8278%" y="1903.50"></text></g><g><title>[unknown] (97,622,352 samples, 0.03%)</title><rect x="58.5802%" y="1877" width="0.0317%" height="15" fill="rgb(209,123,42)" fg:x="180153968637" fg:w="97622352"/><text x="58.8302%" y="1887.50"></text></g><g><title>[unknown] (88,033,759 samples, 0.03%)</title><rect x="58.5833%" y="1861" width="0.0286%" height="15" fill="rgb(241,118,22)" fg:x="180163557230" fg:w="88033759"/><text x="58.8333%" y="1871.50"></text></g><g><title>[unknown] (87,036,062 samples, 0.03%)</title><rect x="58.5836%" y="1845" width="0.0283%" height="15" fill="rgb(208,25,7)" fg:x="180164554927" fg:w="87036062"/><text x="58.8336%" y="1855.50"></text></g><g><title>[unknown] (84,294,796 samples, 0.03%)</title><rect x="58.5845%" y="1829" width="0.0274%" height="15" fill="rgb(243,144,39)" fg:x="180167296193" fg:w="84294796"/><text x="58.8345%" y="1839.50"></text></g><g><title>[unknown] (83,440,108 samples, 0.03%)</title><rect x="58.5848%" y="1813" width="0.0271%" height="15" fill="rgb(250,50,5)" fg:x="180168150881" fg:w="83440108"/><text x="58.8348%" y="1823.50"></text></g><g><title>[unknown] (78,583,281 samples, 0.03%)</title><rect x="58.5864%" y="1797" width="0.0256%" height="15" fill="rgb(207,67,11)" fg:x="180173007708" fg:w="78583281"/><text x="58.8364%" y="1807.50"></text></g><g><title>[unknown] (75,120,239 samples, 0.02%)</title><rect x="58.5875%" y="1781" width="0.0244%" height="15" fill="rgb(245,204,40)" fg:x="180176470750" fg:w="75120239"/><text x="58.8375%" y="1791.50"></text></g><g><title>[unknown] (62,941,991 samples, 0.02%)</title><rect x="58.5915%" y="1765" width="0.0205%" height="15" fill="rgb(238,228,24)" fg:x="180188648998" fg:w="62941991"/><text x="58.8415%" y="1775.50"></text></g><g><title>[unknown] (59,224,514 samples, 0.02%)</title><rect x="58.5927%" y="1749" width="0.0193%" height="15" fill="rgb(217,116,22)" fg:x="180192366475" fg:w="59224514"/><text x="58.8427%" y="1759.50"></text></g><g><title>[unknown] (52,422,838 samples, 0.02%)</title><rect x="58.5949%" y="1733" width="0.0170%" height="15" fill="rgb(234,98,12)" fg:x="180199168151" fg:w="52422838"/><text x="58.8449%" y="1743.50"></text></g><g><title>[unknown] (40,961,670 samples, 0.01%)</title><rect x="58.5986%" y="1717" width="0.0133%" height="15" fill="rgb(242,170,50)" fg:x="180210629319" fg:w="40961670"/><text x="58.8486%" y="1727.50"></text></g><g><title>[unknown] (32,857,846 samples, 0.01%)</title><rect x="58.6012%" y="1701" width="0.0107%" height="15" fill="rgb(235,7,5)" fg:x="180218733143" fg:w="32857846"/><text x="58.8512%" y="1711.50"></text></g><g><title>git2::repo::Repository::find_blob (33,566,573 samples, 0.01%)</title><rect x="58.6321%" y="1925" width="0.0109%" height="15" fill="rgb(241,114,28)" fg:x="180313778609" fg:w="33566573"/><text x="58.8821%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (33,566,573 samples, 0.01%)</title><rect x="58.6321%" y="1909" width="0.0109%" height="15" fill="rgb(246,112,42)" fg:x="180313778609" fg:w="33566573"/><text x="58.8821%" y="1919.50"></text></g><g><title>git_odb_read (33,566,573 samples, 0.01%)</title><rect x="58.6321%" y="1893" width="0.0109%" height="15" fill="rgb(248,228,14)" fg:x="180313778609" fg:w="33566573"/><text x="58.8821%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (33,566,573 samples, 0.01%)</title><rect x="58.6321%" y="1877" width="0.0109%" height="15" fill="rgb(208,133,18)" fg:x="180313778609" fg:w="33566573"/><text x="58.8821%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (33,566,573 samples, 0.01%)</title><rect x="58.6321%" y="1861" width="0.0109%" height="15" fill="rgb(207,35,49)" fg:x="180313778609" fg:w="33566573"/><text x="58.8821%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (33,566,573 samples, 0.01%)</title><rect x="58.6321%" y="1845" width="0.0109%" height="15" fill="rgb(205,68,36)" fg:x="180313778609" fg:w="33566573"/><text x="58.8821%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (51,454,951 samples, 0.02%)</title><rect x="58.6320%" y="1941" width="0.0167%" height="15" fill="rgb(245,62,40)" fg:x="180313249251" fg:w="51454951"/><text x="58.8820%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (37,780,029 samples, 0.01%)</title><rect x="58.6742%" y="1781" width="0.0123%" height="15" fill="rgb(228,27,24)" fg:x="180443076632" fg:w="37780029"/><text x="58.9242%" y="1791.50"></text></g><g><title>[libgit2.so.1.9.0] (36,758,536 samples, 0.01%)</title><rect x="58.6745%" y="1765" width="0.0120%" height="15" fill="rgb(253,19,12)" fg:x="180444098125" fg:w="36758536"/><text x="58.9245%" y="1775.50"></text></g><g><title>[libgit2.so.1.9.0] (63,125,671 samples, 0.02%)</title><rect x="58.6674%" y="1797" width="0.0205%" height="15" fill="rgb(232,28,20)" fg:x="180422353471" fg:w="63125671"/><text x="58.9174%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (69,726,929 samples, 0.02%)</title><rect x="58.6664%" y="1813" width="0.0227%" height="15" fill="rgb(218,35,51)" fg:x="180419079486" fg:w="69726929"/><text x="58.9164%" y="1823.50"></text></g><g><title>[libgit2.so.1.9.0] (70,971,180 samples, 0.02%)</title><rect x="58.6664%" y="1829" width="0.0231%" height="15" fill="rgb(212,90,40)" fg:x="180419079486" fg:w="70971180"/><text x="58.9164%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (73,855,555 samples, 0.02%)</title><rect x="58.6656%" y="1941" width="0.0240%" height="15" fill="rgb(220,172,12)" fg:x="180416560732" fg:w="73855555"/><text x="58.9156%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (73,855,555 samples, 0.02%)</title><rect x="58.6656%" y="1925" width="0.0240%" height="15" fill="rgb(226,159,20)" fg:x="180416560732" fg:w="73855555"/><text x="58.9156%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (71,336,801 samples, 0.02%)</title><rect x="58.6664%" y="1909" width="0.0232%" height="15" fill="rgb(234,205,16)" fg:x="180419079486" fg:w="71336801"/><text x="58.9164%" y="1919.50"></text></g><g><title>git_patch_from_buffers (71,336,801 samples, 0.02%)</title><rect x="58.6664%" y="1893" width="0.0232%" height="15" fill="rgb(207,9,39)" fg:x="180419079486" fg:w="71336801"/><text x="58.9164%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (71,336,801 samples, 0.02%)</title><rect x="58.6664%" y="1877" width="0.0232%" height="15" fill="rgb(249,143,15)" fg:x="180419079486" fg:w="71336801"/><text x="58.9164%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (71,336,801 samples, 0.02%)</title><rect x="58.6664%" y="1861" width="0.0232%" height="15" fill="rgb(253,133,29)" fg:x="180419079486" fg:w="71336801"/><text x="58.9164%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (71,336,801 samples, 0.02%)</title><rect x="58.6664%" y="1845" width="0.0232%" height="15" fill="rgb(221,187,0)" fg:x="180419079486" fg:w="71336801"/><text x="58.9164%" y="1855.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (81,550,347 samples, 0.03%)</title><rect x="58.6929%" y="1925" width="0.0265%" height="15" fill="rgb(205,204,26)" fg:x="180500520954" fg:w="81550347"/><text x="58.9429%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (91,701,565 samples, 0.03%)</title><rect x="58.6900%" y="1941" width="0.0298%" height="15" fill="rgb(224,68,54)" fg:x="180491558240" fg:w="91701565"/><text x="58.9400%" y="1951.50"></text></g><g><title>rope::Chunks::prev_line (32,163,661 samples, 0.01%)</title><rect x="58.7274%" y="1925" width="0.0105%" height="15" fill="rgb(209,67,4)" fg:x="180606725435" fg:w="32163661"/><text x="58.9774%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (78,784,721 samples, 0.03%)</title><rect x="58.7216%" y="1941" width="0.0256%" height="15" fill="rgb(228,229,18)" fg:x="180588804764" fg:w="78784721"/><text x="58.9716%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (35,357,815 samples, 0.01%)</title><rect x="58.7668%" y="1909" width="0.0115%" height="15" fill="rgb(231,89,13)" fg:x="180727962796" fg:w="35357815"/><text x="59.0168%" y="1919.50"></text></g><g><title>util::paths::PathMatcher::check_with_end_separator (34,888,082 samples, 0.01%)</title><rect x="58.7785%" y="1909" width="0.0113%" height="15" fill="rgb(210,182,18)" fg:x="180763917248" fg:w="34888082"/><text x="59.0285%" y="1919.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (147,984,897 samples, 0.05%)</title><rect x="58.7569%" y="1925" width="0.0481%" height="15" fill="rgb(240,105,2)" fg:x="180697309843" fg:w="147984897"/><text x="59.0069%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (177,399,373 samples, 0.06%)</title><rect x="58.7484%" y="1941" width="0.0577%" height="15" fill="rgb(207,170,50)" fg:x="180671263038" fg:w="177399373"/><text x="58.9984%" y="1951.50"></text></g><g><title>ts_malloc_default (34,987,480 samples, 0.01%)</title><rect x="58.8446%" y="1829" width="0.0114%" height="15" fill="rgb(232,133,24)" fg:x="180967152016" fg:w="34987480"/><text x="59.0946%" y="1839.50"></text></g><g><title>malloc (34,987,480 samples, 0.01%)</title><rect x="58.8446%" y="1813" width="0.0114%" height="15" fill="rgb(235,166,27)" fg:x="180967152016" fg:w="34987480"/><text x="59.0946%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (48,443,646 samples, 0.02%)</title><rect x="58.8415%" y="1845" width="0.0158%" height="15" fill="rgb(209,19,13)" fg:x="180957689424" fg:w="48443646"/><text x="59.0915%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (31,740,392 samples, 0.01%)</title><rect x="58.8728%" y="1845" width="0.0103%" height="15" fill="rgb(226,79,39)" fg:x="181053747735" fg:w="31740392"/><text x="59.1228%" y="1855.50"></text></g><g><title>ts_lex (59,731,708 samples, 0.02%)</title><rect x="58.8933%" y="1829" width="0.0194%" height="15" fill="rgb(222,163,10)" fg:x="181116836000" fg:w="59731708"/><text x="59.1433%" y="1839.50"></text></g><g><title>ts_parser__lex (141,255,743 samples, 0.05%)</title><rect x="58.8831%" y="1845" width="0.0459%" height="15" fill="rgb(214,44,19)" fg:x="181085488127" fg:w="141255743"/><text x="59.1331%" y="1855.50"></text></g><g><title>ts_subtree_new_node (79,947,341 samples, 0.03%)</title><rect x="58.9505%" y="1829" width="0.0260%" height="15" fill="rgb(210,217,13)" fg:x="181292810314" fg:w="79947341"/><text x="59.2005%" y="1839.50"></text></g><g><title>ts_subtree_summarize_children (76,618,362 samples, 0.02%)</title><rect x="58.9516%" y="1813" width="0.0249%" height="15" fill="rgb(237,61,54)" fg:x="181296139293" fg:w="76618362"/><text x="59.2016%" y="1823.50"></text></g><g><title>ts_parser__recover (147,139,775 samples, 0.05%)</title><rect x="58.9290%" y="1845" width="0.0478%" height="15" fill="rgb(226,184,24)" fg:x="181226743870" fg:w="147139775"/><text x="59.1790%" y="1855.50"></text></g><g><title>ts_stack_remove_version (72,532,535 samples, 0.02%)</title><rect x="58.9802%" y="1845" width="0.0236%" height="15" fill="rgb(223,226,4)" fg:x="181384204195" fg:w="72532535"/><text x="59.2302%" y="1855.50"></text></g><g><title>stack_node_release (72,532,535 samples, 0.02%)</title><rect x="58.9802%" y="1829" width="0.0236%" height="15" fill="rgb(210,26,41)" fg:x="181384204195" fg:w="72532535"/><text x="59.2302%" y="1839.50"></text></g><g><title>ts_subtree_release (72,532,535 samples, 0.02%)</title><rect x="58.9802%" y="1813" width="0.0236%" height="15" fill="rgb(220,221,6)" fg:x="181384204195" fg:w="72532535"/><text x="59.2302%" y="1823.50"></text></g><g><title>ts_stack_renumber_version (33,164,581 samples, 0.01%)</title><rect x="59.0038%" y="1845" width="0.0108%" height="15" fill="rgb(225,89,49)" fg:x="181456736730" fg:w="33164581"/><text x="59.2538%" y="1855.50"></text></g><g><title>ts_parser_parse (601,888,416 samples, 0.20%)</title><rect x="58.8306%" y="1861" width="0.1957%" height="15" fill="rgb(218,70,45)" fg:x="180924079746" fg:w="601888416"/><text x="59.0806%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (628,432,399 samples, 0.20%)</title><rect x="58.8227%" y="1877" width="0.2043%" height="15" fill="rgb(238,166,21)" fg:x="180899818726" fg:w="628432399"/><text x="59.0727%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (631,831,399 samples, 0.21%)</title><rect x="58.8224%" y="1893" width="0.2055%" height="15" fill="rgb(224,141,44)" fg:x="180898771682" fg:w="631831399"/><text x="59.0724%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (70,114,729 samples, 0.02%)</title><rect x="59.0312%" y="1877" width="0.0228%" height="15" fill="rgb(230,12,49)" fg:x="181540983037" fg:w="70114729"/><text x="59.2812%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (743,897,539 samples, 0.24%)</title><rect x="58.8136%" y="1909" width="0.2419%" height="15" fill="rgb(212,174,12)" fg:x="180871755062" fg:w="743897539"/><text x="59.0636%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (76,763,732 samples, 0.02%)</title><rect x="59.0305%" y="1893" width="0.0250%" height="15" fill="rgb(246,67,9)" fg:x="181538888869" fg:w="76763732"/><text x="59.2805%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (769,996,261 samples, 0.25%)</title><rect x="58.8061%" y="1925" width="0.2504%" height="15" fill="rgb(239,35,23)" fg:x="180848662411" fg:w="769996261"/><text x="59.0561%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (772,047,433 samples, 0.25%)</title><rect x="58.8061%" y="1941" width="0.2510%" height="15" fill="rgb(211,167,0)" fg:x="180848662411" fg:w="772047433"/><text x="59.0561%" y="1951.50"></text></g><g><title>ts_language_table_entry (32,596,953 samples, 0.01%)</title><rect x="59.0821%" y="1861" width="0.0106%" height="15" fill="rgb(225,119,45)" fg:x="181697568623" fg:w="32596953"/><text x="59.3321%" y="1871.50"></text></g><g><title>ts_malloc_default (55,633,531 samples, 0.02%)</title><rect x="59.1180%" y="1829" width="0.0181%" height="15" fill="rgb(210,162,6)" fg:x="181807880791" fg:w="55633531"/><text x="59.3680%" y="1839.50"></text></g><g><title>malloc (55,633,531 samples, 0.02%)</title><rect x="59.1180%" y="1813" width="0.0181%" height="15" fill="rgb(208,118,35)" fg:x="181807880791" fg:w="55633531"/><text x="59.3680%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (84,632,639 samples, 0.03%)</title><rect x="59.1107%" y="1845" width="0.0275%" height="15" fill="rgb(239,4,53)" fg:x="181785653900" fg:w="84632639"/><text x="59.3607%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (56,898,880 samples, 0.02%)</title><rect x="59.1625%" y="1845" width="0.0185%" height="15" fill="rgb(213,130,21)" fg:x="181944769972" fg:w="56898880"/><text x="59.4125%" y="1855.50"></text></g><g><title>ts_lex (67,192,145 samples, 0.02%)</title><rect x="59.1953%" y="1829" width="0.0218%" height="15" fill="rgb(235,148,0)" fg:x="182045540589" fg:w="67192145"/><text x="59.4453%" y="1839.50"></text></g><g><title>ts_parser__lex (163,541,146 samples, 0.05%)</title><rect x="59.1810%" y="1845" width="0.0532%" height="15" fill="rgb(244,224,18)" fg:x="182001668852" fg:w="163541146"/><text x="59.4310%" y="1855.50"></text></g><g><title>ts_subtree_new_node (124,864,352 samples, 0.04%)</title><rect x="59.2758%" y="1829" width="0.0406%" height="15" fill="rgb(211,214,4)" fg:x="182293265564" fg:w="124864352"/><text x="59.5258%" y="1839.50"></text></g><g><title>ts_subtree_summarize_children (119,926,249 samples, 0.04%)</title><rect x="59.2774%" y="1813" width="0.0390%" height="15" fill="rgb(206,119,25)" fg:x="182298203667" fg:w="119926249"/><text x="59.5274%" y="1823.50"></text></g><g><title>ts_parser__recover (254,114,071 samples, 0.08%)</title><rect x="59.2342%" y="1845" width="0.0826%" height="15" fill="rgb(243,93,47)" fg:x="182165209998" fg:w="254114071"/><text x="59.4842%" y="1855.50"></text></g><g><title>ts_stack_remove_version (146,158,664 samples, 0.05%)</title><rect x="59.3233%" y="1845" width="0.0475%" height="15" fill="rgb(224,194,6)" fg:x="182439451502" fg:w="146158664"/><text x="59.5733%" y="1855.50"></text></g><g><title>stack_node_release (144,837,255 samples, 0.05%)</title><rect x="59.3238%" y="1829" width="0.0471%" height="15" fill="rgb(243,229,6)" fg:x="182440772911" fg:w="144837255"/><text x="59.5738%" y="1839.50"></text></g><g><title>ts_subtree_release (143,740,085 samples, 0.05%)</title><rect x="59.3241%" y="1813" width="0.0467%" height="15" fill="rgb(207,23,50)" fg:x="182441870081" fg:w="143740085"/><text x="59.5741%" y="1823.50"></text></g><g><title>ts_subtree_new_node (34,098,876 samples, 0.01%)</title><rect x="59.3824%" y="1845" width="0.0111%" height="15" fill="rgb(253,192,32)" fg:x="182621187327" fg:w="34098876"/><text x="59.6324%" y="1855.50"></text></g><g><title>ts_parser_parse (921,418,402 samples, 0.30%)</title><rect x="59.0943%" y="1861" width="0.2996%" height="15" fill="rgb(213,21,6)" fg:x="181735081896" fg:w="921418402"/><text x="59.3443%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (964,646,505 samples, 0.31%)</title><rect x="59.0810%" y="1877" width="0.3137%" height="15" fill="rgb(243,151,13)" fg:x="181694305954" fg:w="964646505"/><text x="59.3310%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (968,078,417 samples, 0.31%)</title><rect x="59.0810%" y="1893" width="0.3148%" height="15" fill="rgb(233,165,41)" fg:x="181694305954" fg:w="968078417"/><text x="59.3310%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (70,620,046 samples, 0.02%)</title><rect x="59.4016%" y="1877" width="0.0230%" height="15" fill="rgb(246,176,45)" fg:x="182680225424" fg:w="70620046"/><text x="59.6516%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (1,085,553,359 samples, 0.35%)</title><rect x="59.0745%" y="1909" width="0.3530%" height="15" fill="rgb(217,170,52)" fg:x="181674095076" fg:w="1085553359"/><text x="59.3245%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (79,423,011 samples, 0.03%)</title><rect x="59.4016%" y="1893" width="0.0258%" height="15" fill="rgb(214,203,54)" fg:x="182680225424" fg:w="79423011"/><text x="59.6516%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (1,142,110,802 samples, 0.37%)</title><rect x="59.0571%" y="1941" width="0.3714%" height="15" fill="rgb(248,215,49)" fg:x="181620709844" fg:w="1142110802"/><text x="59.3071%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (1,142,110,802 samples, 0.37%)</title><rect x="59.0571%" y="1925" width="0.3714%" height="15" fill="rgb(208,46,10)" fg:x="181620709844" fg:w="1142110802"/><text x="59.3071%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,512,698,677 samples, 0.82%)</title><rect x="58.6178%" y="1957" width="0.8170%" height="15" fill="rgb(254,5,31)" fg:x="180269795632" fg:w="2512698677"/><text x="58.8678%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,537,172,905 samples, 0.83%)</title><rect x="58.6122%" y="1973" width="0.8250%" height="15" fill="rgb(222,104,33)" fg:x="180252341694" fg:w="2537172905"/><text x="58.8622%" y="1983.50"></text></g><g><title>Worker-30 (2,649,694,928 samples, 0.86%)</title><rect x="58.6119%" y="2069" width="0.8616%" height="15" fill="rgb(248,49,16)" fg:x="180251590989" fg:w="2649694928"/><text x="58.8619%" y="2079.50"></text></g><g><title>__GI___clone3 (2,649,694,928 samples, 0.86%)</title><rect x="58.6119%" y="2053" width="0.8616%" height="15" fill="rgb(232,198,41)" fg:x="180251590989" fg:w="2649694928"/><text x="58.8619%" y="2063.50"></text></g><g><title>start_thread (2,649,694,928 samples, 0.86%)</title><rect x="58.6119%" y="2037" width="0.8616%" height="15" fill="rgb(214,125,3)" fg:x="180251590989" fg:w="2649694928"/><text x="58.8619%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,649,694,928 samples, 0.86%)</title><rect x="58.6119%" y="2021" width="0.8616%" height="15" fill="rgb(229,220,28)" fg:x="180251590989" fg:w="2649694928"/><text x="58.8619%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,649,694,928 samples, 0.86%)</title><rect x="58.6119%" y="2005" width="0.8616%" height="15" fill="rgb(222,64,37)" fg:x="180251590989" fg:w="2649694928"/><text x="58.8619%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,649,694,928 samples, 0.86%)</title><rect x="58.6119%" y="1989" width="0.8616%" height="15" fill="rgb(249,184,13)" fg:x="180251590989" fg:w="2649694928"/><text x="58.8619%" y="1999.50"></text></g><g><title>syscall (111,771,318 samples, 0.04%)</title><rect x="59.4372%" y="1973" width="0.0363%" height="15" fill="rgb(252,176,6)" fg:x="182789514599" fg:w="111771318"/><text x="59.6872%" y="1983.50"></text></g><g><title>[unknown] (107,678,733 samples, 0.04%)</title><rect x="59.4385%" y="1957" width="0.0350%" height="15" fill="rgb(228,153,7)" fg:x="182793607184" fg:w="107678733"/><text x="59.6885%" y="1967.50"></text></g><g><title>[unknown] (102,903,202 samples, 0.03%)</title><rect x="59.4401%" y="1941" width="0.0335%" height="15" fill="rgb(242,193,5)" fg:x="182798382715" fg:w="102903202"/><text x="59.6901%" y="1951.50"></text></g><g><title>[unknown] (102,095,714 samples, 0.03%)</title><rect x="59.4403%" y="1925" width="0.0332%" height="15" fill="rgb(232,140,9)" fg:x="182799190203" fg:w="102095714"/><text x="59.6903%" y="1935.50"></text></g><g><title>[unknown] (101,016,643 samples, 0.03%)</title><rect x="59.4407%" y="1909" width="0.0328%" height="15" fill="rgb(213,222,16)" fg:x="182800269274" fg:w="101016643"/><text x="59.6907%" y="1919.50"></text></g><g><title>[unknown] (96,397,430 samples, 0.03%)</title><rect x="59.4422%" y="1893" width="0.0313%" height="15" fill="rgb(222,75,50)" fg:x="182804888487" fg:w="96397430"/><text x="59.6922%" y="1903.50"></text></g><g><title>[unknown] (92,297,984 samples, 0.03%)</title><rect x="59.4435%" y="1877" width="0.0300%" height="15" fill="rgb(205,180,2)" fg:x="182808987933" fg:w="92297984"/><text x="59.6935%" y="1887.50"></text></g><g><title>[unknown] (84,291,086 samples, 0.03%)</title><rect x="59.4461%" y="1861" width="0.0274%" height="15" fill="rgb(216,34,7)" fg:x="182816994831" fg:w="84291086"/><text x="59.6961%" y="1871.50"></text></g><g><title>[unknown] (80,082,729 samples, 0.03%)</title><rect x="59.4475%" y="1845" width="0.0260%" height="15" fill="rgb(253,16,32)" fg:x="182821203188" fg:w="80082729"/><text x="59.6975%" y="1855.50"></text></g><g><title>[unknown] (78,452,860 samples, 0.03%)</title><rect x="59.4480%" y="1829" width="0.0255%" height="15" fill="rgb(208,97,28)" fg:x="182822833057" fg:w="78452860"/><text x="59.6980%" y="1839.50"></text></g><g><title>[unknown] (75,961,412 samples, 0.02%)</title><rect x="59.4488%" y="1813" width="0.0247%" height="15" fill="rgb(225,92,11)" fg:x="182825324505" fg:w="75961412"/><text x="59.6988%" y="1823.50"></text></g><g><title>[unknown] (72,874,558 samples, 0.02%)</title><rect x="59.4498%" y="1797" width="0.0237%" height="15" fill="rgb(243,38,12)" fg:x="182828411359" fg:w="72874558"/><text x="59.6998%" y="1807.50"></text></g><g><title>[unknown] (66,115,258 samples, 0.02%)</title><rect x="59.4520%" y="1781" width="0.0215%" height="15" fill="rgb(208,139,16)" fg:x="182835170659" fg:w="66115258"/><text x="59.7020%" y="1791.50"></text></g><g><title>[unknown] (61,127,033 samples, 0.02%)</title><rect x="59.4536%" y="1765" width="0.0199%" height="15" fill="rgb(227,24,9)" fg:x="182840158884" fg:w="61127033"/><text x="59.7036%" y="1775.50"></text></g><g><title>[unknown] (58,702,772 samples, 0.02%)</title><rect x="59.4544%" y="1749" width="0.0191%" height="15" fill="rgb(206,62,11)" fg:x="182842583145" fg:w="58702772"/><text x="59.7044%" y="1759.50"></text></g><g><title>[unknown] (48,464,039 samples, 0.02%)</title><rect x="59.4578%" y="1733" width="0.0158%" height="15" fill="rgb(228,134,27)" fg:x="182852821878" fg:w="48464039"/><text x="59.7078%" y="1743.50"></text></g><g><title>[unknown] (43,858,012 samples, 0.01%)</title><rect x="59.4593%" y="1717" width="0.0143%" height="15" fill="rgb(205,55,33)" fg:x="182857427905" fg:w="43858012"/><text x="59.7093%" y="1727.50"></text></g><g><title>[libgit2.so.1.9.0] (37,107,734 samples, 0.01%)</title><rect x="59.4877%" y="1829" width="0.0121%" height="15" fill="rgb(243,75,43)" fg:x="182945057990" fg:w="37107734"/><text x="59.7377%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (50,713,559 samples, 0.02%)</title><rect x="59.4877%" y="1925" width="0.0165%" height="15" fill="rgb(223,27,42)" fg:x="182945057990" fg:w="50713559"/><text x="59.7377%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (50,713,559 samples, 0.02%)</title><rect x="59.4877%" y="1909" width="0.0165%" height="15" fill="rgb(232,189,33)" fg:x="182945057990" fg:w="50713559"/><text x="59.7377%" y="1919.50"></text></g><g><title>git_odb_read (50,713,559 samples, 0.02%)</title><rect x="59.4877%" y="1893" width="0.0165%" height="15" fill="rgb(210,9,39)" fg:x="182945057990" fg:w="50713559"/><text x="59.7377%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (50,713,559 samples, 0.02%)</title><rect x="59.4877%" y="1877" width="0.0165%" height="15" fill="rgb(242,85,26)" fg:x="182945057990" fg:w="50713559"/><text x="59.7377%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (50,713,559 samples, 0.02%)</title><rect x="59.4877%" y="1861" width="0.0165%" height="15" fill="rgb(248,44,4)" fg:x="182945057990" fg:w="50713559"/><text x="59.7377%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (50,713,559 samples, 0.02%)</title><rect x="59.4877%" y="1845" width="0.0165%" height="15" fill="rgb(250,96,46)" fg:x="182945057990" fg:w="50713559"/><text x="59.7377%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (72,735,491 samples, 0.02%)</title><rect x="59.4877%" y="1941" width="0.0237%" height="15" fill="rgb(229,116,26)" fg:x="182945057990" fg:w="72735491"/><text x="59.7377%" y="1951.50"></text></g><g><title>&lt;gpui::platform::linux::dispatcher::LinuxDispatcher as gpui::platform::PlatformDispatcher&gt;::dispatch (32,027,641 samples, 0.01%)</title><rect x="59.5178%" y="1941" width="0.0104%" height="15" fill="rgb(246,94,34)" fg:x="183037347686" fg:w="32027641"/><text x="59.7678%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (70,532,722 samples, 0.02%)</title><rect x="59.5459%" y="1925" width="0.0229%" height="15" fill="rgb(251,73,21)" fg:x="183123815917" fg:w="70532722"/><text x="59.7959%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (74,948,782 samples, 0.02%)</title><rect x="59.5448%" y="1941" width="0.0244%" height="15" fill="rgb(254,121,25)" fg:x="183120425184" fg:w="74948782"/><text x="59.7948%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (70,431,691 samples, 0.02%)</title><rect x="59.5698%" y="1941" width="0.0229%" height="15" fill="rgb(215,161,49)" fg:x="183197461340" fg:w="70431691"/><text x="59.8198%" y="1951.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (162,994,255 samples, 0.05%)</title><rect x="59.5927%" y="1941" width="0.0530%" height="15" fill="rgb(221,43,13)" fg:x="183267893031" fg:w="162994255"/><text x="59.8427%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (136,767,400 samples, 0.04%)</title><rect x="59.6013%" y="1925" width="0.0445%" height="15" fill="rgb(249,5,37)" fg:x="183294119886" fg:w="136767400"/><text x="59.8513%" y="1935.50"></text></g><g><title>ts_malloc_default (40,113,467 samples, 0.01%)</title><rect x="59.6914%" y="1829" width="0.0130%" height="15" fill="rgb(226,25,44)" fg:x="183571267256" fg:w="40113467"/><text x="59.9414%" y="1839.50"></text></g><g><title>malloc (38,962,616 samples, 0.01%)</title><rect x="59.6917%" y="1813" width="0.0127%" height="15" fill="rgb(238,189,16)" fg:x="183572418107" fg:w="38962616"/><text x="59.9417%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (59,950,573 samples, 0.02%)</title><rect x="59.6856%" y="1845" width="0.0195%" height="15" fill="rgb(251,186,8)" fg:x="183553479217" fg:w="59950573"/><text x="59.9356%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (43,849,244 samples, 0.01%)</title><rect x="59.7200%" y="1845" width="0.0143%" height="15" fill="rgb(254,34,31)" fg:x="183659165273" fg:w="43849244"/><text x="59.9700%" y="1855.50"></text></g><g><title>ts_lex (79,895,199 samples, 0.03%)</title><rect x="59.7478%" y="1829" width="0.0260%" height="15" fill="rgb(225,215,27)" fg:x="183744691979" fg:w="79895199"/><text x="59.9978%" y="1839.50"></text></g><g><title>ts_parser__lex (150,025,467 samples, 0.05%)</title><rect x="59.7342%" y="1845" width="0.0488%" height="15" fill="rgb(221,192,48)" fg:x="183703014517" fg:w="150025467"/><text x="59.9842%" y="1855.50"></text></g><g><title>ts_subtree_new_node (31,095,724 samples, 0.01%)</title><rect x="59.7983%" y="1845" width="0.0101%" height="15" fill="rgb(219,137,20)" fg:x="183900098786" fg:w="31095724"/><text x="60.0483%" y="1855.50"></text></g><g><title>ts_parser_parse (414,828,953 samples, 0.13%)</title><rect x="59.6738%" y="1861" width="0.1349%" height="15" fill="rgb(219,84,11)" fg:x="183517172850" fg:w="414828953"/><text x="59.9238%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (443,258,529 samples, 0.14%)</title><rect x="59.6649%" y="1877" width="0.1441%" height="15" fill="rgb(224,10,23)" fg:x="183489858217" fg:w="443258529"/><text x="59.9149%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (445,566,721 samples, 0.14%)</title><rect x="59.6646%" y="1893" width="0.1449%" height="15" fill="rgb(248,22,39)" fg:x="183488803757" fg:w="445566721"/><text x="59.9146%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (92,745,462 samples, 0.03%)</title><rect x="59.8152%" y="1877" width="0.0302%" height="15" fill="rgb(212,154,20)" fg:x="183952141891" fg:w="92745462"/><text x="60.0652%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (595,242,609 samples, 0.19%)</title><rect x="59.6544%" y="1909" width="0.1936%" height="15" fill="rgb(236,199,50)" fg:x="183457702544" fg:w="595242609"/><text x="59.9044%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (103,182,349 samples, 0.03%)</title><rect x="59.8144%" y="1893" width="0.0336%" height="15" fill="rgb(211,9,17)" fg:x="183949762804" fg:w="103182349"/><text x="60.0644%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (622,314,598 samples, 0.20%)</title><rect x="59.6457%" y="1941" width="0.2024%" height="15" fill="rgb(243,216,36)" fg:x="183430887286" fg:w="622314598"/><text x="59.8957%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (622,314,598 samples, 0.20%)</title><rect x="59.6457%" y="1925" width="0.2024%" height="15" fill="rgb(250,2,10)" fg:x="183430887286" fg:w="622314598"/><text x="59.8957%" y="1935.50"></text></g><g><title>stack__iter.constprop.0 (53,080,603 samples, 0.02%)</title><rect x="59.8873%" y="1845" width="0.0173%" height="15" fill="rgb(226,50,48)" fg:x="184173916088" fg:w="53080603"/><text x="60.1373%" y="1855.50"></text></g><g><title>ts_malloc_default (38,317,975 samples, 0.01%)</title><rect x="59.8921%" y="1829" width="0.0125%" height="15" fill="rgb(243,81,16)" fg:x="184188678716" fg:w="38317975"/><text x="60.1421%" y="1839.50"></text></g><g><title>malloc (38,317,975 samples, 0.01%)</title><rect x="59.8921%" y="1813" width="0.0125%" height="15" fill="rgb(250,14,2)" fg:x="184188678716" fg:w="38317975"/><text x="60.1421%" y="1823.50"></text></g><g><title>ts_language_table_entry (41,194,899 samples, 0.01%)</title><rect x="59.9162%" y="1845" width="0.0134%" height="15" fill="rgb(233,135,29)" fg:x="184262539534" fg:w="41194899"/><text x="60.1662%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (95,368,315 samples, 0.03%)</title><rect x="59.9334%" y="1845" width="0.0310%" height="15" fill="rgb(224,64,43)" fg:x="184315713378" fg:w="95368315"/><text x="60.1834%" y="1855.50"></text></g><g><title>ts_lex (48,789,924 samples, 0.02%)</title><rect x="59.9773%" y="1829" width="0.0159%" height="15" fill="rgb(238,84,13)" fg:x="184450682838" fg:w="48789924"/><text x="60.2273%" y="1839.50"></text></g><g><title>wasmtime::runtime::func::invoke_wasm_and_catch_traps (83,657,888 samples, 0.03%)</title><rect x="60.0021%" y="1781" width="0.0272%" height="15" fill="rgb(253,48,26)" fg:x="184526735151" fg:w="83657888"/><text x="60.2521%" y="1791.50"></text></g><g><title>wasmtime_setjmp_29_0_1 (83,657,888 samples, 0.03%)</title><rect x="60.0021%" y="1765" width="0.0272%" height="15" fill="rgb(205,223,31)" fg:x="184526735151" fg:w="83657888"/><text x="60.2521%" y="1775.50"></text></g><g><title>wasmtime_setjmp_inverted (83,657,888 samples, 0.03%)</title><rect x="60.0021%" y="1749" width="0.0272%" height="15" fill="rgb(221,41,32)" fg:x="184526735151" fg:w="83657888"/><text x="60.2521%" y="1759.50"></text></g><g><title>[perf-181794.map] (83,657,888 samples, 0.03%)</title><rect x="60.0021%" y="1733" width="0.0272%" height="15" fill="rgb(213,158,31)" fg:x="184526735151" fg:w="83657888"/><text x="60.2521%" y="1743.50"></text></g><g><title>[perf-181794.map] (83,657,888 samples, 0.03%)</title><rect x="60.0021%" y="1717" width="0.0272%" height="15" fill="rgb(245,126,43)" fg:x="184526735151" fg:w="83657888"/><text x="60.2521%" y="1727.50"></text></g><g><title>[perf-181794.map] (59,226,445 samples, 0.02%)</title><rect x="60.0100%" y="1701" width="0.0193%" height="15" fill="rgb(227,7,22)" fg:x="184551166594" fg:w="59226445"/><text x="60.2600%" y="1711.50"></text></g><g><title>wasmtime::runtime::trampoline::func::array_call_shim (49,592,380 samples, 0.02%)</title><rect x="60.0131%" y="1685" width="0.0161%" height="15" fill="rgb(252,90,44)" fg:x="184560800659" fg:w="49592380"/><text x="60.2631%" y="1695.50"></text></g><g><title>wasmtime_func_call_unchecked (84,765,183 samples, 0.03%)</title><rect x="60.0021%" y="1797" width="0.0276%" height="15" fill="rgb(253,91,0)" fg:x="184526735151" fg:w="84765183"/><text x="60.2521%" y="1807.50"></text></g><g><title>ts_wasm_store__call_lex_function (91,931,483 samples, 0.03%)</title><rect x="60.0009%" y="1829" width="0.0299%" height="15" fill="rgb(252,175,49)" fg:x="184523147311" fg:w="91931483"/><text x="60.2509%" y="1839.50"></text></g><g><title>ts_wasm_store__call (89,585,742 samples, 0.03%)</title><rect x="60.0017%" y="1813" width="0.0291%" height="15" fill="rgb(246,150,1)" fg:x="184525493052" fg:w="89585742"/><text x="60.2517%" y="1823.50"></text></g><g><title>ts_parser__lex (207,748,960 samples, 0.07%)</title><rect x="59.9645%" y="1845" width="0.0676%" height="15" fill="rgb(241,192,25)" fg:x="184411081693" fg:w="207748960"/><text x="60.2145%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (31,983,267 samples, 0.01%)</title><rect x="60.0480%" y="1845" width="0.0104%" height="15" fill="rgb(239,187,11)" fg:x="184668009942" fg:w="31983267"/><text x="60.2980%" y="1855.50"></text></g><g><title>ts_parser_parse_with_options (612,826,792 samples, 0.20%)</title><rect x="59.8666%" y="1877" width="0.1993%" height="15" fill="rgb(218,202,51)" fg:x="184110275549" fg:w="612826792"/><text x="60.1166%" y="1887.50"></text></g><g><title>ts_parser_parse (582,742,495 samples, 0.19%)</title><rect x="59.8764%" y="1861" width="0.1895%" height="15" fill="rgb(225,176,8)" fg:x="184140359846" fg:w="582742495"/><text x="60.1264%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (614,019,431 samples, 0.20%)</title><rect x="59.8666%" y="1893" width="0.1997%" height="15" fill="rgb(219,122,41)" fg:x="184110275549" fg:w="614019431"/><text x="60.1166%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (46,157,679 samples, 0.02%)</title><rect x="60.0743%" y="1877" width="0.0150%" height="15" fill="rgb(248,140,20)" fg:x="184749003562" fg:w="46157679"/><text x="60.3243%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (55,415,116 samples, 0.02%)</title><rect x="60.0728%" y="1893" width="0.0180%" height="15" fill="rgb(245,41,37)" fg:x="184744235627" fg:w="55415116"/><text x="60.3228%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (707,286,733 samples, 0.23%)</title><rect x="59.8611%" y="1909" width="0.2300%" height="15" fill="rgb(235,82,39)" fg:x="184093285213" fg:w="707286733"/><text x="60.1111%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (749,673,045 samples, 0.24%)</title><rect x="59.8481%" y="1941" width="0.2438%" height="15" fill="rgb(230,108,42)" fg:x="184053201884" fg:w="749673045"/><text x="60.0981%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (748,777,966 samples, 0.24%)</title><rect x="59.8484%" y="1925" width="0.2435%" height="15" fill="rgb(215,150,50)" fg:x="184054096963" fg:w="748777966"/><text x="60.0984%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,893,117,230 samples, 0.62%)</title><rect x="59.4807%" y="1957" width="0.6156%" height="15" fill="rgb(233,212,5)" fg:x="182923418712" fg:w="1893117230"/><text x="59.7307%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,924,284,644 samples, 0.63%)</title><rect x="59.4744%" y="1973" width="0.6257%" height="15" fill="rgb(245,80,22)" fg:x="182904038907" fg:w="1924284644"/><text x="59.7244%" y="1983.50"></text></g><g><title>Worker-31 (2,060,397,482 samples, 0.67%)</title><rect x="59.4735%" y="2069" width="0.6700%" height="15" fill="rgb(238,129,16)" fg:x="182901285917" fg:w="2060397482"/><text x="59.7235%" y="2079.50"></text></g><g><title>__GI___clone3 (2,058,322,433 samples, 0.67%)</title><rect x="59.4742%" y="2053" width="0.6693%" height="15" fill="rgb(240,19,0)" fg:x="182903360966" fg:w="2058322433"/><text x="59.7242%" y="2063.50"></text></g><g><title>start_thread (2,058,322,433 samples, 0.67%)</title><rect x="59.4742%" y="2037" width="0.6693%" height="15" fill="rgb(232,42,35)" fg:x="182903360966" fg:w="2058322433"/><text x="59.7242%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,058,322,433 samples, 0.67%)</title><rect x="59.4742%" y="2021" width="0.6693%" height="15" fill="rgb(223,130,24)" fg:x="182903360966" fg:w="2058322433"/><text x="59.7242%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,058,322,433 samples, 0.67%)</title><rect x="59.4742%" y="2005" width="0.6693%" height="15" fill="rgb(237,16,22)" fg:x="182903360966" fg:w="2058322433"/><text x="59.7242%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,058,322,433 samples, 0.67%)</title><rect x="59.4742%" y="1989" width="0.6693%" height="15" fill="rgb(248,192,20)" fg:x="182903360966" fg:w="2058322433"/><text x="59.7242%" y="1999.50"></text></g><g><title>syscall (133,359,848 samples, 0.04%)</title><rect x="60.1001%" y="1973" width="0.0434%" height="15" fill="rgb(233,167,2)" fg:x="184828323551" fg:w="133359848"/><text x="60.3501%" y="1983.50"></text></g><g><title>[unknown] (120,212,318 samples, 0.04%)</title><rect x="60.1044%" y="1957" width="0.0391%" height="15" fill="rgb(252,71,44)" fg:x="184841471081" fg:w="120212318"/><text x="60.3544%" y="1967.50"></text></g><g><title>[unknown] (114,714,210 samples, 0.04%)</title><rect x="60.1062%" y="1941" width="0.0373%" height="15" fill="rgb(238,37,47)" fg:x="184846969189" fg:w="114714210"/><text x="60.3562%" y="1951.50"></text></g><g><title>[unknown] (113,216,080 samples, 0.04%)</title><rect x="60.1067%" y="1925" width="0.0368%" height="15" fill="rgb(214,202,54)" fg:x="184848467319" fg:w="113216080"/><text x="60.3567%" y="1935.50"></text></g><g><title>[unknown] (111,055,671 samples, 0.04%)</title><rect x="60.1074%" y="1909" width="0.0361%" height="15" fill="rgb(254,165,40)" fg:x="184850627728" fg:w="111055671"/><text x="60.3574%" y="1919.50"></text></g><g><title>[unknown] (105,300,295 samples, 0.03%)</title><rect x="60.1092%" y="1893" width="0.0342%" height="15" fill="rgb(246,173,38)" fg:x="184856383104" fg:w="105300295"/><text x="60.3592%" y="1903.50"></text></g><g><title>[unknown] (100,571,824 samples, 0.03%)</title><rect x="60.1108%" y="1877" width="0.0327%" height="15" fill="rgb(215,3,27)" fg:x="184861111575" fg:w="100571824"/><text x="60.3608%" y="1887.50"></text></g><g><title>[unknown] (87,264,206 samples, 0.03%)</title><rect x="60.1151%" y="1861" width="0.0284%" height="15" fill="rgb(239,169,51)" fg:x="184874419193" fg:w="87264206"/><text x="60.3651%" y="1871.50"></text></g><g><title>[unknown] (82,283,922 samples, 0.03%)</title><rect x="60.1167%" y="1845" width="0.0268%" height="15" fill="rgb(212,5,25)" fg:x="184879399477" fg:w="82283922"/><text x="60.3667%" y="1855.50"></text></g><g><title>[unknown] (81,068,859 samples, 0.03%)</title><rect x="60.1171%" y="1829" width="0.0264%" height="15" fill="rgb(243,45,17)" fg:x="184880614540" fg:w="81068859"/><text x="60.3671%" y="1839.50"></text></g><g><title>[unknown] (78,601,401 samples, 0.03%)</title><rect x="60.1179%" y="1813" width="0.0256%" height="15" fill="rgb(242,97,9)" fg:x="184883081998" fg:w="78601401"/><text x="60.3679%" y="1823.50"></text></g><g><title>[unknown] (77,439,809 samples, 0.03%)</title><rect x="60.1183%" y="1797" width="0.0252%" height="15" fill="rgb(228,71,31)" fg:x="184884243590" fg:w="77439809"/><text x="60.3683%" y="1807.50"></text></g><g><title>[unknown] (77,439,413 samples, 0.03%)</title><rect x="60.1183%" y="1781" width="0.0252%" height="15" fill="rgb(252,184,16)" fg:x="184884243986" fg:w="77439413"/><text x="60.3683%" y="1791.50"></text></g><g><title>[unknown] (69,200,874 samples, 0.02%)</title><rect x="60.1210%" y="1765" width="0.0225%" height="15" fill="rgb(236,169,46)" fg:x="184892482525" fg:w="69200874"/><text x="60.3710%" y="1775.50"></text></g><g><title>[unknown] (63,672,984 samples, 0.02%)</title><rect x="60.1228%" y="1749" width="0.0207%" height="15" fill="rgb(207,17,47)" fg:x="184898010415" fg:w="63672984"/><text x="60.3728%" y="1759.50"></text></g><g><title>[unknown] (56,745,809 samples, 0.02%)</title><rect x="60.1250%" y="1733" width="0.0185%" height="15" fill="rgb(206,201,28)" fg:x="184904937590" fg:w="56745809"/><text x="60.3750%" y="1743.50"></text></g><g><title>[unknown] (45,371,709 samples, 0.01%)</title><rect x="60.1287%" y="1717" width="0.0148%" height="15" fill="rgb(224,184,23)" fg:x="184916311690" fg:w="45371709"/><text x="60.3787%" y="1727.50"></text></g><g><title>[unknown] (31,215,213 samples, 0.01%)</title><rect x="60.1333%" y="1701" width="0.0102%" height="15" fill="rgb(208,139,48)" fg:x="184930468186" fg:w="31215213"/><text x="60.3833%" y="1711.50"></text></g><g><title>[libgit2.so.1.9.0] (41,117,358 samples, 0.01%)</title><rect x="60.1675%" y="1829" width="0.0134%" height="15" fill="rgb(208,130,10)" fg:x="185035611587" fg:w="41117358"/><text x="60.4175%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (51,717,835 samples, 0.02%)</title><rect x="60.1671%" y="1925" width="0.0168%" height="15" fill="rgb(211,213,45)" fg:x="185034443671" fg:w="51717835"/><text x="60.4171%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (51,717,835 samples, 0.02%)</title><rect x="60.1671%" y="1909" width="0.0168%" height="15" fill="rgb(235,100,30)" fg:x="185034443671" fg:w="51717835"/><text x="60.4171%" y="1919.50"></text></g><g><title>git_odb_read (51,717,835 samples, 0.02%)</title><rect x="60.1671%" y="1893" width="0.0168%" height="15" fill="rgb(206,144,31)" fg:x="185034443671" fg:w="51717835"/><text x="60.4171%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (51,717,835 samples, 0.02%)</title><rect x="60.1671%" y="1877" width="0.0168%" height="15" fill="rgb(224,200,26)" fg:x="185034443671" fg:w="51717835"/><text x="60.4171%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (51,717,835 samples, 0.02%)</title><rect x="60.1671%" y="1861" width="0.0168%" height="15" fill="rgb(247,104,53)" fg:x="185034443671" fg:w="51717835"/><text x="60.4171%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (51,717,835 samples, 0.02%)</title><rect x="60.1671%" y="1845" width="0.0168%" height="15" fill="rgb(220,14,17)" fg:x="185034443671" fg:w="51717835"/><text x="60.4171%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (81,089,855 samples, 0.03%)</title><rect x="60.1671%" y="1941" width="0.0264%" height="15" fill="rgb(230,140,40)" fg:x="185034443671" fg:w="81089855"/><text x="60.4171%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (38,700,471 samples, 0.01%)</title><rect x="60.2199%" y="1797" width="0.0126%" height="15" fill="rgb(229,2,41)" fg:x="185196736942" fg:w="38700471"/><text x="60.4699%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (43,772,502 samples, 0.01%)</title><rect x="60.2192%" y="1813" width="0.0142%" height="15" fill="rgb(232,89,16)" fg:x="185194424653" fg:w="43772502"/><text x="60.4692%" y="1823.50"></text></g><g><title>[libgit2.so.1.9.0] (44,826,522 samples, 0.01%)</title><rect x="60.2192%" y="1829" width="0.0146%" height="15" fill="rgb(247,59,52)" fg:x="185194424653" fg:w="44826522"/><text x="60.4692%" y="1839.50"></text></g><g><title>git2::patch::Patch::from_buffers (46,012,702 samples, 0.01%)</title><rect x="60.2192%" y="1909" width="0.0150%" height="15" fill="rgb(226,110,21)" fg:x="185194424653" fg:w="46012702"/><text x="60.4692%" y="1919.50"></text></g><g><title>git_patch_from_buffers (46,012,702 samples, 0.01%)</title><rect x="60.2192%" y="1893" width="0.0150%" height="15" fill="rgb(224,176,43)" fg:x="185194424653" fg:w="46012702"/><text x="60.4692%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (46,012,702 samples, 0.01%)</title><rect x="60.2192%" y="1877" width="0.0150%" height="15" fill="rgb(221,73,6)" fg:x="185194424653" fg:w="46012702"/><text x="60.4692%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (46,012,702 samples, 0.01%)</title><rect x="60.2192%" y="1861" width="0.0150%" height="15" fill="rgb(232,78,19)" fg:x="185194424653" fg:w="46012702"/><text x="60.4692%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (46,012,702 samples, 0.01%)</title><rect x="60.2192%" y="1845" width="0.0150%" height="15" fill="rgb(233,112,48)" fg:x="185194424653" fg:w="46012702"/><text x="60.4692%" y="1855.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (55,456,853 samples, 0.02%)</title><rect x="60.2168%" y="1941" width="0.0180%" height="15" fill="rgb(243,131,47)" fg:x="185187164561" fg:w="55456853"/><text x="60.4668%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (55,456,853 samples, 0.02%)</title><rect x="60.2168%" y="1925" width="0.0180%" height="15" fill="rgb(226,51,1)" fg:x="185187164561" fg:w="55456853"/><text x="60.4668%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (72,735,881 samples, 0.02%)</title><rect x="60.2351%" y="1941" width="0.0237%" height="15" fill="rgb(247,58,7)" fg:x="185243388385" fg:w="72735881"/><text x="60.4851%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (67,908,491 samples, 0.02%)</title><rect x="60.2367%" y="1925" width="0.0221%" height="15" fill="rgb(209,7,32)" fg:x="185248215775" fg:w="67908491"/><text x="60.4867%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (80,522,130 samples, 0.03%)</title><rect x="60.2609%" y="1941" width="0.0262%" height="15" fill="rgb(209,39,41)" fg:x="185322880532" fg:w="80522130"/><text x="60.5109%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (52,998,890 samples, 0.02%)</title><rect x="60.2879%" y="1925" width="0.0172%" height="15" fill="rgb(226,182,46)" fg:x="185405911544" fg:w="52998890"/><text x="60.5379%" y="1935.50"></text></g><g><title>worktree::BackgroundScanner::send_status_update::_{{closure}} (34,295,934 samples, 0.01%)</title><rect x="60.2940%" y="1909" width="0.0112%" height="15" fill="rgb(230,219,10)" fg:x="185424614500" fg:w="34295934"/><text x="60.5440%" y="1919.50"></text></g><g><title>worktree::build_diff (34,295,934 samples, 0.01%)</title><rect x="60.2940%" y="1893" width="0.0112%" height="15" fill="rgb(227,175,30)" fg:x="185424614500" fg:w="34295934"/><text x="60.5440%" y="1903.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (35,109,120 samples, 0.01%)</title><rect x="60.3139%" y="1909" width="0.0114%" height="15" fill="rgb(217,2,50)" fg:x="185485687640" fg:w="35109120"/><text x="60.5639%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (179,621,958 samples, 0.06%)</title><rect x="60.2871%" y="1941" width="0.0584%" height="15" fill="rgb(229,160,0)" fg:x="185403402662" fg:w="179621958"/><text x="60.5371%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (124,114,186 samples, 0.04%)</title><rect x="60.3052%" y="1925" width="0.0404%" height="15" fill="rgb(207,78,37)" fg:x="185458910434" fg:w="124114186"/><text x="60.5552%" y="1935.50"></text></g><g><title>stack__iter.constprop.0 (46,466,618 samples, 0.02%)</title><rect x="60.3664%" y="1845" width="0.0151%" height="15" fill="rgb(225,57,0)" fg:x="185647232025" fg:w="46466618"/><text x="60.6164%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (58,160,600 samples, 0.02%)</title><rect x="60.3982%" y="1845" width="0.0189%" height="15" fill="rgb(232,154,2)" fg:x="185745076893" fg:w="58160600"/><text x="60.6482%" y="1855.50"></text></g><g><title>ts_lex (59,744,540 samples, 0.02%)</title><rect x="60.4264%" y="1829" width="0.0194%" height="15" fill="rgb(241,212,25)" fg:x="185831780298" fg:w="59744540"/><text x="60.6764%" y="1839.50"></text></g><g><title>ts_parser__lex (119,392,560 samples, 0.04%)</title><rect x="60.4171%" y="1845" width="0.0388%" height="15" fill="rgb(226,69,20)" fg:x="185803237493" fg:w="119392560"/><text x="60.6671%" y="1855.50"></text></g><g><title>language::syntax_map::parse_text (358,331,639 samples, 0.12%)</title><rect x="60.3552%" y="1893" width="0.1165%" height="15" fill="rgb(247,184,54)" fg:x="185612767913" fg:w="358331639"/><text x="60.6052%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (357,013,636 samples, 0.12%)</title><rect x="60.3556%" y="1877" width="0.1161%" height="15" fill="rgb(210,145,0)" fg:x="185614085916" fg:w="357013636"/><text x="60.6056%" y="1887.50"></text></g><g><title>ts_parser_parse (342,217,792 samples, 0.11%)</title><rect x="60.3604%" y="1861" width="0.1113%" height="15" fill="rgb(253,82,12)" fg:x="185628881760" fg:w="342217792"/><text x="60.6104%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (83,406,288 samples, 0.03%)</title><rect x="60.4766%" y="1877" width="0.0271%" height="15" fill="rgb(245,42,11)" fg:x="185985966355" fg:w="83406288"/><text x="60.7266%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (494,008,536 samples, 0.16%)</title><rect x="60.3455%" y="1925" width="0.1606%" height="15" fill="rgb(219,147,32)" fg:x="185583024620" fg:w="494008536"/><text x="60.5955%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (480,085,738 samples, 0.16%)</title><rect x="60.3501%" y="1909" width="0.1561%" height="15" fill="rgb(246,12,7)" fg:x="185596947418" fg:w="480085738"/><text x="60.6001%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (93,273,208 samples, 0.03%)</title><rect x="60.4758%" y="1893" width="0.0303%" height="15" fill="rgb(243,50,9)" fg:x="185983759948" fg:w="93273208"/><text x="60.7258%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (497,313,891 samples, 0.16%)</title><rect x="60.3455%" y="1941" width="0.1617%" height="15" fill="rgb(219,149,6)" fg:x="185583024620" fg:w="497313891"/><text x="60.5955%" y="1951.50"></text></g><g><title>ts_language_table_entry (37,328,150 samples, 0.01%)</title><rect x="60.5342%" y="1861" width="0.0121%" height="15" fill="rgb(241,51,42)" fg:x="186163166675" fg:w="37328150"/><text x="60.7842%" y="1871.50"></text></g><g><title>ts_malloc_default (54,718,620 samples, 0.02%)</title><rect x="60.5716%" y="1829" width="0.0178%" height="15" fill="rgb(226,128,27)" fg:x="186278203495" fg:w="54718620"/><text x="60.8216%" y="1839.50"></text></g><g><title>malloc (53,661,735 samples, 0.02%)</title><rect x="60.5719%" y="1813" width="0.0174%" height="15" fill="rgb(244,144,4)" fg:x="186279260380" fg:w="53661735"/><text x="60.8219%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (75,106,110 samples, 0.02%)</title><rect x="60.5661%" y="1845" width="0.0244%" height="15" fill="rgb(221,4,13)" fg:x="186261410258" fg:w="75106110"/><text x="60.8161%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (57,292,392 samples, 0.02%)</title><rect x="60.6129%" y="1845" width="0.0186%" height="15" fill="rgb(208,170,28)" fg:x="186405262734" fg:w="57292392"/><text x="60.8629%" y="1855.50"></text></g><g><title>set_contains (40,438,609 samples, 0.01%)</title><rect x="60.6365%" y="1829" width="0.0131%" height="15" fill="rgb(226,131,13)" fg:x="186477727729" fg:w="40438609"/><text x="60.8865%" y="1839.50"></text></g><g><title>ts_lex (108,072,320 samples, 0.04%)</title><rect x="60.6510%" y="1829" width="0.0351%" height="15" fill="rgb(215,72,41)" fg:x="186522418839" fg:w="108072320"/><text x="60.9010%" y="1839.50"></text></g><g><title>ts_parser__lex (204,466,506 samples, 0.07%)</title><rect x="60.6315%" y="1845" width="0.0665%" height="15" fill="rgb(243,108,20)" fg:x="186462555126" fg:w="204466506"/><text x="60.8815%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (41,676,864 samples, 0.01%)</title><rect x="60.7043%" y="1845" width="0.0136%" height="15" fill="rgb(230,189,17)" fg:x="186686373031" fg:w="41676864"/><text x="60.9543%" y="1855.50"></text></g><g><title>ts_subtree_new_node (39,750,898 samples, 0.01%)</title><rect x="60.7209%" y="1845" width="0.0129%" height="15" fill="rgb(220,50,17)" fg:x="186737449885" fg:w="39750898"/><text x="60.9709%" y="1855.50"></text></g><g><title>ts_subtree_summarize_children (37,219,845 samples, 0.01%)</title><rect x="60.7217%" y="1829" width="0.0121%" height="15" fill="rgb(248,152,48)" fg:x="186739980938" fg:w="37219845"/><text x="60.9717%" y="1839.50"></text></g><g><title>ts_parser_parse (575,904,534 samples, 0.19%)</title><rect x="60.5469%" y="1861" width="0.1873%" height="15" fill="rgb(244,91,11)" fg:x="186202418368" fg:w="575904534"/><text x="60.7969%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (617,175,254 samples, 0.20%)</title><rect x="60.5342%" y="1877" width="0.2007%" height="15" fill="rgb(220,157,5)" fg:x="186163166675" fg:w="617175254"/><text x="60.7842%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (620,702,120 samples, 0.20%)</title><rect x="60.5342%" y="1893" width="0.2018%" height="15" fill="rgb(253,137,8)" fg:x="186163166675" fg:w="620702120"/><text x="60.7842%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (101,605,014 samples, 0.03%)</title><rect x="60.7462%" y="1877" width="0.0330%" height="15" fill="rgb(217,137,51)" fg:x="186815281954" fg:w="101605014"/><text x="60.9962%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (113,641,411 samples, 0.04%)</title><rect x="60.7454%" y="1893" width="0.0370%" height="15" fill="rgb(218,209,53)" fg:x="186812772174" fg:w="113641411"/><text x="60.9954%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (794,605,044 samples, 0.26%)</title><rect x="60.5247%" y="1909" width="0.2584%" height="15" fill="rgb(249,137,25)" fg:x="186134188615" fg:w="794605044"/><text x="60.7747%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (851,914,047 samples, 0.28%)</title><rect x="60.5072%" y="1941" width="0.2770%" height="15" fill="rgb(239,155,26)" fg:x="186080338511" fg:w="851914047"/><text x="60.7572%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (851,914,047 samples, 0.28%)</title><rect x="60.5072%" y="1925" width="0.2770%" height="15" fill="rgb(227,85,46)" fg:x="186080338511" fg:w="851914047"/><text x="60.7572%" y="1935.50"></text></g><g><title>[unknown] (30,799,949 samples, 0.01%)</title><rect x="60.7876%" y="1877" width="0.0100%" height="15" fill="rgb(251,107,43)" fg:x="186942404768" fg:w="30799949"/><text x="61.0376%" y="1887.50"></text></g><g><title>language::Language::new_with_id (42,183,406 samples, 0.01%)</title><rect x="60.7843%" y="1925" width="0.0137%" height="15" fill="rgb(234,170,33)" fg:x="186932252558" fg:w="42183406"/><text x="61.0343%" y="1935.50"></text></g><g><title>tree_sitter::Query::new (42,183,406 samples, 0.01%)</title><rect x="60.7843%" y="1909" width="0.0137%" height="15" fill="rgb(206,29,35)" fg:x="186932252558" fg:w="42183406"/><text x="61.0343%" y="1919.50"></text></g><g><title>ts_query_new (42,183,406 samples, 0.01%)</title><rect x="60.7843%" y="1893" width="0.0137%" height="15" fill="rgb(227,138,25)" fg:x="186932252558" fg:w="42183406"/><text x="61.0343%" y="1903.50"></text></g><g><title>language::Language::with_brackets_query (41,054,592 samples, 0.01%)</title><rect x="60.7980%" y="1909" width="0.0133%" height="15" fill="rgb(249,131,35)" fg:x="186974435964" fg:w="41054592"/><text x="61.0480%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (41,054,592 samples, 0.01%)</title><rect x="60.7980%" y="1893" width="0.0133%" height="15" fill="rgb(239,6,40)" fg:x="186974435964" fg:w="41054592"/><text x="61.0480%" y="1903.50"></text></g><g><title>ts_query_new (41,054,592 samples, 0.01%)</title><rect x="60.7980%" y="1877" width="0.0133%" height="15" fill="rgb(246,136,47)" fg:x="186974435964" fg:w="41054592"/><text x="61.0480%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (31,851,626 samples, 0.01%)</title><rect x="60.8010%" y="1861" width="0.0104%" height="15" fill="rgb(253,58,26)" fg:x="186983638930" fg:w="31851626"/><text x="61.0510%" y="1871.50"></text></g><g><title>language::language_registry::LanguageRegistry::load_language::_{{closure}} (175,415,834 samples, 0.06%)</title><rect x="60.7843%" y="1941" width="0.0570%" height="15" fill="rgb(237,141,10)" fg:x="186932252558" fg:w="175415834"/><text x="61.0343%" y="1951.50"></text></g><g><title>language::Language::with_queries (133,232,428 samples, 0.04%)</title><rect x="60.7980%" y="1925" width="0.0433%" height="15" fill="rgb(234,156,12)" fg:x="186974435964" fg:w="133232428"/><text x="61.0480%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,152,017,249 samples, 0.70%)</title><rect x="60.1506%" y="1957" width="0.6998%" height="15" fill="rgb(243,224,36)" fg:x="184983673123" fg:w="2152017249"/><text x="60.4006%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,182,632,557 samples, 0.71%)</title><rect x="60.1442%" y="1973" width="0.7097%" height="15" fill="rgb(205,229,51)" fg:x="184963812423" fg:w="2182632557"/><text x="60.3942%" y="1983.50"></text></g><g><title>Worker-3 (2,286,562,898 samples, 0.74%)</title><rect x="60.1435%" y="2069" width="0.7435%" height="15" fill="rgb(223,189,4)" fg:x="184961683399" fg:w="2286562898"/><text x="60.3935%" y="2079.50"></text></g><g><title>__GI___clone3 (2,284,433,874 samples, 0.74%)</title><rect x="60.1442%" y="2053" width="0.7428%" height="15" fill="rgb(249,167,54)" fg:x="184963812423" fg:w="2284433874"/><text x="60.3942%" y="2063.50"></text></g><g><title>start_thread (2,284,433,874 samples, 0.74%)</title><rect x="60.1442%" y="2037" width="0.7428%" height="15" fill="rgb(218,34,28)" fg:x="184963812423" fg:w="2284433874"/><text x="60.3942%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,284,433,874 samples, 0.74%)</title><rect x="60.1442%" y="2021" width="0.7428%" height="15" fill="rgb(232,109,42)" fg:x="184963812423" fg:w="2284433874"/><text x="60.3942%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,284,433,874 samples, 0.74%)</title><rect x="60.1442%" y="2005" width="0.7428%" height="15" fill="rgb(248,214,46)" fg:x="184963812423" fg:w="2284433874"/><text x="60.3942%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,284,433,874 samples, 0.74%)</title><rect x="60.1442%" y="1989" width="0.7428%" height="15" fill="rgb(244,216,40)" fg:x="184963812423" fg:w="2284433874"/><text x="60.3942%" y="1999.50"></text></g><g><title>syscall (101,801,317 samples, 0.03%)</title><rect x="60.8539%" y="1973" width="0.0331%" height="15" fill="rgb(231,226,31)" fg:x="187146444980" fg:w="101801317"/><text x="61.1039%" y="1983.50"></text></g><g><title>[unknown] (97,366,280 samples, 0.03%)</title><rect x="60.8553%" y="1957" width="0.0317%" height="15" fill="rgb(238,38,43)" fg:x="187150880017" fg:w="97366280"/><text x="61.1053%" y="1967.50"></text></g><g><title>[unknown] (92,811,390 samples, 0.03%)</title><rect x="60.8568%" y="1941" width="0.0302%" height="15" fill="rgb(208,88,43)" fg:x="187155434907" fg:w="92811390"/><text x="61.1068%" y="1951.50"></text></g><g><title>[unknown] (89,064,902 samples, 0.03%)</title><rect x="60.8580%" y="1925" width="0.0290%" height="15" fill="rgb(205,136,37)" fg:x="187159181395" fg:w="89064902"/><text x="61.1080%" y="1935.50"></text></g><g><title>[unknown] (86,592,662 samples, 0.03%)</title><rect x="60.8588%" y="1909" width="0.0282%" height="15" fill="rgb(237,34,14)" fg:x="187161653635" fg:w="86592662"/><text x="61.1088%" y="1919.50"></text></g><g><title>[unknown] (82,270,189 samples, 0.03%)</title><rect x="60.8603%" y="1893" width="0.0268%" height="15" fill="rgb(236,193,44)" fg:x="187165976108" fg:w="82270189"/><text x="61.1103%" y="1903.50"></text></g><g><title>[unknown] (78,864,349 samples, 0.03%)</title><rect x="60.8614%" y="1877" width="0.0256%" height="15" fill="rgb(231,48,10)" fg:x="187169381948" fg:w="78864349"/><text x="61.1114%" y="1887.50"></text></g><g><title>[unknown] (70,416,009 samples, 0.02%)</title><rect x="60.8641%" y="1861" width="0.0229%" height="15" fill="rgb(213,141,34)" fg:x="187177830288" fg:w="70416009"/><text x="61.1141%" y="1871.50"></text></g><g><title>[unknown] (68,179,608 samples, 0.02%)</title><rect x="60.8648%" y="1845" width="0.0222%" height="15" fill="rgb(249,130,34)" fg:x="187180066689" fg:w="68179608"/><text x="61.1148%" y="1855.50"></text></g><g><title>[unknown] (68,179,608 samples, 0.02%)</title><rect x="60.8648%" y="1829" width="0.0222%" height="15" fill="rgb(219,42,41)" fg:x="187180066689" fg:w="68179608"/><text x="61.1148%" y="1839.50"></text></g><g><title>[unknown] (67,066,334 samples, 0.02%)</title><rect x="60.8652%" y="1813" width="0.0218%" height="15" fill="rgb(224,100,54)" fg:x="187181179963" fg:w="67066334"/><text x="61.1152%" y="1823.50"></text></g><g><title>[unknown] (66,509,642 samples, 0.02%)</title><rect x="60.8654%" y="1797" width="0.0216%" height="15" fill="rgb(229,200,27)" fg:x="187181736655" fg:w="66509642"/><text x="61.1154%" y="1807.50"></text></g><g><title>[unknown] (63,510,977 samples, 0.02%)</title><rect x="60.8664%" y="1781" width="0.0207%" height="15" fill="rgb(217,118,10)" fg:x="187184735320" fg:w="63510977"/><text x="61.1164%" y="1791.50"></text></g><g><title>[unknown] (59,652,748 samples, 0.02%)</title><rect x="60.8676%" y="1765" width="0.0194%" height="15" fill="rgb(206,22,3)" fg:x="187188593549" fg:w="59652748"/><text x="61.1176%" y="1775.50"></text></g><g><title>[unknown] (56,843,729 samples, 0.02%)</title><rect x="60.8685%" y="1749" width="0.0185%" height="15" fill="rgb(232,163,46)" fg:x="187191402568" fg:w="56843729"/><text x="61.1185%" y="1759.50"></text></g><g><title>[unknown] (46,768,437 samples, 0.02%)</title><rect x="60.8718%" y="1733" width="0.0152%" height="15" fill="rgb(206,95,13)" fg:x="187201477860" fg:w="46768437"/><text x="61.1218%" y="1743.50"></text></g><g><title>[unknown] (37,355,359 samples, 0.01%)</title><rect x="60.8749%" y="1717" width="0.0121%" height="15" fill="rgb(253,154,18)" fg:x="187210890938" fg:w="37355359"/><text x="61.1249%" y="1727.50"></text></g><g><title>[libgit2.so.1.9.0] (33,494,085 samples, 0.01%)</title><rect x="60.9150%" y="1829" width="0.0109%" height="15" fill="rgb(219,32,23)" fg:x="187334480737" fg:w="33494085"/><text x="61.1650%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (51,464,119 samples, 0.02%)</title><rect x="60.9150%" y="1925" width="0.0167%" height="15" fill="rgb(230,191,45)" fg:x="187334480737" fg:w="51464119"/><text x="61.1650%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (51,464,119 samples, 0.02%)</title><rect x="60.9150%" y="1909" width="0.0167%" height="15" fill="rgb(229,64,36)" fg:x="187334480737" fg:w="51464119"/><text x="61.1650%" y="1919.50"></text></g><g><title>git_odb_read (51,464,119 samples, 0.02%)</title><rect x="60.9150%" y="1893" width="0.0167%" height="15" fill="rgb(205,129,25)" fg:x="187334480737" fg:w="51464119"/><text x="61.1650%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (51,464,119 samples, 0.02%)</title><rect x="60.9150%" y="1877" width="0.0167%" height="15" fill="rgb(254,112,7)" fg:x="187334480737" fg:w="51464119"/><text x="61.1650%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (51,464,119 samples, 0.02%)</title><rect x="60.9150%" y="1861" width="0.0167%" height="15" fill="rgb(226,53,48)" fg:x="187334480737" fg:w="51464119"/><text x="61.1650%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (51,464,119 samples, 0.02%)</title><rect x="60.9150%" y="1845" width="0.0167%" height="15" fill="rgb(214,153,38)" fg:x="187334480737" fg:w="51464119"/><text x="61.1650%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (71,312,894 samples, 0.02%)</title><rect x="60.9150%" y="1941" width="0.0232%" height="15" fill="rgb(243,101,7)" fg:x="187334480737" fg:w="71312894"/><text x="61.1650%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (42,313,902 samples, 0.01%)</title><rect x="60.9680%" y="1797" width="0.0138%" height="15" fill="rgb(240,140,22)" fg:x="187497263666" fg:w="42313902"/><text x="61.2180%" y="1807.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (51,276,995 samples, 0.02%)</title><rect x="60.9655%" y="1941" width="0.0167%" height="15" fill="rgb(235,114,2)" fg:x="187489594094" fg:w="51276995"/><text x="61.2155%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (51,276,995 samples, 0.02%)</title><rect x="60.9655%" y="1925" width="0.0167%" height="15" fill="rgb(242,59,12)" fg:x="187489594094" fg:w="51276995"/><text x="61.2155%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (46,241,371 samples, 0.02%)</title><rect x="60.9671%" y="1909" width="0.0150%" height="15" fill="rgb(252,134,9)" fg:x="187494629718" fg:w="46241371"/><text x="61.2171%" y="1919.50"></text></g><g><title>git_patch_from_buffers (46,241,371 samples, 0.02%)</title><rect x="60.9671%" y="1893" width="0.0150%" height="15" fill="rgb(236,4,44)" fg:x="187494629718" fg:w="46241371"/><text x="61.2171%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (46,241,371 samples, 0.02%)</title><rect x="60.9671%" y="1877" width="0.0150%" height="15" fill="rgb(254,172,41)" fg:x="187494629718" fg:w="46241371"/><text x="61.2171%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (46,241,371 samples, 0.02%)</title><rect x="60.9671%" y="1861" width="0.0150%" height="15" fill="rgb(244,63,20)" fg:x="187494629718" fg:w="46241371"/><text x="61.2171%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (46,241,371 samples, 0.02%)</title><rect x="60.9671%" y="1845" width="0.0150%" height="15" fill="rgb(250,73,31)" fg:x="187494629718" fg:w="46241371"/><text x="61.2171%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (44,987,581 samples, 0.01%)</title><rect x="60.9675%" y="1829" width="0.0146%" height="15" fill="rgb(241,38,36)" fg:x="187495883508" fg:w="44987581"/><text x="61.2175%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (44,987,581 samples, 0.01%)</title><rect x="60.9675%" y="1813" width="0.0146%" height="15" fill="rgb(245,211,2)" fg:x="187495883508" fg:w="44987581"/><text x="61.2175%" y="1823.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (69,748,661 samples, 0.02%)</title><rect x="60.9879%" y="1925" width="0.0227%" height="15" fill="rgb(206,120,28)" fg:x="187558449094" fg:w="69748661"/><text x="61.2379%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (82,970,117 samples, 0.03%)</title><rect x="60.9839%" y="1941" width="0.0270%" height="15" fill="rgb(211,59,34)" fg:x="187546303281" fg:w="82970117"/><text x="61.2339%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (67,071,955 samples, 0.02%)</title><rect x="61.0117%" y="1941" width="0.0218%" height="15" fill="rgb(233,168,5)" fg:x="187631823566" fg:w="67071955"/><text x="61.2617%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (37,307,194 samples, 0.01%)</title><rect x="61.0337%" y="1925" width="0.0121%" height="15" fill="rgb(234,33,13)" fg:x="187699370129" fg:w="37307194"/><text x="61.2837%" y="1935.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (41,124,134 samples, 0.01%)</title><rect x="61.0547%" y="1909" width="0.0134%" height="15" fill="rgb(231,150,26)" fg:x="187763949458" fg:w="41124134"/><text x="61.3047%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (173,502,283 samples, 0.06%)</title><rect x="61.0337%" y="1941" width="0.0564%" height="15" fill="rgb(217,191,4)" fg:x="187699365022" fg:w="173502283"/><text x="61.2837%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (136,189,982 samples, 0.04%)</title><rect x="61.0458%" y="1925" width="0.0443%" height="15" fill="rgb(246,198,38)" fg:x="187736677323" fg:w="136189982"/><text x="61.2958%" y="1935.50"></text></g><g><title>stack__iter.constprop.0 (56,909,102 samples, 0.02%)</title><rect x="61.1205%" y="1845" width="0.0185%" height="15" fill="rgb(245,64,37)" fg:x="187966297863" fg:w="56909102"/><text x="61.3705%" y="1855.50"></text></g><g><title>ts_lex (64,456,262 samples, 0.02%)</title><rect x="61.1761%" y="1829" width="0.0210%" height="15" fill="rgb(250,30,36)" fg:x="188137172405" fg:w="64456262"/><text x="61.4261%" y="1839.50"></text></g><g><title>ts_parser__lex (130,534,882 samples, 0.04%)</title><rect x="61.1654%" y="1845" width="0.0424%" height="15" fill="rgb(217,86,53)" fg:x="188104287213" fg:w="130534882"/><text x="61.4154%" y="1855.50"></text></g><g><title>ts_parser_parse (361,578,348 samples, 0.12%)</title><rect x="61.1127%" y="1861" width="0.1176%" height="15" fill="rgb(228,157,16)" fg:x="187942335948" fg:w="361578348"/><text x="61.3627%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (393,086,446 samples, 0.13%)</title><rect x="61.1042%" y="1893" width="0.1278%" height="15" fill="rgb(217,59,31)" fg:x="187916084361" fg:w="393086446"/><text x="61.3542%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (393,086,446 samples, 0.13%)</title><rect x="61.1042%" y="1877" width="0.1278%" height="15" fill="rgb(237,138,41)" fg:x="187916084361" fg:w="393086446"/><text x="61.3542%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (88,663,876 samples, 0.03%)</title><rect x="61.2378%" y="1877" width="0.0288%" height="15" fill="rgb(227,91,49)" fg:x="188327012687" fg:w="88663876"/><text x="61.4878%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (552,608,938 samples, 0.18%)</title><rect x="61.0901%" y="1925" width="0.1797%" height="15" fill="rgb(247,21,44)" fg:x="187872867305" fg:w="552608938"/><text x="61.3401%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (529,060,484 samples, 0.17%)</title><rect x="61.0978%" y="1909" width="0.1720%" height="15" fill="rgb(219,210,51)" fg:x="187896415759" fg:w="529060484"/><text x="61.3478%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (102,717,607 samples, 0.03%)</title><rect x="61.2364%" y="1893" width="0.0334%" height="15" fill="rgb(209,140,6)" fg:x="188322758636" fg:w="102717607"/><text x="61.4864%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (555,064,512 samples, 0.18%)</title><rect x="61.0901%" y="1941" width="0.1805%" height="15" fill="rgb(221,188,24)" fg:x="187872867305" fg:w="555064512"/><text x="61.3401%" y="1951.50"></text></g><g><title>ts_malloc_default (73,959,746 samples, 0.02%)</title><rect x="61.3424%" y="1829" width="0.0240%" height="15" fill="rgb(232,154,20)" fg:x="188648649001" fg:w="73959746"/><text x="61.5924%" y="1839.50"></text></g><g><title>malloc (73,959,746 samples, 0.02%)</title><rect x="61.3424%" y="1813" width="0.0240%" height="15" fill="rgb(244,137,50)" fg:x="188648649001" fg:w="73959746"/><text x="61.5924%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (112,262,858 samples, 0.04%)</title><rect x="61.3315%" y="1845" width="0.0365%" height="15" fill="rgb(225,185,43)" fg:x="188615207335" fg:w="112262858"/><text x="61.5815%" y="1855.50"></text></g><g><title>stack_node_new (36,893,353 samples, 0.01%)</title><rect x="61.3687%" y="1845" width="0.0120%" height="15" fill="rgb(213,205,38)" fg:x="188729686991" fg:w="36893353"/><text x="61.6187%" y="1855.50"></text></g><g><title>ts_language_table_entry (44,003,666 samples, 0.01%)</title><rect x="61.3880%" y="1845" width="0.0143%" height="15" fill="rgb(236,73,12)" fg:x="188788863467" fg:w="44003666"/><text x="61.6380%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (274,565,213 samples, 0.09%)</title><rect x="61.4090%" y="1845" width="0.0893%" height="15" fill="rgb(235,219,13)" fg:x="188853537912" fg:w="274565213"/><text x="61.6590%" y="1855.50"></text></g><g><title>set_contains (39,214,337 samples, 0.01%)</title><rect x="61.5044%" y="1829" width="0.0128%" height="15" fill="rgb(218,59,36)" fg:x="189146858350" fg:w="39214337"/><text x="61.7544%" y="1839.50"></text></g><g><title>ts_lex (103,527,356 samples, 0.03%)</title><rect x="61.5183%" y="1829" width="0.0337%" height="15" fill="rgb(205,110,39)" fg:x="189189606544" fg:w="103527356"/><text x="61.7683%" y="1839.50"></text></g><g><title>wasmtime_func_call_unchecked (47,579,492 samples, 0.02%)</title><rect x="61.5653%" y="1797" width="0.0155%" height="15" fill="rgb(218,206,42)" fg:x="189334308508" fg:w="47579492"/><text x="61.8153%" y="1807.50"></text></g><g><title>wasmtime::runtime::func::invoke_wasm_and_catch_traps (47,579,492 samples, 0.02%)</title><rect x="61.5653%" y="1781" width="0.0155%" height="15" fill="rgb(248,125,24)" fg:x="189334308508" fg:w="47579492"/><text x="61.8153%" y="1791.50"></text></g><g><title>wasmtime_setjmp_29_0_1 (47,579,492 samples, 0.02%)</title><rect x="61.5653%" y="1765" width="0.0155%" height="15" fill="rgb(242,28,27)" fg:x="189334308508" fg:w="47579492"/><text x="61.8153%" y="1775.50"></text></g><g><title>wasmtime_setjmp_inverted (47,579,492 samples, 0.02%)</title><rect x="61.5653%" y="1749" width="0.0155%" height="15" fill="rgb(216,228,15)" fg:x="189334308508" fg:w="47579492"/><text x="61.8153%" y="1759.50"></text></g><g><title>[perf-181794.map] (47,579,492 samples, 0.02%)</title><rect x="61.5653%" y="1733" width="0.0155%" height="15" fill="rgb(235,116,46)" fg:x="189334308508" fg:w="47579492"/><text x="61.8153%" y="1743.50"></text></g><g><title>[perf-181794.map] (46,442,187 samples, 0.02%)</title><rect x="61.5657%" y="1717" width="0.0151%" height="15" fill="rgb(224,18,32)" fg:x="189335445813" fg:w="46442187"/><text x="61.8157%" y="1727.50"></text></g><g><title>[perf-181794.map] (33,335,942 samples, 0.01%)</title><rect x="61.5700%" y="1701" width="0.0108%" height="15" fill="rgb(252,5,12)" fg:x="189348552058" fg:w="33335942"/><text x="61.8200%" y="1711.50"></text></g><g><title>ts_parser__lex (257,486,197 samples, 0.08%)</title><rect x="61.4983%" y="1845" width="0.0837%" height="15" fill="rgb(251,36,5)" fg:x="189128103125" fg:w="257486197"/><text x="61.7483%" y="1855.50"></text></g><g><title>ts_wasm_store__call_lex_function (52,419,172 samples, 0.02%)</title><rect x="61.5650%" y="1829" width="0.0170%" height="15" fill="rgb(217,53,14)" fg:x="189333170150" fg:w="52419172"/><text x="61.8150%" y="1839.50"></text></g><g><title>ts_wasm_store__call (51,280,814 samples, 0.02%)</title><rect x="61.5653%" y="1813" width="0.0167%" height="15" fill="rgb(215,86,45)" fg:x="189334308508" fg:w="51280814"/><text x="61.8153%" y="1823.50"></text></g><g><title>ts_parser__recover (31,164,155 samples, 0.01%)</title><rect x="61.5820%" y="1845" width="0.0101%" height="15" fill="rgb(242,169,11)" fg:x="189385589322" fg:w="31164155"/><text x="61.8320%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (38,906,052 samples, 0.01%)</title><rect x="61.6071%" y="1845" width="0.0127%" height="15" fill="rgb(211,213,45)" fg:x="189462869883" fg:w="38906052"/><text x="61.8571%" y="1855.50"></text></g><g><title>ts_parser_parse (989,912,888 samples, 0.32%)</title><rect x="61.3114%" y="1861" width="0.3219%" height="15" fill="rgb(205,88,11)" fg:x="188553505586" fg:w="989912888"/><text x="61.5614%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (1,030,470,967 samples, 0.34%)</title><rect x="61.2998%" y="1893" width="0.3351%" height="15" fill="rgb(252,69,26)" fg:x="188517747870" fg:w="1030470967"/><text x="61.5498%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (1,027,434,171 samples, 0.33%)</title><rect x="61.3008%" y="1877" width="0.3341%" height="15" fill="rgb(246,123,37)" fg:x="188520784666" fg:w="1027434171"/><text x="61.5508%" y="1887.50"></text></g><g><title>ts_tree_cursor_current_status (41,201,456 samples, 0.01%)</title><rect x="61.6731%" y="1861" width="0.0134%" height="15" fill="rgb(212,205,5)" fg:x="189665749049" fg:w="41201456"/><text x="61.9231%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (144,674,983 samples, 0.05%)</title><rect x="61.6549%" y="1877" width="0.0470%" height="15" fill="rgb(253,148,0)" fg:x="189609783851" fg:w="144674983"/><text x="61.9049%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (156,266,948 samples, 0.05%)</title><rect x="61.6537%" y="1893" width="0.0508%" height="15" fill="rgb(239,22,4)" fg:x="189606096489" fg:w="156266948"/><text x="61.9037%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (1,335,665,036 samples, 0.43%)</title><rect x="61.2706%" y="1941" width="0.4343%" height="15" fill="rgb(226,26,53)" fg:x="188427931817" fg:w="1335665036"/><text x="61.5206%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (1,335,665,036 samples, 0.43%)</title><rect x="61.2706%" y="1925" width="0.4343%" height="15" fill="rgb(225,229,45)" fg:x="188427931817" fg:w="1335665036"/><text x="61.5206%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (1,295,854,711 samples, 0.42%)</title><rect x="61.2835%" y="1909" width="0.4214%" height="15" fill="rgb(220,60,37)" fg:x="188467742142" fg:w="1295854711"/><text x="61.5335%" y="1919.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,519,672,631 samples, 0.82%)</title><rect x="60.8940%" y="1957" width="0.8193%" height="15" fill="rgb(217,180,35)" fg:x="187269726678" fg:w="2519672631"/><text x="61.1440%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,550,196,730 samples, 0.83%)</title><rect x="60.8885%" y="1973" width="0.8292%" height="15" fill="rgb(229,7,53)" fg:x="187252909482" fg:w="2550196730"/><text x="61.1385%" y="1983.50"></text></g><g><title>__GI___clone3 (2,659,654,295 samples, 0.86%)</title><rect x="60.8880%" y="2053" width="0.8648%" height="15" fill="rgb(254,137,3)" fg:x="187251340354" fg:w="2659654295"/><text x="61.1380%" y="2063.50"></text></g><g><title>start_thread (2,659,654,295 samples, 0.86%)</title><rect x="60.8880%" y="2037" width="0.8648%" height="15" fill="rgb(215,140,41)" fg:x="187251340354" fg:w="2659654295"/><text x="61.1380%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,659,654,295 samples, 0.86%)</title><rect x="60.8880%" y="2021" width="0.8648%" height="15" fill="rgb(250,80,15)" fg:x="187251340354" fg:w="2659654295"/><text x="61.1380%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,659,654,295 samples, 0.86%)</title><rect x="60.8880%" y="2005" width="0.8648%" height="15" fill="rgb(252,191,6)" fg:x="187251340354" fg:w="2659654295"/><text x="61.1380%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,659,654,295 samples, 0.86%)</title><rect x="60.8880%" y="1989" width="0.8648%" height="15" fill="rgb(246,217,18)" fg:x="187251340354" fg:w="2659654295"/><text x="61.1380%" y="1999.50"></text></g><g><title>syscall (107,888,437 samples, 0.04%)</title><rect x="61.7178%" y="1973" width="0.0351%" height="15" fill="rgb(223,93,7)" fg:x="189803106212" fg:w="107888437"/><text x="61.9678%" y="1983.50"></text></g><g><title>[unknown] (101,472,328 samples, 0.03%)</title><rect x="61.7198%" y="1957" width="0.0330%" height="15" fill="rgb(225,55,52)" fg:x="189809522321" fg:w="101472328"/><text x="61.9698%" y="1967.50"></text></g><g><title>[unknown] (101,467,696 samples, 0.03%)</title><rect x="61.7198%" y="1941" width="0.0330%" height="15" fill="rgb(240,31,24)" fg:x="189809526953" fg:w="101467696"/><text x="61.9698%" y="1951.50"></text></g><g><title>[unknown] (98,877,405 samples, 0.03%)</title><rect x="61.7207%" y="1925" width="0.0322%" height="15" fill="rgb(205,56,52)" fg:x="189812117244" fg:w="98877405"/><text x="61.9707%" y="1935.50"></text></g><g><title>[unknown] (95,897,595 samples, 0.03%)</title><rect x="61.7217%" y="1909" width="0.0312%" height="15" fill="rgb(246,146,12)" fg:x="189815097054" fg:w="95897595"/><text x="61.9717%" y="1919.50"></text></g><g><title>[unknown] (93,787,489 samples, 0.03%)</title><rect x="61.7223%" y="1893" width="0.0305%" height="15" fill="rgb(239,84,36)" fg:x="189817207160" fg:w="93787489"/><text x="61.9723%" y="1903.50"></text></g><g><title>[unknown] (91,690,954 samples, 0.03%)</title><rect x="61.7230%" y="1877" width="0.0298%" height="15" fill="rgb(207,41,40)" fg:x="189819303695" fg:w="91690954"/><text x="61.9730%" y="1887.50"></text></g><g><title>[unknown] (83,275,640 samples, 0.03%)</title><rect x="61.7258%" y="1861" width="0.0271%" height="15" fill="rgb(241,179,25)" fg:x="189827719009" fg:w="83275640"/><text x="61.9758%" y="1871.50"></text></g><g><title>[unknown] (80,363,551 samples, 0.03%)</title><rect x="61.7267%" y="1845" width="0.0261%" height="15" fill="rgb(210,0,34)" fg:x="189830631098" fg:w="80363551"/><text x="61.9767%" y="1855.50"></text></g><g><title>[unknown] (78,311,033 samples, 0.03%)</title><rect x="61.7274%" y="1829" width="0.0255%" height="15" fill="rgb(225,217,29)" fg:x="189832683616" fg:w="78311033"/><text x="61.9774%" y="1839.50"></text></g><g><title>[unknown] (75,496,649 samples, 0.02%)</title><rect x="61.7283%" y="1813" width="0.0245%" height="15" fill="rgb(216,191,38)" fg:x="189835498000" fg:w="75496649"/><text x="61.9783%" y="1823.50"></text></g><g><title>[unknown] (75,023,304 samples, 0.02%)</title><rect x="61.7284%" y="1797" width="0.0244%" height="15" fill="rgb(232,140,52)" fg:x="189835971345" fg:w="75023304"/><text x="61.9784%" y="1807.50"></text></g><g><title>[unknown] (72,700,328 samples, 0.02%)</title><rect x="61.7292%" y="1781" width="0.0236%" height="15" fill="rgb(223,158,51)" fg:x="189838294321" fg:w="72700328"/><text x="61.9792%" y="1791.50"></text></g><g><title>[unknown] (63,869,178 samples, 0.02%)</title><rect x="61.7321%" y="1765" width="0.0208%" height="15" fill="rgb(235,29,51)" fg:x="189847125471" fg:w="63869178"/><text x="61.9821%" y="1775.50"></text></g><g><title>[unknown] (58,104,014 samples, 0.02%)</title><rect x="61.7340%" y="1749" width="0.0189%" height="15" fill="rgb(215,181,18)" fg:x="189852890635" fg:w="58104014"/><text x="61.9840%" y="1759.50"></text></g><g><title>[unknown] (51,170,283 samples, 0.02%)</title><rect x="61.7362%" y="1733" width="0.0166%" height="15" fill="rgb(227,125,34)" fg:x="189859824366" fg:w="51170283"/><text x="61.9862%" y="1743.50"></text></g><g><title>[unknown] (42,951,131 samples, 0.01%)</title><rect x="61.7389%" y="1717" width="0.0140%" height="15" fill="rgb(230,197,49)" fg:x="189868043518" fg:w="42951131"/><text x="61.9889%" y="1727.50"></text></g><g><title>Worker-4 (2,663,169,071 samples, 0.87%)</title><rect x="60.8870%" y="2069" width="0.8660%" height="15" fill="rgb(239,141,16)" fg:x="187248246297" fg:w="2663169071"/><text x="61.1370%" y="2079.50"></text></g><g><title>[libgit2.so.1.9.0] (48,422,306 samples, 0.02%)</title><rect x="61.7742%" y="1829" width="0.0157%" height="15" fill="rgb(225,105,43)" fg:x="189976633345" fg:w="48422306"/><text x="62.0242%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (62,567,895 samples, 0.02%)</title><rect x="61.7742%" y="1925" width="0.0203%" height="15" fill="rgb(214,131,14)" fg:x="189976633345" fg:w="62567895"/><text x="62.0242%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (62,567,895 samples, 0.02%)</title><rect x="61.7742%" y="1909" width="0.0203%" height="15" fill="rgb(229,177,11)" fg:x="189976633345" fg:w="62567895"/><text x="62.0242%" y="1919.50"></text></g><g><title>git_odb_read (62,567,895 samples, 0.02%)</title><rect x="61.7742%" y="1893" width="0.0203%" height="15" fill="rgb(231,180,14)" fg:x="189976633345" fg:w="62567895"/><text x="62.0242%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (62,567,895 samples, 0.02%)</title><rect x="61.7742%" y="1877" width="0.0203%" height="15" fill="rgb(232,88,2)" fg:x="189976633345" fg:w="62567895"/><text x="62.0242%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (62,567,895 samples, 0.02%)</title><rect x="61.7742%" y="1861" width="0.0203%" height="15" fill="rgb(205,220,8)" fg:x="189976633345" fg:w="62567895"/><text x="62.0242%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (62,567,895 samples, 0.02%)</title><rect x="61.7742%" y="1845" width="0.0203%" height="15" fill="rgb(225,23,53)" fg:x="189976633345" fg:w="62567895"/><text x="62.0242%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (91,963,752 samples, 0.03%)</title><rect x="61.7742%" y="1941" width="0.0299%" height="15" fill="rgb(213,62,29)" fg:x="189976633345" fg:w="91963752"/><text x="62.0242%" y="1951.50"></text></g><g><title>&lt;gpui::platform::linux::dispatcher::LinuxDispatcher as gpui::platform::PlatformDispatcher&gt;::dispatch (33,339,033 samples, 0.01%)</title><rect x="61.8144%" y="1941" width="0.0108%" height="15" fill="rgb(227,75,7)" fg:x="190100207777" fg:w="33339033"/><text x="62.0644%" y="1951.50"></text></g><g><title>syscall (32,229,705 samples, 0.01%)</title><rect x="61.8147%" y="1925" width="0.0105%" height="15" fill="rgb(207,105,14)" fg:x="190101317105" fg:w="32229705"/><text x="62.0647%" y="1935.50"></text></g><g><title>[unknown] (32,229,705 samples, 0.01%)</title><rect x="61.8147%" y="1909" width="0.0105%" height="15" fill="rgb(245,62,29)" fg:x="190101317105" fg:w="32229705"/><text x="62.0647%" y="1919.50"></text></g><g><title>[unknown] (32,229,705 samples, 0.01%)</title><rect x="61.8147%" y="1893" width="0.0105%" height="15" fill="rgb(236,202,4)" fg:x="190101317105" fg:w="32229705"/><text x="62.0647%" y="1903.50"></text></g><g><title>[unknown] (31,066,766 samples, 0.01%)</title><rect x="61.8151%" y="1877" width="0.0101%" height="15" fill="rgb(250,67,1)" fg:x="190102480044" fg:w="31066766"/><text x="62.0651%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (36,285,782 samples, 0.01%)</title><rect x="61.8334%" y="1797" width="0.0118%" height="15" fill="rgb(253,115,44)" fg:x="190158591803" fg:w="36285782"/><text x="62.0834%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (45,305,931 samples, 0.01%)</title><rect x="61.8326%" y="1813" width="0.0147%" height="15" fill="rgb(251,139,18)" fg:x="190156330102" fg:w="45305931"/><text x="62.0826%" y="1823.50"></text></g><g><title>git2::patch::Patch::from_buffers (47,538,577 samples, 0.02%)</title><rect x="61.8326%" y="1909" width="0.0155%" height="15" fill="rgb(218,22,32)" fg:x="190156330102" fg:w="47538577"/><text x="62.0826%" y="1919.50"></text></g><g><title>git_patch_from_buffers (47,538,577 samples, 0.02%)</title><rect x="61.8326%" y="1893" width="0.0155%" height="15" fill="rgb(243,53,5)" fg:x="190156330102" fg:w="47538577"/><text x="62.0826%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (47,538,577 samples, 0.02%)</title><rect x="61.8326%" y="1877" width="0.0155%" height="15" fill="rgb(227,56,16)" fg:x="190156330102" fg:w="47538577"/><text x="62.0826%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (47,538,577 samples, 0.02%)</title><rect x="61.8326%" y="1861" width="0.0155%" height="15" fill="rgb(245,53,0)" fg:x="190156330102" fg:w="47538577"/><text x="62.0826%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (47,538,577 samples, 0.02%)</title><rect x="61.8326%" y="1845" width="0.0155%" height="15" fill="rgb(216,170,35)" fg:x="190156330102" fg:w="47538577"/><text x="62.0826%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (47,538,577 samples, 0.02%)</title><rect x="61.8326%" y="1829" width="0.0155%" height="15" fill="rgb(211,200,8)" fg:x="190156330102" fg:w="47538577"/><text x="62.0826%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (50,679,352 samples, 0.02%)</title><rect x="61.8322%" y="1941" width="0.0165%" height="15" fill="rgb(228,204,44)" fg:x="190155092888" fg:w="50679352"/><text x="62.0822%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (50,679,352 samples, 0.02%)</title><rect x="61.8322%" y="1925" width="0.0165%" height="15" fill="rgb(214,121,17)" fg:x="190155092888" fg:w="50679352"/><text x="62.0822%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (79,606,588 samples, 0.03%)</title><rect x="61.8491%" y="1941" width="0.0259%" height="15" fill="rgb(233,64,38)" fg:x="190206870100" fg:w="79606588"/><text x="62.0991%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (73,628,571 samples, 0.02%)</title><rect x="61.8510%" y="1925" width="0.0239%" height="15" fill="rgb(253,54,19)" fg:x="190212848117" fg:w="73628571"/><text x="62.1010%" y="1935.50"></text></g><g><title>rope::Chunks::prev_line (32,919,975 samples, 0.01%)</title><rect x="61.8845%" y="1925" width="0.0107%" height="15" fill="rgb(253,94,18)" fg:x="190315893744" fg:w="32919975"/><text x="62.1345%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (81,405,605 samples, 0.03%)</title><rect x="61.8760%" y="1941" width="0.0265%" height="15" fill="rgb(227,57,52)" fg:x="190289688798" fg:w="81405605"/><text x="62.1260%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (41,272,339 samples, 0.01%)</title><rect x="61.9234%" y="1909" width="0.0134%" height="15" fill="rgb(230,228,50)" fg:x="190435494662" fg:w="41272339"/><text x="62.1734%" y="1919.50"></text></g><g><title>util::paths::PathMatcher::check_with_end_separator (31,241,058 samples, 0.01%)</title><rect x="61.9374%" y="1909" width="0.0102%" height="15" fill="rgb(217,205,27)" fg:x="190478493770" fg:w="31241058"/><text x="62.1874%" y="1919.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (150,043,133 samples, 0.05%)</title><rect x="61.9110%" y="1925" width="0.0488%" height="15" fill="rgb(252,71,50)" fg:x="190397483238" fg:w="150043133"/><text x="62.1610%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (181,229,386 samples, 0.06%)</title><rect x="61.9026%" y="1941" width="0.0589%" height="15" fill="rgb(209,86,4)" fg:x="190371576352" fg:w="181229386"/><text x="62.1526%" y="1951.50"></text></g><g><title>stack__iter.constprop.0 (34,970,000 samples, 0.01%)</title><rect x="61.9896%" y="1845" width="0.0114%" height="15" fill="rgb(229,94,0)" fg:x="190639186529" fg:w="34970000"/><text x="62.2396%" y="1855.50"></text></g><g><title>ts_lex (56,121,508 samples, 0.02%)</title><rect x="62.0319%" y="1829" width="0.0182%" height="15" fill="rgb(252,223,21)" fg:x="190769235857" fg:w="56121508"/><text x="62.2819%" y="1839.50"></text></g><g><title>ts_parser__lex (128,243,679 samples, 0.04%)</title><rect x="62.0213%" y="1845" width="0.0417%" height="15" fill="rgb(230,210,4)" fg:x="190736532493" fg:w="128243679"/><text x="62.2713%" y="1855.50"></text></g><g><title>language::syntax_map::parse_text (354,509,222 samples, 0.12%)</title><rect x="61.9706%" y="1893" width="0.1153%" height="15" fill="rgb(240,149,38)" fg:x="190580582427" fg:w="354509222"/><text x="62.2206%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (353,288,045 samples, 0.11%)</title><rect x="61.9710%" y="1877" width="0.1149%" height="15" fill="rgb(254,105,20)" fg:x="190581803604" fg:w="353288045"/><text x="62.2210%" y="1887.50"></text></g><g><title>ts_parser_parse (329,811,473 samples, 0.11%)</title><rect x="61.9786%" y="1861" width="0.1072%" height="15" fill="rgb(253,87,46)" fg:x="190605280176" fg:w="329811473"/><text x="62.2286%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (67,335,979 samples, 0.02%)</title><rect x="62.0946%" y="1877" width="0.0219%" height="15" fill="rgb(253,116,33)" fg:x="190962058175" fg:w="67335979"/><text x="62.3446%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (480,367,419 samples, 0.16%)</title><rect x="61.9615%" y="1925" width="0.1562%" height="15" fill="rgb(229,198,5)" fg:x="190552805738" fg:w="480367419"/><text x="62.2115%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (468,146,833 samples, 0.15%)</title><rect x="61.9655%" y="1909" width="0.1522%" height="15" fill="rgb(242,38,37)" fg:x="190565026324" fg:w="468146833"/><text x="62.2155%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (76,739,472 samples, 0.02%)</title><rect x="62.0928%" y="1893" width="0.0250%" height="15" fill="rgb(242,69,53)" fg:x="190956433685" fg:w="76739472"/><text x="62.3428%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (481,349,115 samples, 0.16%)</title><rect x="61.9615%" y="1941" width="0.1565%" height="15" fill="rgb(249,80,16)" fg:x="190552805738" fg:w="481349115"/><text x="62.2115%" y="1951.50"></text></g><g><title>stack__iter.constprop.0 (38,067,178 samples, 0.01%)</title><rect x="62.1546%" y="1845" width="0.0124%" height="15" fill="rgb(206,128,11)" fg:x="191146424455" fg:w="38067178"/><text x="62.4046%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (62,453,573 samples, 0.02%)</title><rect x="62.1835%" y="1845" width="0.0203%" height="15" fill="rgb(212,35,20)" fg:x="191235517952" fg:w="62453573"/><text x="62.4335%" y="1855.50"></text></g><g><title>ts_lex (57,239,818 samples, 0.02%)</title><rect x="62.2126%" y="1829" width="0.0186%" height="15" fill="rgb(236,79,13)" fg:x="191324779456" fg:w="57239818"/><text x="62.4626%" y="1839.50"></text></g><g><title>ts_parser__lex (114,096,832 samples, 0.04%)</title><rect x="62.2038%" y="1845" width="0.0371%" height="15" fill="rgb(233,123,3)" fg:x="191297971525" fg:w="114096832"/><text x="62.4538%" y="1855.50"></text></g><g><title>ts_parser_parse (368,258,333 samples, 0.12%)</title><rect x="62.1433%" y="1861" width="0.1197%" height="15" fill="rgb(214,93,52)" fg:x="191111753131" fg:w="368258333"/><text x="62.3933%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (393,053,227 samples, 0.13%)</title><rect x="62.1359%" y="1877" width="0.1278%" height="15" fill="rgb(251,37,40)" fg:x="191089046510" fg:w="393053227"/><text x="62.3859%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (394,183,942 samples, 0.13%)</title><rect x="62.1359%" y="1893" width="0.1282%" height="15" fill="rgb(227,80,54)" fg:x="191089046510" fg:w="394183942"/><text x="62.3859%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (43,334,896 samples, 0.01%)</title><rect x="62.2721%" y="1877" width="0.0141%" height="15" fill="rgb(254,48,11)" fg:x="191507795535" fg:w="43334896"/><text x="62.5221%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (483,385,490 samples, 0.16%)</title><rect x="62.1312%" y="1909" width="0.1572%" height="15" fill="rgb(235,193,26)" fg:x="191074698192" fg:w="483385490"/><text x="62.3812%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (52,783,756 samples, 0.02%)</title><rect x="62.2713%" y="1893" width="0.0172%" height="15" fill="rgb(229,99,21)" fg:x="191505299926" fg:w="52783756"/><text x="62.5213%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (524,485,980 samples, 0.17%)</title><rect x="62.1181%" y="1941" width="0.1705%" height="15" fill="rgb(211,140,41)" fg:x="191034154853" fg:w="524485980"/><text x="62.3681%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (524,485,980 samples, 0.17%)</title><rect x="62.1181%" y="1925" width="0.1705%" height="15" fill="rgb(240,227,30)" fg:x="191034154853" fg:w="524485980"/><text x="62.3681%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,659,158,500 samples, 0.54%)</title><rect x="61.7576%" y="1957" width="0.5395%" height="15" fill="rgb(215,224,45)" fg:x="189925615435" fg:w="1659158500"/><text x="62.0076%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,680,000,847 samples, 0.55%)</title><rect x="61.7533%" y="1973" width="0.5463%" height="15" fill="rgb(206,123,31)" fg:x="189912367584" fg:w="1680000847"/><text x="62.0033%" y="1983.50"></text></g><g><title>__GI___clone3 (1,798,107,017 samples, 0.58%)</title><rect x="61.7530%" y="2053" width="0.5847%" height="15" fill="rgb(210,138,16)" fg:x="189911415368" fg:w="1798107017"/><text x="62.0030%" y="2063.50"></text></g><g><title>start_thread (1,798,107,017 samples, 0.58%)</title><rect x="61.7530%" y="2037" width="0.5847%" height="15" fill="rgb(228,57,28)" fg:x="189911415368" fg:w="1798107017"/><text x="62.0030%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (1,798,107,017 samples, 0.58%)</title><rect x="61.7530%" y="2021" width="0.5847%" height="15" fill="rgb(242,170,10)" fg:x="189911415368" fg:w="1798107017"/><text x="62.0030%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (1,798,107,017 samples, 0.58%)</title><rect x="61.7530%" y="2005" width="0.5847%" height="15" fill="rgb(228,214,39)" fg:x="189911415368" fg:w="1798107017"/><text x="62.0030%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (1,798,107,017 samples, 0.58%)</title><rect x="61.7530%" y="1989" width="0.5847%" height="15" fill="rgb(218,179,33)" fg:x="189911415368" fg:w="1798107017"/><text x="62.0030%" y="1999.50"></text></g><g><title>syscall (117,153,954 samples, 0.04%)</title><rect x="62.2996%" y="1973" width="0.0381%" height="15" fill="rgb(235,193,39)" fg:x="191592368431" fg:w="117153954"/><text x="62.5496%" y="1983.50"></text></g><g><title>[unknown] (108,872,731 samples, 0.04%)</title><rect x="62.3023%" y="1957" width="0.0354%" height="15" fill="rgb(219,221,36)" fg:x="191600649654" fg:w="108872731"/><text x="62.5523%" y="1967.50"></text></g><g><title>[unknown] (105,319,113 samples, 0.03%)</title><rect x="62.3034%" y="1941" width="0.0342%" height="15" fill="rgb(248,218,19)" fg:x="191604203272" fg:w="105319113"/><text x="62.5534%" y="1951.50"></text></g><g><title>[unknown] (101,156,806 samples, 0.03%)</title><rect x="62.3048%" y="1925" width="0.0329%" height="15" fill="rgb(205,50,9)" fg:x="191608365579" fg:w="101156806"/><text x="62.5548%" y="1935.50"></text></g><g><title>[unknown] (96,677,125 samples, 0.03%)</title><rect x="62.3062%" y="1909" width="0.0314%" height="15" fill="rgb(238,81,28)" fg:x="191612845260" fg:w="96677125"/><text x="62.5562%" y="1919.50"></text></g><g><title>[unknown] (86,247,903 samples, 0.03%)</title><rect x="62.3096%" y="1893" width="0.0280%" height="15" fill="rgb(235,110,19)" fg:x="191623274482" fg:w="86247903"/><text x="62.5596%" y="1903.50"></text></g><g><title>[unknown] (83,123,198 samples, 0.03%)</title><rect x="62.3106%" y="1877" width="0.0270%" height="15" fill="rgb(214,7,14)" fg:x="191626399187" fg:w="83123198"/><text x="62.5606%" y="1887.50"></text></g><g><title>[unknown] (79,090,538 samples, 0.03%)</title><rect x="62.3119%" y="1861" width="0.0257%" height="15" fill="rgb(211,77,3)" fg:x="191630431847" fg:w="79090538"/><text x="62.5619%" y="1871.50"></text></g><g><title>[unknown] (75,466,135 samples, 0.02%)</title><rect x="62.3131%" y="1845" width="0.0245%" height="15" fill="rgb(229,5,9)" fg:x="191634056250" fg:w="75466135"/><text x="62.5631%" y="1855.50"></text></g><g><title>[unknown] (74,587,517 samples, 0.02%)</title><rect x="62.3134%" y="1829" width="0.0243%" height="15" fill="rgb(225,90,11)" fg:x="191634934868" fg:w="74587517"/><text x="62.5634%" y="1839.50"></text></g><g><title>[unknown] (68,938,045 samples, 0.02%)</title><rect x="62.3152%" y="1813" width="0.0224%" height="15" fill="rgb(242,56,8)" fg:x="191640584340" fg:w="68938045"/><text x="62.5652%" y="1823.50"></text></g><g><title>[unknown] (65,769,959 samples, 0.02%)</title><rect x="62.3163%" y="1797" width="0.0214%" height="15" fill="rgb(249,212,39)" fg:x="191643752426" fg:w="65769959"/><text x="62.5663%" y="1807.50"></text></g><g><title>[unknown] (61,012,290 samples, 0.02%)</title><rect x="62.3178%" y="1781" width="0.0198%" height="15" fill="rgb(236,90,9)" fg:x="191648510095" fg:w="61012290"/><text x="62.5678%" y="1791.50"></text></g><g><title>[unknown] (57,288,035 samples, 0.02%)</title><rect x="62.3190%" y="1765" width="0.0186%" height="15" fill="rgb(206,88,35)" fg:x="191652234350" fg:w="57288035"/><text x="62.5690%" y="1775.50"></text></g><g><title>[unknown] (50,234,850 samples, 0.02%)</title><rect x="62.3213%" y="1749" width="0.0163%" height="15" fill="rgb(205,126,30)" fg:x="191659287535" fg:w="50234850"/><text x="62.5713%" y="1759.50"></text></g><g><title>[unknown] (39,742,361 samples, 0.01%)</title><rect x="62.3247%" y="1733" width="0.0129%" height="15" fill="rgb(230,176,12)" fg:x="191669780024" fg:w="39742361"/><text x="62.5747%" y="1743.50"></text></g><g><title>[unknown] (36,917,418 samples, 0.01%)</title><rect x="62.3257%" y="1717" width="0.0120%" height="15" fill="rgb(243,19,9)" fg:x="191672604967" fg:w="36917418"/><text x="62.5757%" y="1727.50"></text></g><g><title>Worker-5 (1,799,320,960 samples, 0.59%)</title><rect x="61.7530%" y="2069" width="0.5851%" height="15" fill="rgb(245,171,17)" fg:x="189911415368" fg:w="1799320960"/><text x="62.0030%" y="2079.50"></text></g><g><title>[libgit2.so.1.9.0] (41,099,990 samples, 0.01%)</title><rect x="62.3553%" y="1829" width="0.0134%" height="15" fill="rgb(227,52,21)" fg:x="191763666363" fg:w="41099990"/><text x="62.6053%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (55,059,092 samples, 0.02%)</title><rect x="62.3553%" y="1845" width="0.0179%" height="15" fill="rgb(238,69,14)" fg:x="191763666363" fg:w="55059092"/><text x="62.6053%" y="1855.50"></text></g><g><title>git_odb_read (56,112,721 samples, 0.02%)</title><rect x="62.3553%" y="1893" width="0.0182%" height="15" fill="rgb(241,156,39)" fg:x="191763666363" fg:w="56112721"/><text x="62.6053%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (56,112,721 samples, 0.02%)</title><rect x="62.3553%" y="1877" width="0.0182%" height="15" fill="rgb(212,227,28)" fg:x="191763666363" fg:w="56112721"/><text x="62.6053%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (56,112,721 samples, 0.02%)</title><rect x="62.3553%" y="1861" width="0.0182%" height="15" fill="rgb(209,118,27)" fg:x="191763666363" fg:w="56112721"/><text x="62.6053%" y="1871.50"></text></g><g><title>git2::repo::Repository::find_blob (57,210,945 samples, 0.02%)</title><rect x="62.3553%" y="1925" width="0.0186%" height="15" fill="rgb(226,102,5)" fg:x="191763666363" fg:w="57210945"/><text x="62.6053%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (57,210,945 samples, 0.02%)</title><rect x="62.3553%" y="1909" width="0.0186%" height="15" fill="rgb(223,34,3)" fg:x="191763666363" fg:w="57210945"/><text x="62.6053%" y="1919.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (87,023,714 samples, 0.03%)</title><rect x="62.3549%" y="1941" width="0.0283%" height="15" fill="rgb(221,81,38)" fg:x="191762462912" fg:w="87023714"/><text x="62.6049%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (37,451,565 samples, 0.01%)</title><rect x="62.4096%" y="1797" width="0.0122%" height="15" fill="rgb(236,219,28)" fg:x="191930764703" fg:w="37451565"/><text x="62.6596%" y="1807.50"></text></g><g><title>git2::patch::Patch::from_buffers (42,664,152 samples, 0.01%)</title><rect x="62.4093%" y="1909" width="0.0139%" height="15" fill="rgb(213,200,14)" fg:x="191929769467" fg:w="42664152"/><text x="62.6593%" y="1919.50"></text></g><g><title>git_patch_from_buffers (42,664,152 samples, 0.01%)</title><rect x="62.4093%" y="1893" width="0.0139%" height="15" fill="rgb(240,33,19)" fg:x="191929769467" fg:w="42664152"/><text x="62.6593%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (42,664,152 samples, 0.01%)</title><rect x="62.4093%" y="1877" width="0.0139%" height="15" fill="rgb(233,113,27)" fg:x="191929769467" fg:w="42664152"/><text x="62.6593%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (42,664,152 samples, 0.01%)</title><rect x="62.4093%" y="1861" width="0.0139%" height="15" fill="rgb(220,221,18)" fg:x="191929769467" fg:w="42664152"/><text x="62.6593%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (42,664,152 samples, 0.01%)</title><rect x="62.4093%" y="1845" width="0.0139%" height="15" fill="rgb(238,92,8)" fg:x="191929769467" fg:w="42664152"/><text x="62.6593%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (42,664,152 samples, 0.01%)</title><rect x="62.4093%" y="1829" width="0.0139%" height="15" fill="rgb(222,164,16)" fg:x="191929769467" fg:w="42664152"/><text x="62.6593%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (42,664,152 samples, 0.01%)</title><rect x="62.4093%" y="1813" width="0.0139%" height="15" fill="rgb(241,119,3)" fg:x="191929769467" fg:w="42664152"/><text x="62.6593%" y="1823.50"></text></g><g><title>buffer_diff::compute_hunks (46,132,759 samples, 0.02%)</title><rect x="62.4085%" y="1925" width="0.0150%" height="15" fill="rgb(241,44,8)" fg:x="191927332633" fg:w="46132759"/><text x="62.6585%" y="1935.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (47,344,174 samples, 0.02%)</title><rect x="62.4085%" y="1941" width="0.0154%" height="15" fill="rgb(230,36,40)" fg:x="191927332633" fg:w="47344174"/><text x="62.6585%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (72,666,944 samples, 0.02%)</title><rect x="62.4275%" y="1925" width="0.0236%" height="15" fill="rgb(243,16,36)" fg:x="191985794105" fg:w="72666944"/><text x="62.6775%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (83,461,881 samples, 0.03%)</title><rect x="62.4243%" y="1941" width="0.0271%" height="15" fill="rgb(231,4,26)" fg:x="191975873170" fg:w="83461881"/><text x="62.6743%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (80,653,664 samples, 0.03%)</title><rect x="62.4514%" y="1941" width="0.0262%" height="15" fill="rgb(240,9,31)" fg:x="192059335051" fg:w="80653664"/><text x="62.7014%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (36,485,716 samples, 0.01%)</title><rect x="62.4983%" y="1909" width="0.0119%" height="15" fill="rgb(207,173,15)" fg:x="192203383077" fg:w="36485716"/><text x="62.7483%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (140,930,944 samples, 0.05%)</title><rect x="62.4832%" y="1941" width="0.0458%" height="15" fill="rgb(224,192,53)" fg:x="192157120067" fg:w="140930944"/><text x="62.7332%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (118,575,043 samples, 0.04%)</title><rect x="62.4905%" y="1925" width="0.0386%" height="15" fill="rgb(223,67,28)" fg:x="192179475968" fg:w="118575043"/><text x="62.7405%" y="1935.50"></text></g><g><title>ts_language_table_entry (41,390,752 samples, 0.01%)</title><rect x="62.5470%" y="1861" width="0.0135%" height="15" fill="rgb(211,20,47)" fg:x="192353427018" fg:w="41390752"/><text x="62.7970%" y="1871.50"></text></g><g><title>ts_malloc_default (31,715,879 samples, 0.01%)</title><rect x="62.5865%" y="1829" width="0.0103%" height="15" fill="rgb(240,228,2)" fg:x="192474867671" fg:w="31715879"/><text x="62.8365%" y="1839.50"></text></g><g><title>malloc (31,715,879 samples, 0.01%)</title><rect x="62.5865%" y="1813" width="0.0103%" height="15" fill="rgb(248,151,12)" fg:x="192474867671" fg:w="31715879"/><text x="62.8365%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (60,016,903 samples, 0.02%)</title><rect x="62.5790%" y="1845" width="0.0195%" height="15" fill="rgb(244,8,39)" fg:x="192451839738" fg:w="60016903"/><text x="62.8290%" y="1855.50"></text></g><g><title>ts_lex (87,441,784 samples, 0.03%)</title><rect x="62.6401%" y="1829" width="0.0284%" height="15" fill="rgb(222,26,8)" fg:x="192639569656" fg:w="87441784"/><text x="62.8901%" y="1839.50"></text></g><g><title>ts_parser__lex (165,361,719 samples, 0.05%)</title><rect x="62.6238%" y="1845" width="0.0538%" height="15" fill="rgb(213,106,44)" fg:x="192589567451" fg:w="165361719"/><text x="62.8738%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (33,500,691 samples, 0.01%)</title><rect x="62.6820%" y="1845" width="0.0109%" height="15" fill="rgb(214,129,20)" fg:x="192768343952" fg:w="33500691"/><text x="62.9320%" y="1855.50"></text></g><g><title>ts_parser_parse (435,532,662 samples, 0.14%)</title><rect x="62.5609%" y="1861" width="0.1416%" height="15" fill="rgb(212,32,13)" fg:x="192396049791" fg:w="435532662"/><text x="62.8109%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (480,195,762 samples, 0.16%)</title><rect x="62.5470%" y="1893" width="0.1561%" height="15" fill="rgb(208,168,33)" fg:x="192353427018" fg:w="480195762"/><text x="62.7970%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (480,195,762 samples, 0.16%)</title><rect x="62.5470%" y="1877" width="0.1561%" height="15" fill="rgb(231,207,8)" fg:x="192353427018" fg:w="480195762"/><text x="62.7970%" y="1887.50"></text></g><g><title>ts_tree_cursor_current_status (33,616,061 samples, 0.01%)</title><rect x="62.7236%" y="1861" width="0.0109%" height="15" fill="rgb(235,219,23)" fg:x="192896348277" fg:w="33616061"/><text x="62.9736%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (114,974,478 samples, 0.04%)</title><rect x="62.7086%" y="1877" width="0.0374%" height="15" fill="rgb(226,216,26)" fg:x="192850284451" fg:w="114974478"/><text x="62.9586%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (651,529,899 samples, 0.21%)</title><rect x="62.5381%" y="1909" width="0.2119%" height="15" fill="rgb(239,137,16)" fg:x="192325806870" fg:w="651529899"/><text x="62.7881%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (129,386,477 samples, 0.04%)</title><rect x="62.7078%" y="1893" width="0.0421%" height="15" fill="rgb(207,12,36)" fg:x="192847950292" fg:w="129386477"/><text x="62.9578%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (679,290,384 samples, 0.22%)</title><rect x="62.5295%" y="1925" width="0.2209%" height="15" fill="rgb(210,214,24)" fg:x="192299445301" fg:w="679290384"/><text x="62.7795%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (681,400,018 samples, 0.22%)</title><rect x="62.5292%" y="1941" width="0.2216%" height="15" fill="rgb(206,56,30)" fg:x="192298416632" fg:w="681400018"/><text x="62.7792%" y="1951.50"></text></g><g><title>ts_malloc_default (45,658,554 samples, 0.01%)</title><rect x="62.8068%" y="1829" width="0.0148%" height="15" fill="rgb(228,143,26)" fg:x="193152383441" fg:w="45658554"/><text x="63.0568%" y="1839.50"></text></g><g><title>malloc (45,658,554 samples, 0.01%)</title><rect x="62.8068%" y="1813" width="0.0148%" height="15" fill="rgb(216,218,46)" fg:x="193152383441" fg:w="45658554"/><text x="63.0568%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (76,827,042 samples, 0.02%)</title><rect x="62.7982%" y="1845" width="0.0250%" height="15" fill="rgb(206,6,19)" fg:x="193125690056" fg:w="76827042"/><text x="63.0482%" y="1855.50"></text></g><g><title>ts_language_table_entry (32,381,072 samples, 0.01%)</title><rect x="62.8340%" y="1845" width="0.0105%" height="15" fill="rgb(239,177,51)" fg:x="193235934756" fg:w="32381072"/><text x="63.0840%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (75,468,633 samples, 0.02%)</title><rect x="62.8475%" y="1845" width="0.0245%" height="15" fill="rgb(216,55,25)" fg:x="193277443082" fg:w="75468633"/><text x="63.0975%" y="1855.50"></text></g><g><title>ts_lex (97,345,809 samples, 0.03%)</title><rect x="62.8846%" y="1829" width="0.0317%" height="15" fill="rgb(231,163,29)" fg:x="193391599110" fg:w="97345809"/><text x="63.1346%" y="1839.50"></text></g><g><title>ts_parser__lex (168,282,671 samples, 0.05%)</title><rect x="62.8720%" y="1845" width="0.0547%" height="15" fill="rgb(232,149,50)" fg:x="193352911715" fg:w="168282671"/><text x="63.1220%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (33,741,642 samples, 0.01%)</title><rect x="62.9350%" y="1845" width="0.0110%" height="15" fill="rgb(223,142,48)" fg:x="193546467468" fg:w="33741642"/><text x="63.1850%" y="1855.50"></text></g><g><title>ts_subtree_new_node (43,303,520 samples, 0.01%)</title><rect x="62.9470%" y="1845" width="0.0141%" height="15" fill="rgb(245,83,23)" fg:x="193583452816" fg:w="43303520"/><text x="63.1970%" y="1855.50"></text></g><g><title>ts_subtree_summarize_children (36,255,996 samples, 0.01%)</title><rect x="62.9493%" y="1829" width="0.0118%" height="15" fill="rgb(224,63,2)" fg:x="193590500340" fg:w="36255996"/><text x="63.1993%" y="1839.50"></text></g><g><title>ts_parser_parse (550,062,588 samples, 0.18%)</title><rect x="62.7826%" y="1861" width="0.1789%" height="15" fill="rgb(218,65,53)" fg:x="193077785398" fg:w="550062588"/><text x="63.0326%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (583,116,678 samples, 0.19%)</title><rect x="62.7721%" y="1877" width="0.1896%" height="15" fill="rgb(221,84,29)" fg:x="193045591187" fg:w="583116678"/><text x="63.0221%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (585,380,648 samples, 0.19%)</title><rect x="62.7721%" y="1893" width="0.1903%" height="15" fill="rgb(234,0,32)" fg:x="193045591187" fg:w="585380648"/><text x="63.0221%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (81,783,524 samples, 0.03%)</title><rect x="62.9695%" y="1877" width="0.0266%" height="15" fill="rgb(206,20,16)" fg:x="193652695839" fg:w="81783524"/><text x="63.2195%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (92,605,556 samples, 0.03%)</title><rect x="62.9680%" y="1893" width="0.0301%" height="15" fill="rgb(244,172,18)" fg:x="193648082459" fg:w="92605556"/><text x="63.2180%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (763,329,703 samples, 0.25%)</title><rect x="62.7507%" y="1941" width="0.2482%" height="15" fill="rgb(254,133,1)" fg:x="192979816650" fg:w="763329703"/><text x="63.0007%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (763,329,703 samples, 0.25%)</title><rect x="62.7507%" y="1925" width="0.2482%" height="15" fill="rgb(222,206,41)" fg:x="192979816650" fg:w="763329703"/><text x="63.0007%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (714,616,873 samples, 0.23%)</title><rect x="62.7666%" y="1909" width="0.2324%" height="15" fill="rgb(212,3,42)" fg:x="193028529480" fg:w="714616873"/><text x="63.0166%" y="1919.50"></text></g><g><title>language::Language::with_debug_variables_query (41,546,325 samples, 0.01%)</title><rect x="63.0090%" y="1909" width="0.0135%" height="15" fill="rgb(241,11,4)" fg:x="193774066575" fg:w="41546325"/><text x="63.2590%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (41,546,325 samples, 0.01%)</title><rect x="63.0090%" y="1893" width="0.0135%" height="15" fill="rgb(205,19,26)" fg:x="193774066575" fg:w="41546325"/><text x="63.2590%" y="1903.50"></text></g><g><title>ts_query_new (40,302,994 samples, 0.01%)</title><rect x="63.0094%" y="1877" width="0.0131%" height="15" fill="rgb(210,179,32)" fg:x="193775309906" fg:w="40302994"/><text x="63.2594%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (37,685,066 samples, 0.01%)</title><rect x="63.0102%" y="1861" width="0.0123%" height="15" fill="rgb(227,116,49)" fg:x="193777927834" fg:w="37685066"/><text x="63.2602%" y="1871.50"></text></g><g><title>language::Language::with_highlights_query (98,413,418 samples, 0.03%)</title><rect x="63.0239%" y="1909" width="0.0320%" height="15" fill="rgb(211,146,6)" fg:x="193819917324" fg:w="98413418"/><text x="63.2739%" y="1919.50"></text></g><g><title>tree_sitter::Query::new (98,413,418 samples, 0.03%)</title><rect x="63.0239%" y="1893" width="0.0320%" height="15" fill="rgb(219,44,39)" fg:x="193819917324" fg:w="98413418"/><text x="63.2739%" y="1903.50"></text></g><g><title>ts_query_new (98,413,418 samples, 0.03%)</title><rect x="63.0239%" y="1877" width="0.0320%" height="15" fill="rgb(234,128,11)" fg:x="193819917324" fg:w="98413418"/><text x="63.2739%" y="1887.50"></text></g><g><title>ts_query__perform_analysis (93,872,714 samples, 0.03%)</title><rect x="63.0254%" y="1861" width="0.0305%" height="15" fill="rgb(220,183,53)" fg:x="193824458028" fg:w="93872714"/><text x="63.2754%" y="1871.50"></text></g><g><title>language::Language::with_queries (232,371,595 samples, 0.08%)</title><rect x="63.0018%" y="1925" width="0.0756%" height="15" fill="rgb(213,219,32)" fg:x="193751832558" fg:w="232371595"/><text x="63.2518%" y="1935.50"></text></g><g><title>language::language_registry::LanguageRegistry::load_language::_{{closure}} (243,537,817 samples, 0.08%)</title><rect x="62.9989%" y="1941" width="0.0792%" height="15" fill="rgb(232,156,16)" fg:x="193743146353" fg:w="243537817"/><text x="63.2489%" y="1951.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,278,667,344 samples, 0.74%)</title><rect x="62.3428%" y="1957" width="0.7409%" height="15" fill="rgb(246,135,34)" fg:x="191725306964" fg:w="2278667344"/><text x="62.5928%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,297,674,703 samples, 0.75%)</title><rect x="62.3388%" y="1973" width="0.7471%" height="15" fill="rgb(241,99,0)" fg:x="191712944883" fg:w="2297674703"/><text x="62.5888%" y="1983.50"></text></g><g><title>Worker-6 (2,409,106,014 samples, 0.78%)</title><rect x="62.3381%" y="2069" width="0.7834%" height="15" fill="rgb(222,103,45)" fg:x="191710736328" fg:w="2409106014"/><text x="62.5881%" y="2079.50"></text></g><g><title>__GI___clone3 (2,406,897,459 samples, 0.78%)</title><rect x="62.3388%" y="2053" width="0.7826%" height="15" fill="rgb(212,57,4)" fg:x="191712944883" fg:w="2406897459"/><text x="62.5888%" y="2063.50"></text></g><g><title>start_thread (2,406,897,459 samples, 0.78%)</title><rect x="62.3388%" y="2037" width="0.7826%" height="15" fill="rgb(215,68,47)" fg:x="191712944883" fg:w="2406897459"/><text x="62.5888%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,406,897,459 samples, 0.78%)</title><rect x="62.3388%" y="2021" width="0.7826%" height="15" fill="rgb(230,84,2)" fg:x="191712944883" fg:w="2406897459"/><text x="62.5888%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,406,897,459 samples, 0.78%)</title><rect x="62.3388%" y="2005" width="0.7826%" height="15" fill="rgb(220,102,14)" fg:x="191712944883" fg:w="2406897459"/><text x="62.5888%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,406,897,459 samples, 0.78%)</title><rect x="62.3388%" y="1989" width="0.7826%" height="15" fill="rgb(240,10,32)" fg:x="191712944883" fg:w="2406897459"/><text x="62.5888%" y="1999.50"></text></g><g><title>syscall (109,222,756 samples, 0.04%)</title><rect x="63.0859%" y="1973" width="0.0355%" height="15" fill="rgb(215,47,27)" fg:x="194010619586" fg:w="109222756"/><text x="63.3359%" y="1983.50"></text></g><g><title>[unknown] (107,617,022 samples, 0.03%)</title><rect x="63.0864%" y="1957" width="0.0350%" height="15" fill="rgb(233,188,43)" fg:x="194012225320" fg:w="107617022"/><text x="63.3364%" y="1967.50"></text></g><g><title>[unknown] (103,263,918 samples, 0.03%)</title><rect x="63.0878%" y="1941" width="0.0336%" height="15" fill="rgb(253,190,1)" fg:x="194016578424" fg:w="103263918"/><text x="63.3378%" y="1951.50"></text></g><g><title>[unknown] (102,275,373 samples, 0.03%)</title><rect x="63.0882%" y="1925" width="0.0333%" height="15" fill="rgb(206,114,52)" fg:x="194017566969" fg:w="102275373"/><text x="63.3382%" y="1935.50"></text></g><g><title>[unknown] (96,692,148 samples, 0.03%)</title><rect x="63.0900%" y="1909" width="0.0314%" height="15" fill="rgb(233,120,37)" fg:x="194023150194" fg:w="96692148"/><text x="63.3400%" y="1919.50"></text></g><g><title>[unknown] (89,492,317 samples, 0.03%)</title><rect x="63.0923%" y="1893" width="0.0291%" height="15" fill="rgb(214,52,39)" fg:x="194030350025" fg:w="89492317"/><text x="63.3423%" y="1903.50"></text></g><g><title>[unknown] (86,581,641 samples, 0.03%)</title><rect x="63.0933%" y="1877" width="0.0282%" height="15" fill="rgb(223,80,29)" fg:x="194033260701" fg:w="86581641"/><text x="63.3433%" y="1887.50"></text></g><g><title>[unknown] (79,777,963 samples, 0.03%)</title><rect x="63.0955%" y="1861" width="0.0259%" height="15" fill="rgb(230,101,40)" fg:x="194040064379" fg:w="79777963"/><text x="63.3455%" y="1871.50"></text></g><g><title>[unknown] (77,125,547 samples, 0.03%)</title><rect x="63.0963%" y="1845" width="0.0251%" height="15" fill="rgb(219,211,8)" fg:x="194042716795" fg:w="77125547"/><text x="63.3463%" y="1855.50"></text></g><g><title>[unknown] (76,344,436 samples, 0.02%)</title><rect x="63.0966%" y="1829" width="0.0248%" height="15" fill="rgb(252,126,28)" fg:x="194043497906" fg:w="76344436"/><text x="63.3466%" y="1839.50"></text></g><g><title>[unknown] (73,912,419 samples, 0.02%)</title><rect x="63.0974%" y="1813" width="0.0240%" height="15" fill="rgb(215,56,38)" fg:x="194045929923" fg:w="73912419"/><text x="63.3474%" y="1823.50"></text></g><g><title>[unknown] (73,912,419 samples, 0.02%)</title><rect x="63.0974%" y="1797" width="0.0240%" height="15" fill="rgb(249,55,44)" fg:x="194045929923" fg:w="73912419"/><text x="63.3474%" y="1807.50"></text></g><g><title>[unknown] (67,512,437 samples, 0.02%)</title><rect x="63.0995%" y="1781" width="0.0220%" height="15" fill="rgb(220,221,32)" fg:x="194052329905" fg:w="67512437"/><text x="63.3495%" y="1791.50"></text></g><g><title>[unknown] (61,603,503 samples, 0.02%)</title><rect x="63.1014%" y="1765" width="0.0200%" height="15" fill="rgb(212,216,41)" fg:x="194058238839" fg:w="61603503"/><text x="63.3514%" y="1775.50"></text></g><g><title>[unknown] (52,071,012 samples, 0.02%)</title><rect x="63.1045%" y="1749" width="0.0169%" height="15" fill="rgb(228,213,43)" fg:x="194067771330" fg:w="52071012"/><text x="63.3545%" y="1759.50"></text></g><g><title>[unknown] (39,947,253 samples, 0.01%)</title><rect x="63.1084%" y="1733" width="0.0130%" height="15" fill="rgb(211,31,26)" fg:x="194079895089" fg:w="39947253"/><text x="63.3584%" y="1743.50"></text></g><g><title>[unknown] (37,749,022 samples, 0.01%)</title><rect x="63.1091%" y="1717" width="0.0123%" height="15" fill="rgb(229,202,19)" fg:x="194082093320" fg:w="37749022"/><text x="63.3591%" y="1727.50"></text></g><g><title>[libgit2.so.1.9.0] (39,156,645 samples, 0.01%)</title><rect x="63.1372%" y="1829" width="0.0127%" height="15" fill="rgb(229,105,46)" fg:x="194168428469" fg:w="39156645"/><text x="63.3872%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (49,840,791 samples, 0.02%)</title><rect x="63.1366%" y="1845" width="0.0162%" height="15" fill="rgb(235,108,1)" fg:x="194166388395" fg:w="49840791"/><text x="63.3866%" y="1855.50"></text></g><g><title>git2::repo::Repository::find_blob (50,910,417 samples, 0.02%)</title><rect x="63.1366%" y="1925" width="0.0166%" height="15" fill="rgb(245,111,35)" fg:x="194166388395" fg:w="50910417"/><text x="63.3866%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (50,910,417 samples, 0.02%)</title><rect x="63.1366%" y="1909" width="0.0166%" height="15" fill="rgb(219,185,31)" fg:x="194166388395" fg:w="50910417"/><text x="63.3866%" y="1919.50"></text></g><g><title>git_odb_read (50,910,417 samples, 0.02%)</title><rect x="63.1366%" y="1893" width="0.0166%" height="15" fill="rgb(214,4,43)" fg:x="194166388395" fg:w="50910417"/><text x="63.3866%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (50,910,417 samples, 0.02%)</title><rect x="63.1366%" y="1877" width="0.0166%" height="15" fill="rgb(235,227,40)" fg:x="194166388395" fg:w="50910417"/><text x="63.3866%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (50,910,417 samples, 0.02%)</title><rect x="63.1366%" y="1861" width="0.0166%" height="15" fill="rgb(230,88,30)" fg:x="194166388395" fg:w="50910417"/><text x="63.3866%" y="1871.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (72,066,633 samples, 0.02%)</title><rect x="63.1366%" y="1941" width="0.0234%" height="15" fill="rgb(216,217,1)" fg:x="194166388395" fg:w="72066633"/><text x="63.3866%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (49,016,527 samples, 0.02%)</title><rect x="63.1844%" y="1797" width="0.0159%" height="15" fill="rgb(248,139,50)" fg:x="194313586247" fg:w="49016527"/><text x="63.4344%" y="1807.50"></text></g><g><title>[libgit2.so.1.9.0] (50,881,363 samples, 0.02%)</title><rect x="63.1841%" y="1813" width="0.0165%" height="15" fill="rgb(233,1,21)" fg:x="194312652830" fg:w="50881363"/><text x="63.4341%" y="1823.50"></text></g><g><title>[libgit2.so.1.9.0] (52,956,491 samples, 0.02%)</title><rect x="63.1841%" y="1829" width="0.0172%" height="15" fill="rgb(215,183,12)" fg:x="194312652830" fg:w="52956491"/><text x="63.4341%" y="1839.50"></text></g><g><title>git2::patch::Patch::from_buffers (54,165,741 samples, 0.02%)</title><rect x="63.1841%" y="1909" width="0.0176%" height="15" fill="rgb(229,104,42)" fg:x="194312652830" fg:w="54165741"/><text x="63.4341%" y="1919.50"></text></g><g><title>git_patch_from_buffers (54,165,741 samples, 0.02%)</title><rect x="63.1841%" y="1893" width="0.0176%" height="15" fill="rgb(243,34,48)" fg:x="194312652830" fg:w="54165741"/><text x="63.4341%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (54,165,741 samples, 0.02%)</title><rect x="63.1841%" y="1877" width="0.0176%" height="15" fill="rgb(239,11,44)" fg:x="194312652830" fg:w="54165741"/><text x="63.4341%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (54,165,741 samples, 0.02%)</title><rect x="63.1841%" y="1861" width="0.0176%" height="15" fill="rgb(231,98,35)" fg:x="194312652830" fg:w="54165741"/><text x="63.4341%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (54,165,741 samples, 0.02%)</title><rect x="63.1841%" y="1845" width="0.0176%" height="15" fill="rgb(233,28,25)" fg:x="194312652830" fg:w="54165741"/><text x="63.4341%" y="1855.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (61,318,259 samples, 0.02%)</title><rect x="63.1822%" y="1941" width="0.0199%" height="15" fill="rgb(234,123,11)" fg:x="194306599816" fg:w="61318259"/><text x="63.4322%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (61,318,259 samples, 0.02%)</title><rect x="63.1822%" y="1925" width="0.0199%" height="15" fill="rgb(220,69,3)" fg:x="194306599816" fg:w="61318259"/><text x="63.4322%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (84,902,021 samples, 0.03%)</title><rect x="63.2021%" y="1941" width="0.0276%" height="15" fill="rgb(214,64,36)" fg:x="194367918075" fg:w="84902021"/><text x="63.4521%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (70,066,395 samples, 0.02%)</title><rect x="63.2069%" y="1925" width="0.0228%" height="15" fill="rgb(211,138,32)" fg:x="194382753701" fg:w="70066395"/><text x="63.4569%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (81,647,923 samples, 0.03%)</title><rect x="63.2300%" y="1941" width="0.0265%" height="15" fill="rgb(213,118,47)" fg:x="194453881831" fg:w="81647923"/><text x="63.4800%" y="1951.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (41,230,017 samples, 0.01%)</title><rect x="63.2770%" y="1909" width="0.0134%" height="15" fill="rgb(243,124,49)" fg:x="194598431862" fg:w="41230017"/><text x="63.5270%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (172,408,156 samples, 0.06%)</title><rect x="63.2579%" y="1941" width="0.0561%" height="15" fill="rgb(221,30,28)" fg:x="194539475360" fg:w="172408156"/><text x="63.5079%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (143,645,378 samples, 0.05%)</title><rect x="63.2672%" y="1925" width="0.0467%" height="15" fill="rgb(246,37,13)" fg:x="194568238138" fg:w="143645378"/><text x="63.5172%" y="1935.50"></text></g><g><title>ts_malloc_default (32,681,449 samples, 0.01%)</title><rect x="63.3529%" y="1829" width="0.0106%" height="15" fill="rgb(249,66,14)" fg:x="194831831077" fg:w="32681449"/><text x="63.6029%" y="1839.50"></text></g><g><title>malloc (32,681,449 samples, 0.01%)</title><rect x="63.3529%" y="1813" width="0.0106%" height="15" fill="rgb(213,166,5)" fg:x="194831831077" fg:w="32681449"/><text x="63.6029%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (54,078,773 samples, 0.02%)</title><rect x="63.3471%" y="1845" width="0.0176%" height="15" fill="rgb(221,66,24)" fg:x="194813791214" fg:w="54078773"/><text x="63.5971%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (41,931,966 samples, 0.01%)</title><rect x="63.3813%" y="1845" width="0.0136%" height="15" fill="rgb(210,132,17)" fg:x="194919102067" fg:w="41931966"/><text x="63.6313%" y="1855.50"></text></g><g><title>ts_lex (70,587,648 samples, 0.02%)</title><rect x="63.4080%" y="1829" width="0.0230%" height="15" fill="rgb(243,202,5)" fg:x="195001239637" fg:w="70587648"/><text x="63.6580%" y="1839.50"></text></g><g><title>ts_parser__lex (134,305,290 samples, 0.04%)</title><rect x="63.3950%" y="1845" width="0.0437%" height="15" fill="rgb(233,70,48)" fg:x="194961034033" fg:w="134305290"/><text x="63.6450%" y="1855.50"></text></g><g><title>language::syntax_map::parse_text (400,766,160 samples, 0.13%)</title><rect x="63.3307%" y="1893" width="0.1303%" height="15" fill="rgb(238,41,26)" fg:x="194763376254" fg:w="400766160"/><text x="63.5807%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (400,766,160 samples, 0.13%)</title><rect x="63.3307%" y="1877" width="0.1303%" height="15" fill="rgb(241,19,31)" fg:x="194763376254" fg:w="400766160"/><text x="63.5807%" y="1887.50"></text></g><g><title>ts_parser_parse (377,574,973 samples, 0.12%)</title><rect x="63.3382%" y="1861" width="0.1228%" height="15" fill="rgb(214,76,10)" fg:x="194786567441" fg:w="377574973"/><text x="63.5882%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (97,487,094 samples, 0.03%)</title><rect x="63.4690%" y="1877" width="0.0317%" height="15" fill="rgb(254,202,22)" fg:x="195188885905" fg:w="97487094"/><text x="63.7190%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (554,854,894 samples, 0.18%)</title><rect x="63.3224%" y="1909" width="0.1804%" height="15" fill="rgb(214,72,24)" fg:x="194738037701" fg:w="554854894"/><text x="63.5724%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (105,913,442 samples, 0.03%)</title><rect x="63.4684%" y="1893" width="0.0344%" height="15" fill="rgb(221,92,46)" fg:x="195186979153" fg:w="105913442"/><text x="63.7184%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (581,085,013 samples, 0.19%)</title><rect x="63.3143%" y="1925" width="0.1889%" height="15" fill="rgb(246,13,50)" fg:x="194712999331" fg:w="581085013"/><text x="63.5643%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (585,110,367 samples, 0.19%)</title><rect x="63.3140%" y="1941" width="0.1903%" height="15" fill="rgb(240,165,38)" fg:x="194712017561" fg:w="585110367"/><text x="63.5640%" y="1951.50"></text></g><g><title>ts_malloc_default (40,000,967 samples, 0.01%)</title><rect x="63.5493%" y="1829" width="0.0130%" height="15" fill="rgb(241,24,51)" fg:x="195435810307" fg:w="40000967"/><text x="63.7993%" y="1839.50"></text></g><g><title>malloc (38,860,457 samples, 0.01%)</title><rect x="63.5497%" y="1813" width="0.0126%" height="15" fill="rgb(227,51,44)" fg:x="195436950817" fg:w="38860457"/><text x="63.7997%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (55,899,983 samples, 0.02%)</title><rect x="63.5452%" y="1845" width="0.0182%" height="15" fill="rgb(231,121,3)" fg:x="195422969280" fg:w="55899983"/><text x="63.7952%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (42,025,494 samples, 0.01%)</title><rect x="63.5804%" y="1845" width="0.0137%" height="15" fill="rgb(245,3,41)" fg:x="195531259267" fg:w="42025494"/><text x="63.8304%" y="1855.50"></text></g><g><title>ts_lex (83,592,572 samples, 0.03%)</title><rect x="63.6096%" y="1829" width="0.0272%" height="15" fill="rgb(214,13,26)" fg:x="195621157786" fg:w="83592572"/><text x="63.8596%" y="1839.50"></text></g><g><title>ts_parser__lex (172,086,217 samples, 0.06%)</title><rect x="63.5940%" y="1845" width="0.0560%" height="15" fill="rgb(252,75,11)" fg:x="195573284761" fg:w="172086217"/><text x="63.8440%" y="1855.50"></text></g><g><title>ts_subtree_new_node (32,957,702 samples, 0.01%)</title><rect x="63.6671%" y="1845" width="0.0107%" height="15" fill="rgb(218,226,17)" fg:x="195797854045" fg:w="32957702"/><text x="63.9171%" y="1855.50"></text></g><g><title>ts_subtree_summarize_children (31,164,826 samples, 0.01%)</title><rect x="63.6676%" y="1829" width="0.0101%" height="15" fill="rgb(248,89,38)" fg:x="195799646921" fg:w="31164826"/><text x="63.9176%" y="1839.50"></text></g><g><title>ts_parser_parse (450,986,301 samples, 0.15%)</title><rect x="63.5324%" y="1861" width="0.1466%" height="15" fill="rgb(237,73,46)" fg:x="195383832594" fg:w="450986301"/><text x="63.7824%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (482,004,381 samples, 0.16%)</title><rect x="63.5228%" y="1877" width="0.1567%" height="15" fill="rgb(242,78,33)" fg:x="195354170949" fg:w="482004381"/><text x="63.7728%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (484,596,569 samples, 0.16%)</title><rect x="63.5221%" y="1893" width="0.1576%" height="15" fill="rgb(235,60,3)" fg:x="195351926079" fg:w="484596569"/><text x="63.7721%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (82,610,041 samples, 0.03%)</title><rect x="63.6885%" y="1877" width="0.0269%" height="15" fill="rgb(216,172,19)" fg:x="195863834337" fg:w="82610041"/><text x="63.9385%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (90,027,377 samples, 0.03%)</title><rect x="63.6878%" y="1893" width="0.0293%" height="15" fill="rgb(227,6,42)" fg:x="195861681599" fg:w="90027377"/><text x="63.9378%" y="1903.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (655,652,336 samples, 0.21%)</title><rect x="63.5042%" y="1941" width="0.2132%" height="15" fill="rgb(223,207,42)" fg:x="195297127928" fg:w="655652336"/><text x="63.7542%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (655,652,336 samples, 0.21%)</title><rect x="63.5042%" y="1925" width="0.2132%" height="15" fill="rgb(246,138,30)" fg:x="195297127928" fg:w="655652336"/><text x="63.7542%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (617,088,602 samples, 0.20%)</title><rect x="63.5168%" y="1909" width="0.2007%" height="15" fill="rgb(251,199,47)" fg:x="195335691662" fg:w="617088602"/><text x="63.7668%" y="1919.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,836,661,969 samples, 0.60%)</title><rect x="63.1253%" y="1957" width="0.5972%" height="15" fill="rgb(228,218,44)" fg:x="194131856494" fg:w="1836661969"/><text x="63.3753%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,859,905,049 samples, 0.60%)</title><rect x="63.1214%" y="1973" width="0.6048%" height="15" fill="rgb(220,68,6)" fg:x="194119842342" fg:w="1859905049"/><text x="63.3714%" y="1983.50"></text></g><g><title>Worker-7 (1,966,609,833 samples, 0.64%)</title><rect x="63.1214%" y="2069" width="0.6395%" height="15" fill="rgb(240,60,26)" fg:x="194119842342" fg:w="1966609833"/><text x="63.3714%" y="2079.50"></text></g><g><title>__GI___clone3 (1,966,609,833 samples, 0.64%)</title><rect x="63.1214%" y="2053" width="0.6395%" height="15" fill="rgb(211,200,19)" fg:x="194119842342" fg:w="1966609833"/><text x="63.3714%" y="2063.50"></text></g><g><title>start_thread (1,966,609,833 samples, 0.64%)</title><rect x="63.1214%" y="2037" width="0.6395%" height="15" fill="rgb(242,145,30)" fg:x="194119842342" fg:w="1966609833"/><text x="63.3714%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (1,966,609,833 samples, 0.64%)</title><rect x="63.1214%" y="2021" width="0.6395%" height="15" fill="rgb(225,64,13)" fg:x="194119842342" fg:w="1966609833"/><text x="63.3714%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (1,966,609,833 samples, 0.64%)</title><rect x="63.1214%" y="2005" width="0.6395%" height="15" fill="rgb(218,103,35)" fg:x="194119842342" fg:w="1966609833"/><text x="63.3714%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (1,966,609,833 samples, 0.64%)</title><rect x="63.1214%" y="1989" width="0.6395%" height="15" fill="rgb(216,93,46)" fg:x="194119842342" fg:w="1966609833"/><text x="63.3714%" y="1999.50"></text></g><g><title>syscall (106,704,784 samples, 0.03%)</title><rect x="63.7262%" y="1973" width="0.0347%" height="15" fill="rgb(225,159,27)" fg:x="195979747391" fg:w="106704784"/><text x="63.9762%" y="1983.50"></text></g><g><title>[unknown] (96,207,868 samples, 0.03%)</title><rect x="63.7296%" y="1957" width="0.0313%" height="15" fill="rgb(225,204,11)" fg:x="195990244307" fg:w="96207868"/><text x="63.9796%" y="1967.50"></text></g><g><title>[unknown] (94,229,057 samples, 0.03%)</title><rect x="63.7303%" y="1941" width="0.0306%" height="15" fill="rgb(205,56,4)" fg:x="195992223118" fg:w="94229057"/><text x="63.9803%" y="1951.50"></text></g><g><title>[unknown] (92,040,479 samples, 0.03%)</title><rect x="63.7310%" y="1925" width="0.0299%" height="15" fill="rgb(206,6,35)" fg:x="195994411696" fg:w="92040479"/><text x="63.9810%" y="1935.50"></text></g><g><title>[unknown] (90,156,331 samples, 0.03%)</title><rect x="63.7316%" y="1909" width="0.0293%" height="15" fill="rgb(247,73,52)" fg:x="195996295844" fg:w="90156331"/><text x="63.9816%" y="1919.50"></text></g><g><title>[unknown] (87,405,653 samples, 0.03%)</title><rect x="63.7325%" y="1893" width="0.0284%" height="15" fill="rgb(246,97,4)" fg:x="195999046522" fg:w="87405653"/><text x="63.9825%" y="1903.50"></text></g><g><title>[unknown] (83,496,860 samples, 0.03%)</title><rect x="63.7337%" y="1877" width="0.0272%" height="15" fill="rgb(212,37,15)" fg:x="196002955315" fg:w="83496860"/><text x="63.9837%" y="1887.50"></text></g><g><title>[unknown] (77,417,760 samples, 0.03%)</title><rect x="63.7357%" y="1861" width="0.0252%" height="15" fill="rgb(208,130,40)" fg:x="196009034415" fg:w="77417760"/><text x="63.9857%" y="1871.50"></text></g><g><title>[unknown] (76,472,200 samples, 0.02%)</title><rect x="63.7360%" y="1845" width="0.0249%" height="15" fill="rgb(236,55,29)" fg:x="196009979975" fg:w="76472200"/><text x="63.9860%" y="1855.50"></text></g><g><title>[unknown] (74,445,101 samples, 0.02%)</title><rect x="63.7367%" y="1829" width="0.0242%" height="15" fill="rgb(209,156,45)" fg:x="196012007074" fg:w="74445101"/><text x="63.9867%" y="1839.50"></text></g><g><title>[unknown] (69,225,984 samples, 0.02%)</title><rect x="63.7384%" y="1813" width="0.0225%" height="15" fill="rgb(249,107,4)" fg:x="196017226191" fg:w="69225984"/><text x="63.9884%" y="1823.50"></text></g><g><title>[unknown] (67,969,970 samples, 0.02%)</title><rect x="63.7388%" y="1797" width="0.0221%" height="15" fill="rgb(227,7,13)" fg:x="196018482205" fg:w="67969970"/><text x="63.9888%" y="1807.50"></text></g><g><title>[unknown] (63,787,024 samples, 0.02%)</title><rect x="63.7402%" y="1781" width="0.0207%" height="15" fill="rgb(250,129,14)" fg:x="196022665151" fg:w="63787024"/><text x="63.9902%" y="1791.50"></text></g><g><title>[unknown] (61,326,477 samples, 0.02%)</title><rect x="63.7410%" y="1765" width="0.0199%" height="15" fill="rgb(229,92,13)" fg:x="196025125698" fg:w="61326477"/><text x="63.9910%" y="1775.50"></text></g><g><title>[unknown] (57,845,951 samples, 0.02%)</title><rect x="63.7421%" y="1749" width="0.0188%" height="15" fill="rgb(245,98,39)" fg:x="196028606224" fg:w="57845951"/><text x="63.9921%" y="1759.50"></text></g><g><title>[unknown] (51,846,403 samples, 0.02%)</title><rect x="63.7440%" y="1733" width="0.0169%" height="15" fill="rgb(234,135,48)" fg:x="196034605772" fg:w="51846403"/><text x="63.9940%" y="1743.50"></text></g><g><title>[unknown] (48,517,728 samples, 0.02%)</title><rect x="63.7451%" y="1717" width="0.0158%" height="15" fill="rgb(230,98,28)" fg:x="196037934447" fg:w="48517728"/><text x="63.9951%" y="1727.50"></text></g><g><title>[unknown] (34,348,657 samples, 0.01%)</title><rect x="63.7497%" y="1701" width="0.0112%" height="15" fill="rgb(223,121,0)" fg:x="196052103518" fg:w="34348657"/><text x="63.9997%" y="1711.50"></text></g><g><title>git2::repo::Repository::find_blob (34,902,606 samples, 0.01%)</title><rect x="63.7827%" y="1925" width="0.0113%" height="15" fill="rgb(234,173,33)" fg:x="196153645161" fg:w="34902606"/><text x="64.0327%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (34,902,606 samples, 0.01%)</title><rect x="63.7827%" y="1909" width="0.0113%" height="15" fill="rgb(245,47,8)" fg:x="196153645161" fg:w="34902606"/><text x="64.0327%" y="1919.50"></text></g><g><title>git_odb_read (34,902,606 samples, 0.01%)</title><rect x="63.7827%" y="1893" width="0.0113%" height="15" fill="rgb(205,17,20)" fg:x="196153645161" fg:w="34902606"/><text x="64.0327%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (34,902,606 samples, 0.01%)</title><rect x="63.7827%" y="1877" width="0.0113%" height="15" fill="rgb(232,151,16)" fg:x="196153645161" fg:w="34902606"/><text x="64.0327%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (34,902,606 samples, 0.01%)</title><rect x="63.7827%" y="1861" width="0.0113%" height="15" fill="rgb(208,30,32)" fg:x="196153645161" fg:w="34902606"/><text x="64.0327%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (34,902,606 samples, 0.01%)</title><rect x="63.7827%" y="1845" width="0.0113%" height="15" fill="rgb(254,26,3)" fg:x="196153645161" fg:w="34902606"/><text x="64.0327%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (51,156,644 samples, 0.02%)</title><rect x="63.7827%" y="1941" width="0.0166%" height="15" fill="rgb(240,177,30)" fg:x="196153645161" fg:w="51156644"/><text x="64.0327%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (33,912,878 samples, 0.01%)</title><rect x="63.8176%" y="1813" width="0.0110%" height="15" fill="rgb(248,76,44)" fg:x="196260972104" fg:w="33912878"/><text x="64.0676%" y="1823.50"></text></g><g><title>git2::patch::Patch::from_buffers (35,019,045 samples, 0.01%)</title><rect x="63.8176%" y="1909" width="0.0114%" height="15" fill="rgb(241,186,54)" fg:x="196260972104" fg:w="35019045"/><text x="64.0676%" y="1919.50"></text></g><g><title>git_patch_from_buffers (35,019,045 samples, 0.01%)</title><rect x="63.8176%" y="1893" width="0.0114%" height="15" fill="rgb(249,171,29)" fg:x="196260972104" fg:w="35019045"/><text x="64.0676%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (35,019,045 samples, 0.01%)</title><rect x="63.8176%" y="1877" width="0.0114%" height="15" fill="rgb(237,151,44)" fg:x="196260972104" fg:w="35019045"/><text x="64.0676%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (35,019,045 samples, 0.01%)</title><rect x="63.8176%" y="1861" width="0.0114%" height="15" fill="rgb(228,174,30)" fg:x="196260972104" fg:w="35019045"/><text x="64.0676%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (35,019,045 samples, 0.01%)</title><rect x="63.8176%" y="1845" width="0.0114%" height="15" fill="rgb(252,14,37)" fg:x="196260972104" fg:w="35019045"/><text x="64.0676%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (35,019,045 samples, 0.01%)</title><rect x="63.8176%" y="1829" width="0.0114%" height="15" fill="rgb(207,111,40)" fg:x="196260972104" fg:w="35019045"/><text x="64.0676%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (40,764,169 samples, 0.01%)</title><rect x="63.8169%" y="1941" width="0.0133%" height="15" fill="rgb(248,171,54)" fg:x="196258697501" fg:w="40764169"/><text x="64.0669%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (40,764,169 samples, 0.01%)</title><rect x="63.8169%" y="1925" width="0.0133%" height="15" fill="rgb(211,127,2)" fg:x="196258697501" fg:w="40764169"/><text x="64.0669%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (90,158,257 samples, 0.03%)</title><rect x="63.8302%" y="1941" width="0.0293%" height="15" fill="rgb(236,87,47)" fg:x="196299461670" fg:w="90158257"/><text x="64.0802%" y="1951.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (77,565,222 samples, 0.03%)</title><rect x="63.8343%" y="1925" width="0.0252%" height="15" fill="rgb(223,190,45)" fg:x="196312054705" fg:w="77565222"/><text x="64.0843%" y="1935.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (79,174,011 samples, 0.03%)</title><rect x="63.8669%" y="1941" width="0.0257%" height="15" fill="rgb(215,5,16)" fg:x="196412557268" fg:w="79174011"/><text x="64.1169%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::forcibly_load_paths::_{{closure}} (36,553,840 samples, 0.01%)</title><rect x="63.8939%" y="1909" width="0.0119%" height="15" fill="rgb(252,82,33)" fg:x="196495538637" fg:w="36553840"/><text x="64.1439%" y="1919.50"></text></g><g><title>worktree::Snapshot::entry_for_path (36,553,840 samples, 0.01%)</title><rect x="63.8939%" y="1893" width="0.0119%" height="15" fill="rgb(247,213,44)" fg:x="196495538637" fg:w="36553840"/><text x="64.1439%" y="1903.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (36,553,840 samples, 0.01%)</title><rect x="63.8939%" y="1877" width="0.0119%" height="15" fill="rgb(205,196,44)" fg:x="196495538637" fg:w="36553840"/><text x="64.1439%" y="1887.50"></text></g><g><title>&lt;worktree::TraversalTarget as sum_tree::SeekTarget&lt;worktree::EntrySummary,worktree::TraversalProgress&gt;&gt;::cmp (34,422,340 samples, 0.01%)</title><rect x="63.8946%" y="1861" width="0.0112%" height="15" fill="rgb(237,96,54)" fg:x="196497670137" fg:w="34422340"/><text x="64.1446%" y="1871.50"></text></g><g><title>&lt;util::rel_path::RelPathComponents as core::iter::traits::iterator::Iterator&gt;::next (34,422,340 samples, 0.01%)</title><rect x="63.8946%" y="1845" width="0.0112%" height="15" fill="rgb(230,113,34)" fg:x="196497670137" fg:w="34422340"/><text x="64.1446%" y="1855.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (63,289,739 samples, 0.02%)</title><rect x="63.8939%" y="1925" width="0.0206%" height="15" fill="rgb(221,224,12)" fg:x="196495538637" fg:w="63289739"/><text x="64.1439%" y="1935.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (178,523,354 samples, 0.06%)</title><rect x="63.8933%" y="1941" width="0.0580%" height="15" fill="rgb(219,112,44)" fg:x="196493730828" fg:w="178523354"/><text x="64.1433%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (113,425,806 samples, 0.04%)</title><rect x="63.9145%" y="1925" width="0.0369%" height="15" fill="rgb(210,31,13)" fg:x="196558828376" fg:w="113425806"/><text x="64.1645%" y="1935.50"></text></g><g><title>ts_malloc_default (34,638,814 samples, 0.01%)</title><rect x="63.9897%" y="1829" width="0.0113%" height="15" fill="rgb(230,25,16)" fg:x="196790029335" fg:w="34638814"/><text x="64.2397%" y="1839.50"></text></g><g><title>malloc (34,638,814 samples, 0.01%)</title><rect x="63.9897%" y="1813" width="0.0113%" height="15" fill="rgb(246,108,53)" fg:x="196790029335" fg:w="34638814"/><text x="64.2397%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (59,169,994 samples, 0.02%)</title><rect x="63.9836%" y="1845" width="0.0192%" height="15" fill="rgb(241,172,50)" fg:x="196771189221" fg:w="59169994"/><text x="64.2336%" y="1855.50"></text></g><g><title>ts_lex (57,095,438 samples, 0.02%)</title><rect x="64.0334%" y="1829" width="0.0186%" height="15" fill="rgb(235,141,10)" fg:x="196924384531" fg:w="57095438"/><text x="64.2834%" y="1839.50"></text></g><g><title>ts_parser__lex (121,164,391 samples, 0.04%)</title><rect x="64.0204%" y="1845" width="0.0394%" height="15" fill="rgb(220,174,43)" fg:x="196884654534" fg:w="121164391"/><text x="64.2704%" y="1855.50"></text></g><g><title>ts_parser_parse (330,133,389 samples, 0.11%)</title><rect x="63.9723%" y="1861" width="0.1073%" height="15" fill="rgb(215,181,40)" fg:x="196736557034" fg:w="330133389"/><text x="64.2223%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (348,815,008 samples, 0.11%)</title><rect x="63.9666%" y="1877" width="0.1134%" height="15" fill="rgb(230,97,2)" fg:x="196719120287" fg:w="348815008"/><text x="64.2166%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (349,758,010 samples, 0.11%)</title><rect x="63.9666%" y="1893" width="0.1137%" height="15" fill="rgb(211,25,27)" fg:x="196719120287" fg:w="349758010"/><text x="64.2166%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (72,589,948 samples, 0.02%)</title><rect x="64.0869%" y="1877" width="0.0236%" height="15" fill="rgb(230,87,26)" fg:x="197089160532" fg:w="72589948"/><text x="64.3369%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (465,577,941 samples, 0.15%)</title><rect x="63.9603%" y="1909" width="0.1514%" height="15" fill="rgb(227,160,17)" fg:x="196699687658" fg:w="465577941"/><text x="64.2103%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (80,958,208 samples, 0.03%)</title><rect x="64.0854%" y="1893" width="0.0263%" height="15" fill="rgb(244,85,34)" fg:x="197084307391" fg:w="80958208"/><text x="64.3354%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (496,936,738 samples, 0.16%)</title><rect x="63.9514%" y="1925" width="0.1616%" height="15" fill="rgb(207,70,0)" fg:x="196672254182" fg:w="496936738"/><text x="64.2014%" y="1935.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (499,785,100 samples, 0.16%)</title><rect x="63.9514%" y="1941" width="0.1625%" height="15" fill="rgb(223,129,7)" fg:x="196672254182" fg:w="499785100"/><text x="64.2014%" y="1951.50"></text></g><g><title>__memmove_avx512_unaligned_erms (31,903,631 samples, 0.01%)</title><rect x="64.1143%" y="1909" width="0.0104%" height="15" fill="rgb(246,105,7)" fg:x="197173292704" fg:w="31903631"/><text x="64.3643%" y="1919.50"></text></g><g><title>ts_malloc_default (54,411,899 samples, 0.02%)</title><rect x="64.1672%" y="1829" width="0.0177%" height="15" fill="rgb(215,154,42)" fg:x="197336001745" fg:w="54411899"/><text x="64.4172%" y="1839.50"></text></g><g><title>malloc (54,411,899 samples, 0.02%)</title><rect x="64.1672%" y="1813" width="0.0177%" height="15" fill="rgb(220,215,30)" fg:x="197336001745" fg:w="54411899"/><text x="64.4172%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (78,619,762 samples, 0.03%)</title><rect x="64.1604%" y="1845" width="0.0256%" height="15" fill="rgb(228,81,51)" fg:x="197315069016" fg:w="78619762"/><text x="64.4104%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (83,474,874 samples, 0.03%)</title><rect x="64.2102%" y="1845" width="0.0271%" height="15" fill="rgb(247,71,54)" fg:x="197468324265" fg:w="83474874"/><text x="64.4602%" y="1855.50"></text></g><g><title>ts_lex (97,430,352 samples, 0.03%)</title><rect x="64.2522%" y="1829" width="0.0317%" height="15" fill="rgb(234,176,34)" fg:x="197597325230" fg:w="97430352"/><text x="64.5022%" y="1839.50"></text></g><g><title>ts_parser__lex (190,636,423 samples, 0.06%)</title><rect x="64.2374%" y="1845" width="0.0620%" height="15" fill="rgb(241,103,54)" fg:x="197551799139" fg:w="190636423"/><text x="64.4874%" y="1855.50"></text></g><g><title>ts_stack_renumber_version (31,208,937 samples, 0.01%)</title><rect x="64.3043%" y="1845" width="0.0101%" height="15" fill="rgb(228,22,34)" fg:x="197757563260" fg:w="31208937"/><text x="64.5543%" y="1855.50"></text></g><g><title>ts_subtree_new_node (32,361,824 samples, 0.01%)</title><rect x="64.3163%" y="1845" width="0.0105%" height="15" fill="rgb(241,179,48)" fg:x="197794531638" fg:w="32361824"/><text x="64.5663%" y="1855.50"></text></g><g><title>ts_parser_parse (558,691,717 samples, 0.18%)</title><rect x="64.1461%" y="1861" width="0.1817%" height="15" fill="rgb(235,167,37)" fg:x="197271086199" fg:w="558691717"/><text x="64.3961%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (595,755,501 samples, 0.19%)</title><rect x="64.1349%" y="1893" width="0.1937%" height="15" fill="rgb(213,109,30)" fg:x="197236541390" fg:w="595755501"/><text x="64.3849%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (593,979,901 samples, 0.19%)</title><rect x="64.1354%" y="1877" width="0.1931%" height="15" fill="rgb(222,172,16)" fg:x="197238316990" fg:w="593979901"/><text x="64.3854%" y="1887.50"></text></g><g><title>ts_query_cursor__advance (93,631,096 samples, 0.03%)</title><rect x="64.3425%" y="1877" width="0.0304%" height="15" fill="rgb(233,192,5)" fg:x="197875111773" fg:w="93631096"/><text x="64.5925%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (105,026,383 samples, 0.03%)</title><rect x="64.3405%" y="1893" width="0.0342%" height="15" fill="rgb(247,189,41)" fg:x="197868859672" fg:w="105026383"/><text x="64.5905%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (754,972,961 samples, 0.25%)</title><rect x="64.1295%" y="1909" width="0.2455%" height="15" fill="rgb(218,134,47)" fg:x="197219874450" fg:w="754972961"/><text x="64.3795%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (804,211,348 samples, 0.26%)</title><rect x="64.1139%" y="1941" width="0.2615%" height="15" fill="rgb(216,29,3)" fg:x="197172039282" fg:w="804211348"/><text x="64.3639%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (802,957,926 samples, 0.26%)</title><rect x="64.1143%" y="1925" width="0.2611%" height="15" fill="rgb(246,140,12)" fg:x="197173292704" fg:w="802957926"/><text x="64.3643%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (1,902,862,466 samples, 0.62%)</title><rect x="63.7658%" y="1957" width="0.6187%" height="15" fill="rgb(230,136,11)" fg:x="196101613224" fg:w="1902862466"/><text x="64.0158%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,928,326,583 samples, 0.63%)</title><rect x="63.7613%" y="1973" width="0.6270%" height="15" fill="rgb(247,22,47)" fg:x="196087547207" fg:w="1928326583"/><text x="64.0113%" y="1983.50"></text></g><g><title>__GI___clone3 (2,044,356,350 samples, 0.66%)</title><rect x="63.7609%" y="2053" width="0.6648%" height="15" fill="rgb(218,84,22)" fg:x="196086530239" fg:w="2044356350"/><text x="64.0109%" y="2063.50"></text></g><g><title>start_thread (2,044,356,350 samples, 0.66%)</title><rect x="63.7609%" y="2037" width="0.6648%" height="15" fill="rgb(216,87,39)" fg:x="196086530239" fg:w="2044356350"/><text x="64.0109%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,044,356,350 samples, 0.66%)</title><rect x="63.7609%" y="2021" width="0.6648%" height="15" fill="rgb(221,178,8)" fg:x="196086530239" fg:w="2044356350"/><text x="64.0109%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,044,356,350 samples, 0.66%)</title><rect x="63.7609%" y="2005" width="0.6648%" height="15" fill="rgb(230,42,11)" fg:x="196086530239" fg:w="2044356350"/><text x="64.0109%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,044,356,350 samples, 0.66%)</title><rect x="63.7609%" y="1989" width="0.6648%" height="15" fill="rgb(237,229,4)" fg:x="196086530239" fg:w="2044356350"/><text x="64.0109%" y="1999.50"></text></g><g><title>syscall (115,012,799 samples, 0.04%)</title><rect x="64.3883%" y="1973" width="0.0374%" height="15" fill="rgb(222,31,33)" fg:x="198015873790" fg:w="115012799"/><text x="64.6383%" y="1983.50"></text></g><g><title>[unknown] (99,004,220 samples, 0.03%)</title><rect x="64.3935%" y="1957" width="0.0322%" height="15" fill="rgb(210,17,39)" fg:x="198031882369" fg:w="99004220"/><text x="64.6435%" y="1967.50"></text></g><g><title>[unknown] (96,827,203 samples, 0.03%)</title><rect x="64.3942%" y="1941" width="0.0315%" height="15" fill="rgb(244,93,20)" fg:x="198034059386" fg:w="96827203"/><text x="64.6442%" y="1951.50"></text></g><g><title>[unknown] (92,725,859 samples, 0.03%)</title><rect x="64.3955%" y="1925" width="0.0302%" height="15" fill="rgb(210,40,47)" fg:x="198038160730" fg:w="92725859"/><text x="64.6455%" y="1935.50"></text></g><g><title>[unknown] (91,981,325 samples, 0.03%)</title><rect x="64.3958%" y="1909" width="0.0299%" height="15" fill="rgb(239,211,47)" fg:x="198038905264" fg:w="91981325"/><text x="64.6458%" y="1919.50"></text></g><g><title>[unknown] (88,344,144 samples, 0.03%)</title><rect x="64.3970%" y="1893" width="0.0287%" height="15" fill="rgb(251,223,49)" fg:x="198042542445" fg:w="88344144"/><text x="64.6470%" y="1903.50"></text></g><g><title>[unknown] (85,334,559 samples, 0.03%)</title><rect x="64.3979%" y="1877" width="0.0277%" height="15" fill="rgb(221,149,5)" fg:x="198045552030" fg:w="85334559"/><text x="64.6479%" y="1887.50"></text></g><g><title>[unknown] (74,708,499 samples, 0.02%)</title><rect x="64.4014%" y="1861" width="0.0243%" height="15" fill="rgb(219,224,51)" fg:x="198056178090" fg:w="74708499"/><text x="64.6514%" y="1871.50"></text></g><g><title>[unknown] (69,552,593 samples, 0.02%)</title><rect x="64.4031%" y="1845" width="0.0226%" height="15" fill="rgb(223,7,8)" fg:x="198061333996" fg:w="69552593"/><text x="64.6531%" y="1855.50"></text></g><g><title>[unknown] (68,663,331 samples, 0.02%)</title><rect x="64.4034%" y="1829" width="0.0223%" height="15" fill="rgb(241,217,22)" fg:x="198062223258" fg:w="68663331"/><text x="64.6534%" y="1839.50"></text></g><g><title>[unknown] (65,964,108 samples, 0.02%)</title><rect x="64.4042%" y="1813" width="0.0214%" height="15" fill="rgb(248,209,0)" fg:x="198064922481" fg:w="65964108"/><text x="64.6542%" y="1823.50"></text></g><g><title>[unknown] (65,964,108 samples, 0.02%)</title><rect x="64.4042%" y="1797" width="0.0214%" height="15" fill="rgb(217,205,4)" fg:x="198064922481" fg:w="65964108"/><text x="64.6542%" y="1807.50"></text></g><g><title>[unknown] (62,502,191 samples, 0.02%)</title><rect x="64.4054%" y="1781" width="0.0203%" height="15" fill="rgb(228,124,39)" fg:x="198068384398" fg:w="62502191"/><text x="64.6554%" y="1791.50"></text></g><g><title>[unknown] (59,488,136 samples, 0.02%)</title><rect x="64.4063%" y="1765" width="0.0193%" height="15" fill="rgb(250,116,42)" fg:x="198071398453" fg:w="59488136"/><text x="64.6563%" y="1775.50"></text></g><g><title>[unknown] (54,734,157 samples, 0.02%)</title><rect x="64.4079%" y="1749" width="0.0178%" height="15" fill="rgb(223,202,9)" fg:x="198076152432" fg:w="54734157"/><text x="64.6579%" y="1759.50"></text></g><g><title>[unknown] (47,727,966 samples, 0.02%)</title><rect x="64.4102%" y="1733" width="0.0155%" height="15" fill="rgb(242,222,40)" fg:x="198083158623" fg:w="47727966"/><text x="64.6602%" y="1743.50"></text></g><g><title>[unknown] (40,677,758 samples, 0.01%)</title><rect x="64.4125%" y="1717" width="0.0132%" height="15" fill="rgb(229,99,46)" fg:x="198090208831" fg:w="40677758"/><text x="64.6625%" y="1727.50"></text></g><g><title>Worker-8 (2,045,977,669 samples, 0.67%)</title><rect x="63.7609%" y="2069" width="0.6653%" height="15" fill="rgb(225,56,46)" fg:x="196086452175" fg:w="2045977669"/><text x="64.0109%" y="2079.50"></text></g><g><title>[libgit2.so.1.9.0] (45,267,535 samples, 0.01%)</title><rect x="64.4451%" y="1829" width="0.0147%" height="15" fill="rgb(227,94,5)" fg:x="198190680673" fg:w="45267535"/><text x="64.6951%" y="1839.50"></text></g><g><title>git2::repo::Repository::find_blob (55,897,351 samples, 0.02%)</title><rect x="64.4447%" y="1925" width="0.0182%" height="15" fill="rgb(205,112,38)" fg:x="198189498288" fg:w="55897351"/><text x="64.6947%" y="1935.50"></text></g><g><title>git_object_lookup_prefix (55,897,351 samples, 0.02%)</title><rect x="64.4447%" y="1909" width="0.0182%" height="15" fill="rgb(231,133,46)" fg:x="198189498288" fg:w="55897351"/><text x="64.6947%" y="1919.50"></text></g><g><title>git_odb_read (55,897,351 samples, 0.02%)</title><rect x="64.4447%" y="1893" width="0.0182%" height="15" fill="rgb(217,16,9)" fg:x="198189498288" fg:w="55897351"/><text x="64.6947%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (55,897,351 samples, 0.02%)</title><rect x="64.4447%" y="1877" width="0.0182%" height="15" fill="rgb(249,173,9)" fg:x="198189498288" fg:w="55897351"/><text x="64.6947%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (55,897,351 samples, 0.02%)</title><rect x="64.4447%" y="1861" width="0.0182%" height="15" fill="rgb(205,163,53)" fg:x="198189498288" fg:w="55897351"/><text x="64.6947%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (55,897,351 samples, 0.02%)</title><rect x="64.4447%" y="1845" width="0.0182%" height="15" fill="rgb(217,54,41)" fg:x="198189498288" fg:w="55897351"/><text x="64.6947%" y="1855.50"></text></g><g><title>&lt;git::repository::RealGitRepository as git::repository::GitRepository&gt;::load_committed_text::_{{closure}} (75,263,894 samples, 0.02%)</title><rect x="64.4440%" y="1941" width="0.0245%" height="15" fill="rgb(228,216,12)" fg:x="198187291529" fg:w="75263894"/><text x="64.6940%" y="1951.50"></text></g><g><title>[libgit2.so.1.9.0] (47,216,746 samples, 0.02%)</title><rect x="64.4932%" y="1797" width="0.0154%" height="15" fill="rgb(244,228,15)" fg:x="198338574178" fg:w="47216746"/><text x="64.7432%" y="1807.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text::_{{closure}} (56,933,750 samples, 0.02%)</title><rect x="64.4903%" y="1941" width="0.0185%" height="15" fill="rgb(221,176,53)" fg:x="198329614514" fg:w="56933750"/><text x="64.7403%" y="1951.50"></text></g><g><title>buffer_diff::compute_hunks (56,933,750 samples, 0.02%)</title><rect x="64.4903%" y="1925" width="0.0185%" height="15" fill="rgb(205,94,34)" fg:x="198329614514" fg:w="56933750"/><text x="64.7403%" y="1935.50"></text></g><g><title>git2::patch::Patch::from_buffers (50,841,984 samples, 0.02%)</title><rect x="64.4923%" y="1909" width="0.0165%" height="15" fill="rgb(213,110,48)" fg:x="198335706280" fg:w="50841984"/><text x="64.7423%" y="1919.50"></text></g><g><title>git_patch_from_buffers (50,841,984 samples, 0.02%)</title><rect x="64.4923%" y="1893" width="0.0165%" height="15" fill="rgb(236,142,28)" fg:x="198335706280" fg:w="50841984"/><text x="64.7423%" y="1903.50"></text></g><g><title>[libgit2.so.1.9.0] (50,841,984 samples, 0.02%)</title><rect x="64.4923%" y="1877" width="0.0165%" height="15" fill="rgb(225,135,29)" fg:x="198335706280" fg:w="50841984"/><text x="64.7423%" y="1887.50"></text></g><g><title>[libgit2.so.1.9.0] (50,841,984 samples, 0.02%)</title><rect x="64.4923%" y="1861" width="0.0165%" height="15" fill="rgb(252,45,31)" fg:x="198335706280" fg:w="50841984"/><text x="64.7423%" y="1871.50"></text></g><g><title>[libgit2.so.1.9.0] (50,841,984 samples, 0.02%)</title><rect x="64.4923%" y="1845" width="0.0165%" height="15" fill="rgb(211,187,50)" fg:x="198335706280" fg:w="50841984"/><text x="64.7423%" y="1855.50"></text></g><g><title>[libgit2.so.1.9.0] (50,841,984 samples, 0.02%)</title><rect x="64.4923%" y="1829" width="0.0165%" height="15" fill="rgb(229,109,7)" fg:x="198335706280" fg:w="50841984"/><text x="64.7423%" y="1839.50"></text></g><g><title>[libgit2.so.1.9.0] (50,841,984 samples, 0.02%)</title><rect x="64.4923%" y="1813" width="0.0165%" height="15" fill="rgb(251,131,51)" fg:x="198335706280" fg:w="50841984"/><text x="64.7423%" y="1823.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::update::_{{closure}} (67,202,757 samples, 0.02%)</title><rect x="64.5126%" y="1925" width="0.0219%" height="15" fill="rgb(251,180,35)" fg:x="198398250947" fg:w="67202757"/><text x="64.7626%" y="1935.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits::_{{closure}} (79,147,168 samples, 0.03%)</title><rect x="64.5095%" y="1941" width="0.0257%" height="15" fill="rgb(211,46,32)" fg:x="198388556597" fg:w="79147168"/><text x="64.7595%" y="1951.50"></text></g><g><title>editor::indent_guides::resolve_indented_range::_{{closure}} (83,302,056 samples, 0.03%)</title><rect x="64.5362%" y="1941" width="0.0271%" height="15" fill="rgb(248,123,17)" fg:x="198470875266" fg:w="83302056"/><text x="64.7862%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::process_scan_request::_{{closure}} (35,403,939 samples, 0.01%)</title><rect x="64.5638%" y="1925" width="0.0115%" height="15" fill="rgb(227,141,18)" fg:x="198555770019" fg:w="35403939"/><text x="64.8138%" y="1935.50"></text></g><g><title>worktree::BackgroundScanner::reload_entries_for_paths::_{{closure}} (35,403,939 samples, 0.01%)</title><rect x="64.5638%" y="1909" width="0.0115%" height="15" fill="rgb(216,102,9)" fg:x="198555770019" fg:w="35403939"/><text x="64.8138%" y="1919.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::edit (40,818,284 samples, 0.01%)</title><rect x="64.5859%" y="1909" width="0.0133%" height="15" fill="rgb(253,47,13)" fg:x="198623631858" fg:w="40818284"/><text x="64.8359%" y="1919.50"></text></g><g><title>gpui::executor::Scope::spawn::_{{closure}} (177,318,675 samples, 0.06%)</title><rect x="64.5635%" y="1941" width="0.0577%" height="15" fill="rgb(226,93,23)" fg:x="198554702808" fg:w="177318675"/><text x="64.8135%" y="1951.50"></text></g><g><title>worktree::BackgroundScanner::scan_dir::_{{closure}} (140,847,525 samples, 0.05%)</title><rect x="64.5754%" y="1925" width="0.0458%" height="15" fill="rgb(247,104,17)" fg:x="198591173958" fg:w="140847525"/><text x="64.8254%" y="1935.50"></text></g><g><title>ts_language_table_entry (39,983,045 samples, 0.01%)</title><rect x="64.6393%" y="1861" width="0.0130%" height="15" fill="rgb(233,203,26)" fg:x="198787884204" fg:w="39983045"/><text x="64.8893%" y="1871.50"></text></g><g><title>ts_malloc_default (58,109,850 samples, 0.02%)</title><rect x="64.6795%" y="1829" width="0.0189%" height="15" fill="rgb(244,98,49)" fg:x="198911440760" fg:w="58109850"/><text x="64.9295%" y="1839.50"></text></g><g><title>malloc (58,109,850 samples, 0.02%)</title><rect x="64.6795%" y="1813" width="0.0189%" height="15" fill="rgb(235,134,22)" fg:x="198911440760" fg:w="58109850"/><text x="64.9295%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (91,897,662 samples, 0.03%)</title><rect x="64.6715%" y="1845" width="0.0299%" height="15" fill="rgb(221,70,32)" fg:x="198886853827" fg:w="91897662"/><text x="64.9215%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (76,076,030 samples, 0.02%)</title><rect x="64.7262%" y="1845" width="0.0247%" height="15" fill="rgb(238,15,50)" fg:x="199055004816" fg:w="76076030"/><text x="64.9762%" y="1855.50"></text></g><g><title>ts_lex (91,428,245 samples, 0.03%)</title><rect x="64.7705%" y="1829" width="0.0297%" height="15" fill="rgb(215,221,48)" fg:x="199191408268" fg:w="91428245"/><text x="65.0205%" y="1839.50"></text></g><g><title>wasmtime_func_call_unchecked (55,420,441 samples, 0.02%)</title><rect x="64.8116%" y="1797" width="0.0180%" height="15" fill="rgb(236,73,3)" fg:x="199317813510" fg:w="55420441"/><text x="65.0616%" y="1807.50"></text></g><g><title>wasmtime::runtime::func::invoke_wasm_and_catch_traps (55,420,441 samples, 0.02%)</title><rect x="64.8116%" y="1781" width="0.0180%" height="15" fill="rgb(250,107,11)" fg:x="199317813510" fg:w="55420441"/><text x="65.0616%" y="1791.50"></text></g><g><title>wasmtime_setjmp_29_0_1 (54,270,942 samples, 0.02%)</title><rect x="64.8120%" y="1765" width="0.0176%" height="15" fill="rgb(242,39,14)" fg:x="199318963009" fg:w="54270942"/><text x="65.0620%" y="1775.50"></text></g><g><title>wasmtime_setjmp_inverted (54,270,942 samples, 0.02%)</title><rect x="64.8120%" y="1749" width="0.0176%" height="15" fill="rgb(248,164,37)" fg:x="199318963009" fg:w="54270942"/><text x="65.0620%" y="1759.50"></text></g><g><title>[perf-181794.map] (54,270,942 samples, 0.02%)</title><rect x="64.8120%" y="1733" width="0.0176%" height="15" fill="rgb(217,60,12)" fg:x="199318963009" fg:w="54270942"/><text x="65.0620%" y="1743.50"></text></g><g><title>[perf-181794.map] (54,270,942 samples, 0.02%)</title><rect x="64.8120%" y="1717" width="0.0176%" height="15" fill="rgb(240,125,29)" fg:x="199318963009" fg:w="54270942"/><text x="65.0620%" y="1727.50"></text></g><g><title>[perf-181794.map] (32,619,399 samples, 0.01%)</title><rect x="64.8190%" y="1701" width="0.0106%" height="15" fill="rgb(208,207,28)" fg:x="199340614552" fg:w="32619399"/><text x="65.0690%" y="1711.50"></text></g><g><title>ts_parser__lex (247,584,016 samples, 0.08%)</title><rect x="64.7509%" y="1845" width="0.0805%" height="15" fill="rgb(209,159,27)" fg:x="199131080846" fg:w="247584016"/><text x="65.0009%" y="1855.50"></text></g><g><title>ts_wasm_store__call_lex_function (60,851,352 samples, 0.02%)</title><rect x="64.8116%" y="1829" width="0.0198%" height="15" fill="rgb(251,176,53)" fg:x="199317813510" fg:w="60851352"/><text x="65.0616%" y="1839.50"></text></g><g><title>ts_wasm_store__call (60,851,352 samples, 0.02%)</title><rect x="64.8116%" y="1813" width="0.0198%" height="15" fill="rgb(211,85,7)" fg:x="199317813510" fg:w="60851352"/><text x="65.0616%" y="1823.50"></text></g><g><title>ts_stack_renumber_version (39,210,700 samples, 0.01%)</title><rect x="64.8401%" y="1845" width="0.0128%" height="15" fill="rgb(216,64,54)" fg:x="199405248075" fg:w="39210700"/><text x="65.0901%" y="1855.50"></text></g><g><title>ts_subtree_new_node (36,904,929 samples, 0.01%)</title><rect x="64.8563%" y="1845" width="0.0120%" height="15" fill="rgb(217,54,24)" fg:x="199455204326" fg:w="36904929"/><text x="65.1063%" y="1855.50"></text></g><g><title>ts_subtree_summarize_children (32,841,135 samples, 0.01%)</title><rect x="64.8576%" y="1829" width="0.0107%" height="15" fill="rgb(208,206,53)" fg:x="199459268120" fg:w="32841135"/><text x="65.1076%" y="1839.50"></text></g><g><title>ts_parser_parse (663,878,919 samples, 0.22%)</title><rect x="64.6527%" y="1861" width="0.2159%" height="15" fill="rgb(251,74,39)" fg:x="198829114505" fg:w="663878919"/><text x="64.9027%" y="1871.50"></text></g><g><title>language::syntax_map::parse_text (712,209,340 samples, 0.23%)</title><rect x="64.6393%" y="1893" width="0.2316%" height="15" fill="rgb(226,47,5)" fg:x="198787884204" fg:w="712209340"/><text x="64.8893%" y="1903.50"></text></g><g><title>ts_parser_parse_with_options (712,209,340 samples, 0.23%)</title><rect x="64.6393%" y="1877" width="0.2316%" height="15" fill="rgb(234,111,33)" fg:x="198787884204" fg:w="712209340"/><text x="64.8893%" y="1887.50"></text></g><g><title>ts_tree_cursor_current_status (48,823,643 samples, 0.02%)</title><rect x="64.8928%" y="1861" width="0.0159%" height="15" fill="rgb(251,14,10)" fg:x="199567479177" fg:w="48823643"/><text x="65.1428%" y="1871.50"></text></g><g><title>ts_query_cursor__advance (136,517,399 samples, 0.04%)</title><rect x="64.8777%" y="1877" width="0.0444%" height="15" fill="rgb(232,43,0)" fg:x="199520923872" fg:w="136517399"/><text x="65.1277%" y="1887.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (930,678,787 samples, 0.30%)</title><rect x="64.6215%" y="1925" width="0.3026%" height="15" fill="rgb(222,68,43)" fg:x="198733227643" fg:w="930678787"/><text x="64.8715%" y="1935.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (901,310,069 samples, 0.29%)</title><rect x="64.6311%" y="1909" width="0.2931%" height="15" fill="rgb(217,24,23)" fg:x="198762596361" fg:w="901310069"/><text x="64.8811%" y="1919.50"></text></g><g><title>ts_query_cursor_next_match (147,173,969 samples, 0.05%)</title><rect x="64.8763%" y="1893" width="0.0479%" height="15" fill="rgb(229,209,14)" fg:x="199516732461" fg:w="147173969"/><text x="65.1263%" y="1903.50"></text></g><g><title>language::buffer::Buffer::build_snapshot::_{{closure}} (932,947,141 samples, 0.30%)</title><rect x="64.6212%" y="1941" width="0.3034%" height="15" fill="rgb(250,149,48)" fg:x="198732021483" fg:w="932947141"/><text x="64.8712%" y="1951.50"></text></g><g><title>ts_malloc_default (49,832,294 samples, 0.02%)</title><rect x="64.9643%" y="1829" width="0.0162%" height="15" fill="rgb(210,120,37)" fg:x="199787428351" fg:w="49832294"/><text x="65.2143%" y="1839.50"></text></g><g><title>malloc (49,832,294 samples, 0.02%)</title><rect x="64.9643%" y="1813" width="0.0162%" height="15" fill="rgb(210,21,8)" fg:x="199787428351" fg:w="49832294"/><text x="65.2143%" y="1823.50"></text></g><g><title>stack__iter.constprop.0 (65,201,281 samples, 0.02%)</title><rect x="64.9605%" y="1845" width="0.0212%" height="15" fill="rgb(243,145,7)" fg:x="199775592541" fg:w="65201281"/><text x="65.2105%" y="1855.50"></text></g><g><title>ts_parser__do_all_potential_reductions (49,232,698 samples, 0.02%)</title><rect x="64.9996%" y="1845" width="0.0160%" height="15" fill="rgb(238,178,32)" fg:x="199895978497" fg:w="49232698"/><text x="65.2496%" y="1855.50"></text></g><g><title>ts_lex (61,651,092 samples, 0.02%)</title><rect x="65.0281%" y="1829" width="0.0200%" height="15" fill="rgb(222,4,10)" fg:x="199983537767" fg:w="61651092"/><text x="65.2781%" y="1839.50"></text></g><g><title>ts_parser__lex (138,727,931 samples, 0.05%)</title><rect x="65.0156%" y="1845" width="0.0451%" height="15" fill="rgb(239,7,37)" fg:x="199945211195" fg:w="138727931"/><text x="65.2656%" y="1855.50"></text></g><g><title>ts_parser_parse (425,677,252 samples, 0.14%)</title><rect x="64.9487%" y="1861" width="0.1384%" height="15" fill="rgb(215,31,37)" fg:x="199739331008" fg:w="425677252"/><text x="65.1987%" y="1871.50"></text></g><g><title>ts_parser_parse_with_options (454,281,777 samples, 0.15%)</title><rect x="64.9398%" y="1877" width="0.1477%" height="15" fill="rgb(224,83,33)" fg:x="199712025124" fg:w="454281777"/><text x="65.1898%" y="1887.50"></text></g><g><title>language::syntax_map::parse_text (457,296,706 samples, 0.15%)</title><rect x="64.9392%" y="1893" width="0.1487%" height="15" fill="rgb(239,55,3)" fg:x="199710137975" fg:w="457296706"/><text x="65.1892%" y="1903.50"></text></g><g><title>ts_query_cursor__advance (71,604,715 samples, 0.02%)</title><rect x="65.0958%" y="1877" width="0.0233%" height="15" fill="rgb(247,92,11)" fg:x="200191790597" fg:w="71604715"/><text x="65.3458%" y="1887.50"></text></g><g><title>ts_query_cursor_next_match (81,590,590 samples, 0.03%)</title><rect x="65.0947%" y="1893" width="0.0265%" height="15" fill="rgb(239,200,7)" fg:x="200188453138" fg:w="81590590"/><text x="65.3447%" y="1903.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse_with_ranges (569,733,042 samples, 0.19%)</title><rect x="64.9364%" y="1909" width="0.1853%" height="15" fill="rgb(227,115,8)" fg:x="199701654292" fg:w="569733042"/><text x="65.1864%" y="1919.50"></text></g><g><title>language::buffer::Buffer::reparse::_{{closure}} (608,418,048 samples, 0.20%)</title><rect x="64.9245%" y="1941" width="0.1978%" height="15" fill="rgb(215,189,27)" fg:x="199664968624" fg:w="608418048"/><text x="65.1745%" y="1951.50"></text></g><g><title>language::syntax_map::SyntaxSnapshot::reparse (608,418,048 samples, 0.20%)</title><rect x="64.9245%" y="1925" width="0.1978%" height="15" fill="rgb(251,216,39)" fg:x="199664968624" fg:w="608418048"/><text x="65.1745%" y="1935.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (2,142,823,200 samples, 0.70%)</title><rect x="64.4319%" y="1957" width="0.6968%" height="15" fill="rgb(207,29,47)" fg:x="198149964753" fg:w="2142823200"/><text x="64.6819%" y="1967.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (2,176,172,524 samples, 0.71%)</title><rect x="64.4266%" y="1973" width="0.7076%" height="15" fill="rgb(210,71,34)" fg:x="198133795763" fg:w="2176172524"/><text x="64.6766%" y="1983.50"></text></g><g><title>Worker-9 (2,293,610,898 samples, 0.75%)</title><rect x="64.4262%" y="2069" width="0.7458%" height="15" fill="rgb(253,217,51)" fg:x="198132429844" fg:w="2293610898"/><text x="64.6762%" y="2079.50"></text></g><g><title>__GI___clone3 (2,293,188,497 samples, 0.75%)</title><rect x="64.4263%" y="2053" width="0.7457%" height="15" fill="rgb(222,117,46)" fg:x="198132852245" fg:w="2293188497"/><text x="64.6763%" y="2063.50"></text></g><g><title>start_thread (2,293,188,497 samples, 0.75%)</title><rect x="64.4263%" y="2037" width="0.7457%" height="15" fill="rgb(226,132,6)" fg:x="198132852245" fg:w="2293188497"/><text x="64.6763%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (2,293,188,497 samples, 0.75%)</title><rect x="64.4263%" y="2021" width="0.7457%" height="15" fill="rgb(254,145,51)" fg:x="198132852245" fg:w="2293188497"/><text x="64.6763%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (2,293,188,497 samples, 0.75%)</title><rect x="64.4263%" y="2005" width="0.7457%" height="15" fill="rgb(231,199,27)" fg:x="198132852245" fg:w="2293188497"/><text x="64.6763%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (2,293,188,497 samples, 0.75%)</title><rect x="64.4263%" y="1989" width="0.7457%" height="15" fill="rgb(245,158,14)" fg:x="198132852245" fg:w="2293188497"/><text x="64.6763%" y="1999.50"></text></g><g><title>syscall (116,072,455 samples, 0.04%)</title><rect x="65.1342%" y="1973" width="0.0377%" height="15" fill="rgb(240,113,14)" fg:x="200309968287" fg:w="116072455"/><text x="65.3842%" y="1983.50"></text></g><g><title>[unknown] (109,974,702 samples, 0.04%)</title><rect x="65.1362%" y="1957" width="0.0358%" height="15" fill="rgb(210,20,13)" fg:x="200316066040" fg:w="109974702"/><text x="65.3862%" y="1967.50"></text></g><g><title>[unknown] (105,526,670 samples, 0.03%)</title><rect x="65.1377%" y="1941" width="0.0343%" height="15" fill="rgb(241,144,13)" fg:x="200320514072" fg:w="105526670"/><text x="65.3877%" y="1951.50"></text></g><g><title>[unknown] (96,382,102 samples, 0.03%)</title><rect x="65.1407%" y="1925" width="0.0313%" height="15" fill="rgb(235,43,34)" fg:x="200329658640" fg:w="96382102"/><text x="65.3907%" y="1935.50"></text></g><g><title>[unknown] (92,414,498 samples, 0.03%)</title><rect x="65.1419%" y="1909" width="0.0301%" height="15" fill="rgb(208,36,20)" fg:x="200333626244" fg:w="92414498"/><text x="65.3919%" y="1919.50"></text></g><g><title>[unknown] (89,234,506 samples, 0.03%)</title><rect x="65.1430%" y="1893" width="0.0290%" height="15" fill="rgb(239,204,10)" fg:x="200336806236" fg:w="89234506"/><text x="65.3930%" y="1903.50"></text></g><g><title>[unknown] (88,918,662 samples, 0.03%)</title><rect x="65.1431%" y="1877" width="0.0289%" height="15" fill="rgb(217,84,43)" fg:x="200337122080" fg:w="88918662"/><text x="65.3931%" y="1887.50"></text></g><g><title>[unknown] (81,457,467 samples, 0.03%)</title><rect x="65.1455%" y="1861" width="0.0265%" height="15" fill="rgb(241,170,50)" fg:x="200344583275" fg:w="81457467"/><text x="65.3955%" y="1871.50"></text></g><g><title>[unknown] (81,341,127 samples, 0.03%)</title><rect x="65.1455%" y="1845" width="0.0264%" height="15" fill="rgb(226,205,29)" fg:x="200344699615" fg:w="81341127"/><text x="65.3955%" y="1855.50"></text></g><g><title>[unknown] (78,948,230 samples, 0.03%)</title><rect x="65.1463%" y="1829" width="0.0257%" height="15" fill="rgb(233,113,1)" fg:x="200347092512" fg:w="78948230"/><text x="65.3963%" y="1839.50"></text></g><g><title>[unknown] (72,131,073 samples, 0.02%)</title><rect x="65.1485%" y="1813" width="0.0235%" height="15" fill="rgb(253,98,13)" fg:x="200353909669" fg:w="72131073"/><text x="65.3985%" y="1823.50"></text></g><g><title>[unknown] (70,126,366 samples, 0.02%)</title><rect x="65.1492%" y="1797" width="0.0228%" height="15" fill="rgb(211,115,12)" fg:x="200355914376" fg:w="70126366"/><text x="65.3992%" y="1807.50"></text></g><g><title>[unknown] (65,043,395 samples, 0.02%)</title><rect x="65.1508%" y="1781" width="0.0211%" height="15" fill="rgb(208,12,16)" fg:x="200360997347" fg:w="65043395"/><text x="65.4008%" y="1791.50"></text></g><g><title>[unknown] (58,928,648 samples, 0.02%)</title><rect x="65.1528%" y="1765" width="0.0192%" height="15" fill="rgb(237,193,54)" fg:x="200367112094" fg:w="58928648"/><text x="65.4028%" y="1775.50"></text></g><g><title>[unknown] (56,253,137 samples, 0.02%)</title><rect x="65.1537%" y="1749" width="0.0183%" height="15" fill="rgb(243,22,42)" fg:x="200369787605" fg:w="56253137"/><text x="65.4037%" y="1759.50"></text></g><g><title>[unknown] (44,815,326 samples, 0.01%)</title><rect x="65.1574%" y="1733" width="0.0146%" height="15" fill="rgb(233,151,36)" fg:x="200381225416" fg:w="44815326"/><text x="65.4074%" y="1743.50"></text></g><g><title>[unknown] (41,742,725 samples, 0.01%)</title><rect x="65.1584%" y="1717" width="0.0136%" height="15" fill="rgb(237,57,45)" fg:x="200384298017" fg:w="41742725"/><text x="65.4084%" y="1727.50"></text></g><g><title>[unknown] (42,310,718 samples, 0.01%)</title><rect x="65.1731%" y="2037" width="0.0138%" height="15" fill="rgb(221,88,17)" fg:x="200429583413" fg:w="42310718"/><text x="65.4231%" y="2047.50"></text></g><g><title>[unknown] (168,520,108 samples, 0.05%)</title><rect x="65.1727%" y="2053" width="0.0548%" height="15" fill="rgb(230,79,15)" fg:x="200428364848" fg:w="168520108"/><text x="65.4227%" y="2063.50"></text></g><g><title>Worker:shell.cc (375,559,548 samples, 0.12%)</title><rect x="65.1720%" y="2069" width="0.1221%" height="15" fill="rgb(213,57,13)" fg:x="200426040742" fg:w="375559548"/><text x="65.4220%" y="2079.50"></text></g><g><title>_android_impl.h (36,390,672 samples, 0.01%)</title><rect x="65.2941%" y="2069" width="0.0118%" height="15" fill="rgb(222,116,39)" fg:x="200801600290" fg:w="36390672"/><text x="65.5441%" y="2079.50"></text></g><g><title>[unknown] (83,095,390 samples, 0.03%)</title><rect x="65.3059%" y="2053" width="0.0270%" height="15" fill="rgb(245,107,2)" fg:x="200837990962" fg:w="83095390"/><text x="65.5559%" y="2063.50"></text></g><g><title>_controller.cc0 (179,785,470 samples, 0.06%)</title><rect x="65.3059%" y="2069" width="0.0585%" height="15" fill="rgb(238,1,10)" fg:x="200837990962" fg:w="179785470"/><text x="65.5559%" y="2079.50"></text></g><g><title>_factory_impl.h (38,615,995 samples, 0.01%)</title><rect x="65.3732%" y="2069" width="0.0126%" height="15" fill="rgb(249,4,48)" fg:x="201044730942" fg:w="38615995"/><text x="65.6232%" y="2079.50"></text></g><g><title>abase_types.cc0 (46,533,742 samples, 0.02%)</title><rect x="65.3857%" y="2069" width="0.0151%" height="15" fill="rgb(223,151,18)" fg:x="201083346937" fg:w="46533742"/><text x="65.6357%" y="2079.50"></text></g><g><title>unsigned int llvm::ComputeMappedEditDistance&lt;char, llvm::ComputeEditDistance&lt;char&gt;(llvm::ArrayRef&lt;char&gt;, llvm::ArrayRef&lt;char&gt;, bool, unsigned int)::{lambda(char const&amp;)#1}&gt; (41,662,765 samples, 0.01%)</title><rect x="65.4147%" y="2053" width="0.0135%" height="15" fill="rgb(227,65,43)" fg:x="201172474846" fg:w="41662765"/><text x="65.6647%" y="2063.50"></text></g><g><title>able_request.cc (86,313,112 samples, 0.03%)</title><rect x="65.4009%" y="2069" width="0.0281%" height="15" fill="rgb(218,40,45)" fg:x="201129880679" fg:w="86313112"/><text x="65.6509%" y="2079.50"></text></g><g><title>[unknown] (59,324,095 samples, 0.02%)</title><rect x="65.4293%" y="2053" width="0.0193%" height="15" fill="rgb(252,121,31)" fg:x="201217393701" fg:w="59324095"/><text x="65.6793%" y="2063.50"></text></g><g><title>able_request.h0 (118,391,119 samples, 0.04%)</title><rect x="65.4289%" y="2069" width="0.0385%" height="15" fill="rgb(219,158,43)" fg:x="201216193791" fg:w="118391119"/><text x="65.6789%" y="2079.50"></text></g><g><title>android_impl.h0 (43,581,011 samples, 0.01%)</title><rect x="65.4674%" y="2069" width="0.0142%" height="15" fill="rgb(231,162,42)" fg:x="201334584910" fg:w="43581011"/><text x="65.7174%" y="2079.50"></text></g><g><title>ash_unittest.cc (39,716,232 samples, 0.01%)</title><rect x="65.4816%" y="2069" width="0.0129%" height="15" fill="rgb(217,179,25)" fg:x="201378165921" fg:w="39716232"/><text x="65.7316%" y="2079.50"></text></g><g><title>async_io::reactor::ReactorLock::react (60,656,557 samples, 0.02%)</title><rect x="65.4948%" y="1957" width="0.0197%" height="15" fill="rgb(206,212,31)" fg:x="201418701121" fg:w="60656557"/><text x="65.7448%" y="1967.50"></text></g><g><title>polling::Poller::wait_impl (33,607,058 samples, 0.01%)</title><rect x="65.5036%" y="1941" width="0.0109%" height="15" fill="rgb(235,144,12)" fg:x="201445750620" fg:w="33607058"/><text x="65.7536%" y="1951.50"></text></g><g><title>[unknown] (31,599,847 samples, 0.01%)</title><rect x="65.5042%" y="1925" width="0.0103%" height="15" fill="rgb(213,51,10)" fg:x="201447757831" fg:w="31599847"/><text x="65.7542%" y="1935.50"></text></g><g><title>[unknown] (31,599,847 samples, 0.01%)</title><rect x="65.5042%" y="1909" width="0.0103%" height="15" fill="rgb(231,145,14)" fg:x="201447757831" fg:w="31599847"/><text x="65.7542%" y="1919.50"></text></g><g><title>async-io (77,866,561 samples, 0.03%)</title><rect x="65.4945%" y="2069" width="0.0253%" height="15" fill="rgb(235,15,28)" fg:x="201417882153" fg:w="77866561"/><text x="65.7445%" y="2079.50"></text></g><g><title>__GI___clone3 (77,866,561 samples, 0.03%)</title><rect x="65.4945%" y="2053" width="0.0253%" height="15" fill="rgb(237,206,10)" fg:x="201417882153" fg:w="77866561"/><text x="65.7445%" y="2063.50"></text></g><g><title>start_thread (77,866,561 samples, 0.03%)</title><rect x="65.4945%" y="2037" width="0.0253%" height="15" fill="rgb(236,227,27)" fg:x="201417882153" fg:w="77866561"/><text x="65.7445%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (77,866,561 samples, 0.03%)</title><rect x="65.4945%" y="2021" width="0.0253%" height="15" fill="rgb(246,83,35)" fg:x="201417882153" fg:w="77866561"/><text x="65.7445%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (77,866,561 samples, 0.03%)</title><rect x="65.4945%" y="2005" width="0.0253%" height="15" fill="rgb(220,136,24)" fg:x="201417882153" fg:w="77866561"/><text x="65.7445%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (77,866,561 samples, 0.03%)</title><rect x="65.4945%" y="1989" width="0.0253%" height="15" fill="rgb(217,3,25)" fg:x="201417882153" fg:w="77866561"/><text x="65.7445%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (77,866,561 samples, 0.03%)</title><rect x="65.4945%" y="1973" width="0.0253%" height="15" fill="rgb(239,24,14)" fg:x="201417882153" fg:w="77866561"/><text x="65.7445%" y="1983.50"></text></g><g><title>ble_request.cc0 (50,777,771 samples, 0.02%)</title><rect x="65.5200%" y="2069" width="0.0165%" height="15" fill="rgb(244,16,53)" fg:x="201496225420" fg:w="50777771"/><text x="65.7700%" y="2079.50"></text></g><g><title>clangd (34,481,415 samples, 0.01%)</title><rect x="65.5472%" y="2069" width="0.0112%" height="15" fill="rgb(208,175,44)" fg:x="201580006425" fg:w="34481415"/><text x="65.7972%" y="2079.50"></text></g><g><title>d_resources.cc0 (48,282,376 samples, 0.02%)</title><rect x="65.5584%" y="2069" width="0.0157%" height="15" fill="rgb(252,18,48)" fg:x="201614487840" fg:w="48282376"/><text x="65.8084%" y="2079.50"></text></g><g><title>drop_tracker.cc (36,515,734 samples, 0.01%)</title><rect x="65.5741%" y="2069" width="0.0119%" height="15" fill="rgb(234,199,32)" fg:x="201662770216" fg:w="36515734"/><text x="65.8241%" y="2079.50"></text></g><g><title>[unknown] (43,197,558 samples, 0.01%)</title><rect x="65.5884%" y="2037" width="0.0140%" height="15" fill="rgb(225,77,54)" fg:x="201706548436" fg:w="43197558"/><text x="65.8384%" y="2047.50"></text></g><g><title>[unknown] (124,576,281 samples, 0.04%)</title><rect x="65.5872%" y="2053" width="0.0405%" height="15" fill="rgb(225,42,25)" fg:x="201702931345" fg:w="124576281"/><text x="65.8372%" y="2063.50"></text></g><g><title>eference_api.cc (264,308,665 samples, 0.09%)</title><rect x="65.5860%" y="2069" width="0.0859%" height="15" fill="rgb(242,227,46)" fg:x="201699285950" fg:w="264308665"/><text x="65.8360%" y="2079.50"></text></g><g><title>[unknown] (64,379,714 samples, 0.02%)</title><rect x="65.6791%" y="2053" width="0.0209%" height="15" fill="rgb(246,197,35)" fg:x="201985661102" fg:w="64379714"/><text x="65.9291%" y="2063.50"></text></g><g><title>ence_helpers.h0 (144,776,918 samples, 0.05%)</title><rect x="65.6787%" y="2069" width="0.0471%" height="15" fill="rgb(215,159,26)" fg:x="201984415249" fg:w="144776918"/><text x="65.9287%" y="2079.50"></text></g><g><title>[unknown] (61,723,964 samples, 0.02%)</title><rect x="65.7258%" y="2053" width="0.0201%" height="15" fill="rgb(212,194,50)" fg:x="202129192167" fg:w="61723964"/><text x="65.9758%" y="2063.50"></text></g><g><title>er_unittest.cc0 (112,652,394 samples, 0.04%)</title><rect x="65.7258%" y="2069" width="0.0366%" height="15" fill="rgb(246,132,1)" fg:x="202129192167" fg:w="112652394"/><text x="65.9758%" y="2079.50"></text></g><g><title>factory_impl.cc (56,269,818 samples, 0.02%)</title><rect x="65.7624%" y="2069" width="0.0183%" height="15" fill="rgb(217,71,7)" fg:x="202241844561" fg:w="56269818"/><text x="66.0124%" y="2079.50"></text></g><g><title>[unknown] (53,614,850 samples, 0.02%)</title><rect x="65.7807%" y="2053" width="0.0174%" height="15" fill="rgb(252,59,32)" fg:x="202298114379" fg:w="53614850"/><text x="66.0307%" y="2063.50"></text></g><g><title>ference_api.cc0 (105,265,276 samples, 0.03%)</title><rect x="65.7807%" y="2069" width="0.0342%" height="15" fill="rgb(253,204,25)" fg:x="202298114379" fg:w="105265276"/><text x="66.0307%" y="2079.50"></text></g><g><title>[fish] (31,975,553 samples, 0.01%)</title><rect x="65.8669%" y="965" width="0.0104%" height="15" fill="rgb(232,21,16)" fg:x="202563096835" fg:w="31975553"/><text x="66.1169%" y="975.50"></text></g><g><title>[fish] (31,975,553 samples, 0.01%)</title><rect x="65.8669%" y="949" width="0.0104%" height="15" fill="rgb(248,90,29)" fg:x="202563096835" fg:w="31975553"/><text x="66.1169%" y="959.50"></text></g><g><title>[fish] (34,282,225 samples, 0.01%)</title><rect x="65.8665%" y="981" width="0.0111%" height="15" fill="rgb(249,223,7)" fg:x="202561982318" fg:w="34282225"/><text x="66.1165%" y="991.50"></text></g><g><title>[fish] (38,749,202 samples, 0.01%)</title><rect x="65.8654%" y="997" width="0.0126%" height="15" fill="rgb(231,119,42)" fg:x="202558593458" fg:w="38749202"/><text x="66.1154%" y="1007.50"></text></g><g><title>[fish] (47,986,110 samples, 0.02%)</title><rect x="65.8644%" y="1013" width="0.0156%" height="15" fill="rgb(215,41,35)" fg:x="202555310707" fg:w="47986110"/><text x="66.1144%" y="1023.50"></text></g><g><title>[fish] (55,137,225 samples, 0.02%)</title><rect x="65.8628%" y="1029" width="0.0179%" height="15" fill="rgb(220,44,45)" fg:x="202550460642" fg:w="55137225"/><text x="66.1128%" y="1039.50"></text></g><g><title>[fish] (61,242,353 samples, 0.02%)</title><rect x="65.8620%" y="1045" width="0.0199%" height="15" fill="rgb(253,197,36)" fg:x="202548015965" fg:w="61242353"/><text x="66.1120%" y="1055.50"></text></g><g><title>[fish] (66,396,699 samples, 0.02%)</title><rect x="65.8614%" y="1093" width="0.0216%" height="15" fill="rgb(245,225,54)" fg:x="202546068648" fg:w="66396699"/><text x="66.1114%" y="1103.50"></text></g><g><title>[fish] (65,395,531 samples, 0.02%)</title><rect x="65.8617%" y="1077" width="0.0213%" height="15" fill="rgb(239,94,37)" fg:x="202547069816" fg:w="65395531"/><text x="66.1117%" y="1087.50"></text></g><g><title>[fish] (64,449,382 samples, 0.02%)</title><rect x="65.8620%" y="1061" width="0.0210%" height="15" fill="rgb(242,217,10)" fg:x="202548015965" fg:w="64449382"/><text x="66.1120%" y="1071.50"></text></g><g><title>[fish] (70,195,769 samples, 0.02%)</title><rect x="65.8603%" y="1109" width="0.0228%" height="15" fill="rgb(250,193,7)" fg:x="202542934113" fg:w="70195769"/><text x="66.1103%" y="1119.50"></text></g><g><title>[fish] (72,721,554 samples, 0.02%)</title><rect x="65.8598%" y="1125" width="0.0236%" height="15" fill="rgb(230,104,19)" fg:x="202541392966" fg:w="72721554"/><text x="66.1098%" y="1135.50"></text></g><g><title>[fish] (74,677,830 samples, 0.02%)</title><rect x="65.8595%" y="1141" width="0.0243%" height="15" fill="rgb(230,181,4)" fg:x="202540459029" fg:w="74677830"/><text x="66.1095%" y="1151.50"></text></g><g><title>[fish] (79,029,624 samples, 0.03%)</title><rect x="65.8592%" y="1157" width="0.0257%" height="15" fill="rgb(216,219,49)" fg:x="202539337546" fg:w="79029624"/><text x="66.1092%" y="1167.50"></text></g><g><title>[fish] (82,573,546 samples, 0.03%)</title><rect x="65.8588%" y="1173" width="0.0269%" height="15" fill="rgb(254,144,0)" fg:x="202538336325" fg:w="82573546"/><text x="66.1088%" y="1183.50"></text></g><g><title>[fish] (90,200,327 samples, 0.03%)</title><rect x="65.8569%" y="1205" width="0.0293%" height="15" fill="rgb(205,209,38)" fg:x="202532361845" fg:w="90200327"/><text x="66.1069%" y="1215.50"></text></g><g><title>[fish] (90,200,327 samples, 0.03%)</title><rect x="65.8569%" y="1189" width="0.0293%" height="15" fill="rgb(240,21,42)" fg:x="202532361845" fg:w="90200327"/><text x="66.1069%" y="1199.50"></text></g><g><title>[fish] (91,950,073 samples, 0.03%)</title><rect x="65.8566%" y="1221" width="0.0299%" height="15" fill="rgb(241,132,3)" fg:x="202531398459" fg:w="91950073"/><text x="66.1066%" y="1231.50"></text></g><g><title>[fish] (104,152,865 samples, 0.03%)</title><rect x="65.8547%" y="1237" width="0.0339%" height="15" fill="rgb(225,14,2)" fg:x="202525563534" fg:w="104152865"/><text x="66.1047%" y="1247.50"></text></g><g><title>[fish] (106,845,108 samples, 0.03%)</title><rect x="65.8547%" y="1253" width="0.0347%" height="15" fill="rgb(210,141,35)" fg:x="202525563534" fg:w="106845108"/><text x="66.1047%" y="1263.50"></text></g><g><title>[fish] (117,818,569 samples, 0.04%)</title><rect x="65.8525%" y="1285" width="0.0383%" height="15" fill="rgb(251,14,44)" fg:x="202518771062" fg:w="117818569"/><text x="66.1025%" y="1295.50"></text></g><g><title>[fish] (114,779,573 samples, 0.04%)</title><rect x="65.8535%" y="1269" width="0.0373%" height="15" fill="rgb(247,48,18)" fg:x="202521810058" fg:w="114779573"/><text x="66.1035%" y="1279.50"></text></g><g><title>[fish] (125,311,982 samples, 0.04%)</title><rect x="65.8522%" y="1301" width="0.0407%" height="15" fill="rgb(225,0,40)" fg:x="202517781588" fg:w="125311982"/><text x="66.1022%" y="1311.50"></text></g><g><title>[fish] (129,995,546 samples, 0.04%)</title><rect x="65.8510%" y="1317" width="0.0423%" height="15" fill="rgb(221,31,33)" fg:x="202514268297" fg:w="129995546"/><text x="66.1010%" y="1327.50"></text></g><g><title>[fish] (132,350,406 samples, 0.04%)</title><rect x="65.8510%" y="1333" width="0.0430%" height="15" fill="rgb(237,42,40)" fg:x="202514239204" fg:w="132350406"/><text x="66.1010%" y="1343.50"></text></g><g><title>[fish] (140,066,156 samples, 0.05%)</title><rect x="65.8493%" y="1349" width="0.0455%" height="15" fill="rgb(233,51,29)" fg:x="202509133987" fg:w="140066156"/><text x="66.0993%" y="1359.50"></text></g><g><title>[fish] (145,027,877 samples, 0.05%)</title><rect x="65.8483%" y="1365" width="0.0472%" height="15" fill="rgb(226,58,20)" fg:x="202505842562" fg:w="145027877"/><text x="66.0983%" y="1375.50"></text></g><g><title>[fish] (148,531,364 samples, 0.05%)</title><rect x="65.8476%" y="1397" width="0.0483%" height="15" fill="rgb(208,98,7)" fg:x="202503838963" fg:w="148531364"/><text x="66.0976%" y="1407.50"></text></g><g><title>[fish] (147,507,516 samples, 0.05%)</title><rect x="65.8480%" y="1381" width="0.0480%" height="15" fill="rgb(228,143,44)" fg:x="202504862811" fg:w="147507516"/><text x="66.0980%" y="1391.50"></text></g><g><title>[fish] (156,456,637 samples, 0.05%)</title><rect x="65.8464%" y="1413" width="0.0509%" height="15" fill="rgb(246,55,38)" fg:x="202500201931" fg:w="156456637"/><text x="66.0964%" y="1423.50"></text></g><g><title>[fish] (161,057,302 samples, 0.05%)</title><rect x="65.8456%" y="1429" width="0.0524%" height="15" fill="rgb(247,87,16)" fg:x="202497589983" fg:w="161057302"/><text x="66.0956%" y="1439.50"></text></g><g><title>[fish] (168,404,532 samples, 0.05%)</title><rect x="65.8445%" y="1445" width="0.0548%" height="15" fill="rgb(234,129,42)" fg:x="202494305927" fg:w="168404532"/><text x="66.0945%" y="1455.50"></text></g><g><title>[fish] (177,212,533 samples, 0.06%)</title><rect x="65.8436%" y="1461" width="0.0576%" height="15" fill="rgb(220,82,16)" fg:x="202491396175" fg:w="177212533"/><text x="66.0936%" y="1471.50"></text></g><g><title>[fish] (187,365,494 samples, 0.06%)</title><rect x="65.8418%" y="1477" width="0.0609%" height="15" fill="rgb(211,88,4)" fg:x="202486021103" fg:w="187365494"/><text x="66.0918%" y="1487.50"></text></g><g><title>[fish] (196,048,366 samples, 0.06%)</title><rect x="65.8396%" y="1493" width="0.0637%" height="15" fill="rgb(248,151,21)" fg:x="202479184251" fg:w="196048366"/><text x="66.0896%" y="1503.50"></text></g><g><title>[fish] (207,463,589 samples, 0.07%)</title><rect x="65.8369%" y="1509" width="0.0675%" height="15" fill="rgb(238,163,6)" fg:x="202470795341" fg:w="207463589"/><text x="66.0869%" y="1519.50"></text></g><g><title>[fish] (221,903,837 samples, 0.07%)</title><rect x="65.8327%" y="1525" width="0.0722%" height="15" fill="rgb(209,183,11)" fg:x="202457868190" fg:w="221903837"/><text x="66.0827%" y="1535.50"></text></g><g><title>[fish] (229,637,186 samples, 0.07%)</title><rect x="65.8314%" y="1557" width="0.0747%" height="15" fill="rgb(219,37,20)" fg:x="202453833148" fg:w="229637186"/><text x="66.0814%" y="1567.50"></text></g><g><title>[fish] (228,690,805 samples, 0.07%)</title><rect x="65.8317%" y="1541" width="0.0744%" height="15" fill="rgb(210,158,4)" fg:x="202454779529" fg:w="228690805"/><text x="66.0817%" y="1551.50"></text></g><g><title>[fish] (232,416,120 samples, 0.08%)</title><rect x="65.8308%" y="1589" width="0.0756%" height="15" fill="rgb(221,167,53)" fg:x="202452092618" fg:w="232416120"/><text x="66.0808%" y="1599.50"></text></g><g><title>[fish] (231,424,314 samples, 0.08%)</title><rect x="65.8311%" y="1573" width="0.0753%" height="15" fill="rgb(237,151,45)" fg:x="202453084424" fg:w="231424314"/><text x="66.0811%" y="1583.50"></text></g><g><title>[fish] (235,136,652 samples, 0.08%)</title><rect x="65.8308%" y="1605" width="0.0765%" height="15" fill="rgb(231,39,3)" fg:x="202452092618" fg:w="235136652"/><text x="66.0808%" y="1615.50"></text></g><g><title>[fish] (236,351,688 samples, 0.08%)</title><rect x="65.8308%" y="1637" width="0.0769%" height="15" fill="rgb(212,167,28)" fg:x="202452092618" fg:w="236351688"/><text x="66.0808%" y="1647.50"></text></g><g><title>[fish] (236,351,688 samples, 0.08%)</title><rect x="65.8308%" y="1621" width="0.0769%" height="15" fill="rgb(232,178,8)" fg:x="202452092618" fg:w="236351688"/><text x="66.0808%" y="1631.50"></text></g><g><title>[fish] (237,338,643 samples, 0.08%)</title><rect x="65.8308%" y="1653" width="0.0772%" height="15" fill="rgb(225,151,20)" fg:x="202452092618" fg:w="237338643"/><text x="66.0808%" y="1663.50"></text></g><g><title>[fish] (244,689,479 samples, 0.08%)</title><rect x="65.8288%" y="1717" width="0.0796%" height="15" fill="rgb(238,3,37)" fg:x="202445887701" fg:w="244689479"/><text x="66.0788%" y="1727.50"></text></g><g><title>[fish] (241,835,019 samples, 0.08%)</title><rect x="65.8297%" y="1701" width="0.0786%" height="15" fill="rgb(251,147,42)" fg:x="202448742161" fg:w="241835019"/><text x="66.0797%" y="1711.50"></text></g><g><title>[fish] (241,835,019 samples, 0.08%)</title><rect x="65.8297%" y="1685" width="0.0786%" height="15" fill="rgb(208,173,10)" fg:x="202448742161" fg:w="241835019"/><text x="66.0797%" y="1695.50"></text></g><g><title>[fish] (239,666,626 samples, 0.08%)</title><rect x="65.8304%" y="1669" width="0.0779%" height="15" fill="rgb(246,225,4)" fg:x="202450910554" fg:w="239666626"/><text x="66.0804%" y="1679.50"></text></g><g><title>[fish] (249,387,947 samples, 0.08%)</title><rect x="65.8276%" y="1733" width="0.0811%" height="15" fill="rgb(248,102,6)" fg:x="202442248589" fg:w="249387947"/><text x="66.0776%" y="1743.50"></text></g><g><title>[fish] (256,180,990 samples, 0.08%)</title><rect x="65.8261%" y="1749" width="0.0833%" height="15" fill="rgb(232,6,21)" fg:x="202437679676" fg:w="256180990"/><text x="66.0761%" y="1759.50"></text></g><g><title>[fish] (264,026,845 samples, 0.09%)</title><rect x="65.8248%" y="1765" width="0.0859%" height="15" fill="rgb(221,179,22)" fg:x="202433714003" fg:w="264026845"/><text x="66.0748%" y="1775.50"></text></g><g><title>[fish] (267,295,438 samples, 0.09%)</title><rect x="65.8241%" y="1781" width="0.0869%" height="15" fill="rgb(252,50,20)" fg:x="202431358512" fg:w="267295438"/><text x="66.0741%" y="1791.50"></text></g><g><title>[fish] (271,245,961 samples, 0.09%)</title><rect x="65.8234%" y="1797" width="0.0882%" height="15" fill="rgb(222,56,38)" fg:x="202429228728" fg:w="271245961"/><text x="66.0734%" y="1807.50"></text></g><g><title>[fish] (277,494,905 samples, 0.09%)</title><rect x="65.8231%" y="1813" width="0.0902%" height="15" fill="rgb(206,193,29)" fg:x="202428264526" fg:w="277494905"/><text x="66.0731%" y="1823.50"></text></g><g><title>[fish] (289,541,034 samples, 0.09%)</title><rect x="65.8207%" y="1829" width="0.0941%" height="15" fill="rgb(239,192,45)" fg:x="202420924620" fg:w="289541034"/><text x="66.0707%" y="1839.50"></text></g><g><title>[fish] (303,457,341 samples, 0.10%)</title><rect x="65.8174%" y="1845" width="0.0987%" height="15" fill="rgb(254,18,36)" fg:x="202410900996" fg:w="303457341"/><text x="66.0674%" y="1855.50"></text></g><g><title>[fish] (311,412,120 samples, 0.10%)</title><rect x="65.8164%" y="1861" width="0.1013%" height="15" fill="rgb(221,127,11)" fg:x="202407832686" fg:w="311412120"/><text x="66.0664%" y="1871.50"></text></g><g><title>[fish] (316,308,611 samples, 0.10%)</title><rect x="65.8150%" y="1877" width="0.1029%" height="15" fill="rgb(234,146,35)" fg:x="202403379655" fg:w="316308611"/><text x="66.0650%" y="1887.50"></text></g><g><title>[fish] (319,584,178 samples, 0.10%)</title><rect x="65.8150%" y="1893" width="0.1039%" height="15" fill="rgb(254,201,37)" fg:x="202403379655" fg:w="319584178"/><text x="66.0650%" y="1903.50"></text></g><g><title>[fish] (321,975,698 samples, 0.10%)</title><rect x="65.8150%" y="1909" width="0.1047%" height="15" fill="rgb(211,202,23)" fg:x="202403379655" fg:w="321975698"/><text x="66.0650%" y="1919.50"></text></g><g><title>[fish] (325,002,742 samples, 0.11%)</title><rect x="65.8150%" y="1925" width="0.1057%" height="15" fill="rgb(237,91,2)" fg:x="202403379655" fg:w="325002742"/><text x="66.0650%" y="1935.50"></text></g><g><title>[fish] (326,775,979 samples, 0.11%)</title><rect x="65.8150%" y="1989" width="0.1063%" height="15" fill="rgb(226,228,36)" fg:x="202403379655" fg:w="326775979"/><text x="66.0650%" y="1999.50"></text></g><g><title>[fish] (326,775,979 samples, 0.11%)</title><rect x="65.8150%" y="1973" width="0.1063%" height="15" fill="rgb(213,63,50)" fg:x="202403379655" fg:w="326775979"/><text x="66.0650%" y="1983.50"></text></g><g><title>[fish] (326,775,979 samples, 0.11%)</title><rect x="65.8150%" y="1957" width="0.1063%" height="15" fill="rgb(235,194,19)" fg:x="202403379655" fg:w="326775979"/><text x="66.0650%" y="1967.50"></text></g><g><title>[fish] (326,775,979 samples, 0.11%)</title><rect x="65.8150%" y="1941" width="0.1063%" height="15" fill="rgb(207,204,18)" fg:x="202403379655" fg:w="326775979"/><text x="66.0650%" y="1951.50"></text></g><g><title>[fish] (328,937,400 samples, 0.11%)</title><rect x="65.8150%" y="2053" width="0.1070%" height="15" fill="rgb(248,8,7)" fg:x="202403379655" fg:w="328937400"/><text x="66.0650%" y="2063.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (328,937,400 samples, 0.11%)</title><rect x="65.8150%" y="2037" width="0.1070%" height="15" fill="rgb(223,145,47)" fg:x="202403379655" fg:w="328937400"/><text x="66.0650%" y="2047.50"></text></g><g><title>__libc_start_call_main (328,937,400 samples, 0.11%)</title><rect x="65.8150%" y="2021" width="0.1070%" height="15" fill="rgb(228,84,11)" fg:x="202403379655" fg:w="328937400"/><text x="66.0650%" y="2031.50"></text></g><g><title>[fish] (328,937,400 samples, 0.11%)</title><rect x="65.8150%" y="2005" width="0.1070%" height="15" fill="rgb(218,76,45)" fg:x="202403379655" fg:w="328937400"/><text x="66.0650%" y="2015.50"></text></g><g><title>fish (361,634,708 samples, 0.12%)</title><rect x="65.8150%" y="2069" width="0.1176%" height="15" fill="rgb(223,80,15)" fg:x="202403379655" fg:w="361634708"/><text x="66.0650%" y="2079.50"></text></g><g><title>_dl_relocate_object (45,778,881 samples, 0.01%)</title><rect x="65.9530%" y="1989" width="0.0149%" height="15" fill="rgb(219,218,33)" fg:x="202827878847" fg:w="45778881"/><text x="66.2030%" y="1999.50"></text></g><g><title>_dl_relocate_object_no_relro (44,712,265 samples, 0.01%)</title><rect x="65.9533%" y="1973" width="0.0145%" height="15" fill="rgb(208,51,11)" fg:x="202828945463" fg:w="44712265"/><text x="66.2033%" y="1983.50"></text></g><g><title>_dl_lookup_symbol_x (35,570,692 samples, 0.01%)</title><rect x="65.9563%" y="1957" width="0.0116%" height="15" fill="rgb(229,165,39)" fg:x="202838087036" fg:w="35570692"/><text x="66.2063%" y="1967.50"></text></g><g><title>do_lookup_x (32,289,106 samples, 0.01%)</title><rect x="65.9574%" y="1941" width="0.0105%" height="15" fill="rgb(241,100,24)" fg:x="202841368622" fg:w="32289106"/><text x="66.2074%" y="1951.50"></text></g><g><title>flatpak (113,613,555 samples, 0.04%)</title><rect x="65.9326%" y="2069" width="0.0369%" height="15" fill="rgb(228,14,23)" fg:x="202765014363" fg:w="113613555"/><text x="66.1826%" y="2079.50"></text></g><g><title>_dl_start_user (87,109,598 samples, 0.03%)</title><rect x="65.9412%" y="2053" width="0.0283%" height="15" fill="rgb(247,116,52)" fg:x="202791518320" fg:w="87109598"/><text x="66.1912%" y="2063.50"></text></g><g><title>_dl_start (79,121,641 samples, 0.03%)</title><rect x="65.9438%" y="2037" width="0.0257%" height="15" fill="rgb(216,149,33)" fg:x="202799506277" fg:w="79121641"/><text x="66.1938%" y="2047.50"></text></g><g><title>_dl_sysdep_start (79,121,641 samples, 0.03%)</title><rect x="65.9438%" y="2021" width="0.0257%" height="15" fill="rgb(238,142,29)" fg:x="202799506277" fg:w="79121641"/><text x="66.1938%" y="2031.50"></text></g><g><title>dl_main (79,121,641 samples, 0.03%)</title><rect x="65.9438%" y="2005" width="0.0257%" height="15" fill="rgb(224,83,40)" fg:x="202799506277" fg:w="79121641"/><text x="66.1938%" y="2015.50"></text></g><g><title>[unknown] (39,924,788 samples, 0.01%)</title><rect x="65.9695%" y="2053" width="0.0130%" height="15" fill="rgb(234,165,11)" fg:x="202878627918" fg:w="39924788"/><text x="66.2195%" y="2063.50"></text></g><g><title>flow_bubble.cc0 (96,775,147 samples, 0.03%)</title><rect x="65.9695%" y="2069" width="0.0315%" height="15" fill="rgb(215,96,23)" fg:x="202878627918" fg:w="96775147"/><text x="66.2195%" y="2079.50"></text></g><g><title>[git] (40,269,066 samples, 0.01%)</title><rect x="66.4868%" y="1637" width="0.0131%" height="15" fill="rgb(233,179,26)" fg:x="204469404394" fg:w="40269066"/><text x="66.7368%" y="1647.50"></text></g><g><title>[git] (65,010,541 samples, 0.02%)</title><rect x="66.4856%" y="1653" width="0.0211%" height="15" fill="rgb(225,129,33)" fg:x="204465774817" fg:w="65010541"/><text x="66.7356%" y="1663.50"></text></g><g><title>[git] (93,138,890 samples, 0.03%)</title><rect x="66.4840%" y="1669" width="0.0303%" height="15" fill="rgb(237,49,13)" fg:x="204461022578" fg:w="93138890"/><text x="66.7340%" y="1679.50"></text></g><g><title>[git] (134,320,798 samples, 0.04%)</title><rect x="66.4825%" y="1685" width="0.0437%" height="15" fill="rgb(211,3,31)" fg:x="204456181712" fg:w="134320798"/><text x="66.7325%" y="1695.50"></text></g><g><title>[git] (172,768,445 samples, 0.06%)</title><rect x="66.4811%" y="1701" width="0.0562%" height="15" fill="rgb(216,152,19)" fg:x="204451928337" fg:w="172768445"/><text x="66.7311%" y="1711.50"></text></g><g><title>[git] (193,928,903 samples, 0.06%)</title><rect x="66.4792%" y="1717" width="0.0631%" height="15" fill="rgb(251,121,35)" fg:x="204446132068" fg:w="193928903"/><text x="66.7292%" y="1727.50"></text></g><g><title>[git] (213,952,224 samples, 0.07%)</title><rect x="66.4778%" y="1733" width="0.0696%" height="15" fill="rgb(210,217,47)" fg:x="204441713276" fg:w="213952224"/><text x="66.7278%" y="1743.50"></text></g><g><title>[git] (268,934,242 samples, 0.09%)</title><rect x="66.4738%" y="1749" width="0.0874%" height="15" fill="rgb(244,116,22)" fg:x="204429453877" fg:w="268934242"/><text x="66.7238%" y="1759.50"></text></g><g><title>[libz.so.1.3.1] (299,095,888 samples, 0.10%)</title><rect x="66.6045%" y="1733" width="0.0973%" height="15" fill="rgb(228,17,21)" fg:x="204831542616" fg:w="299095888"/><text x="66.8545%" y="1743.50"></text></g><g><title>inflate (398,283,947 samples, 0.13%)</title><rect x="66.5865%" y="1749" width="0.1295%" height="15" fill="rgb(240,149,34)" fg:x="204775995264" fg:w="398283947"/><text x="66.8365%" y="1759.50"></text></g><g><title>adler32_z (43,640,707 samples, 0.01%)</title><rect x="66.7018%" y="1733" width="0.0142%" height="15" fill="rgb(208,125,47)" fg:x="205130638504" fg:w="43640707"/><text x="66.9518%" y="1743.50"></text></g><g><title>[git] (802,315,957 samples, 0.26%)</title><rect x="66.4595%" y="1765" width="0.2609%" height="15" fill="rgb(249,186,39)" fg:x="204385470416" fg:w="802315957"/><text x="66.7095%" y="1775.50"></text></g><g><title>__memmove_avx512_unaligned_erms (109,692,746 samples, 0.04%)</title><rect x="66.7293%" y="1765" width="0.0357%" height="15" fill="rgb(240,220,33)" fg:x="205215233814" fg:w="109692746"/><text x="66.9793%" y="1775.50"></text></g><g><title>[unknown] (55,258,769 samples, 0.02%)</title><rect x="66.7470%" y="1749" width="0.0180%" height="15" fill="rgb(243,110,23)" fg:x="205269667791" fg:w="55258769"/><text x="66.9970%" y="1759.50"></text></g><g><title>[unknown] (49,723,573 samples, 0.02%)</title><rect x="66.7488%" y="1733" width="0.0162%" height="15" fill="rgb(219,163,46)" fg:x="205275202987" fg:w="49723573"/><text x="66.9988%" y="1743.50"></text></g><g><title>[unknown] (49,723,573 samples, 0.02%)</title><rect x="66.7488%" y="1717" width="0.0162%" height="15" fill="rgb(216,126,30)" fg:x="205275202987" fg:w="49723573"/><text x="66.9988%" y="1727.50"></text></g><g><title>[unknown] (49,723,573 samples, 0.02%)</title><rect x="66.7488%" y="1701" width="0.0162%" height="15" fill="rgb(208,139,11)" fg:x="205275202987" fg:w="49723573"/><text x="66.9988%" y="1711.50"></text></g><g><title>[unknown] (47,692,916 samples, 0.02%)</title><rect x="66.7494%" y="1685" width="0.0155%" height="15" fill="rgb(213,118,36)" fg:x="205277233644" fg:w="47692916"/><text x="66.9994%" y="1695.50"></text></g><g><title>[unknown] (44,218,653 samples, 0.01%)</title><rect x="66.7506%" y="1669" width="0.0144%" height="15" fill="rgb(226,43,17)" fg:x="205280707907" fg:w="44218653"/><text x="67.0006%" y="1679.50"></text></g><g><title>[unknown] (44,218,653 samples, 0.01%)</title><rect x="66.7506%" y="1653" width="0.0144%" height="15" fill="rgb(254,217,4)" fg:x="205280707907" fg:w="44218653"/><text x="67.0006%" y="1663.50"></text></g><g><title>[unknown] (35,710,524 samples, 0.01%)</title><rect x="66.7533%" y="1637" width="0.0116%" height="15" fill="rgb(210,134,47)" fg:x="205289216036" fg:w="35710524"/><text x="67.0033%" y="1647.50"></text></g><g><title>[git] (1,008,794,272 samples, 0.33%)</title><rect x="66.4481%" y="1781" width="0.3280%" height="15" fill="rgb(237,24,49)" fg:x="204350579084" fg:w="1008794272"/><text x="66.6981%" y="1791.50"></text></g><g><title>[git] (1,325,004,066 samples, 0.43%)</title><rect x="66.3655%" y="1797" width="0.4308%" height="15" fill="rgb(251,39,46)" fg:x="204096577005" fg:w="1325004066"/><text x="66.6155%" y="1807.50"></text></g><g><title>[git] (1,736,857,184 samples, 0.56%)</title><rect x="66.2509%" y="1813" width="0.5648%" height="15" fill="rgb(251,220,3)" fg:x="203743929215" fg:w="1736857184"/><text x="66.5009%" y="1823.50"></text></g><g><title>[unknown] (84,948,672 samples, 0.03%)</title><rect x="66.8156%" y="1813" width="0.0276%" height="15" fill="rgb(228,105,12)" fg:x="205480786399" fg:w="84948672"/><text x="67.0656%" y="1823.50"></text></g><g><title>[unknown] (84,948,672 samples, 0.03%)</title><rect x="66.8156%" y="1797" width="0.0276%" height="15" fill="rgb(215,196,1)" fg:x="205480786399" fg:w="84948672"/><text x="67.0656%" y="1807.50"></text></g><g><title>[unknown] (84,948,672 samples, 0.03%)</title><rect x="66.8156%" y="1781" width="0.0276%" height="15" fill="rgb(214,33,39)" fg:x="205480786399" fg:w="84948672"/><text x="67.0656%" y="1791.50"></text></g><g><title>[unknown] (84,948,672 samples, 0.03%)</title><rect x="66.8156%" y="1765" width="0.0276%" height="15" fill="rgb(220,19,52)" fg:x="205480786399" fg:w="84948672"/><text x="67.0656%" y="1775.50"></text></g><g><title>[unknown] (84,948,672 samples, 0.03%)</title><rect x="66.8156%" y="1749" width="0.0276%" height="15" fill="rgb(221,78,38)" fg:x="205480786399" fg:w="84948672"/><text x="67.0656%" y="1759.50"></text></g><g><title>[unknown] (83,715,725 samples, 0.03%)</title><rect x="66.8160%" y="1733" width="0.0272%" height="15" fill="rgb(253,30,16)" fg:x="205482019346" fg:w="83715725"/><text x="67.0660%" y="1743.50"></text></g><g><title>[unknown] (82,861,037 samples, 0.03%)</title><rect x="66.8163%" y="1717" width="0.0269%" height="15" fill="rgb(242,65,0)" fg:x="205482874034" fg:w="82861037"/><text x="67.0663%" y="1727.50"></text></g><g><title>[unknown] (81,648,901 samples, 0.03%)</title><rect x="66.8167%" y="1701" width="0.0265%" height="15" fill="rgb(235,201,12)" fg:x="205484086170" fg:w="81648901"/><text x="67.0667%" y="1711.50"></text></g><g><title>[unknown] (80,518,381 samples, 0.03%)</title><rect x="66.8171%" y="1685" width="0.0262%" height="15" fill="rgb(233,161,9)" fg:x="205485216690" fg:w="80518381"/><text x="67.0671%" y="1695.50"></text></g><g><title>[unknown] (73,963,070 samples, 0.02%)</title><rect x="66.8192%" y="1669" width="0.0241%" height="15" fill="rgb(241,207,41)" fg:x="205491772001" fg:w="73963070"/><text x="67.0692%" y="1679.50"></text></g><g><title>[unknown] (73,963,070 samples, 0.02%)</title><rect x="66.8192%" y="1653" width="0.0241%" height="15" fill="rgb(212,69,46)" fg:x="205491772001" fg:w="73963070"/><text x="67.0692%" y="1663.50"></text></g><g><title>[unknown] (73,963,070 samples, 0.02%)</title><rect x="66.8192%" y="1637" width="0.0241%" height="15" fill="rgb(239,69,45)" fg:x="205491772001" fg:w="73963070"/><text x="67.0692%" y="1647.50"></text></g><g><title>[unknown] (73,963,070 samples, 0.02%)</title><rect x="66.8192%" y="1621" width="0.0241%" height="15" fill="rgb(242,117,48)" fg:x="205491772001" fg:w="73963070"/><text x="67.0692%" y="1631.50"></text></g><g><title>[unknown] (71,791,164 samples, 0.02%)</title><rect x="66.8199%" y="1605" width="0.0233%" height="15" fill="rgb(228,41,36)" fg:x="205493943907" fg:w="71791164"/><text x="67.0699%" y="1615.50"></text></g><g><title>[unknown] (70,946,434 samples, 0.02%)</title><rect x="66.8202%" y="1589" width="0.0231%" height="15" fill="rgb(212,3,32)" fg:x="205494788637" fg:w="70946434"/><text x="67.0702%" y="1599.50"></text></g><g><title>[unknown] (67,014,572 samples, 0.02%)</title><rect x="66.8215%" y="1573" width="0.0218%" height="15" fill="rgb(233,41,49)" fg:x="205498720499" fg:w="67014572"/><text x="67.0715%" y="1583.50"></text></g><g><title>[unknown] (34,292,371 samples, 0.01%)</title><rect x="66.8321%" y="1557" width="0.0112%" height="15" fill="rgb(252,170,49)" fg:x="205531442700" fg:w="34292371"/><text x="67.0821%" y="1567.50"></text></g><g><title>[unknown] (31,245,521 samples, 0.01%)</title><rect x="66.8331%" y="1541" width="0.0102%" height="15" fill="rgb(229,53,26)" fg:x="205534489550" fg:w="31245521"/><text x="67.0831%" y="1551.50"></text></g><g><title>[git] (2,621,712,835 samples, 0.85%)</title><rect x="66.0250%" y="1829" width="0.8525%" height="15" fill="rgb(217,157,12)" fg:x="203049417390" fg:w="2621712835"/><text x="66.2750%" y="1839.50"></text></g><g><title>[unknown] (38,706,357 samples, 0.01%)</title><rect x="66.8775%" y="1829" width="0.0126%" height="15" fill="rgb(227,17,9)" fg:x="205671130225" fg:w="38706357"/><text x="67.1275%" y="1839.50"></text></g><g><title>[unknown] (38,706,357 samples, 0.01%)</title><rect x="66.8775%" y="1813" width="0.0126%" height="15" fill="rgb(218,84,12)" fg:x="205671130225" fg:w="38706357"/><text x="67.1275%" y="1823.50"></text></g><g><title>[unknown] (38,706,357 samples, 0.01%)</title><rect x="66.8775%" y="1797" width="0.0126%" height="15" fill="rgb(212,79,24)" fg:x="205671130225" fg:w="38706357"/><text x="67.1275%" y="1807.50"></text></g><g><title>[unknown] (38,706,357 samples, 0.01%)</title><rect x="66.8775%" y="1781" width="0.0126%" height="15" fill="rgb(217,222,37)" fg:x="205671130225" fg:w="38706357"/><text x="67.1275%" y="1791.50"></text></g><g><title>[unknown] (38,706,357 samples, 0.01%)</title><rect x="66.8775%" y="1765" width="0.0126%" height="15" fill="rgb(246,208,8)" fg:x="205671130225" fg:w="38706357"/><text x="67.1275%" y="1775.50"></text></g><g><title>[unknown] (37,726,812 samples, 0.01%)</title><rect x="66.8778%" y="1749" width="0.0123%" height="15" fill="rgb(244,133,10)" fg:x="205672109770" fg:w="37726812"/><text x="67.1278%" y="1759.50"></text></g><g><title>[unknown] (37,724,128 samples, 0.01%)</title><rect x="66.8778%" y="1733" width="0.0123%" height="15" fill="rgb(209,219,41)" fg:x="205672112454" fg:w="37724128"/><text x="67.1278%" y="1743.50"></text></g><g><title>[unknown] (37,724,128 samples, 0.01%)</title><rect x="66.8778%" y="1717" width="0.0123%" height="15" fill="rgb(253,175,45)" fg:x="205672112454" fg:w="37724128"/><text x="67.1278%" y="1727.50"></text></g><g><title>[unknown] (37,724,128 samples, 0.01%)</title><rect x="66.8778%" y="1701" width="0.0123%" height="15" fill="rgb(235,100,37)" fg:x="205672112454" fg:w="37724128"/><text x="67.1278%" y="1711.50"></text></g><g><title>[unknown] (33,264,087 samples, 0.01%)</title><rect x="66.8793%" y="1685" width="0.0108%" height="15" fill="rgb(225,87,19)" fg:x="205676572495" fg:w="33264087"/><text x="67.1293%" y="1695.50"></text></g><g><title>[git] (2,772,947,013 samples, 0.90%)</title><rect x="66.0169%" y="1845" width="0.9017%" height="15" fill="rgb(217,152,17)" fg:x="203024275524" fg:w="2772947013"/><text x="66.2669%" y="1855.50"></text></g><g><title>[git] (2,918,427,008 samples, 0.95%)</title><rect x="66.0154%" y="1861" width="0.9490%" height="15" fill="rgb(235,72,13)" fg:x="203019751644" fg:w="2918427008"/><text x="66.2654%" y="1871.50"></text></g><g><title>read (88,656,214 samples, 0.03%)</title><rect x="66.9355%" y="1845" width="0.0288%" height="15" fill="rgb(233,140,18)" fg:x="205849522438" fg:w="88656214"/><text x="67.1855%" y="1855.50"></text></g><g><title>__syscall_cancel_arch_end (87,565,344 samples, 0.03%)</title><rect x="66.9359%" y="1829" width="0.0285%" height="15" fill="rgb(207,212,28)" fg:x="205850613308" fg:w="87565344"/><text x="67.1859%" y="1839.50"></text></g><g><title>[unknown] (86,234,660 samples, 0.03%)</title><rect x="66.9363%" y="1813" width="0.0280%" height="15" fill="rgb(220,130,25)" fg:x="205851943992" fg:w="86234660"/><text x="67.1863%" y="1823.50"></text></g><g><title>[unknown] (86,234,660 samples, 0.03%)</title><rect x="66.9363%" y="1797" width="0.0280%" height="15" fill="rgb(205,55,34)" fg:x="205851943992" fg:w="86234660"/><text x="67.1863%" y="1807.50"></text></g><g><title>[unknown] (86,234,660 samples, 0.03%)</title><rect x="66.9363%" y="1781" width="0.0280%" height="15" fill="rgb(237,54,35)" fg:x="205851943992" fg:w="86234660"/><text x="67.1863%" y="1791.50"></text></g><g><title>[unknown] (84,265,231 samples, 0.03%)</title><rect x="66.9370%" y="1765" width="0.0274%" height="15" fill="rgb(208,67,23)" fg:x="205853913421" fg:w="84265231"/><text x="67.1870%" y="1775.50"></text></g><g><title>[unknown] (84,265,231 samples, 0.03%)</title><rect x="66.9370%" y="1749" width="0.0274%" height="15" fill="rgb(206,207,50)" fg:x="205853913421" fg:w="84265231"/><text x="67.1870%" y="1759.50"></text></g><g><title>[unknown] (83,586,014 samples, 0.03%)</title><rect x="66.9372%" y="1733" width="0.0272%" height="15" fill="rgb(213,211,42)" fg:x="205854592638" fg:w="83586014"/><text x="67.1872%" y="1743.50"></text></g><g><title>[unknown] (82,284,173 samples, 0.03%)</title><rect x="66.9376%" y="1717" width="0.0268%" height="15" fill="rgb(252,197,50)" fg:x="205855894479" fg:w="82284173"/><text x="67.1876%" y="1727.50"></text></g><g><title>[unknown] (80,002,118 samples, 0.03%)</title><rect x="66.9383%" y="1701" width="0.0260%" height="15" fill="rgb(251,211,41)" fg:x="205858176534" fg:w="80002118"/><text x="67.1883%" y="1711.50"></text></g><g><title>[unknown] (80,002,118 samples, 0.03%)</title><rect x="66.9383%" y="1685" width="0.0260%" height="15" fill="rgb(229,211,5)" fg:x="205858176534" fg:w="80002118"/><text x="67.1883%" y="1695.50"></text></g><g><title>[unknown] (76,679,562 samples, 0.02%)</title><rect x="66.9394%" y="1669" width="0.0249%" height="15" fill="rgb(239,36,31)" fg:x="205861499090" fg:w="76679562"/><text x="67.1894%" y="1679.50"></text></g><g><title>[unknown] (75,183,828 samples, 0.02%)</title><rect x="66.9399%" y="1653" width="0.0244%" height="15" fill="rgb(248,67,31)" fg:x="205862994824" fg:w="75183828"/><text x="67.1899%" y="1663.50"></text></g><g><title>[unknown] (63,439,806 samples, 0.02%)</title><rect x="66.9437%" y="1637" width="0.0206%" height="15" fill="rgb(249,55,44)" fg:x="205874738846" fg:w="63439806"/><text x="67.1937%" y="1647.50"></text></g><g><title>[unknown] (54,740,595 samples, 0.02%)</title><rect x="66.9466%" y="1621" width="0.0178%" height="15" fill="rgb(216,82,12)" fg:x="205883438057" fg:w="54740595"/><text x="67.1966%" y="1631.50"></text></g><g><title>[unknown] (51,318,462 samples, 0.02%)</title><rect x="66.9477%" y="1605" width="0.0167%" height="15" fill="rgb(242,174,1)" fg:x="205886860190" fg:w="51318462"/><text x="67.1977%" y="1615.50"></text></g><g><title>[unknown] (51,318,462 samples, 0.02%)</title><rect x="66.9477%" y="1589" width="0.0167%" height="15" fill="rgb(208,120,29)" fg:x="205886860190" fg:w="51318462"/><text x="67.1977%" y="1599.50"></text></g><g><title>[unknown] (44,784,495 samples, 0.01%)</title><rect x="66.9498%" y="1573" width="0.0146%" height="15" fill="rgb(221,105,43)" fg:x="205893394157" fg:w="44784495"/><text x="67.1998%" y="1583.50"></text></g><g><title>[unknown] (41,081,054 samples, 0.01%)</title><rect x="66.9510%" y="1557" width="0.0134%" height="15" fill="rgb(234,124,22)" fg:x="205897097598" fg:w="41081054"/><text x="67.2010%" y="1567.50"></text></g><g><title>[unknown] (30,951,325 samples, 0.01%)</title><rect x="66.9543%" y="1541" width="0.0101%" height="15" fill="rgb(212,23,30)" fg:x="205907227327" fg:w="30951325"/><text x="67.2043%" y="1551.50"></text></g><g><title>__GI___libc_open (53,048,385 samples, 0.02%)</title><rect x="66.9654%" y="1861" width="0.0172%" height="15" fill="rgb(219,122,53)" fg:x="205941356951" fg:w="53048385"/><text x="67.2154%" y="1871.50"></text></g><g><title>__syscall_cancel_arch_end (53,048,385 samples, 0.02%)</title><rect x="66.9654%" y="1845" width="0.0172%" height="15" fill="rgb(248,84,24)" fg:x="205941356951" fg:w="53048385"/><text x="67.2154%" y="1855.50"></text></g><g><title>[unknown] (51,872,148 samples, 0.02%)</title><rect x="66.9658%" y="1829" width="0.0169%" height="15" fill="rgb(245,115,18)" fg:x="205942533188" fg:w="51872148"/><text x="67.2158%" y="1839.50"></text></g><g><title>[unknown] (50,934,732 samples, 0.02%)</title><rect x="66.9661%" y="1813" width="0.0166%" height="15" fill="rgb(227,176,51)" fg:x="205943470604" fg:w="50934732"/><text x="67.2161%" y="1823.50"></text></g><g><title>[unknown] (50,934,732 samples, 0.02%)</title><rect x="66.9661%" y="1797" width="0.0166%" height="15" fill="rgb(229,63,42)" fg:x="205943470604" fg:w="50934732"/><text x="67.2161%" y="1807.50"></text></g><g><title>[unknown] (49,843,989 samples, 0.02%)</title><rect x="66.9664%" y="1781" width="0.0162%" height="15" fill="rgb(247,202,24)" fg:x="205944561347" fg:w="49843989"/><text x="67.2164%" y="1791.50"></text></g><g><title>[unknown] (49,048,056 samples, 0.02%)</title><rect x="66.9667%" y="1765" width="0.0159%" height="15" fill="rgb(244,173,20)" fg:x="205945357280" fg:w="49048056"/><text x="67.2167%" y="1775.50"></text></g><g><title>[unknown] (47,557,809 samples, 0.02%)</title><rect x="66.9672%" y="1749" width="0.0155%" height="15" fill="rgb(242,81,47)" fg:x="205946847527" fg:w="47557809"/><text x="67.2172%" y="1759.50"></text></g><g><title>[unknown] (44,605,380 samples, 0.01%)</title><rect x="66.9681%" y="1733" width="0.0145%" height="15" fill="rgb(231,185,54)" fg:x="205949799956" fg:w="44605380"/><text x="67.2181%" y="1743.50"></text></g><g><title>[unknown] (41,457,154 samples, 0.01%)</title><rect x="66.9692%" y="1717" width="0.0135%" height="15" fill="rgb(243,55,32)" fg:x="205952948182" fg:w="41457154"/><text x="67.2192%" y="1727.50"></text></g><g><title>[unknown] (40,449,816 samples, 0.01%)</title><rect x="66.9695%" y="1701" width="0.0132%" height="15" fill="rgb(208,167,19)" fg:x="205953955520" fg:w="40449816"/><text x="67.2195%" y="1711.50"></text></g><g><title>[unknown] (38,680,518 samples, 0.01%)</title><rect x="66.9701%" y="1685" width="0.0126%" height="15" fill="rgb(231,72,35)" fg:x="205955724818" fg:w="38680518"/><text x="67.2201%" y="1695.50"></text></g><g><title>[unknown] (31,430,859 samples, 0.01%)</title><rect x="66.9724%" y="1669" width="0.0102%" height="15" fill="rgb(250,173,51)" fg:x="205962974477" fg:w="31430859"/><text x="67.2224%" y="1679.50"></text></g><g><title>[git] (3,011,939,960 samples, 0.98%)</title><rect x="66.0127%" y="1877" width="0.9794%" height="15" fill="rgb(209,5,22)" fg:x="203011484143" fg:w="3011939960"/><text x="66.2627%" y="1887.50"></text></g><g><title>[git] (3,077,050,053 samples, 1.00%)</title><rect x="66.0084%" y="1893" width="1.0006%" height="15" fill="rgb(250,174,19)" fg:x="202998431116" fg:w="3077050053"/><text x="66.2584%" y="1903.50"></text></g><g><title>__GI___fstatat64 (42,599,021 samples, 0.01%)</title><rect x="67.0090%" y="1893" width="0.0139%" height="15" fill="rgb(217,3,49)" fg:x="206075481169" fg:w="42599021"/><text x="67.2590%" y="1903.50"></text></g><g><title>[unknown] (40,374,521 samples, 0.01%)</title><rect x="67.0097%" y="1877" width="0.0131%" height="15" fill="rgb(218,225,5)" fg:x="206077705669" fg:w="40374521"/><text x="67.2597%" y="1887.50"></text></g><g><title>[unknown] (39,377,665 samples, 0.01%)</title><rect x="67.0101%" y="1861" width="0.0128%" height="15" fill="rgb(236,89,11)" fg:x="206078702525" fg:w="39377665"/><text x="67.2601%" y="1871.50"></text></g><g><title>[unknown] (39,377,665 samples, 0.01%)</title><rect x="67.0101%" y="1845" width="0.0128%" height="15" fill="rgb(206,33,28)" fg:x="206078702525" fg:w="39377665"/><text x="67.2601%" y="1855.50"></text></g><g><title>[unknown] (39,377,665 samples, 0.01%)</title><rect x="67.0101%" y="1829" width="0.0128%" height="15" fill="rgb(241,56,42)" fg:x="206078702525" fg:w="39377665"/><text x="67.2601%" y="1839.50"></text></g><g><title>[unknown] (39,377,665 samples, 0.01%)</title><rect x="67.0101%" y="1813" width="0.0128%" height="15" fill="rgb(222,44,11)" fg:x="206078702525" fg:w="39377665"/><text x="67.2601%" y="1823.50"></text></g><g><title>[unknown] (35,266,523 samples, 0.01%)</title><rect x="67.0114%" y="1797" width="0.0115%" height="15" fill="rgb(234,111,20)" fg:x="206082813667" fg:w="35266523"/><text x="67.2614%" y="1807.50"></text></g><g><title>[unknown] (35,266,523 samples, 0.01%)</title><rect x="67.0114%" y="1781" width="0.0115%" height="15" fill="rgb(237,77,6)" fg:x="206082813667" fg:w="35266523"/><text x="67.2614%" y="1791.50"></text></g><g><title>[unknown] (31,786,747 samples, 0.01%)</title><rect x="67.0125%" y="1765" width="0.0103%" height="15" fill="rgb(235,111,23)" fg:x="206086293443" fg:w="31786747"/><text x="67.2625%" y="1775.50"></text></g><g><title>[git] (3,135,124,340 samples, 1.02%)</title><rect x="66.0063%" y="1909" width="1.0194%" height="15" fill="rgb(251,135,29)" fg:x="202991920747" fg:w="3135124340"/><text x="66.2563%" y="1919.50"></text></g><g><title>[git] (3,156,977,383 samples, 1.03%)</title><rect x="66.0048%" y="1925" width="1.0265%" height="15" fill="rgb(217,57,1)" fg:x="202987121146" fg:w="3156977383"/><text x="66.2548%" y="1935.50"></text></g><g><title>__GI___fstatat64 (30,879,130 samples, 0.01%)</title><rect x="67.0317%" y="1925" width="0.0100%" height="15" fill="rgb(249,119,31)" fg:x="206145307945" fg:w="30879130"/><text x="67.2817%" y="1935.50"></text></g><g><title>[unknown] (30,879,130 samples, 0.01%)</title><rect x="67.0317%" y="1909" width="0.0100%" height="15" fill="rgb(233,164,33)" fg:x="206145307945" fg:w="30879130"/><text x="67.2817%" y="1919.50"></text></g><g><title>[unknown] (30,879,130 samples, 0.01%)</title><rect x="67.0317%" y="1893" width="0.0100%" height="15" fill="rgb(250,217,43)" fg:x="206145307945" fg:w="30879130"/><text x="67.2817%" y="1903.50"></text></g><g><title>[unknown] (30,879,130 samples, 0.01%)</title><rect x="67.0317%" y="1877" width="0.0100%" height="15" fill="rgb(232,154,50)" fg:x="206145307945" fg:w="30879130"/><text x="67.2817%" y="1887.50"></text></g><g><title>[unknown] (30,879,130 samples, 0.01%)</title><rect x="67.0317%" y="1861" width="0.0100%" height="15" fill="rgb(227,190,8)" fg:x="206145307945" fg:w="30879130"/><text x="67.2817%" y="1871.50"></text></g><g><title>[unknown] (30,879,130 samples, 0.01%)</title><rect x="67.0317%" y="1845" width="0.0100%" height="15" fill="rgb(209,217,32)" fg:x="206145307945" fg:w="30879130"/><text x="67.2817%" y="1855.50"></text></g><g><title>[unknown] (30,879,130 samples, 0.01%)</title><rect x="67.0317%" y="1829" width="0.0100%" height="15" fill="rgb(243,203,50)" fg:x="206145307945" fg:w="30879130"/><text x="67.2817%" y="1839.50"></text></g><g><title>[git] (3,205,175,068 samples, 1.04%)</title><rect x="66.0011%" y="1957" width="1.0422%" height="15" fill="rgb(232,152,27)" fg:x="202975841520" fg:w="3205175068"/><text x="66.2511%" y="1967.50"></text></g><g><title>[git] (3,205,175,068 samples, 1.04%)</title><rect x="66.0011%" y="1941" width="1.0422%" height="15" fill="rgb(240,34,29)" fg:x="202975841520" fg:w="3205175068"/><text x="66.2511%" y="1951.50"></text></g><g><title>[git] (3,206,871,006 samples, 1.04%)</title><rect x="66.0011%" y="1989" width="1.0428%" height="15" fill="rgb(215,185,52)" fg:x="202975841520" fg:w="3206871006"/><text x="66.2511%" y="1999.50"></text></g><g><title>[git] (3,206,871,006 samples, 1.04%)</title><rect x="66.0011%" y="1973" width="1.0428%" height="15" fill="rgb(240,89,49)" fg:x="202975841520" fg:w="3206871006"/><text x="66.2511%" y="1983.50"></text></g><g><title>[git] (3,209,712,789 samples, 1.04%)</title><rect x="66.0010%" y="2053" width="1.0437%" height="15" fill="rgb(225,12,52)" fg:x="202975403065" fg:w="3209712789"/><text x="66.2510%" y="2063.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (3,209,274,334 samples, 1.04%)</title><rect x="66.0011%" y="2037" width="1.0436%" height="15" fill="rgb(239,128,45)" fg:x="202975841520" fg:w="3209274334"/><text x="66.2511%" y="2047.50"></text></g><g><title>__libc_start_call_main (3,209,274,334 samples, 1.04%)</title><rect x="66.0011%" y="2021" width="1.0436%" height="15" fill="rgb(211,78,47)" fg:x="202975841520" fg:w="3209274334"/><text x="66.2511%" y="2031.50"></text></g><g><title>[git] (3,209,274,334 samples, 1.04%)</title><rect x="66.0011%" y="2005" width="1.0436%" height="15" fill="rgb(232,31,21)" fg:x="202975841520" fg:w="3209274334"/><text x="66.2511%" y="2015.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="2037" width="0.0198%" height="15" fill="rgb(222,168,14)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="2047.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="2021" width="0.0198%" height="15" fill="rgb(209,128,24)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="2031.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="2005" width="0.0198%" height="15" fill="rgb(249,35,13)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="2015.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="1989" width="0.0198%" height="15" fill="rgb(218,7,2)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="1999.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="1973" width="0.0198%" height="15" fill="rgb(238,107,27)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="1983.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="1957" width="0.0198%" height="15" fill="rgb(217,88,38)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="1967.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="1941" width="0.0198%" height="15" fill="rgb(230,207,0)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="1951.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="1925" width="0.0198%" height="15" fill="rgb(249,64,54)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="1935.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="1909" width="0.0198%" height="15" fill="rgb(231,7,11)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="1919.50"></text></g><g><title>[unknown] (60,807,439 samples, 0.02%)</title><rect x="67.0450%" y="1893" width="0.0198%" height="15" fill="rgb(205,149,21)" fg:x="206186075885" fg:w="60807439"/><text x="67.2950%" y="1903.50"></text></g><g><title>[unknown] (60,270,390 samples, 0.02%)</title><rect x="67.0451%" y="1877" width="0.0196%" height="15" fill="rgb(215,126,34)" fg:x="206186612934" fg:w="60270390"/><text x="67.2951%" y="1887.50"></text></g><g><title>[unknown] (60,270,390 samples, 0.02%)</title><rect x="67.0451%" y="1861" width="0.0196%" height="15" fill="rgb(241,132,45)" fg:x="206186612934" fg:w="60270390"/><text x="67.2951%" y="1871.50"></text></g><g><title>[unknown] (56,173,606 samples, 0.02%)</title><rect x="67.0465%" y="1845" width="0.0183%" height="15" fill="rgb(252,69,32)" fg:x="206190709718" fg:w="56173606"/><text x="67.2965%" y="1855.50"></text></g><g><title>[unknown] (56,173,606 samples, 0.02%)</title><rect x="67.0465%" y="1829" width="0.0183%" height="15" fill="rgb(232,204,19)" fg:x="206190709718" fg:w="56173606"/><text x="67.2965%" y="1839.50"></text></g><g><title>[unknown] (50,590,070 samples, 0.02%)</title><rect x="67.0483%" y="1813" width="0.0165%" height="15" fill="rgb(249,15,47)" fg:x="206196293254" fg:w="50590070"/><text x="67.2983%" y="1823.50"></text></g><g><title>[unknown] (33,082,622 samples, 0.01%)</title><rect x="67.0540%" y="1797" width="0.0108%" height="15" fill="rgb(209,227,23)" fg:x="206213800702" fg:w="33082622"/><text x="67.3040%" y="1807.50"></text></g><g><title>[unknown] (62,851,672 samples, 0.02%)</title><rect x="67.0447%" y="2053" width="0.0204%" height="15" fill="rgb(248,92,24)" fg:x="206185115854" fg:w="62851672"/><text x="67.2947%" y="2063.50"></text></g><g><title>[git] (44,679,374 samples, 0.01%)</title><rect x="67.0707%" y="2005" width="0.0145%" height="15" fill="rgb(247,59,2)" fg:x="206265237909" fg:w="44679374"/><text x="67.3207%" y="2015.50"></text></g><g><title>[git] (134,859,346 samples, 0.04%)</title><rect x="67.0655%" y="2021" width="0.0439%" height="15" fill="rgb(221,30,5)" fg:x="206249172374" fg:w="134859346"/><text x="67.3155%" y="2031.50"></text></g><g><title>__GI___fstatat64 (74,114,437 samples, 0.02%)</title><rect x="67.0852%" y="2005" width="0.0241%" height="15" fill="rgb(208,108,53)" fg:x="206309917283" fg:w="74114437"/><text x="67.3352%" y="2015.50"></text></g><g><title>[unknown] (74,114,437 samples, 0.02%)</title><rect x="67.0852%" y="1989" width="0.0241%" height="15" fill="rgb(211,183,26)" fg:x="206309917283" fg:w="74114437"/><text x="67.3352%" y="1999.50"></text></g><g><title>[unknown] (72,368,445 samples, 0.02%)</title><rect x="67.0858%" y="1973" width="0.0235%" height="15" fill="rgb(232,132,4)" fg:x="206311663275" fg:w="72368445"/><text x="67.3358%" y="1983.50"></text></g><g><title>[unknown] (72,368,445 samples, 0.02%)</title><rect x="67.0858%" y="1957" width="0.0235%" height="15" fill="rgb(253,128,37)" fg:x="206311663275" fg:w="72368445"/><text x="67.3358%" y="1967.50"></text></g><g><title>[unknown] (71,243,292 samples, 0.02%)</title><rect x="67.0862%" y="1941" width="0.0232%" height="15" fill="rgb(221,58,24)" fg:x="206312788428" fg:w="71243292"/><text x="67.3362%" y="1951.50"></text></g><g><title>[unknown] (71,243,292 samples, 0.02%)</title><rect x="67.0862%" y="1925" width="0.0232%" height="15" fill="rgb(230,54,45)" fg:x="206312788428" fg:w="71243292"/><text x="67.3362%" y="1935.50"></text></g><g><title>[unknown] (71,243,292 samples, 0.02%)</title><rect x="67.0862%" y="1909" width="0.0232%" height="15" fill="rgb(254,21,18)" fg:x="206312788428" fg:w="71243292"/><text x="67.3362%" y="1919.50"></text></g><g><title>[unknown] (69,560,550 samples, 0.02%)</title><rect x="67.0867%" y="1893" width="0.0226%" height="15" fill="rgb(221,108,0)" fg:x="206314471170" fg:w="69560550"/><text x="67.3367%" y="1903.50"></text></g><g><title>[unknown] (60,849,593 samples, 0.02%)</title><rect x="67.0896%" y="1877" width="0.0198%" height="15" fill="rgb(206,95,1)" fg:x="206323182127" fg:w="60849593"/><text x="67.3396%" y="1887.50"></text></g><g><title>[unknown] (55,921,307 samples, 0.02%)</title><rect x="67.0912%" y="1861" width="0.0182%" height="15" fill="rgb(237,52,5)" fg:x="206328110413" fg:w="55921307"/><text x="67.3412%" y="1871.50"></text></g><g><title>[unknown] (48,295,189 samples, 0.02%)</title><rect x="67.0936%" y="1845" width="0.0157%" height="15" fill="rgb(218,150,34)" fg:x="206335736531" fg:w="48295189"/><text x="67.3436%" y="1855.50"></text></g><g><title>[unknown] (42,759,025 samples, 0.01%)</title><rect x="67.0954%" y="1829" width="0.0139%" height="15" fill="rgb(235,194,28)" fg:x="206341272695" fg:w="42759025"/><text x="67.3454%" y="1839.50"></text></g><g><title>[unknown] (38,095,773 samples, 0.01%)</title><rect x="67.0969%" y="1813" width="0.0124%" height="15" fill="rgb(245,92,18)" fg:x="206345935947" fg:w="38095773"/><text x="67.3469%" y="1823.50"></text></g><g><title>__GI___fstatat64 (858,264,784 samples, 0.28%)</title><rect x="67.1093%" y="2021" width="0.2791%" height="15" fill="rgb(253,203,53)" fg:x="206384031720" fg:w="858264784"/><text x="67.3593%" y="2031.50"></text></g><g><title>[unknown] (852,153,775 samples, 0.28%)</title><rect x="67.1113%" y="2005" width="0.2771%" height="15" fill="rgb(249,185,47)" fg:x="206390142729" fg:w="852153775"/><text x="67.3613%" y="2015.50"></text></g><g><title>[unknown] (843,068,152 samples, 0.27%)</title><rect x="67.1143%" y="1989" width="0.2741%" height="15" fill="rgb(252,194,52)" fg:x="206399228352" fg:w="843068152"/><text x="67.3643%" y="1999.50"></text></g><g><title>[unknown] (840,588,037 samples, 0.27%)</title><rect x="67.1151%" y="1973" width="0.2733%" height="15" fill="rgb(210,53,36)" fg:x="206401708467" fg:w="840588037"/><text x="67.3651%" y="1983.50"></text></g><g><title>[unknown] (839,096,909 samples, 0.27%)</title><rect x="67.1156%" y="1957" width="0.2728%" height="15" fill="rgb(237,37,25)" fg:x="206403199595" fg:w="839096909"/><text x="67.3656%" y="1967.50"></text></g><g><title>[unknown] (836,044,430 samples, 0.27%)</title><rect x="67.1166%" y="1941" width="0.2719%" height="15" fill="rgb(242,116,27)" fg:x="206406252074" fg:w="836044430"/><text x="67.3666%" y="1951.50"></text></g><g><title>[unknown] (821,945,667 samples, 0.27%)</title><rect x="67.1211%" y="1925" width="0.2673%" height="15" fill="rgb(213,185,26)" fg:x="206420350837" fg:w="821945667"/><text x="67.3711%" y="1935.50"></text></g><g><title>[unknown] (782,979,524 samples, 0.25%)</title><rect x="67.1338%" y="1909" width="0.2546%" height="15" fill="rgb(225,204,8)" fg:x="206459316980" fg:w="782979524"/><text x="67.3838%" y="1919.50"></text></g><g><title>[unknown] (690,634,963 samples, 0.22%)</title><rect x="67.1638%" y="1893" width="0.2246%" height="15" fill="rgb(254,111,37)" fg:x="206551661541" fg:w="690634963"/><text x="67.4138%" y="1903.50"></text></g><g><title>[unknown] (628,669,198 samples, 0.20%)</title><rect x="67.1840%" y="1877" width="0.2044%" height="15" fill="rgb(242,35,9)" fg:x="206613627306" fg:w="628669198"/><text x="67.4340%" y="1887.50"></text></g><g><title>[unknown] (537,110,732 samples, 0.17%)</title><rect x="67.2138%" y="1861" width="0.1747%" height="15" fill="rgb(232,138,49)" fg:x="206705185772" fg:w="537110732"/><text x="67.4638%" y="1871.50"></text></g><g><title>[unknown] (494,826,802 samples, 0.16%)</title><rect x="67.2275%" y="1845" width="0.1609%" height="15" fill="rgb(247,56,4)" fg:x="206747469702" fg:w="494826802"/><text x="67.4775%" y="1855.50"></text></g><g><title>[unknown] (459,642,989 samples, 0.15%)</title><rect x="67.2390%" y="1829" width="0.1495%" height="15" fill="rgb(226,179,17)" fg:x="206782653515" fg:w="459642989"/><text x="67.4890%" y="1839.50"></text></g><g><title>[unknown] (397,375,256 samples, 0.13%)</title><rect x="67.2592%" y="1813" width="0.1292%" height="15" fill="rgb(216,163,45)" fg:x="206844921248" fg:w="397375256"/><text x="67.5092%" y="1823.50"></text></g><g><title>[unknown] (331,300,551 samples, 0.11%)</title><rect x="67.2807%" y="1797" width="0.1077%" height="15" fill="rgb(211,157,3)" fg:x="206910995953" fg:w="331300551"/><text x="67.5307%" y="1807.50"></text></g><g><title>[unknown] (280,676,977 samples, 0.09%)</title><rect x="67.2971%" y="1781" width="0.0913%" height="15" fill="rgb(234,44,20)" fg:x="206961619527" fg:w="280676977"/><text x="67.5471%" y="1791.50"></text></g><g><title>[unknown] (210,723,956 samples, 0.07%)</title><rect x="67.3199%" y="1765" width="0.0685%" height="15" fill="rgb(254,138,23)" fg:x="207031572548" fg:w="210723956"/><text x="67.5699%" y="1775.50"></text></g><g><title>[unknown] (167,226,459 samples, 0.05%)</title><rect x="67.3340%" y="1749" width="0.0544%" height="15" fill="rgb(206,119,39)" fg:x="207075070045" fg:w="167226459"/><text x="67.5840%" y="1759.50"></text></g><g><title>[unknown] (134,469,661 samples, 0.04%)</title><rect x="67.3447%" y="1733" width="0.0437%" height="15" fill="rgb(231,105,52)" fg:x="207107826843" fg:w="134469661"/><text x="67.5947%" y="1743.50"></text></g><g><title>[unknown] (96,680,026 samples, 0.03%)</title><rect x="67.3570%" y="1717" width="0.0314%" height="15" fill="rgb(250,20,5)" fg:x="207145616478" fg:w="96680026"/><text x="67.6070%" y="1727.50"></text></g><g><title>[unknown] (80,156,303 samples, 0.03%)</title><rect x="67.3624%" y="1701" width="0.0261%" height="15" fill="rgb(215,198,30)" fg:x="207162140201" fg:w="80156303"/><text x="67.6124%" y="1711.50"></text></g><g><title>[unknown] (62,696,937 samples, 0.02%)</title><rect x="67.3680%" y="1685" width="0.0204%" height="15" fill="rgb(246,142,8)" fg:x="207179599567" fg:w="62696937"/><text x="67.6180%" y="1695.50"></text></g><g><title>[unknown] (48,562,451 samples, 0.02%)</title><rect x="67.3726%" y="1669" width="0.0158%" height="15" fill="rgb(243,26,38)" fg:x="207193734053" fg:w="48562451"/><text x="67.6226%" y="1679.50"></text></g><g><title>[unknown] (41,492,249 samples, 0.01%)</title><rect x="67.3749%" y="1653" width="0.0135%" height="15" fill="rgb(205,133,28)" fg:x="207200804255" fg:w="41492249"/><text x="67.6249%" y="1663.50"></text></g><g><title>[unknown] (36,996,871 samples, 0.01%)</title><rect x="67.3764%" y="1637" width="0.0120%" height="15" fill="rgb(212,34,0)" fg:x="207205299633" fg:w="36996871"/><text x="67.6264%" y="1647.50"></text></g><g><title>__GI___clone3 (996,055,042 samples, 0.32%)</title><rect x="67.0651%" y="2053" width="0.3239%" height="15" fill="rgb(251,226,22)" fg:x="206247967526" fg:w="996055042"/><text x="67.3151%" y="2063.50"></text></g><g><title>start_thread (994,850,194 samples, 0.32%)</title><rect x="67.0655%" y="2037" width="0.3235%" height="15" fill="rgb(252,119,9)" fg:x="206249172374" fg:w="994850194"/><text x="67.3155%" y="2047.50"></text></g><g><title>git (4,283,429,194 samples, 1.39%)</title><rect x="66.0010%" y="2069" width="1.3928%" height="15" fill="rgb(213,150,50)" fg:x="202975403065" fg:w="4283429194"/><text x="66.2510%" y="2079.50"></text></g><g><title>her_unittest.cc (32,311,983 samples, 0.01%)</title><rect x="67.3938%" y="2069" width="0.0105%" height="15" fill="rgb(212,24,39)" fg:x="207258832259" fg:w="32311983"/><text x="67.6438%" y="2079.50"></text></g><g><title>host_delegate.h (58,130,226 samples, 0.02%)</title><rect x="67.4043%" y="2069" width="0.0189%" height="15" fill="rgb(213,46,39)" fg:x="207291144242" fg:w="58130226"/><text x="67.6543%" y="2079.50"></text></g><g><title>itor_handler.cc (63,366,562 samples, 0.02%)</title><rect x="67.4239%" y="2069" width="0.0206%" height="15" fill="rgb(239,106,12)" fg:x="207351433181" fg:w="63366562"/><text x="67.6739%" y="2079.50"></text></g><g><title>[unknown] (34,380,333 samples, 0.01%)</title><rect x="67.4494%" y="2021" width="0.0112%" height="15" fill="rgb(249,229,21)" fg:x="207429703456" fg:w="34380333"/><text x="67.6994%" y="2031.50"></text></g><g><title>[unknown] (63,771,651 samples, 0.02%)</title><rect x="67.4474%" y="2037" width="0.0207%" height="15" fill="rgb(212,158,3)" fg:x="207423704679" fg:w="63771651"/><text x="67.6974%" y="2047.50"></text></g><g><title>[unknown] (199,157,419 samples, 0.06%)</title><rect x="67.4462%" y="2053" width="0.0648%" height="15" fill="rgb(253,26,48)" fg:x="207420154266" fg:w="199157419"/><text x="67.6962%" y="2063.50"></text></g><g><title>lable_request.h (366,335,128 samples, 0.12%)</title><rect x="67.4448%" y="2069" width="0.1191%" height="15" fill="rgb(238,178,20)" fg:x="207415548467" fg:w="366335128"/><text x="67.6948%" y="2079.50"></text></g><g><title>ler_unittest.cc (44,043,960 samples, 0.01%)</title><rect x="67.5639%" y="2069" width="0.0143%" height="15" fill="rgb(208,86,15)" fg:x="207781883595" fg:w="44043960"/><text x="67.8139%" y="2079.50"></text></g><g><title>lugin_finder.cc (39,929,114 samples, 0.01%)</title><rect x="67.5782%" y="2069" width="0.0130%" height="15" fill="rgb(239,42,53)" fg:x="207825927555" fg:w="39929114"/><text x="67.8282%" y="2079.50"></text></g><g><title>[unknown] (79,757,997 samples, 0.03%)</title><rect x="67.5912%" y="2053" width="0.0259%" height="15" fill="rgb(245,226,8)" fg:x="207865856669" fg:w="79757997"/><text x="67.8412%" y="2063.50"></text></g><g><title>m/ash/shell.cc0 (143,641,440 samples, 0.05%)</title><rect x="67.5912%" y="2069" width="0.0467%" height="15" fill="rgb(216,176,32)" fg:x="207865856669" fg:w="143641440"/><text x="67.8412%" y="2079.50"></text></g><g><title>mover_helper.h0 (41,308,048 samples, 0.01%)</title><rect x="67.6475%" y="2069" width="0.0134%" height="15" fill="rgb(231,186,21)" fg:x="208039104510" fg:w="41308048"/><text x="67.8975%" y="2079.50"></text></g><g><title>n_controller.cc (52,123,086 samples, 0.02%)</title><rect x="67.6609%" y="2069" width="0.0169%" height="15" fill="rgb(205,95,49)" fg:x="208080412558" fg:w="52123086"/><text x="67.9109%" y="2079.50"></text></g><g><title>n_controller.h0 (48,265,875 samples, 0.02%)</title><rect x="67.6779%" y="2069" width="0.0157%" height="15" fill="rgb(217,145,8)" fg:x="208132535644" fg:w="48265875"/><text x="67.9279%" y="2079.50"></text></g><g><title>unsigned int llvm::ComputeMappedEditDistance&lt;char, llvm::ComputeEditDistance&lt;char&gt;(llvm::ArrayRef&lt;char&gt;, llvm::ArrayRef&lt;char&gt;, bool, unsigned int)::{lambda(char const&amp;)#1}&gt; (44,876,984 samples, 0.01%)</title><rect x="67.7045%" y="2053" width="0.0146%" height="15" fill="rgb(239,144,48)" fg:x="208214460415" fg:w="44876984"/><text x="67.9545%" y="2063.50"></text></g><g><title>nd_resources.cc (79,592,894 samples, 0.03%)</title><rect x="67.6936%" y="2069" width="0.0259%" height="15" fill="rgb(214,189,23)" fg:x="208180801519" fg:w="79592894"/><text x="67.9436%" y="2079.50"></text></g><g><title>[unknown] (31,778,591 samples, 0.01%)</title><rect x="67.7200%" y="2053" width="0.0103%" height="15" fill="rgb(229,157,17)" fg:x="208262047344" fg:w="31778591"/><text x="67.9700%" y="2063.50"></text></g><g><title>void v8::internal::BodyDescriptorBase::IteratePointers&lt;v8::internal::ConcurrentMarkingVisitor&gt; (75,417,758 samples, 0.02%)</title><rect x="67.7949%" y="1957" width="0.0245%" height="15" fill="rgb(230,5,48)" fg:x="208492445665" fg:w="75417758"/><text x="68.0449%" y="1967.50"></text></g><g><title>void v8::internal::MarkingVisitorBase&lt;v8::internal::ConcurrentMarkingVisitor&gt;::ProcessStrongHeapObject&lt;v8::internal::FullHeapObjectSlot&gt; (59,683,871 samples, 0.02%)</title><rect x="67.8000%" y="1941" width="0.0194%" height="15" fill="rgb(224,156,48)" fg:x="208508179552" fg:w="59683871"/><text x="68.0500%" y="1951.50"></text></g><g><title>void v8::internal::MarkingVisitorBase&lt;v8::internal::ConcurrentMarkingVisitor&gt;::ProcessStrongHeapObject&lt;v8::internal::FullHeapObjectSlot&gt; (31,938,259 samples, 0.01%)</title><rect x="67.8194%" y="1957" width="0.0104%" height="15" fill="rgb(223,14,29)" fg:x="208567863423" fg:w="31938259"/><text x="68.0694%" y="1967.50"></text></g><g><title>v8::internal::ConcurrentMarking::RunMajor (254,453,015 samples, 0.08%)</title><rect x="67.7478%" y="1973" width="0.0827%" height="15" fill="rgb(229,96,36)" fg:x="208347553523" fg:w="254453015"/><text x="67.9978%" y="1983.50"></text></g><g><title>v8::internal::ConcurrentMarking::JobTaskMajor::Run (259,270,088 samples, 0.08%)</title><rect x="67.7478%" y="1989" width="0.0843%" height="15" fill="rgb(231,102,53)" fg:x="208347553523" fg:w="259270088"/><text x="67.9978%" y="1999.50"></text></g><g><title>v8::internal::compiler::(anonymous namespace)::SourcePositionWrapper::Reduce (45,574,753 samples, 0.01%)</title><rect x="67.8537%" y="1861" width="0.0148%" height="15" fill="rgb(210,77,38)" fg:x="208673169874" fg:w="45574753"/><text x="68.1037%" y="1871.50"></text></g><g><title>v8::internal::compiler::Reducer::Reduce (36,939,930 samples, 0.01%)</title><rect x="67.8565%" y="1845" width="0.0120%" height="15" fill="rgb(235,131,6)" fg:x="208681804697" fg:w="36939930"/><text x="68.1065%" y="1855.50"></text></g><g><title>v8::internal::compiler::GraphReducer::ReduceTop (55,137,668 samples, 0.02%)</title><rect x="67.8511%" y="1893" width="0.0179%" height="15" fill="rgb(252,55,38)" fg:x="208665287251" fg:w="55137668"/><text x="68.1011%" y="1903.50"></text></g><g><title>v8::internal::compiler::GraphReducer::Reduce (50,187,563 samples, 0.02%)</title><rect x="67.8527%" y="1877" width="0.0163%" height="15" fill="rgb(246,38,14)" fg:x="208670237356" fg:w="50187563"/><text x="68.1027%" y="1887.50"></text></g><g><title>v8::internal::compiler::GraphReducer::ReduceNode (80,645,356 samples, 0.03%)</title><rect x="67.8511%" y="1909" width="0.0262%" height="15" fill="rgb(242,27,5)" fg:x="208665287251" fg:w="80645356"/><text x="68.1011%" y="1919.50"></text></g><g><title>v8::internal::compiler::PipelineImpl::CreateGraph (113,774,971 samples, 0.04%)</title><rect x="67.8410%" y="1925" width="0.0370%" height="15" fill="rgb(228,65,35)" fg:x="208634229022" fg:w="113774971"/><text x="68.0910%" y="1935.50"></text></g><g><title>v8::internal::compiler::SimplifiedLowering::LowerAllNodes (41,681,598 samples, 0.01%)</title><rect x="67.8841%" y="1893" width="0.0136%" height="15" fill="rgb(245,93,11)" fg:x="208766776544" fg:w="41681598"/><text x="68.1341%" y="1903.50"></text></g><g><title>auto v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::SimplifiedLoweringPhase, v8::internal::compiler::Linkage*&amp;&gt; (42,668,397 samples, 0.01%)</title><rect x="67.8841%" y="1909" width="0.0139%" height="15" fill="rgb(213,1,31)" fg:x="208766776544" fg:w="42668397"/><text x="68.1341%" y="1919.50"></text></g><g><title>auto v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::turboshaft::StoreStoreEliminationPhase&gt; (37,191,212 samples, 0.01%)</title><rect x="67.9339%" y="1909" width="0.0121%" height="15" fill="rgb(237,205,14)" fg:x="208919953420" fg:w="37191212"/><text x="68.1839%" y="1919.50"></text></g><g><title>v8::internal::compiler::turboshaft::CopyingPhaseImpl&lt;v8::internal::compiler::turboshaft::StoreStoreEliminationReducer, v8::internal::compiler::turboshaft::LateLoadEliminationReducer, v8::internal::compiler::turboshaft::MachineOptimizationReducer, v8::internal::compiler::turboshaft::BranchEliminationReducer, v8::internal::compiler::turboshaft::ValueNumberingReducer&gt;::Run (37,191,212 samples, 0.01%)</title><rect x="67.9339%" y="1893" width="0.0121%" height="15" fill="rgb(232,118,45)" fg:x="208919953420" fg:w="37191212"/><text x="68.1839%" y="1903.50"></text></g><g><title>v8::internal::compiler::Reducer::Reduce (65,340,249 samples, 0.02%)</title><rect x="67.9779%" y="1845" width="0.0212%" height="15" fill="rgb(218,5,6)" fg:x="209055195277" fg:w="65340249"/><text x="68.2279%" y="1855.50"></text></g><g><title>v8::internal::compiler::(anonymous namespace)::SourcePositionWrapper::Reduce (83,630,107 samples, 0.03%)</title><rect x="67.9733%" y="1861" width="0.0272%" height="15" fill="rgb(251,87,51)" fg:x="209040955082" fg:w="83630107"/><text x="68.2233%" y="1871.50"></text></g><g><title>v8::internal::compiler::GraphReducer::ReduceNode (142,506,520 samples, 0.05%)</title><rect x="67.9567%" y="1909" width="0.0463%" height="15" fill="rgb(207,225,20)" fg:x="208990096017" fg:w="142506520"/><text x="68.2067%" y="1919.50"></text></g><g><title>v8::internal::compiler::GraphReducer::ReduceTop (138,911,151 samples, 0.05%)</title><rect x="67.9579%" y="1893" width="0.0452%" height="15" fill="rgb(222,78,54)" fg:x="208993691386" fg:w="138911151"/><text x="68.2079%" y="1903.50"></text></g><g><title>v8::internal::compiler::GraphReducer::Reduce (106,654,862 samples, 0.03%)</title><rect x="67.9684%" y="1877" width="0.0347%" height="15" fill="rgb(232,85,16)" fg:x="209025947675" fg:w="106654862"/><text x="68.2184%" y="1887.50"></text></g><g><title>auto v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::AllocateGeneralRegistersPhase&lt;v8::internal::compiler::LinearScanAllocator&gt;&gt; (45,718,475 samples, 0.01%)</title><rect x="68.0076%" y="1877" width="0.0149%" height="15" fill="rgb(244,25,33)" fg:x="209146354029" fg:w="45718475"/><text x="68.2576%" y="1887.50"></text></g><g><title>v8::internal::compiler::LinearScanAllocator::AllocateRegisters (44,700,509 samples, 0.01%)</title><rect x="68.0079%" y="1861" width="0.0145%" height="15" fill="rgb(233,24,36)" fg:x="209147371995" fg:w="44700509"/><text x="68.2579%" y="1871.50"></text></g><g><title>v8::internal::compiler::PipelineImpl::AllocateRegisters (112,506,055 samples, 0.04%)</title><rect x="68.0041%" y="1909" width="0.0366%" height="15" fill="rgb(253,49,54)" fg:x="209135624396" fg:w="112506055"/><text x="68.2541%" y="1919.50"></text></g><g><title>v8::internal::compiler::PipelineImpl::AllocateRegisters (107,346,277 samples, 0.03%)</title><rect x="68.0057%" y="1893" width="0.0349%" height="15" fill="rgb(245,12,22)" fg:x="209140784174" fg:w="107346277"/><text x="68.2557%" y="1903.50"></text></g><g><title>v8::internal::compiler::InstructionSelectorT&lt;v8::internal::compiler::TurboshaftAdapter&gt;::SelectInstructions (33,449,307 samples, 0.01%)</title><rect x="68.0497%" y="1877" width="0.0109%" height="15" fill="rgb(253,141,28)" fg:x="209275857956" fg:w="33449307"/><text x="68.2997%" y="1887.50"></text></g><g><title>v8::internal::compiler::PipelineImpl::SelectInstructionsTurboshaft (43,972,199 samples, 0.01%)</title><rect x="68.0481%" y="1909" width="0.0143%" height="15" fill="rgb(225,207,27)" fg:x="209270927176" fg:w="43972199"/><text x="68.2981%" y="1919.50"></text></g><g><title>v8::internal::compiler::turboshaft::InstructionSelectionPhase::Run (42,031,878 samples, 0.01%)</title><rect x="68.0487%" y="1893" width="0.0137%" height="15" fill="rgb(220,84,2)" fg:x="209272867497" fg:w="42031878"/><text x="68.2987%" y="1903.50"></text></g><g><title>v8::internal::OptimizedCompilationJob::ExecuteJob (711,480,243 samples, 0.23%)</title><rect x="67.8328%" y="1957" width="0.2314%" height="15" fill="rgb(224,37,37)" fg:x="208608907927" fg:w="711480243"/><text x="68.0828%" y="1967.50"></text></g><g><title>v8::internal::compiler::PipelineCompilationJob::ExecuteJobImpl (711,480,243 samples, 0.23%)</title><rect x="67.8328%" y="1941" width="0.2314%" height="15" fill="rgb(220,143,18)" fg:x="208608907927" fg:w="711480243"/><text x="68.0828%" y="1951.50"></text></g><g><title>v8::internal::compiler::PipelineImpl::OptimizeGraph (572,384,177 samples, 0.19%)</title><rect x="67.8780%" y="1925" width="0.1861%" height="15" fill="rgb(210,88,33)" fg:x="208748003993" fg:w="572384177"/><text x="68.1280%" y="1935.50"></text></g><g><title>v8::internal::OptimizingCompileDispatcher::CompileTask::Run (714,517,107 samples, 0.23%)</title><rect x="67.8321%" y="1989" width="0.2323%" height="15" fill="rgb(219,87,51)" fg:x="208606823611" fg:w="714517107"/><text x="68.0821%" y="1999.50"></text></g><g><title>v8::internal::OptimizingCompileDispatcher::CompileNext (712,432,791 samples, 0.23%)</title><rect x="67.8328%" y="1973" width="0.2317%" height="15" fill="rgb(211,7,35)" fg:x="208608907927" fg:w="712432791"/><text x="68.0828%" y="1983.50"></text></g><g><title>heap::base::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (39,093,630 samples, 0.01%)</title><rect x="68.1037%" y="1909" width="0.0127%" height="15" fill="rgb(232,77,2)" fg:x="209442141120" fg:w="39093630"/><text x="68.3537%" y="1919.50"></text></g><g><title>v8::internal::Scavenger::IterateAndScavengePromotedObject (116,700,931 samples, 0.04%)</title><rect x="68.0820%" y="1941" width="0.0379%" height="15" fill="rgb(249,94,25)" fg:x="209375358188" fg:w="116700931"/><text x="68.3320%" y="1951.50"></text></g><g><title>void v8::internal::BodyDescriptorBase::IteratePointers&lt;v8::internal::IterateAndScavengePromotedObjectsVisitor&gt; (97,536,778 samples, 0.03%)</title><rect x="68.0882%" y="1925" width="0.0317%" height="15" fill="rgb(215,112,2)" fg:x="209394522341" fg:w="97536778"/><text x="68.3382%" y="1935.50"></text></g><g><title>heap::base::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (42,338,131 samples, 0.01%)</title><rect x="68.1379%" y="1925" width="0.0138%" height="15" fill="rgb(226,115,48)" fg:x="209547336912" fg:w="42338131"/><text x="68.3879%" y="1935.50"></text></g><g><title>v8::internal::Scavenger::Process (256,256,121 samples, 0.08%)</title><rect x="68.0743%" y="1957" width="0.0833%" height="15" fill="rgb(249,196,10)" fg:x="209351744672" fg:w="256256121"/><text x="68.3243%" y="1967.50"></text></g><g><title>void v8::internal::BodyDescriptorBase::IteratePointers&lt;v8::internal::ScavengeVisitor&gt; (114,816,726 samples, 0.04%)</title><rect x="68.1203%" y="1941" width="0.0373%" height="15" fill="rgb(237,109,14)" fg:x="209493184067" fg:w="114816726"/><text x="68.3703%" y="1951.50"></text></g><g><title>v8::internal::ScavengerCollector::JobTask::ConcurrentScavengePages (56,000,971 samples, 0.02%)</title><rect x="68.1577%" y="1957" width="0.0182%" height="15" fill="rgb(217,103,53)" fg:x="209608000793" fg:w="56000971"/><text x="68.4077%" y="1967.50"></text></g><g><title>v8::internal::Scavenger::ScavengePage (54,964,353 samples, 0.02%)</title><rect x="68.1580%" y="1941" width="0.0179%" height="15" fill="rgb(244,137,9)" fg:x="209609037411" fg:w="54964353"/><text x="68.4080%" y="1951.50"></text></g><g><title>v8::internal::ScavengerCollector::JobTask::Run (314,202,441 samples, 0.10%)</title><rect x="68.0743%" y="1989" width="0.1022%" height="15" fill="rgb(227,201,3)" fg:x="209351744672" fg:w="314202441"/><text x="68.3243%" y="1999.50"></text></g><g><title>v8::internal::ScavengerCollector::JobTask::ProcessItems (314,202,441 samples, 0.10%)</title><rect x="68.0743%" y="1973" width="0.1022%" height="15" fill="rgb(243,94,6)" fg:x="209351744672" fg:w="314202441"/><text x="68.3243%" y="1983.50"></text></g><g><title>v8::internal::Sweeper::MajorSweeperJob::RunImpl (36,404,557 samples, 0.01%)</title><rect x="68.1765%" y="1989" width="0.0118%" height="15" fill="rgb(235,118,5)" fg:x="209665947113" fg:w="36404557"/><text x="68.4265%" y="1999.50"></text></g><g><title>v8::internal::Sweeper::LocalSweeper::ParallelSweepPage (36,404,557 samples, 0.01%)</title><rect x="68.1765%" y="1973" width="0.0118%" height="15" fill="rgb(247,10,30)" fg:x="209665947113" fg:w="36404557"/><text x="68.4265%" y="1983.50"></text></g><g><title>v8::internal::maglev::MaglevCodeGenerator::BuildCodeObject (33,912,287 samples, 0.01%)</title><rect x="68.1998%" y="1909" width="0.0110%" height="15" fill="rgb(205,26,28)" fg:x="209737622644" fg:w="33912287"/><text x="68.4498%" y="1919.50"></text></g><g><title>v8::internal::maglev::MaglevCodeGenerator::EmitCode (73,355,184 samples, 0.02%)</title><rect x="68.2112%" y="1909" width="0.0239%" height="15" fill="rgb(206,99,35)" fg:x="209772523142" fg:w="73355184"/><text x="68.4612%" y="1919.50"></text></g><g><title>v8::internal::maglev::MaglevCodeGenerator::Assemble (110,125,309 samples, 0.04%)</title><rect x="68.1995%" y="1925" width="0.0358%" height="15" fill="rgb(238,130,40)" fg:x="209736693754" fg:w="110125309"/><text x="68.4495%" y="1935.50"></text></g><g><title>v8::internal::maglev::MaglevGraphBuilder::VisitGetNamedProperty (34,466,246 samples, 0.01%)</title><rect x="68.2608%" y="1909" width="0.0112%" height="15" fill="rgb(224,126,31)" fg:x="209925312509" fg:w="34466246"/><text x="68.5108%" y="1919.50"></text></g><g><title>v8::internal::maglev::MaglevGraphBuilder::Build (136,450,730 samples, 0.04%)</title><rect x="68.2353%" y="1925" width="0.0444%" height="15" fill="rgb(254,105,17)" fg:x="209846819063" fg:w="136450730"/><text x="68.4853%" y="1935.50"></text></g><g><title>v8::internal::OptimizedCompilationJob::ExecuteJob (320,653,352 samples, 0.10%)</title><rect x="68.1907%" y="1973" width="0.1043%" height="15" fill="rgb(216,87,36)" fg:x="209709454772" fg:w="320653352"/><text x="68.4407%" y="1983.50"></text></g><g><title>v8::internal::maglev::MaglevCompilationJob::ExecuteJobImpl (320,653,352 samples, 0.10%)</title><rect x="68.1907%" y="1957" width="0.1043%" height="15" fill="rgb(240,21,12)" fg:x="209709454772" fg:w="320653352"/><text x="68.4407%" y="1967.50"></text></g><g><title>v8::internal::maglev::MaglevCompiler::Compile (320,653,352 samples, 0.10%)</title><rect x="68.1907%" y="1941" width="0.1043%" height="15" fill="rgb(245,192,34)" fg:x="209709454772" fg:w="320653352"/><text x="68.4407%" y="1951.50"></text></g><g><title>v8::internal::maglev::MaglevConcurrentDispatcher::JobTask::Run (336,503,223 samples, 0.11%)</title><rect x="68.1883%" y="1989" width="0.1094%" height="15" fill="rgb(226,100,49)" fg:x="209702351670" fg:w="336503223"/><text x="68.4383%" y="1999.50"></text></g><g><title>node::(anonymous namespace)::PlatformWorkerThread (1,744,849,617 samples, 0.57%)</title><rect x="67.7311%" y="2021" width="0.5674%" height="15" fill="rgb(245,188,27)" fg:x="208296055944" fg:w="1744849617"/><text x="67.9811%" y="2031.50"></text></g><g><title>v8::platform::DefaultJobWorker::Run (1,698,643,785 samples, 0.55%)</title><rect x="67.7461%" y="2005" width="0.5523%" height="15" fill="rgb(212,170,8)" fg:x="208342261776" fg:w="1698643785"/><text x="67.9961%" y="2015.50"></text></g><g><title>__open64_nocancel (68,243,218 samples, 0.02%)</title><rect x="68.3146%" y="1957" width="0.0222%" height="15" fill="rgb(217,113,29)" fg:x="210090704631" fg:w="68243218"/><text x="68.5646%" y="1967.50"></text></g><g><title>[unknown] (68,243,218 samples, 0.02%)</title><rect x="68.3146%" y="1941" width="0.0222%" height="15" fill="rgb(237,30,3)" fg:x="210090704631" fg:w="68243218"/><text x="68.5646%" y="1951.50"></text></g><g><title>[unknown] (68,243,218 samples, 0.02%)</title><rect x="68.3146%" y="1925" width="0.0222%" height="15" fill="rgb(227,19,28)" fg:x="210090704631" fg:w="68243218"/><text x="68.5646%" y="1935.50"></text></g><g><title>[unknown] (68,243,218 samples, 0.02%)</title><rect x="68.3146%" y="1909" width="0.0222%" height="15" fill="rgb(239,172,45)" fg:x="210090704631" fg:w="68243218"/><text x="68.5646%" y="1919.50"></text></g><g><title>[unknown] (68,243,218 samples, 0.02%)</title><rect x="68.3146%" y="1893" width="0.0222%" height="15" fill="rgb(254,55,39)" fg:x="210090704631" fg:w="68243218"/><text x="68.5646%" y="1903.50"></text></g><g><title>[unknown] (67,705,672 samples, 0.02%)</title><rect x="68.3148%" y="1877" width="0.0220%" height="15" fill="rgb(249,208,12)" fg:x="210091242177" fg:w="67705672"/><text x="68.5648%" y="1887.50"></text></g><g><title>[unknown] (67,705,672 samples, 0.02%)</title><rect x="68.3148%" y="1861" width="0.0220%" height="15" fill="rgb(240,52,13)" fg:x="210091242177" fg:w="67705672"/><text x="68.5648%" y="1871.50"></text></g><g><title>[unknown] (64,654,238 samples, 0.02%)</title><rect x="68.3158%" y="1845" width="0.0210%" height="15" fill="rgb(252,149,13)" fg:x="210094293611" fg:w="64654238"/><text x="68.5658%" y="1855.50"></text></g><g><title>[unknown] (63,421,407 samples, 0.02%)</title><rect x="68.3162%" y="1829" width="0.0206%" height="15" fill="rgb(232,81,48)" fg:x="210095526442" fg:w="63421407"/><text x="68.5662%" y="1839.50"></text></g><g><title>[unknown] (58,721,350 samples, 0.02%)</title><rect x="68.3177%" y="1813" width="0.0191%" height="15" fill="rgb(222,144,2)" fg:x="210100226499" fg:w="58721350"/><text x="68.5677%" y="1823.50"></text></g><g><title>[unknown] (56,144,480 samples, 0.02%)</title><rect x="68.3186%" y="1797" width="0.0183%" height="15" fill="rgb(216,81,32)" fg:x="210102803369" fg:w="56144480"/><text x="68.5686%" y="1807.50"></text></g><g><title>[unknown] (37,866,635 samples, 0.01%)</title><rect x="68.3245%" y="1781" width="0.0123%" height="15" fill="rgb(244,78,51)" fg:x="210121081214" fg:w="37866635"/><text x="68.5745%" y="1791.50"></text></g><g><title>__opendir (82,196,575 samples, 0.03%)</title><rect x="68.3140%" y="1973" width="0.0267%" height="15" fill="rgb(217,66,21)" fg:x="210088859061" fg:w="82196575"/><text x="68.5640%" y="1983.50"></text></g><g><title>__scandir64 (104,677,090 samples, 0.03%)</title><rect x="68.3071%" y="1989" width="0.0340%" height="15" fill="rgb(247,101,42)" fg:x="210067409098" fg:w="104677090"/><text x="68.5571%" y="1999.50"></text></g><g><title>__GI___getdents64 (97,630,620 samples, 0.03%)</title><rect x="68.3411%" y="1973" width="0.0317%" height="15" fill="rgb(227,81,39)" fg:x="210172086188" fg:w="97630620"/><text x="68.5911%" y="1983.50"></text></g><g><title>[unknown] (97,630,620 samples, 0.03%)</title><rect x="68.3411%" y="1957" width="0.0317%" height="15" fill="rgb(220,223,44)" fg:x="210172086188" fg:w="97630620"/><text x="68.5911%" y="1967.50"></text></g><g><title>[unknown] (97,630,620 samples, 0.03%)</title><rect x="68.3411%" y="1941" width="0.0317%" height="15" fill="rgb(205,218,2)" fg:x="210172086188" fg:w="97630620"/><text x="68.5911%" y="1951.50"></text></g><g><title>[unknown] (97,630,620 samples, 0.03%)</title><rect x="68.3411%" y="1925" width="0.0317%" height="15" fill="rgb(212,207,28)" fg:x="210172086188" fg:w="97630620"/><text x="68.5911%" y="1935.50"></text></g><g><title>[unknown] (97,630,620 samples, 0.03%)</title><rect x="68.3411%" y="1909" width="0.0317%" height="15" fill="rgb(224,12,41)" fg:x="210172086188" fg:w="97630620"/><text x="68.5911%" y="1919.50"></text></g><g><title>[unknown] (97,087,408 samples, 0.03%)</title><rect x="68.3413%" y="1893" width="0.0316%" height="15" fill="rgb(216,118,12)" fg:x="210172629400" fg:w="97087408"/><text x="68.5913%" y="1903.50"></text></g><g><title>[unknown] (92,007,490 samples, 0.03%)</title><rect x="68.3429%" y="1877" width="0.0299%" height="15" fill="rgb(252,97,46)" fg:x="210177709318" fg:w="92007490"/><text x="68.5929%" y="1887.50"></text></g><g><title>[unknown] (87,076,725 samples, 0.03%)</title><rect x="68.3445%" y="1861" width="0.0283%" height="15" fill="rgb(244,206,19)" fg:x="210182640083" fg:w="87076725"/><text x="68.5945%" y="1871.50"></text></g><g><title>[unknown] (80,157,408 samples, 0.03%)</title><rect x="68.3468%" y="1845" width="0.0261%" height="15" fill="rgb(231,84,31)" fg:x="210189559400" fg:w="80157408"/><text x="68.5968%" y="1855.50"></text></g><g><title>[unknown] (75,738,192 samples, 0.02%)</title><rect x="68.3482%" y="1829" width="0.0246%" height="15" fill="rgb(244,133,0)" fg:x="210193978616" fg:w="75738192"/><text x="68.5982%" y="1839.50"></text></g><g><title>[unknown] (66,223,152 samples, 0.02%)</title><rect x="68.3513%" y="1813" width="0.0215%" height="15" fill="rgb(223,15,50)" fg:x="210203493656" fg:w="66223152"/><text x="68.6013%" y="1823.50"></text></g><g><title>[unknown] (47,879,457 samples, 0.02%)</title><rect x="68.3573%" y="1797" width="0.0156%" height="15" fill="rgb(250,118,49)" fg:x="210221837351" fg:w="47879457"/><text x="68.6073%" y="1807.50"></text></g><g><title>[unknown] (34,434,337 samples, 0.01%)</title><rect x="68.3616%" y="1781" width="0.0112%" height="15" fill="rgb(248,25,38)" fg:x="210235282471" fg:w="34434337"/><text x="68.6116%" y="1791.50"></text></g><g><title>__scandir64_tail (127,152,364 samples, 0.04%)</title><rect x="68.3411%" y="1989" width="0.0413%" height="15" fill="rgb(215,70,14)" fg:x="210172086188" fg:w="127152364"/><text x="68.5911%" y="1999.50"></text></g><g><title>uv__fs_work (265,761,083 samples, 0.09%)</title><rect x="68.2994%" y="2005" width="0.0864%" height="15" fill="rgb(215,28,15)" fg:x="210043839909" fg:w="265761083"/><text x="68.5494%" y="2015.50"></text></g><g><title>__GI___clone3 (2,056,468,102 samples, 0.67%)</title><rect x="67.7303%" y="2053" width="0.6687%" height="15" fill="rgb(243,6,28)" fg:x="208293825935" fg:w="2056468102"/><text x="67.9803%" y="2063.50"></text></g><g><title>start_thread (2,056,468,102 samples, 0.67%)</title><rect x="67.7303%" y="2037" width="0.6687%" height="15" fill="rgb(222,130,1)" fg:x="208293825935" fg:w="2056468102"/><text x="67.9803%" y="2047.50"></text></g><g><title>worker (308,700,391 samples, 0.10%)</title><rect x="68.2987%" y="2021" width="0.1004%" height="15" fill="rgb(236,166,44)" fg:x="210041593646" fg:w="308700391"/><text x="68.5487%" y="2031.50"></text></g><g><title>_dl_relocate_object (59,713,817 samples, 0.02%)</title><rect x="68.4121%" y="1989" width="0.0194%" height="15" fill="rgb(221,108,14)" fg:x="210390359280" fg:w="59713817"/><text x="68.6621%" y="1999.50"></text></g><g><title>_dl_relocate_object_no_relro (58,878,367 samples, 0.02%)</title><rect x="68.4123%" y="1973" width="0.0191%" height="15" fill="rgb(252,3,45)" fg:x="210391194730" fg:w="58878367"/><text x="68.6623%" y="1983.50"></text></g><g><title>_dl_lookup_symbol_x (51,937,205 samples, 0.02%)</title><rect x="68.4146%" y="1957" width="0.0169%" height="15" fill="rgb(237,68,30)" fg:x="210398135892" fg:w="51937205"/><text x="68.6646%" y="1967.50"></text></g><g><title>_dl_start_user (79,559,340 samples, 0.03%)</title><rect x="68.4059%" y="2053" width="0.0259%" height="15" fill="rgb(211,79,22)" fg:x="210371537605" fg:w="79559340"/><text x="68.6559%" y="2063.50"></text></g><g><title>_dl_start (72,938,259 samples, 0.02%)</title><rect x="68.4081%" y="2037" width="0.0237%" height="15" fill="rgb(252,185,21)" fg:x="210378158686" fg:w="72938259"/><text x="68.6581%" y="2047.50"></text></g><g><title>_dl_sysdep_start (72,938,259 samples, 0.02%)</title><rect x="68.4081%" y="2021" width="0.0237%" height="15" fill="rgb(225,189,26)" fg:x="210378158686" fg:w="72938259"/><text x="68.6581%" y="2031.50"></text></g><g><title>dl_main (71,997,736 samples, 0.02%)</title><rect x="68.4084%" y="2005" width="0.0234%" height="15" fill="rgb(241,30,40)" fg:x="210379099209" fg:w="71997736"/><text x="68.6584%" y="2015.50"></text></g><g><title>node::InitializeOncePerProcessInternal (35,367,436 samples, 0.01%)</title><rect x="68.4349%" y="1989" width="0.0115%" height="15" fill="rgb(235,215,44)" fg:x="210460739551" fg:w="35367436"/><text x="68.6849%" y="1999.50"></text></g><g><title>v8::internal::Isolate::Init (38,024,173 samples, 0.01%)</title><rect x="68.4493%" y="1925" width="0.0124%" height="15" fill="rgb(205,8,29)" fg:x="210504847081" fg:w="38024173"/><text x="68.6993%" y="1935.50"></text></g><g><title>v8::Isolate::Initialize (40,708,976 samples, 0.01%)</title><rect x="68.4487%" y="1957" width="0.0132%" height="15" fill="rgb(241,137,42)" fg:x="210503083696" fg:w="40708976"/><text x="68.6987%" y="1967.50"></text></g><g><title>v8::internal::Snapshot::Initialize (38,945,591 samples, 0.01%)</title><rect x="68.4493%" y="1941" width="0.0127%" height="15" fill="rgb(237,155,2)" fg:x="210504847081" fg:w="38945591"/><text x="68.6993%" y="1951.50"></text></g><g><title>node::NodeMainInstance::NodeMainInstance (50,463,304 samples, 0.02%)</title><rect x="68.4464%" y="1989" width="0.0164%" height="15" fill="rgb(245,29,42)" fg:x="210496106987" fg:w="50463304"/><text x="68.6964%" y="1999.50"></text></g><g><title>node::NewIsolate (50,463,304 samples, 0.02%)</title><rect x="68.4464%" y="1973" width="0.0164%" height="15" fill="rgb(234,101,35)" fg:x="210496106987" fg:w="50463304"/><text x="68.6964%" y="1983.50"></text></g><g><title>ures_getNextResource_75 (43,380,118 samples, 0.01%)</title><rect x="68.4762%" y="1541" width="0.0141%" height="15" fill="rgb(228,64,37)" fg:x="210587643008" fg:w="43380118"/><text x="68.7262%" y="1551.50"></text></g><g><title>icu_75::Locale::Locale (68,302,121 samples, 0.02%)</title><rect x="68.4704%" y="1653" width="0.0222%" height="15" fill="rgb(217,214,36)" fg:x="210569721526" fg:w="68302121"/><text x="68.7204%" y="1663.50"></text></g><g><title>icu_75::Locale::init (68,302,121 samples, 0.02%)</title><rect x="68.4704%" y="1637" width="0.0222%" height="15" fill="rgb(243,70,3)" fg:x="210569721526" fg:w="68302121"/><text x="68.7204%" y="1647.50"></text></g><g><title>uloc_getName_75 (68,302,121 samples, 0.02%)</title><rect x="68.4704%" y="1621" width="0.0222%" height="15" fill="rgb(253,158,52)" fg:x="210569721526" fg:w="68302121"/><text x="68.7204%" y="1631.50"></text></g><g><title>ulocimp_forLanguageTag_75 (68,302,121 samples, 0.02%)</title><rect x="68.4704%" y="1605" width="0.0222%" height="15" fill="rgb(234,111,54)" fg:x="210569721526" fg:w="68302121"/><text x="68.7204%" y="1615.50"></text></g><g><title>ulocimp_forLanguageTag_75 (68,302,121 samples, 0.02%)</title><rect x="68.4704%" y="1589" width="0.0222%" height="15" fill="rgb(217,70,32)" fg:x="210569721526" fg:w="68302121"/><text x="68.7204%" y="1599.50"></text></g><g><title>uloc_toLegacyKey_75 (68,302,121 samples, 0.02%)</title><rect x="68.4704%" y="1573" width="0.0222%" height="15" fill="rgb(234,18,33)" fg:x="210569721526" fg:w="68302121"/><text x="68.7204%" y="1583.50"></text></g><g><title>ulocimp_toLegacyKey_75 (68,302,121 samples, 0.02%)</title><rect x="68.4704%" y="1557" width="0.0222%" height="15" fill="rgb(234,12,49)" fg:x="210569721526" fg:w="68302121"/><text x="68.7204%" y="1567.50"></text></g><g><title>v8::internal::Intl::BuildLocaleSet (75,463,507 samples, 0.02%)</title><rect x="68.4704%" y="1669" width="0.0245%" height="15" fill="rgb(236,10,21)" fg:x="210569721526" fg:w="75463507"/><text x="68.7204%" y="1679.50"></text></g><g><title>Builtins_CEntry_Return1_ArgvOnStack_BuiltinExit (82,006,586 samples, 0.03%)</title><rect x="68.4693%" y="1749" width="0.0267%" height="15" fill="rgb(248,182,45)" fg:x="210566504370" fg:w="82006586"/><text x="68.7193%" y="1759.50"></text></g><g><title>v8::internal::Builtin_CollatorConstructor (82,006,586 samples, 0.03%)</title><rect x="68.4693%" y="1733" width="0.0267%" height="15" fill="rgb(217,95,36)" fg:x="210566504370" fg:w="82006586"/><text x="68.7193%" y="1743.50"></text></g><g><title>v8::internal::JSCollator::New (82,006,586 samples, 0.03%)</title><rect x="68.4693%" y="1717" width="0.0267%" height="15" fill="rgb(212,110,31)" fg:x="210566504370" fg:w="82006586"/><text x="68.7193%" y="1727.50"></text></g><g><title>v8::base::CallOnceImpl (80,944,616 samples, 0.03%)</title><rect x="68.4697%" y="1701" width="0.0263%" height="15" fill="rgb(206,32,53)" fg:x="210567566340" fg:w="80944616"/><text x="68.7197%" y="1711.50"></text></g><g><title>v8::base::LazyInstanceImpl&lt;v8::internal::(anonymous namespace)::CollatorAvailableLocales, v8::base::StaticallyAllocatedInstanceTrait&lt;v8::internal::(anonymous namespace)::CollatorAvailableLocales&gt;, v8::base::DefaultConstructTrait&lt;v8::internal::(anonymous namespace)::CollatorAvailableLocales&gt;, v8::base::ThreadSafeInitOnceTrait, v8::base::LeakyInstanceTrait&lt;v8::internal::(anonymous namespace)::CollatorAvailableLocales&gt; &gt;::InitInstance (80,944,616 samples, 0.03%)</title><rect x="68.4697%" y="1685" width="0.0263%" height="15" fill="rgb(246,141,37)" fg:x="210567566340" fg:w="80944616"/><text x="68.7197%" y="1695.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseAssignmentExpressionCoverGrammarContinuation (47,142,511 samples, 0.02%)</title><rect x="68.5335%" y="997" width="0.0153%" height="15" fill="rgb(219,16,7)" fg:x="210763882233" fg:w="47142511"/><text x="68.7835%" y="1007.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseArrowFunctionLiteral (47,142,511 samples, 0.02%)</title><rect x="68.5335%" y="981" width="0.0153%" height="15" fill="rgb(230,205,45)" fg:x="210763882233" fg:w="47142511"/><text x="68.7835%" y="991.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseFunctionBody (47,142,511 samples, 0.02%)</title><rect x="68.5335%" y="965" width="0.0153%" height="15" fill="rgb(231,43,49)" fg:x="210763882233" fg:w="47142511"/><text x="68.7835%" y="975.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParsePossibleDestructuringSubPattern (91,664,911 samples, 0.03%)</title><rect x="68.5335%" y="1029" width="0.0298%" height="15" fill="rgb(212,106,34)" fg:x="210763882233" fg:w="91664911"/><text x="68.7835%" y="1039.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseAssignmentExpressionCoverGrammar (91,664,911 samples, 0.03%)</title><rect x="68.5335%" y="1013" width="0.0298%" height="15" fill="rgb(206,83,17)" fg:x="210763882233" fg:w="91664911"/><text x="68.7835%" y="1023.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseLogicalExpression (44,522,400 samples, 0.01%)</title><rect x="68.5488%" y="997" width="0.0145%" height="15" fill="rgb(244,154,49)" fg:x="210811024744" fg:w="44522400"/><text x="68.7988%" y="1007.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseFunctionExpression (43,337,162 samples, 0.01%)</title><rect x="68.5492%" y="981" width="0.0141%" height="15" fill="rgb(244,149,49)" fg:x="210812209982" fg:w="43337162"/><text x="68.7992%" y="991.50"></text></g><g><title>v8::internal::Parser::ParseFunctionLiteral (43,337,162 samples, 0.01%)</title><rect x="68.5492%" y="965" width="0.0141%" height="15" fill="rgb(227,134,18)" fg:x="210812209982" fg:w="43337162"/><text x="68.7992%" y="975.50"></text></g><g><title>v8::internal::Parser::SkipFunction (43,337,162 samples, 0.01%)</title><rect x="68.5492%" y="949" width="0.0141%" height="15" fill="rgb(237,116,36)" fg:x="210812209982" fg:w="43337162"/><text x="68.7992%" y="959.50"></text></g><g><title>v8::internal::PreParser::PreParseFunction (40,962,504 samples, 0.01%)</title><rect x="68.5500%" y="933" width="0.0133%" height="15" fill="rgb(205,129,40)" fg:x="210814584640" fg:w="40962504"/><text x="68.8000%" y="943.50"></text></g><g><title>v8::internal::PreParser::ParseStatementListAndLogFunction (40,962,504 samples, 0.01%)</title><rect x="68.5500%" y="917" width="0.0133%" height="15" fill="rgb(236,178,4)" fg:x="210814584640" fg:w="40962504"/><text x="68.8000%" y="927.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseObjectPropertyDefinition (92,803,095 samples, 0.03%)</title><rect x="68.5335%" y="1045" width="0.0302%" height="15" fill="rgb(251,76,53)" fg:x="210763882233" fg:w="92803095"/><text x="68.7835%" y="1055.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseAssignmentExpressionCoverGrammarContinuation (112,524,368 samples, 0.04%)</title><rect x="68.5275%" y="1173" width="0.0366%" height="15" fill="rgb(242,92,40)" fg:x="210745310534" fg:w="112524368"/><text x="68.7775%" y="1183.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseArrowFunctionLiteral (112,524,368 samples, 0.04%)</title><rect x="68.5275%" y="1157" width="0.0366%" height="15" fill="rgb(209,45,30)" fg:x="210745310534" fg:w="112524368"/><text x="68.7775%" y="1167.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseFunctionBody (112,524,368 samples, 0.04%)</title><rect x="68.5275%" y="1141" width="0.0366%" height="15" fill="rgb(218,157,36)" fg:x="210745310534" fg:w="112524368"/><text x="68.7775%" y="1151.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseVariableStatement (95,072,475 samples, 0.03%)</title><rect x="68.5332%" y="1125" width="0.0309%" height="15" fill="rgb(222,186,16)" fg:x="210762762427" fg:w="95072475"/><text x="68.7832%" y="1135.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseVariableDeclarations (95,072,475 samples, 0.03%)</title><rect x="68.5332%" y="1109" width="0.0309%" height="15" fill="rgb(254,72,35)" fg:x="210762762427" fg:w="95072475"/><text x="68.7832%" y="1119.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseAssignmentExpressionCoverGrammar (95,072,475 samples, 0.03%)</title><rect x="68.5332%" y="1093" width="0.0309%" height="15" fill="rgb(224,25,35)" fg:x="210762762427" fg:w="95072475"/><text x="68.7832%" y="1103.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseLogicalExpression (95,072,475 samples, 0.03%)</title><rect x="68.5332%" y="1077" width="0.0309%" height="15" fill="rgb(206,135,52)" fg:x="210762762427" fg:w="95072475"/><text x="68.7832%" y="1087.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseObjectLiteral (95,072,475 samples, 0.03%)</title><rect x="68.5332%" y="1061" width="0.0309%" height="15" fill="rgb(229,174,47)" fg:x="210762762427" fg:w="95072475"/><text x="68.7832%" y="1071.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseExpressionOrLabelledStatement (147,390,528 samples, 0.05%)</title><rect x="68.5173%" y="1285" width="0.0479%" height="15" fill="rgb(242,184,21)" fg:x="210713999117" fg:w="147390528"/><text x="68.7673%" y="1295.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseExpressionCoverGrammar (147,390,528 samples, 0.05%)</title><rect x="68.5173%" y="1269" width="0.0479%" height="15" fill="rgb(213,22,45)" fg:x="210713999117" fg:w="147390528"/><text x="68.7673%" y="1279.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseAssignmentExpressionCoverGrammar (146,239,664 samples, 0.05%)</title><rect x="68.5177%" y="1253" width="0.0476%" height="15" fill="rgb(237,81,54)" fg:x="210715149981" fg:w="146239664"/><text x="68.7677%" y="1263.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseLogicalExpression (125,382,437 samples, 0.04%)</title><rect x="68.5245%" y="1237" width="0.0408%" height="15" fill="rgb(248,177,18)" fg:x="210736007208" fg:w="125382437"/><text x="68.7745%" y="1247.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParsePrimaryExpression (116,079,111 samples, 0.04%)</title><rect x="68.5275%" y="1221" width="0.0377%" height="15" fill="rgb(254,31,16)" fg:x="210745310534" fg:w="116079111"/><text x="68.7775%" y="1231.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseExpressionCoverGrammar (116,079,111 samples, 0.04%)</title><rect x="68.5275%" y="1205" width="0.0377%" height="15" fill="rgb(235,20,31)" fg:x="210745310534" fg:w="116079111"/><text x="68.7775%" y="1215.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseAssignmentExpressionCoverGrammar (116,079,111 samples, 0.04%)</title><rect x="68.5275%" y="1189" width="0.0377%" height="15" fill="rgb(240,56,43)" fg:x="210745310534" fg:w="116079111"/><text x="68.7775%" y="1199.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseFunctionBody (195,140,742 samples, 0.06%)</title><rect x="68.5173%" y="1301" width="0.0635%" height="15" fill="rgb(237,197,51)" fg:x="210713999117" fg:w="195140742"/><text x="68.7673%" y="1311.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseAssignmentExpressionCoverGrammarContinuation (196,337,839 samples, 0.06%)</title><rect x="68.5173%" y="1333" width="0.0638%" height="15" fill="rgb(241,162,44)" fg:x="210713999117" fg:w="196337839"/><text x="68.7673%" y="1343.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseArrowFunctionLiteral (196,337,839 samples, 0.06%)</title><rect x="68.5173%" y="1317" width="0.0638%" height="15" fill="rgb(224,23,20)" fg:x="210713999117" fg:w="196337839"/><text x="68.7673%" y="1327.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseLeftHandSideContinuation (197,546,818 samples, 0.06%)</title><rect x="68.5173%" y="1381" width="0.0642%" height="15" fill="rgb(250,109,34)" fg:x="210713999117" fg:w="197546818"/><text x="68.7673%" y="1391.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseArguments (197,546,818 samples, 0.06%)</title><rect x="68.5173%" y="1365" width="0.0642%" height="15" fill="rgb(214,175,50)" fg:x="210713999117" fg:w="197546818"/><text x="68.7673%" y="1375.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseAssignmentExpressionCoverGrammar (197,546,818 samples, 0.06%)</title><rect x="68.5173%" y="1349" width="0.0642%" height="15" fill="rgb(213,182,5)" fg:x="210713999117" fg:w="197546818"/><text x="68.7673%" y="1359.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseAssignmentExpressionCoverGrammar (207,152,616 samples, 0.07%)</title><rect x="68.5146%" y="1413" width="0.0674%" height="15" fill="rgb(209,199,19)" fg:x="210705608442" fg:w="207152616"/><text x="68.7646%" y="1423.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseLogicalExpression (202,291,092 samples, 0.07%)</title><rect x="68.5162%" y="1397" width="0.0658%" height="15" fill="rgb(236,224,42)" fg:x="210710469966" fg:w="202291092"/><text x="68.7662%" y="1407.50"></text></g><g><title>v8::internal::Parser::ParseWrapped (229,736,686 samples, 0.07%)</title><rect x="68.5080%" y="1509" width="0.0747%" height="15" fill="rgb(246,226,29)" fg:x="210685388223" fg:w="229736686"/><text x="68.7580%" y="1519.50"></text></g><g><title>v8::internal::Parser::ParseFunctionLiteral (229,736,686 samples, 0.07%)</title><rect x="68.5080%" y="1493" width="0.0747%" height="15" fill="rgb(227,223,11)" fg:x="210685388223" fg:w="229736686"/><text x="68.7580%" y="1503.50"></text></g><g><title>v8::internal::Parser::ParseFunction (229,736,686 samples, 0.07%)</title><rect x="68.5080%" y="1477" width="0.0747%" height="15" fill="rgb(219,7,51)" fg:x="210685388223" fg:w="229736686"/><text x="68.7580%" y="1487.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseFunctionBody (229,736,686 samples, 0.07%)</title><rect x="68.5080%" y="1461" width="0.0747%" height="15" fill="rgb(245,167,10)" fg:x="210685388223" fg:w="229736686"/><text x="68.7580%" y="1471.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseVariableStatement (211,882,476 samples, 0.07%)</title><rect x="68.5138%" y="1445" width="0.0689%" height="15" fill="rgb(237,224,16)" fg:x="210703242433" fg:w="211882476"/><text x="68.7638%" y="1455.50"></text></g><g><title>v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseVariableDeclarations (211,882,476 samples, 0.07%)</title><rect x="68.5138%" y="1429" width="0.0689%" height="15" fill="rgb(226,132,13)" fg:x="210703242433" fg:w="211882476"/><text x="68.7638%" y="1439.50"></text></g><g><title>v8::internal::Parser::DoParseProgram (236,388,151 samples, 0.08%)</title><rect x="68.5080%" y="1525" width="0.0769%" height="15" fill="rgb(214,140,3)" fg:x="210685388223" fg:w="236388151"/><text x="68.7580%" y="1535.50"></text></g><g><title>node::contextify::CompileFunctionForCJSLoader (255,061,900 samples, 0.08%)</title><rect x="68.5063%" y="1653" width="0.0829%" height="15" fill="rgb(221,177,4)" fg:x="210680137796" fg:w="255061900"/><text x="68.7563%" y="1663.50"></text></g><g><title>node::contextify::CompileFunctionForCJSLoader (255,061,900 samples, 0.08%)</title><rect x="68.5063%" y="1637" width="0.0829%" height="15" fill="rgb(238,139,3)" fg:x="210680137796" fg:w="255061900"/><text x="68.7563%" y="1647.50"></text></g><g><title>v8::ScriptCompiler::CompileFunction (255,061,900 samples, 0.08%)</title><rect x="68.5063%" y="1621" width="0.0829%" height="15" fill="rgb(216,17,39)" fg:x="210680137796" fg:w="255061900"/><text x="68.7563%" y="1631.50"></text></g><g><title>v8::ScriptCompiler::CompileFunctionInternal (255,061,900 samples, 0.08%)</title><rect x="68.5063%" y="1605" width="0.0829%" height="15" fill="rgb(238,120,9)" fg:x="210680137796" fg:w="255061900"/><text x="68.7563%" y="1615.50"></text></g><g><title>v8::internal::Compiler::GetWrappedFunction (255,061,900 samples, 0.08%)</title><rect x="68.5063%" y="1589" width="0.0829%" height="15" fill="rgb(244,92,53)" fg:x="210680137796" fg:w="255061900"/><text x="68.7563%" y="1599.50"></text></g><g><title>v8::internal::(anonymous namespace)::CompileToplevel (255,061,900 samples, 0.08%)</title><rect x="68.5063%" y="1573" width="0.0829%" height="15" fill="rgb(224,148,33)" fg:x="210680137796" fg:w="255061900"/><text x="68.7563%" y="1583.50"></text></g><g><title>v8::internal::parsing::ParseProgram (249,811,473 samples, 0.08%)</title><rect x="68.5080%" y="1557" width="0.0812%" height="15" fill="rgb(243,6,36)" fg:x="210685388223" fg:w="249811473"/><text x="68.7580%" y="1567.50"></text></g><g><title>v8::internal::Parser::ParseProgram (249,811,473 samples, 0.08%)</title><rect x="68.5080%" y="1541" width="0.0812%" height="15" fill="rgb(230,102,11)" fg:x="210685388223" fg:w="249811473"/><text x="68.7580%" y="1551.50"></text></g><g><title>Builtins_CallApiCallbackGeneric (274,482,701 samples, 0.09%)</title><rect x="68.5059%" y="1669" width="0.0893%" height="15" fill="rgb(234,148,36)" fg:x="210678963952" fg:w="274482701"/><text x="68.7559%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (37,020,737 samples, 0.01%)</title><rect x="68.6026%" y="1605" width="0.0120%" height="15" fill="rgb(251,153,25)" fg:x="210976468107" fg:w="37020737"/><text x="68.8526%" y="1615.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (44,112,034 samples, 0.01%)</title><rect x="68.6016%" y="1621" width="0.0143%" height="15" fill="rgb(215,129,8)" fg:x="210973382820" fg:w="44112034"/><text x="68.8516%" y="1631.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (52,774,146 samples, 0.02%)</title><rect x="68.5992%" y="1653" width="0.0172%" height="15" fill="rgb(224,128,35)" fg:x="210965765461" fg:w="52774146"/><text x="68.8492%" y="1663.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (47,286,717 samples, 0.02%)</title><rect x="68.6010%" y="1637" width="0.0154%" height="15" fill="rgb(237,56,52)" fg:x="210971252890" fg:w="47286717"/><text x="68.8510%" y="1647.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (60,662,569 samples, 0.02%)</title><rect x="68.5977%" y="1669" width="0.0197%" height="15" fill="rgb(234,213,19)" fg:x="210961256610" fg:w="60662569"/><text x="68.8477%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (42,974,420 samples, 0.01%)</title><rect x="68.6491%" y="1525" width="0.0140%" height="15" fill="rgb(252,82,23)" fg:x="211119240000" fg:w="42974420"/><text x="68.8991%" y="1535.50"></text></g><g><title>[perf-183386.map] (34,545,033 samples, 0.01%)</title><rect x="68.6518%" y="1509" width="0.0112%" height="15" fill="rgb(254,201,21)" fg:x="211127669387" fg:w="34545033"/><text x="68.9018%" y="1519.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (58,873,764 samples, 0.02%)</title><rect x="68.6443%" y="1557" width="0.0191%" height="15" fill="rgb(250,186,11)" fg:x="211104526946" fg:w="58873764"/><text x="68.8943%" y="1567.50"></text></g><g><title>[perf-183386.map] (54,432,294 samples, 0.02%)</title><rect x="68.6457%" y="1541" width="0.0177%" height="15" fill="rgb(211,174,5)" fg:x="211108968416" fg:w="54432294"/><text x="68.8957%" y="1551.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (69,323,880 samples, 0.02%)</title><rect x="68.6413%" y="1589" width="0.0225%" height="15" fill="rgb(214,121,10)" fg:x="211095292039" fg:w="69323880"/><text x="68.8913%" y="1599.50"></text></g><g><title>[perf-183386.map] (64,645,333 samples, 0.02%)</title><rect x="68.6428%" y="1573" width="0.0210%" height="15" fill="rgb(241,66,2)" fg:x="211099970586" fg:w="64645333"/><text x="68.8928%" y="1583.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (122,341,195 samples, 0.04%)</title><rect x="68.6244%" y="1653" width="0.0398%" height="15" fill="rgb(220,167,19)" fg:x="211043236416" fg:w="122341195"/><text x="68.8744%" y="1663.50"></text></g><g><title>[perf-183386.map] (97,053,272 samples, 0.03%)</title><rect x="68.6326%" y="1637" width="0.0316%" height="15" fill="rgb(231,54,50)" fg:x="211068524339" fg:w="97053272"/><text x="68.8826%" y="1647.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (90,281,077 samples, 0.03%)</title><rect x="68.6348%" y="1621" width="0.0294%" height="15" fill="rgb(239,217,53)" fg:x="211075296534" fg:w="90281077"/><text x="68.8848%" y="1631.50"></text></g><g><title>[perf-183386.map] (83,348,050 samples, 0.03%)</title><rect x="68.6370%" y="1605" width="0.0271%" height="15" fill="rgb(248,8,0)" fg:x="211082229561" fg:w="83348050"/><text x="68.8870%" y="1615.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (499,254,517 samples, 0.16%)</title><rect x="68.5047%" y="1717" width="0.1623%" height="15" fill="rgb(229,118,37)" fg:x="210675341837" fg:w="499254517"/><text x="68.7547%" y="1727.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (496,858,789 samples, 0.16%)</title><rect x="68.5055%" y="1701" width="0.1616%" height="15" fill="rgb(253,223,43)" fg:x="210677737565" fg:w="496858789"/><text x="68.7555%" y="1711.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (495,632,402 samples, 0.16%)</title><rect x="68.5059%" y="1685" width="0.1612%" height="15" fill="rgb(211,77,36)" fg:x="210678963952" fg:w="495632402"/><text x="68.7559%" y="1695.50"></text></g><g><title>[perf-183386.map] (152,677,175 samples, 0.05%)</title><rect x="68.6174%" y="1669" width="0.0496%" height="15" fill="rgb(219,3,53)" fg:x="211021919179" fg:w="152677175"/><text x="68.8674%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (511,360,191 samples, 0.17%)</title><rect x="68.5011%" y="1733" width="0.1663%" height="15" fill="rgb(244,45,42)" fg:x="210664308582" fg:w="511360191"/><text x="68.7511%" y="1743.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (521,787,361 samples, 0.17%)</title><rect x="68.4986%" y="1749" width="0.1697%" height="15" fill="rgb(225,95,27)" fg:x="210656418332" fg:w="521787361"/><text x="68.7486%" y="1759.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (625,201,851 samples, 0.20%)</title><rect x="68.4654%" y="1781" width="0.2033%" height="15" fill="rgb(207,74,8)" fg:x="210554247263" fg:w="625201851"/><text x="68.7154%" y="1791.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (614,116,744 samples, 0.20%)</title><rect x="68.4690%" y="1765" width="0.1997%" height="15" fill="rgb(243,63,36)" fg:x="210565332370" fg:w="614116744"/><text x="68.7190%" y="1775.50"></text></g><g><title>node::LoadEnvironment (634,819,907 samples, 0.21%)</title><rect x="68.4629%" y="1973" width="0.2064%" height="15" fill="rgb(211,180,12)" fg:x="210546570291" fg:w="634819907"/><text x="68.7129%" y="1983.50"></text></g><g><title>node::StartExecution (634,819,907 samples, 0.21%)</title><rect x="68.4629%" y="1957" width="0.2064%" height="15" fill="rgb(254,166,49)" fg:x="210546570291" fg:w="634819907"/><text x="68.7129%" y="1967.50"></text></g><g><title>node::StartExecution (633,698,578 samples, 0.21%)</title><rect x="68.4632%" y="1941" width="0.2061%" height="15" fill="rgb(205,19,0)" fg:x="210547691620" fg:w="633698578"/><text x="68.7132%" y="1951.50"></text></g><g><title>node::Realm::ExecuteBootstrapper (633,698,578 samples, 0.21%)</title><rect x="68.4632%" y="1925" width="0.2061%" height="15" fill="rgb(224,172,32)" fg:x="210547691620" fg:w="633698578"/><text x="68.7132%" y="1935.50"></text></g><g><title>node::builtins::BuiltinLoader::CompileAndCall (633,698,578 samples, 0.21%)</title><rect x="68.4632%" y="1909" width="0.2061%" height="15" fill="rgb(254,136,30)" fg:x="210547691620" fg:w="633698578"/><text x="68.7132%" y="1919.50"></text></g><g><title>v8::Object::CallAsFunction (632,592,360 samples, 0.21%)</title><rect x="68.4636%" y="1893" width="0.2057%" height="15" fill="rgb(246,19,35)" fg:x="210548797838" fg:w="632592360"/><text x="68.7136%" y="1903.50"></text></g><g><title>v8::internal::Execution::Call (632,592,360 samples, 0.21%)</title><rect x="68.4636%" y="1877" width="0.2057%" height="15" fill="rgb(219,24,36)" fg:x="210548797838" fg:w="632592360"/><text x="68.7136%" y="1887.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (632,592,360 samples, 0.21%)</title><rect x="68.4636%" y="1861" width="0.2057%" height="15" fill="rgb(251,55,1)" fg:x="210548797838" fg:w="632592360"/><text x="68.7136%" y="1871.50"></text></g><g><title>Builtins_JSEntry (632,592,360 samples, 0.21%)</title><rect x="68.4636%" y="1845" width="0.2057%" height="15" fill="rgb(218,117,39)" fg:x="210548797838" fg:w="632592360"/><text x="68.7136%" y="1855.50"></text></g><g><title>Builtins_JSEntryTrampoline (631,463,631 samples, 0.21%)</title><rect x="68.4639%" y="1829" width="0.2053%" height="15" fill="rgb(248,169,11)" fg:x="210549926567" fg:w="631463631"/><text x="68.7139%" y="1839.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (631,463,631 samples, 0.21%)</title><rect x="68.4639%" y="1813" width="0.2053%" height="15" fill="rgb(244,40,44)" fg:x="210549926567" fg:w="631463631"/><text x="68.7139%" y="1823.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (629,288,898 samples, 0.20%)</title><rect x="68.4647%" y="1797" width="0.2046%" height="15" fill="rgb(234,62,37)" fg:x="210552101300" fg:w="629288898"/><text x="68.7147%" y="1807.50"></text></g><g><title>node::NodeMainInstance::CreateMainEnvironment (40,941,295 samples, 0.01%)</title><rect x="68.6693%" y="1973" width="0.0133%" height="15" fill="rgb(207,117,42)" fg:x="211181390198" fg:w="40941295"/><text x="68.9193%" y="1983.50"></text></g><g><title>node::CreateEnvironment (40,941,295 samples, 0.01%)</title><rect x="68.6693%" y="1957" width="0.0133%" height="15" fill="rgb(213,43,2)" fg:x="211181390198" fg:w="40941295"/><text x="68.9193%" y="1967.50"></text></g><g><title>v8::Context::FromSnapshot (36,536,715 samples, 0.01%)</title><rect x="68.6707%" y="1941" width="0.0119%" height="15" fill="rgb(244,202,51)" fg:x="211185794778" fg:w="36536715"/><text x="68.9207%" y="1951.50"></text></g><g><title>v8::NewContext (36,536,715 samples, 0.01%)</title><rect x="68.6707%" y="1925" width="0.0119%" height="15" fill="rgb(253,174,46)" fg:x="211185794778" fg:w="36536715"/><text x="68.9207%" y="1935.50"></text></g><g><title>v8::internal::Handle&lt;v8::internal::NativeContext&gt; v8::CreateEnvironment&lt;v8::internal::NativeContext&gt; (36,536,715 samples, 0.01%)</title><rect x="68.6707%" y="1909" width="0.0119%" height="15" fill="rgb(251,23,1)" fg:x="211185794778" fg:w="36536715"/><text x="68.9207%" y="1919.50"></text></g><g><title>v8::internal::Bootstrapper::CreateEnvironment (36,536,715 samples, 0.01%)</title><rect x="68.6707%" y="1893" width="0.0119%" height="15" fill="rgb(253,26,1)" fg:x="211185794778" fg:w="36536715"/><text x="68.9207%" y="1903.50"></text></g><g><title>v8::internal::Genesis::Genesis (36,536,715 samples, 0.01%)</title><rect x="68.6707%" y="1877" width="0.0119%" height="15" fill="rgb(216,89,31)" fg:x="211185794778" fg:w="36536715"/><text x="68.9207%" y="1887.50"></text></g><g><title>v8::internal::Snapshot::NewContextFromSnapshot (35,459,839 samples, 0.01%)</title><rect x="68.6711%" y="1861" width="0.0115%" height="15" fill="rgb(209,109,5)" fg:x="211186871654" fg:w="35459839"/><text x="68.9211%" y="1871.50"></text></g><g><title>v8::internal::ContextDeserializer::DeserializeContext (35,459,839 samples, 0.01%)</title><rect x="68.6711%" y="1845" width="0.0115%" height="15" fill="rgb(229,63,13)" fg:x="211186871654" fg:w="35459839"/><text x="68.9211%" y="1855.50"></text></g><g><title>v8::internal::ContextDeserializer::Deserialize (35,459,839 samples, 0.01%)</title><rect x="68.6711%" y="1829" width="0.0115%" height="15" fill="rgb(238,137,54)" fg:x="211186871654" fg:w="35459839"/><text x="68.9211%" y="1839.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (56,383,089 samples, 0.02%)</title><rect x="68.7087%" y="1685" width="0.0183%" height="15" fill="rgb(228,1,9)" fg:x="211302701203" fg:w="56383089"/><text x="68.9587%" y="1695.50"></text></g><g><title>[perf-183386.map] (52,819,104 samples, 0.02%)</title><rect x="68.7099%" y="1669" width="0.0172%" height="15" fill="rgb(249,120,48)" fg:x="211306265188" fg:w="52819104"/><text x="68.9599%" y="1679.50"></text></g><g><title>[perf-183386.map] (37,816,216 samples, 0.01%)</title><rect x="68.7148%" y="1653" width="0.0123%" height="15" fill="rgb(209,72,36)" fg:x="211321268076" fg:w="37816216"/><text x="68.9648%" y="1663.50"></text></g><g><title>[perf-183386.map] (150,304,364 samples, 0.05%)</title><rect x="68.7087%" y="1701" width="0.0489%" height="15" fill="rgb(247,98,49)" fg:x="211302701203" fg:w="150304364"/><text x="68.9587%" y="1711.50"></text></g><g><title>[perf-183386.map] (92,697,914 samples, 0.03%)</title><rect x="68.7275%" y="1685" width="0.0301%" height="15" fill="rgb(233,75,36)" fg:x="211360307653" fg:w="92697914"/><text x="68.9775%" y="1695.50"></text></g><g><title>[perf-183386.map] (81,052,756 samples, 0.03%)</title><rect x="68.7312%" y="1669" width="0.0264%" height="15" fill="rgb(225,14,24)" fg:x="211371952811" fg:w="81052756"/><text x="68.9812%" y="1679.50"></text></g><g><title>node::InternalMakeCallback (190,428,495 samples, 0.06%)</title><rect x="68.6960%" y="1829" width="0.0619%" height="15" fill="rgb(237,193,20)" fg:x="211263683993" fg:w="190428495"/><text x="68.9460%" y="1839.50"></text></g><g><title>v8::Object::CallAsFunction (175,114,953 samples, 0.06%)</title><rect x="68.7010%" y="1813" width="0.0569%" height="15" fill="rgb(239,122,19)" fg:x="211278997535" fg:w="175114953"/><text x="68.9510%" y="1823.50"></text></g><g><title>v8::internal::Execution::Call (173,916,258 samples, 0.06%)</title><rect x="68.7014%" y="1797" width="0.0566%" height="15" fill="rgb(231,220,10)" fg:x="211280196230" fg:w="173916258"/><text x="68.9514%" y="1807.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (173,916,258 samples, 0.06%)</title><rect x="68.7014%" y="1781" width="0.0566%" height="15" fill="rgb(220,66,15)" fg:x="211280196230" fg:w="173916258"/><text x="68.9514%" y="1791.50"></text></g><g><title>Builtins_JSEntry (173,916,258 samples, 0.06%)</title><rect x="68.7014%" y="1765" width="0.0566%" height="15" fill="rgb(215,171,52)" fg:x="211280196230" fg:w="173916258"/><text x="68.9514%" y="1775.50"></text></g><g><title>Builtins_JSEntryTrampoline (172,676,067 samples, 0.06%)</title><rect x="68.7018%" y="1749" width="0.0561%" height="15" fill="rgb(241,169,50)" fg:x="211281436421" fg:w="172676067"/><text x="68.9518%" y="1759.50"></text></g><g><title>[perf-183386.map] (165,156,655 samples, 0.05%)</title><rect x="68.7043%" y="1733" width="0.0537%" height="15" fill="rgb(236,189,0)" fg:x="211288955833" fg:w="165156655"/><text x="68.9543%" y="1743.50"></text></g><g><title>[perf-183386.map] (161,650,182 samples, 0.05%)</title><rect x="68.7054%" y="1717" width="0.0526%" height="15" fill="rgb(217,147,20)" fg:x="211292462306" fg:w="161650182"/><text x="68.9554%" y="1727.50"></text></g><g><title>node::fs::FSReqCallback::Resolve (191,600,933 samples, 0.06%)</title><rect x="68.6960%" y="1861" width="0.0623%" height="15" fill="rgb(206,188,39)" fg:x="211263683993" fg:w="191600933"/><text x="68.9460%" y="1871.50"></text></g><g><title>node::AsyncWrap::MakeCallback (191,600,933 samples, 0.06%)</title><rect x="68.6960%" y="1845" width="0.0623%" height="15" fill="rgb(227,118,25)" fg:x="211263683993" fg:w="191600933"/><text x="68.9460%" y="1855.50"></text></g><g><title>node::fs::AfterScanDir (224,830,599 samples, 0.07%)</title><rect x="68.6914%" y="1877" width="0.0731%" height="15" fill="rgb(248,171,40)" fg:x="211249478572" fg:w="224830599"/><text x="68.9414%" y="1887.50"></text></g><g><title>Builtins_AsyncFunctionAwaitResolveClosure (45,548,374 samples, 0.01%)</title><rect x="68.7695%" y="1701" width="0.0148%" height="15" fill="rgb(251,90,54)" fg:x="211489608258" fg:w="45548374"/><text x="69.0195%" y="1711.50"></text></g><g><title>node::MakeLibuvRequestCallback&lt;uv_fs_s, void (*)(uv_fs_s*)&gt;::Wrapper (299,377,247 samples, 0.10%)</title><rect x="68.6878%" y="1893" width="0.0973%" height="15" fill="rgb(234,11,46)" fg:x="211238292634" fg:w="299377247"/><text x="68.9378%" y="1903.50"></text></g><g><title>node::fs::FileHandle::ClosePromise (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1877" width="0.0156%" height="15" fill="rgb(229,134,13)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1887.50"></text></g><g><title>node::fs::FileHandle::CloseReq::Resolve (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1861" width="0.0156%" height="15" fill="rgb(223,129,3)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1871.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1845" width="0.0156%" height="15" fill="rgb(221,124,13)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::Close (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1829" width="0.0156%" height="15" fill="rgb(234,3,18)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1839.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1813" width="0.0156%" height="15" fill="rgb(249,199,20)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1797" width="0.0156%" height="15" fill="rgb(224,134,6)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1807.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1781" width="0.0156%" height="15" fill="rgb(254,83,26)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1791.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1765" width="0.0156%" height="15" fill="rgb(217,88,9)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1775.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1749" width="0.0156%" height="15" fill="rgb(225,73,2)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1759.50"></text></g><g><title>Builtins_RunMicrotasks (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1733" width="0.0156%" height="15" fill="rgb(226,44,39)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1743.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (48,061,623 samples, 0.02%)</title><rect x="68.7695%" y="1717" width="0.0156%" height="15" fill="rgb(228,53,17)" fg:x="211489608258" fg:w="48061623"/><text x="69.0195%" y="1727.50"></text></g><g><title>uv__async_io.part.0 (317,275,204 samples, 0.10%)</title><rect x="68.6836%" y="1925" width="0.1032%" height="15" fill="rgb(212,27,27)" fg:x="211225549538" fg:w="317275204"/><text x="68.9336%" y="1935.50"></text></g><g><title>uv__work_done (304,532,108 samples, 0.10%)</title><rect x="68.6878%" y="1909" width="0.0990%" height="15" fill="rgb(241,50,6)" fg:x="211238292634" fg:w="304532108"/><text x="68.9378%" y="1919.50"></text></g><g><title>uv__io_poll (325,008,706 samples, 0.11%)</title><rect x="68.6826%" y="1941" width="0.1057%" height="15" fill="rgb(225,28,51)" fg:x="211222331493" fg:w="325008706"/><text x="68.9326%" y="1951.50"></text></g><g><title>node::NodeMainInstance::Run (1,026,179,506 samples, 0.33%)</title><rect x="68.4629%" y="1989" width="0.3337%" height="15" fill="rgb(215,33,16)" fg:x="210546570291" fg:w="1026179506"/><text x="68.7129%" y="1999.50"></text></g><g><title>node::SpinEventLoopInternal (350,418,304 samples, 0.11%)</title><rect x="68.6826%" y="1973" width="0.1139%" height="15" fill="rgb(243,40,39)" fg:x="211222331493" fg:w="350418304"/><text x="68.9326%" y="1983.50"></text></g><g><title>uv_run (350,418,304 samples, 0.11%)</title><rect x="68.6826%" y="1957" width="0.1139%" height="15" fill="rgb(225,11,42)" fg:x="211222331493" fg:w="350418304"/><text x="68.9326%" y="1967.50"></text></g><g><title>node (3,314,205,973 samples, 1.08%)</title><rect x="67.7195%" y="2069" width="1.0777%" height="15" fill="rgb(241,220,38)" fg:x="208260394413" fg:w="3314205973"/><text x="67.9695%" y="2079.50"></text></g><g><title>_start (1,121,420,911 samples, 0.36%)</title><rect x="68.4325%" y="2053" width="0.3646%" height="15" fill="rgb(244,52,35)" fg:x="210453179475" fg:w="1121420911"/><text x="68.6825%" y="2063.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (1,119,794,744 samples, 0.36%)</title><rect x="68.4330%" y="2037" width="0.3641%" height="15" fill="rgb(246,42,46)" fg:x="210454805642" fg:w="1119794744"/><text x="68.6830%" y="2047.50"></text></g><g><title>__libc_start_call_main (1,119,794,744 samples, 0.36%)</title><rect x="68.4330%" y="2021" width="0.3641%" height="15" fill="rgb(205,184,13)" fg:x="210454805642" fg:w="1119794744"/><text x="68.6830%" y="2031.50"></text></g><g><title>node::Start (1,119,046,692 samples, 0.36%)</title><rect x="68.4333%" y="2005" width="0.3639%" height="15" fill="rgb(209,48,36)" fg:x="210455553694" fg:w="1119046692"/><text x="68.6833%" y="2015.50"></text></g><g><title>epoll_wait (197,176,736 samples, 0.06%)</title><rect x="68.8053%" y="1957" width="0.0641%" height="15" fill="rgb(244,34,51)" fg:x="211599788312" fg:w="197176736"/><text x="69.0553%" y="1967.50"></text></g><g><title>__syscall_cancel_arch_end (194,456,548 samples, 0.06%)</title><rect x="68.8062%" y="1941" width="0.0632%" height="15" fill="rgb(221,107,33)" fg:x="211602508500" fg:w="194456548"/><text x="69.0562%" y="1951.50"></text></g><g><title>[unknown] (191,633,047 samples, 0.06%)</title><rect x="68.8071%" y="1925" width="0.0623%" height="15" fill="rgb(224,203,12)" fg:x="211605332001" fg:w="191633047"/><text x="69.0571%" y="1935.50"></text></g><g><title>[unknown] (188,583,587 samples, 0.06%)</title><rect x="68.8081%" y="1909" width="0.0613%" height="15" fill="rgb(230,215,18)" fg:x="211608381461" fg:w="188583587"/><text x="69.0581%" y="1919.50"></text></g><g><title>[unknown] (186,692,770 samples, 0.06%)</title><rect x="68.8087%" y="1893" width="0.0607%" height="15" fill="rgb(206,185,35)" fg:x="211610272278" fg:w="186692770"/><text x="69.0587%" y="1903.50"></text></g><g><title>[unknown] (183,754,228 samples, 0.06%)</title><rect x="68.8097%" y="1877" width="0.0598%" height="15" fill="rgb(228,140,34)" fg:x="211613210820" fg:w="183754228"/><text x="69.0597%" y="1887.50"></text></g><g><title>[unknown] (181,069,665 samples, 0.06%)</title><rect x="68.8106%" y="1861" width="0.0589%" height="15" fill="rgb(208,93,13)" fg:x="211615895383" fg:w="181069665"/><text x="69.0606%" y="1871.50"></text></g><g><title>[unknown] (176,924,021 samples, 0.06%)</title><rect x="68.8119%" y="1845" width="0.0575%" height="15" fill="rgb(221,193,39)" fg:x="211620041027" fg:w="176924021"/><text x="69.0619%" y="1855.50"></text></g><g><title>[unknown] (167,173,895 samples, 0.05%)</title><rect x="68.8151%" y="1829" width="0.0544%" height="15" fill="rgb(241,132,34)" fg:x="211629791153" fg:w="167173895"/><text x="69.0651%" y="1839.50"></text></g><g><title>[unknown] (153,176,429 samples, 0.05%)</title><rect x="68.8196%" y="1813" width="0.0498%" height="15" fill="rgb(221,141,10)" fg:x="211643788619" fg:w="153176429"/><text x="69.0696%" y="1823.50"></text></g><g><title>[unknown] (145,505,539 samples, 0.05%)</title><rect x="68.8221%" y="1797" width="0.0473%" height="15" fill="rgb(226,90,31)" fg:x="211651459509" fg:w="145505539"/><text x="69.0721%" y="1807.50"></text></g><g><title>[unknown] (126,019,399 samples, 0.04%)</title><rect x="68.8285%" y="1781" width="0.0410%" height="15" fill="rgb(243,75,5)" fg:x="211670945649" fg:w="126019399"/><text x="69.0785%" y="1791.50"></text></g><g><title>[unknown] (118,682,969 samples, 0.04%)</title><rect x="68.8309%" y="1765" width="0.0386%" height="15" fill="rgb(227,156,21)" fg:x="211678282079" fg:w="118682969"/><text x="69.0809%" y="1775.50"></text></g><g><title>[unknown] (109,798,650 samples, 0.04%)</title><rect x="68.8337%" y="1749" width="0.0357%" height="15" fill="rgb(250,195,8)" fg:x="211687166398" fg:w="109798650"/><text x="69.0837%" y="1759.50"></text></g><g><title>[unknown] (100,138,224 samples, 0.03%)</title><rect x="68.8369%" y="1733" width="0.0326%" height="15" fill="rgb(220,134,5)" fg:x="211696826824" fg:w="100138224"/><text x="69.0869%" y="1743.50"></text></g><g><title>[unknown] (86,091,303 samples, 0.03%)</title><rect x="68.8415%" y="1717" width="0.0280%" height="15" fill="rgb(246,106,34)" fg:x="211710873745" fg:w="86091303"/><text x="69.0915%" y="1727.50"></text></g><g><title>[unknown] (74,298,946 samples, 0.02%)</title><rect x="68.8453%" y="1701" width="0.0242%" height="15" fill="rgb(205,1,4)" fg:x="211722666102" fg:w="74298946"/><text x="69.0953%" y="1711.50"></text></g><g><title>[unknown] (49,447,729 samples, 0.02%)</title><rect x="68.8534%" y="1685" width="0.0161%" height="15" fill="rgb(224,151,29)" fg:x="211747517319" fg:w="49447729"/><text x="69.1034%" y="1695.50"></text></g><g><title>inotify_add_watch (32,321,297 samples, 0.01%)</title><rect x="68.8694%" y="1957" width="0.0105%" height="15" fill="rgb(251,196,0)" fg:x="211796965048" fg:w="32321297"/><text x="69.1194%" y="1967.50"></text></g><g><title>[unknown] (32,321,297 samples, 0.01%)</title><rect x="68.8694%" y="1941" width="0.0105%" height="15" fill="rgb(212,127,0)" fg:x="211796965048" fg:w="32321297"/><text x="69.1194%" y="1951.50"></text></g><g><title>notify::inotify::EventLoop::add_single_watch (37,135,639 samples, 0.01%)</title><rect x="68.8800%" y="1957" width="0.0121%" height="15" fill="rgb(236,71,53)" fg:x="211829286345" fg:w="37135639"/><text x="69.1300%" y="1967.50"></text></g><g><title>inotify::inotify::Inotify::read_events (91,559,873 samples, 0.03%)</title><rect x="68.9111%" y="1941" width="0.0298%" height="15" fill="rgb(227,99,0)" fg:x="211925103332" fg:w="91559873"/><text x="69.1611%" y="1951.50"></text></g><g><title>read (89,329,105 samples, 0.03%)</title><rect x="68.9118%" y="1925" width="0.0290%" height="15" fill="rgb(239,89,21)" fg:x="211927334100" fg:w="89329105"/><text x="69.1618%" y="1935.50"></text></g><g><title>__syscall_cancel_arch_end (85,688,212 samples, 0.03%)</title><rect x="68.9130%" y="1909" width="0.0279%" height="15" fill="rgb(243,122,19)" fg:x="211930974993" fg:w="85688212"/><text x="69.1630%" y="1919.50"></text></g><g><title>[unknown] (83,253,419 samples, 0.03%)</title><rect x="68.9138%" y="1893" width="0.0271%" height="15" fill="rgb(229,192,45)" fg:x="211933409786" fg:w="83253419"/><text x="69.1638%" y="1903.50"></text></g><g><title>[unknown] (80,697,059 samples, 0.03%)</title><rect x="68.9146%" y="1877" width="0.0262%" height="15" fill="rgb(235,165,35)" fg:x="211935966146" fg:w="80697059"/><text x="69.1646%" y="1887.50"></text></g><g><title>[unknown] (79,031,179 samples, 0.03%)</title><rect x="68.9152%" y="1861" width="0.0257%" height="15" fill="rgb(253,202,0)" fg:x="211937632026" fg:w="79031179"/><text x="69.1652%" y="1871.50"></text></g><g><title>[unknown] (79,031,179 samples, 0.03%)</title><rect x="68.9152%" y="1845" width="0.0257%" height="15" fill="rgb(235,51,20)" fg:x="211937632026" fg:w="79031179"/><text x="69.1652%" y="1855.50"></text></g><g><title>[unknown] (77,483,502 samples, 0.03%)</title><rect x="68.9157%" y="1829" width="0.0252%" height="15" fill="rgb(218,95,46)" fg:x="211939179703" fg:w="77483502"/><text x="69.1657%" y="1839.50"></text></g><g><title>[unknown] (77,483,502 samples, 0.03%)</title><rect x="68.9157%" y="1813" width="0.0252%" height="15" fill="rgb(212,81,10)" fg:x="211939179703" fg:w="77483502"/><text x="69.1657%" y="1823.50"></text></g><g><title>[unknown] (67,706,053 samples, 0.02%)</title><rect x="68.9189%" y="1797" width="0.0220%" height="15" fill="rgb(240,59,0)" fg:x="211948957152" fg:w="67706053"/><text x="69.1689%" y="1807.50"></text></g><g><title>[unknown] (46,462,671 samples, 0.02%)</title><rect x="68.9258%" y="1781" width="0.0151%" height="15" fill="rgb(212,191,42)" fg:x="211970200534" fg:w="46462671"/><text x="69.1758%" y="1791.50"></text></g><g><title>[unknown] (38,765,945 samples, 0.01%)</title><rect x="68.9283%" y="1765" width="0.0126%" height="15" fill="rgb(233,140,3)" fg:x="211977897260" fg:w="38765945"/><text x="69.1783%" y="1775.50"></text></g><g><title>[unknown] (36,385,205 samples, 0.01%)</title><rect x="68.9291%" y="1749" width="0.0118%" height="15" fill="rgb(215,69,23)" fg:x="211980278000" fg:w="36385205"/><text x="69.1791%" y="1759.50"></text></g><g><title>notify::inotify::EventLoop::handle_inotify (170,665,582 samples, 0.06%)</title><rect x="68.8920%" y="1957" width="0.0555%" height="15" fill="rgb(240,202,20)" fg:x="211866421984" fg:w="170665582"/><text x="69.1420%" y="1967.50"></text></g><g><title>notify-rs_inoti (479,304,372 samples, 0.16%)</title><rect x="68.7971%" y="2069" width="0.1559%" height="15" fill="rgb(209,146,50)" fg:x="211574600386" fg:w="479304372"/><text x="69.0471%" y="2079.50"></text></g><g><title>__GI___clone3 (475,047,835 samples, 0.15%)</title><rect x="68.7985%" y="2053" width="0.1545%" height="15" fill="rgb(253,102,54)" fg:x="211578856923" fg:w="475047835"/><text x="69.0485%" y="2063.50"></text></g><g><title>start_thread (475,047,835 samples, 0.15%)</title><rect x="68.7985%" y="2037" width="0.1545%" height="15" fill="rgb(250,173,47)" fg:x="211578856923" fg:w="475047835"/><text x="69.0485%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (475,047,835 samples, 0.15%)</title><rect x="68.7985%" y="2021" width="0.1545%" height="15" fill="rgb(232,142,7)" fg:x="211578856923" fg:w="475047835"/><text x="69.0485%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (475,047,835 samples, 0.15%)</title><rect x="68.7985%" y="2005" width="0.1545%" height="15" fill="rgb(230,157,47)" fg:x="211578856923" fg:w="475047835"/><text x="69.0485%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (475,047,835 samples, 0.15%)</title><rect x="68.7985%" y="1989" width="0.1545%" height="15" fill="rgb(214,177,35)" fg:x="211578856923" fg:w="475047835"/><text x="69.0485%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (472,053,711 samples, 0.15%)</title><rect x="68.7995%" y="1973" width="0.1535%" height="15" fill="rgb(234,119,46)" fg:x="211581851047" fg:w="472053711"/><text x="69.0495%" y="1983.50"></text></g><g><title>__GI___mkdir (44,561,655 samples, 0.01%)</title><rect x="68.9565%" y="2005" width="0.0145%" height="15" fill="rgb(241,180,50)" fg:x="212064553852" fg:w="44561655"/><text x="69.2065%" y="2015.50"></text></g><g><title>[unknown] (44,561,655 samples, 0.01%)</title><rect x="68.9565%" y="1989" width="0.0145%" height="15" fill="rgb(221,54,25)" fg:x="212064553852" fg:w="44561655"/><text x="69.2065%" y="1999.50"></text></g><g><title>[unknown] (44,561,655 samples, 0.01%)</title><rect x="68.9565%" y="1973" width="0.0145%" height="15" fill="rgb(209,157,44)" fg:x="212064553852" fg:w="44561655"/><text x="69.2065%" y="1983.50"></text></g><g><title>[unknown] (43,457,478 samples, 0.01%)</title><rect x="68.9568%" y="1957" width="0.0141%" height="15" fill="rgb(246,115,41)" fg:x="212065658029" fg:w="43457478"/><text x="69.2068%" y="1967.50"></text></g><g><title>[unknown] (43,457,478 samples, 0.01%)</title><rect x="68.9568%" y="1941" width="0.0141%" height="15" fill="rgb(229,86,1)" fg:x="212065658029" fg:w="43457478"/><text x="69.2068%" y="1951.50"></text></g><g><title>[unknown] (43,457,478 samples, 0.01%)</title><rect x="68.9568%" y="1925" width="0.0141%" height="15" fill="rgb(240,108,53)" fg:x="212065658029" fg:w="43457478"/><text x="69.2068%" y="1935.50"></text></g><g><title>[unknown] (42,387,852 samples, 0.01%)</title><rect x="68.9572%" y="1909" width="0.0138%" height="15" fill="rgb(227,134,2)" fg:x="212066727655" fg:w="42387852"/><text x="69.2072%" y="1919.50"></text></g><g><title>[unknown] (39,987,834 samples, 0.01%)</title><rect x="68.9579%" y="1893" width="0.0130%" height="15" fill="rgb(213,129,25)" fg:x="212069127673" fg:w="39987834"/><text x="69.2079%" y="1903.50"></text></g><g><title>[unknown] (39,987,834 samples, 0.01%)</title><rect x="68.9579%" y="1877" width="0.0130%" height="15" fill="rgb(226,35,21)" fg:x="212069127673" fg:w="39987834"/><text x="69.2079%" y="1887.50"></text></g><g><title>[unknown] (38,574,626 samples, 0.01%)</title><rect x="68.9584%" y="1861" width="0.0125%" height="15" fill="rgb(208,129,26)" fg:x="212070540881" fg:w="38574626"/><text x="69.2084%" y="1871.50"></text></g><g><title>[unknown] (34,666,672 samples, 0.01%)</title><rect x="68.9597%" y="1845" width="0.0113%" height="15" fill="rgb(224,83,6)" fg:x="212074448835" fg:w="34666672"/><text x="69.2097%" y="1855.50"></text></g><g><title>__GI___libc_open (147,028,097 samples, 0.05%)</title><rect x="68.9744%" y="1989" width="0.0478%" height="15" fill="rgb(227,52,39)" fg:x="212119712216" fg:w="147028097"/><text x="69.2244%" y="1999.50"></text></g><g><title>__syscall_cancel_arch_end (147,028,097 samples, 0.05%)</title><rect x="68.9744%" y="1973" width="0.0478%" height="15" fill="rgb(241,30,17)" fg:x="212119712216" fg:w="147028097"/><text x="69.2244%" y="1983.50"></text></g><g><title>[unknown] (143,168,035 samples, 0.05%)</title><rect x="68.9756%" y="1957" width="0.0466%" height="15" fill="rgb(246,186,42)" fg:x="212123572278" fg:w="143168035"/><text x="69.2256%" y="1967.50"></text></g><g><title>[unknown] (143,168,035 samples, 0.05%)</title><rect x="68.9756%" y="1941" width="0.0466%" height="15" fill="rgb(221,169,15)" fg:x="212123572278" fg:w="143168035"/><text x="69.2256%" y="1951.50"></text></g><g><title>[unknown] (142,561,989 samples, 0.05%)</title><rect x="68.9758%" y="1925" width="0.0464%" height="15" fill="rgb(235,108,21)" fg:x="212124178324" fg:w="142561989"/><text x="69.2258%" y="1935.50"></text></g><g><title>[unknown] (142,561,989 samples, 0.05%)</title><rect x="68.9758%" y="1909" width="0.0464%" height="15" fill="rgb(219,148,30)" fg:x="212124178324" fg:w="142561989"/><text x="69.2258%" y="1919.50"></text></g><g><title>[unknown] (142,561,989 samples, 0.05%)</title><rect x="68.9758%" y="1893" width="0.0464%" height="15" fill="rgb(220,109,5)" fg:x="212124178324" fg:w="142561989"/><text x="69.2258%" y="1903.50"></text></g><g><title>[unknown] (141,050,613 samples, 0.05%)</title><rect x="68.9763%" y="1877" width="0.0459%" height="15" fill="rgb(213,203,48)" fg:x="212125689700" fg:w="141050613"/><text x="69.2263%" y="1887.50"></text></g><g><title>[unknown] (137,790,138 samples, 0.04%)</title><rect x="68.9774%" y="1861" width="0.0448%" height="15" fill="rgb(244,71,33)" fg:x="212128950175" fg:w="137790138"/><text x="69.2274%" y="1871.50"></text></g><g><title>[unknown] (136,764,743 samples, 0.04%)</title><rect x="68.9777%" y="1845" width="0.0445%" height="15" fill="rgb(209,23,2)" fg:x="212129975570" fg:w="136764743"/><text x="69.2277%" y="1855.50"></text></g><g><title>[unknown] (131,051,002 samples, 0.04%)</title><rect x="68.9796%" y="1829" width="0.0426%" height="15" fill="rgb(219,97,7)" fg:x="212135689311" fg:w="131051002"/><text x="69.2296%" y="1839.50"></text></g><g><title>[unknown] (121,525,142 samples, 0.04%)</title><rect x="68.9827%" y="1813" width="0.0395%" height="15" fill="rgb(216,161,23)" fg:x="212145215171" fg:w="121525142"/><text x="69.2327%" y="1823.50"></text></g><g><title>[unknown] (110,949,050 samples, 0.04%)</title><rect x="68.9861%" y="1797" width="0.0361%" height="15" fill="rgb(207,45,42)" fg:x="212155791263" fg:w="110949050"/><text x="69.2361%" y="1807.50"></text></g><g><title>[unknown] (86,023,207 samples, 0.03%)</title><rect x="68.9942%" y="1781" width="0.0280%" height="15" fill="rgb(241,61,4)" fg:x="212180717106" fg:w="86023207"/><text x="69.2442%" y="1791.50"></text></g><g><title>[unknown] (76,812,715 samples, 0.02%)</title><rect x="68.9972%" y="1765" width="0.0250%" height="15" fill="rgb(236,170,1)" fg:x="212189927598" fg:w="76812715"/><text x="69.2472%" y="1775.50"></text></g><g><title>[unknown] (69,351,446 samples, 0.02%)</title><rect x="68.9997%" y="1749" width="0.0226%" height="15" fill="rgb(239,72,5)" fg:x="212197388867" fg:w="69351446"/><text x="69.2497%" y="1759.50"></text></g><g><title>[unknown] (55,408,262 samples, 0.02%)</title><rect x="69.0042%" y="1733" width="0.0180%" height="15" fill="rgb(214,13,50)" fg:x="212211332051" fg:w="55408262"/><text x="69.2542%" y="1743.50"></text></g><g><title>[unknown] (38,720,590 samples, 0.01%)</title><rect x="69.0096%" y="1717" width="0.0126%" height="15" fill="rgb(224,88,9)" fg:x="212228019723" fg:w="38720590"/><text x="69.2596%" y="1727.50"></text></g><g><title>__GI___libc_write (224,646,003 samples, 0.07%)</title><rect x="69.0222%" y="1989" width="0.0730%" height="15" fill="rgb(238,192,34)" fg:x="212266740313" fg:w="224646003"/><text x="69.2722%" y="1999.50"></text></g><g><title>__syscall_cancel_arch_end (224,090,298 samples, 0.07%)</title><rect x="69.0224%" y="1973" width="0.0729%" height="15" fill="rgb(217,203,50)" fg:x="212267296018" fg:w="224090298"/><text x="69.2724%" y="1983.50"></text></g><g><title>[unknown] (224,090,298 samples, 0.07%)</title><rect x="69.0224%" y="1957" width="0.0729%" height="15" fill="rgb(241,123,32)" fg:x="212267296018" fg:w="224090298"/><text x="69.2724%" y="1967.50"></text></g><g><title>[unknown] (224,090,298 samples, 0.07%)</title><rect x="69.0224%" y="1941" width="0.0729%" height="15" fill="rgb(248,151,39)" fg:x="212267296018" fg:w="224090298"/><text x="69.2724%" y="1951.50"></text></g><g><title>[unknown] (223,926,549 samples, 0.07%)</title><rect x="69.0224%" y="1925" width="0.0728%" height="15" fill="rgb(208,89,6)" fg:x="212267459767" fg:w="223926549"/><text x="69.2724%" y="1935.50"></text></g><g><title>[unknown] (223,926,549 samples, 0.07%)</title><rect x="69.0224%" y="1909" width="0.0728%" height="15" fill="rgb(254,43,26)" fg:x="212267459767" fg:w="223926549"/><text x="69.2724%" y="1919.50"></text></g><g><title>[unknown] (223,926,549 samples, 0.07%)</title><rect x="69.0224%" y="1893" width="0.0728%" height="15" fill="rgb(216,158,13)" fg:x="212267459767" fg:w="223926549"/><text x="69.2724%" y="1903.50"></text></g><g><title>[unknown] (223,320,503 samples, 0.07%)</title><rect x="69.0226%" y="1877" width="0.0726%" height="15" fill="rgb(212,47,37)" fg:x="212268065813" fg:w="223320503"/><text x="69.2726%" y="1887.50"></text></g><g><title>[unknown] (213,201,389 samples, 0.07%)</title><rect x="69.0259%" y="1861" width="0.0693%" height="15" fill="rgb(254,16,10)" fg:x="212278184927" fg:w="213201389"/><text x="69.2759%" y="1871.50"></text></g><g><title>[unknown] (212,269,875 samples, 0.07%)</title><rect x="69.0262%" y="1845" width="0.0690%" height="15" fill="rgb(223,228,16)" fg:x="212279116441" fg:w="212269875"/><text x="69.2762%" y="1855.50"></text></g><g><title>[unknown] (212,269,875 samples, 0.07%)</title><rect x="69.0262%" y="1829" width="0.0690%" height="15" fill="rgb(249,108,50)" fg:x="212279116441" fg:w="212269875"/><text x="69.2762%" y="1839.50"></text></g><g><title>[unknown] (204,358,485 samples, 0.07%)</title><rect x="69.0288%" y="1813" width="0.0665%" height="15" fill="rgb(208,220,5)" fg:x="212287027831" fg:w="204358485"/><text x="69.2788%" y="1823.50"></text></g><g><title>[unknown] (190,509,537 samples, 0.06%)</title><rect x="69.0333%" y="1797" width="0.0619%" height="15" fill="rgb(217,89,48)" fg:x="212300876779" fg:w="190509537"/><text x="69.2833%" y="1807.50"></text></g><g><title>[unknown] (172,427,134 samples, 0.06%)</title><rect x="69.0392%" y="1781" width="0.0561%" height="15" fill="rgb(212,113,41)" fg:x="212318959182" fg:w="172427134"/><text x="69.2892%" y="1791.50"></text></g><g><title>[unknown] (157,348,110 samples, 0.05%)</title><rect x="69.0441%" y="1765" width="0.0512%" height="15" fill="rgb(231,127,5)" fg:x="212334038206" fg:w="157348110"/><text x="69.2941%" y="1775.50"></text></g><g><title>[unknown] (126,392,160 samples, 0.04%)</title><rect x="69.0541%" y="1749" width="0.0411%" height="15" fill="rgb(217,141,17)" fg:x="212364994156" fg:w="126392160"/><text x="69.3041%" y="1759.50"></text></g><g><title>[unknown] (77,892,452 samples, 0.03%)</title><rect x="69.0699%" y="1733" width="0.0253%" height="15" fill="rgb(245,125,54)" fg:x="212413493864" fg:w="77892452"/><text x="69.3199%" y="1743.50"></text></g><g><title>[unknown] (61,531,096 samples, 0.02%)</title><rect x="69.0752%" y="1717" width="0.0200%" height="15" fill="rgb(248,125,3)" fg:x="212429855220" fg:w="61531096"/><text x="69.3252%" y="1727.50"></text></g><g><title>[unknown] (43,260,435 samples, 0.01%)</title><rect x="69.0812%" y="1701" width="0.0141%" height="15" fill="rgb(236,119,51)" fg:x="212448125881" fg:w="43260435"/><text x="69.3312%" y="1711.50"></text></g><g><title>[unknown] (30,917,247 samples, 0.01%)</title><rect x="69.0852%" y="1685" width="0.0101%" height="15" fill="rgb(239,99,8)" fg:x="212460469069" fg:w="30917247"/><text x="69.3352%" y="1695.50"></text></g><g><title>uv__fs_work (435,671,921 samples, 0.14%)</title><rect x="68.9735%" y="2005" width="0.1417%" height="15" fill="rgb(224,228,4)" fg:x="212116959860" fg:w="435671921"/><text x="69.2235%" y="2015.50"></text></g><g><title>uv__fs_statx (44,300,059 samples, 0.01%)</title><rect x="69.1008%" y="1989" width="0.0144%" height="15" fill="rgb(220,131,45)" fg:x="212508331722" fg:w="44300059"/><text x="69.3508%" y="1999.50"></text></g><g><title>syscall (44,300,059 samples, 0.01%)</title><rect x="69.1008%" y="1973" width="0.0144%" height="15" fill="rgb(215,62,5)" fg:x="212508331722" fg:w="44300059"/><text x="69.3508%" y="1983.50"></text></g><g><title>[unknown] (44,300,059 samples, 0.01%)</title><rect x="69.1008%" y="1957" width="0.0144%" height="15" fill="rgb(253,12,24)" fg:x="212508331722" fg:w="44300059"/><text x="69.3508%" y="1967.50"></text></g><g><title>[unknown] (44,300,059 samples, 0.01%)</title><rect x="69.1008%" y="1941" width="0.0144%" height="15" fill="rgb(248,120,50)" fg:x="212508331722" fg:w="44300059"/><text x="69.3508%" y="1951.50"></text></g><g><title>[unknown] (44,300,059 samples, 0.01%)</title><rect x="69.1008%" y="1925" width="0.0144%" height="15" fill="rgb(245,194,10)" fg:x="212508331722" fg:w="44300059"/><text x="69.3508%" y="1935.50"></text></g><g><title>[unknown] (44,300,059 samples, 0.01%)</title><rect x="69.1008%" y="1909" width="0.0144%" height="15" fill="rgb(241,149,38)" fg:x="212508331722" fg:w="44300059"/><text x="69.3508%" y="1919.50"></text></g><g><title>[unknown] (44,300,059 samples, 0.01%)</title><rect x="69.1008%" y="1893" width="0.0144%" height="15" fill="rgb(219,215,7)" fg:x="212508331722" fg:w="44300059"/><text x="69.3508%" y="1903.50"></text></g><g><title>[unknown] (42,997,879 samples, 0.01%)</title><rect x="69.1012%" y="1877" width="0.0140%" height="15" fill="rgb(208,120,31)" fg:x="212509633902" fg:w="42997879"/><text x="69.3512%" y="1887.50"></text></g><g><title>[unknown] (42,997,879 samples, 0.01%)</title><rect x="69.1012%" y="1861" width="0.0140%" height="15" fill="rgb(244,30,8)" fg:x="212509633902" fg:w="42997879"/><text x="69.3512%" y="1871.50"></text></g><g><title>[unknown] (39,636,145 samples, 0.01%)</title><rect x="69.1023%" y="1845" width="0.0129%" height="15" fill="rgb(238,35,44)" fg:x="212512995636" fg:w="39636145"/><text x="69.3523%" y="1855.50"></text></g><g><title>[unknown] (39,493,856 samples, 0.01%)</title><rect x="69.1023%" y="1829" width="0.0128%" height="15" fill="rgb(243,218,37)" fg:x="212513137925" fg:w="39493856"/><text x="69.3523%" y="1839.50"></text></g><g><title>[unknown] (37,208,612 samples, 0.01%)</title><rect x="69.1031%" y="1813" width="0.0121%" height="15" fill="rgb(218,169,10)" fg:x="212515423169" fg:w="37208612"/><text x="69.3531%" y="1823.50"></text></g><g><title>[unknown] (33,281,535 samples, 0.01%)</title><rect x="69.1043%" y="1797" width="0.0108%" height="15" fill="rgb(221,144,10)" fg:x="212519350246" fg:w="33281535"/><text x="69.3543%" y="1807.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (153,523,231 samples, 0.05%)</title><rect x="69.1279%" y="1973" width="0.0499%" height="15" fill="rgb(226,41,38)" fg:x="212591675672" fg:w="153523231"/><text x="69.3779%" y="1983.50"></text></g><g><title>__syscall_cancel_arch_end (149,913,822 samples, 0.05%)</title><rect x="69.1290%" y="1957" width="0.0487%" height="15" fill="rgb(228,3,1)" fg:x="212595285081" fg:w="149913822"/><text x="69.3790%" y="1967.50"></text></g><g><title>[unknown] (147,694,819 samples, 0.05%)</title><rect x="69.1298%" y="1941" width="0.0480%" height="15" fill="rgb(209,129,12)" fg:x="212597504084" fg:w="147694819"/><text x="69.3798%" y="1951.50"></text></g><g><title>[unknown] (145,767,547 samples, 0.05%)</title><rect x="69.1304%" y="1925" width="0.0474%" height="15" fill="rgb(213,136,33)" fg:x="212599431356" fg:w="145767547"/><text x="69.3804%" y="1935.50"></text></g><g><title>[unknown] (140,131,284 samples, 0.05%)</title><rect x="69.1322%" y="1909" width="0.0456%" height="15" fill="rgb(209,181,29)" fg:x="212605067619" fg:w="140131284"/><text x="69.3822%" y="1919.50"></text></g><g><title>[unknown] (138,655,849 samples, 0.05%)</title><rect x="69.1327%" y="1893" width="0.0451%" height="15" fill="rgb(234,173,18)" fg:x="212606543054" fg:w="138655849"/><text x="69.3827%" y="1903.50"></text></g><g><title>[unknown] (133,260,998 samples, 0.04%)</title><rect x="69.1344%" y="1877" width="0.0433%" height="15" fill="rgb(227,73,47)" fg:x="212611937905" fg:w="133260998"/><text x="69.3844%" y="1887.50"></text></g><g><title>[unknown] (132,879,904 samples, 0.04%)</title><rect x="69.1346%" y="1861" width="0.0432%" height="15" fill="rgb(234,9,34)" fg:x="212612318999" fg:w="132879904"/><text x="69.3846%" y="1871.50"></text></g><g><title>[unknown] (125,864,172 samples, 0.04%)</title><rect x="69.1369%" y="1845" width="0.0409%" height="15" fill="rgb(235,172,15)" fg:x="212619334731" fg:w="125864172"/><text x="69.3869%" y="1855.50"></text></g><g><title>[unknown] (115,075,791 samples, 0.04%)</title><rect x="69.1404%" y="1829" width="0.0374%" height="15" fill="rgb(245,61,2)" fg:x="212630123112" fg:w="115075791"/><text x="69.3904%" y="1839.50"></text></g><g><title>[unknown] (113,452,832 samples, 0.04%)</title><rect x="69.1409%" y="1813" width="0.0369%" height="15" fill="rgb(238,39,47)" fg:x="212631746071" fg:w="113452832"/><text x="69.3909%" y="1823.50"></text></g><g><title>[unknown] (107,878,453 samples, 0.04%)</title><rect x="69.1427%" y="1797" width="0.0351%" height="15" fill="rgb(234,37,24)" fg:x="212637320450" fg:w="107878453"/><text x="69.3927%" y="1807.50"></text></g><g><title>[unknown] (105,893,298 samples, 0.03%)</title><rect x="69.1433%" y="1781" width="0.0344%" height="15" fill="rgb(248,223,24)" fg:x="212639305605" fg:w="105893298"/><text x="69.3933%" y="1791.50"></text></g><g><title>[unknown] (94,364,066 samples, 0.03%)</title><rect x="69.1471%" y="1765" width="0.0307%" height="15" fill="rgb(223,12,15)" fg:x="212650834837" fg:w="94364066"/><text x="69.3971%" y="1775.50"></text></g><g><title>[unknown] (88,696,825 samples, 0.03%)</title><rect x="69.1489%" y="1749" width="0.0288%" height="15" fill="rgb(249,6,3)" fg:x="212656502078" fg:w="88696825"/><text x="69.3989%" y="1759.50"></text></g><g><title>[unknown] (79,723,097 samples, 0.03%)</title><rect x="69.1519%" y="1733" width="0.0259%" height="15" fill="rgb(237,105,33)" fg:x="212665475806" fg:w="79723097"/><text x="69.4019%" y="1743.50"></text></g><g><title>[unknown] (60,597,627 samples, 0.02%)</title><rect x="69.1581%" y="1717" width="0.0197%" height="15" fill="rgb(252,208,35)" fg:x="212684601276" fg:w="60597627"/><text x="69.4081%" y="1727.50"></text></g><g><title>[unknown] (52,118,442 samples, 0.02%)</title><rect x="69.1608%" y="1701" width="0.0169%" height="15" fill="rgb(215,181,35)" fg:x="212693080461" fg:w="52118442"/><text x="69.4108%" y="1711.50"></text></g><g><title>[unknown] (35,186,940 samples, 0.01%)</title><rect x="69.1663%" y="1685" width="0.0114%" height="15" fill="rgb(246,212,3)" fg:x="212710011963" fg:w="35186940"/><text x="69.4163%" y="1695.50"></text></g><g><title>uv_cond_wait (177,727,691 samples, 0.06%)</title><rect x="69.1231%" y="2005" width="0.0578%" height="15" fill="rgb(247,156,24)" fg:x="212577127121" fg:w="177727691"/><text x="69.3731%" y="2015.50"></text></g><g><title>pthread_cond_wait@@GLIBC_2.3.2 (176,832,274 samples, 0.06%)</title><rect x="69.1234%" y="1989" width="0.0575%" height="15" fill="rgb(248,9,31)" fg:x="212578022538" fg:w="176832274"/><text x="69.3734%" y="1999.50"></text></g><g><title>__GI___clone3 (736,130,784 samples, 0.24%)</title><rect x="68.9543%" y="2053" width="0.2394%" height="15" fill="rgb(234,26,45)" fg:x="212057937641" fg:w="736130784"/><text x="69.2043%" y="2063.50"></text></g><g><title>start_thread (736,130,784 samples, 0.24%)</title><rect x="68.9543%" y="2037" width="0.2394%" height="15" fill="rgb(249,11,32)" fg:x="212057937641" fg:w="736130784"/><text x="69.2043%" y="2047.50"></text></g><g><title>worker (735,490,638 samples, 0.24%)</title><rect x="68.9545%" y="2021" width="0.2392%" height="15" fill="rgb(249,162,33)" fg:x="212058577787" fg:w="735490638"/><text x="69.2045%" y="2031.50"></text></g><g><title>Builtins_ConstructHandler (34,531,465 samples, 0.01%)</title><rect x="69.1937%" y="1621" width="0.0112%" height="15" fill="rgb(232,4,32)" fg:x="212794068425" fg:w="34531465"/><text x="69.4437%" y="1631.50"></text></g><g><title>Builtins_InterpreterPushArgsThenFastConstructFunction (34,531,465 samples, 0.01%)</title><rect x="69.1937%" y="1605" width="0.0112%" height="15" fill="rgb(212,5,45)" fg:x="212794068425" fg:w="34531465"/><text x="69.4437%" y="1615.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (34,531,465 samples, 0.01%)</title><rect x="69.1937%" y="1589" width="0.0112%" height="15" fill="rgb(227,95,13)" fg:x="212794068425" fg:w="34531465"/><text x="69.4437%" y="1599.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (30,827,958 samples, 0.01%)</title><rect x="69.2170%" y="1477" width="0.0100%" height="15" fill="rgb(223,205,10)" fg:x="212865896216" fg:w="30827958"/><text x="69.4670%" y="1487.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (43,608,791 samples, 0.01%)</title><rect x="69.2136%" y="1525" width="0.0142%" height="15" fill="rgb(222,178,8)" fg:x="212855263139" fg:w="43608791"/><text x="69.4636%" y="1535.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (41,333,197 samples, 0.01%)</title><rect x="69.2143%" y="1509" width="0.0134%" height="15" fill="rgb(216,13,22)" fg:x="212857538733" fg:w="41333197"/><text x="69.4643%" y="1519.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (40,399,192 samples, 0.01%)</title><rect x="69.2146%" y="1493" width="0.0131%" height="15" fill="rgb(240,167,12)" fg:x="212858472738" fg:w="40399192"/><text x="69.4646%" y="1503.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (47,649,693 samples, 0.02%)</title><rect x="69.2126%" y="1605" width="0.0155%" height="15" fill="rgb(235,68,35)" fg:x="212852173911" fg:w="47649693"/><text x="69.4626%" y="1615.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (47,649,693 samples, 0.02%)</title><rect x="69.2126%" y="1589" width="0.0155%" height="15" fill="rgb(253,40,27)" fg:x="212852173911" fg:w="47649693"/><text x="69.4626%" y="1599.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (45,645,517 samples, 0.01%)</title><rect x="69.2132%" y="1573" width="0.0148%" height="15" fill="rgb(214,19,28)" fg:x="212854178087" fg:w="45645517"/><text x="69.4632%" y="1583.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (44,560,465 samples, 0.01%)</title><rect x="69.2136%" y="1557" width="0.0145%" height="15" fill="rgb(210,167,45)" fg:x="212855263139" fg:w="44560465"/><text x="69.4636%" y="1567.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (44,560,465 samples, 0.01%)</title><rect x="69.2136%" y="1541" width="0.0145%" height="15" fill="rgb(232,97,40)" fg:x="212855263139" fg:w="44560465"/><text x="69.4636%" y="1551.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (74,702,033 samples, 0.02%)</title><rect x="69.2049%" y="1621" width="0.0243%" height="15" fill="rgb(250,35,23)" fg:x="212828599890" fg:w="74702033"/><text x="69.4549%" y="1631.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (43,784,326 samples, 0.01%)</title><rect x="69.2367%" y="1349" width="0.0142%" height="15" fill="rgb(248,47,53)" fg:x="212926296757" fg:w="43784326"/><text x="69.4867%" y="1359.50"></text></g><g><title>[perf-183308.map] (41,792,501 samples, 0.01%)</title><rect x="69.2373%" y="1333" width="0.0136%" height="15" fill="rgb(226,58,50)" fg:x="212928288582" fg:w="41792501"/><text x="69.4873%" y="1343.50"></text></g><g><title>[perf-183308.map] (41,792,501 samples, 0.01%)</title><rect x="69.2373%" y="1317" width="0.0136%" height="15" fill="rgb(217,105,26)" fg:x="212928288582" fg:w="41792501"/><text x="69.4873%" y="1327.50"></text></g><g><title>[perf-183308.map] (41,792,501 samples, 0.01%)</title><rect x="69.2373%" y="1301" width="0.0136%" height="15" fill="rgb(208,64,1)" fg:x="212928288582" fg:w="41792501"/><text x="69.4873%" y="1311.50"></text></g><g><title>[perf-183308.map] (41,792,501 samples, 0.01%)</title><rect x="69.2373%" y="1285" width="0.0136%" height="15" fill="rgb(214,80,1)" fg:x="212928288582" fg:w="41792501"/><text x="69.4873%" y="1295.50"></text></g><g><title>[perf-183308.map] (41,792,501 samples, 0.01%)</title><rect x="69.2373%" y="1269" width="0.0136%" height="15" fill="rgb(206,175,26)" fg:x="212928288582" fg:w="41792501"/><text x="69.4873%" y="1279.50"></text></g><g><title>[perf-183308.map] (40,828,427 samples, 0.01%)</title><rect x="69.2376%" y="1253" width="0.0133%" height="15" fill="rgb(235,156,37)" fg:x="212929252656" fg:w="40828427"/><text x="69.4876%" y="1263.50"></text></g><g><title>[perf-183308.map] (39,882,341 samples, 0.01%)</title><rect x="69.2379%" y="1237" width="0.0130%" height="15" fill="rgb(213,100,9)" fg:x="212930198742" fg:w="39882341"/><text x="69.4879%" y="1247.50"></text></g><g><title>[perf-183308.map] (36,085,741 samples, 0.01%)</title><rect x="69.2392%" y="1221" width="0.0117%" height="15" fill="rgb(241,15,13)" fg:x="212933995342" fg:w="36085741"/><text x="69.4892%" y="1231.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (55,368,323 samples, 0.02%)</title><rect x="69.2354%" y="1493" width="0.0180%" height="15" fill="rgb(205,97,43)" fg:x="212922332361" fg:w="55368323"/><text x="69.4854%" y="1503.50"></text></g><g><title>[perf-183308.map] (55,368,323 samples, 0.02%)</title><rect x="69.2354%" y="1477" width="0.0180%" height="15" fill="rgb(216,106,32)" fg:x="212922332361" fg:w="55368323"/><text x="69.4854%" y="1487.50"></text></g><g><title>[perf-183308.map] (55,368,323 samples, 0.02%)</title><rect x="69.2354%" y="1461" width="0.0180%" height="15" fill="rgb(226,200,8)" fg:x="212922332361" fg:w="55368323"/><text x="69.4854%" y="1471.50"></text></g><g><title>[perf-183308.map] (55,368,323 samples, 0.02%)</title><rect x="69.2354%" y="1445" width="0.0180%" height="15" fill="rgb(244,54,29)" fg:x="212922332361" fg:w="55368323"/><text x="69.4854%" y="1455.50"></text></g><g><title>[perf-183308.map] (55,368,323 samples, 0.02%)</title><rect x="69.2354%" y="1429" width="0.0180%" height="15" fill="rgb(252,169,12)" fg:x="212922332361" fg:w="55368323"/><text x="69.4854%" y="1439.50"></text></g><g><title>[perf-183308.map] (55,368,323 samples, 0.02%)</title><rect x="69.2354%" y="1413" width="0.0180%" height="15" fill="rgb(231,199,11)" fg:x="212922332361" fg:w="55368323"/><text x="69.4854%" y="1423.50"></text></g><g><title>[perf-183308.map] (54,489,474 samples, 0.02%)</title><rect x="69.2357%" y="1397" width="0.0177%" height="15" fill="rgb(233,191,18)" fg:x="212923211210" fg:w="54489474"/><text x="69.4857%" y="1407.50"></text></g><g><title>[perf-183308.map] (54,489,474 samples, 0.02%)</title><rect x="69.2357%" y="1381" width="0.0177%" height="15" fill="rgb(215,83,47)" fg:x="212923211210" fg:w="54489474"/><text x="69.4857%" y="1391.50"></text></g><g><title>[perf-183308.map] (53,509,414 samples, 0.02%)</title><rect x="69.2360%" y="1365" width="0.0174%" height="15" fill="rgb(251,67,19)" fg:x="212924191270" fg:w="53509414"/><text x="69.4860%" y="1375.50"></text></g><g><title>[perf-183308.map] (75,251,203 samples, 0.02%)</title><rect x="69.2292%" y="1621" width="0.0245%" height="15" fill="rgb(240,7,20)" fg:x="212903301923" fg:w="75251203"/><text x="69.4792%" y="1631.50"></text></g><g><title>[perf-183308.map] (75,251,203 samples, 0.02%)</title><rect x="69.2292%" y="1605" width="0.0245%" height="15" fill="rgb(210,150,26)" fg:x="212903301923" fg:w="75251203"/><text x="69.4792%" y="1615.50"></text></g><g><title>[perf-183308.map] (75,251,203 samples, 0.02%)</title><rect x="69.2292%" y="1589" width="0.0245%" height="15" fill="rgb(228,75,42)" fg:x="212903301923" fg:w="75251203"/><text x="69.4792%" y="1599.50"></text></g><g><title>[perf-183308.map] (56,220,765 samples, 0.02%)</title><rect x="69.2354%" y="1573" width="0.0183%" height="15" fill="rgb(237,134,48)" fg:x="212922332361" fg:w="56220765"/><text x="69.4854%" y="1583.50"></text></g><g><title>[perf-183308.map] (56,220,765 samples, 0.02%)</title><rect x="69.2354%" y="1557" width="0.0183%" height="15" fill="rgb(205,80,50)" fg:x="212922332361" fg:w="56220765"/><text x="69.4854%" y="1567.50"></text></g><g><title>[perf-183308.map] (56,220,765 samples, 0.02%)</title><rect x="69.2354%" y="1541" width="0.0183%" height="15" fill="rgb(217,74,48)" fg:x="212922332361" fg:w="56220765"/><text x="69.4854%" y="1551.50"></text></g><g><title>[perf-183308.map] (56,220,765 samples, 0.02%)</title><rect x="69.2354%" y="1525" width="0.0183%" height="15" fill="rgb(205,82,50)" fg:x="212922332361" fg:w="56220765"/><text x="69.4854%" y="1535.50"></text></g><g><title>[perf-183308.map] (56,220,765 samples, 0.02%)</title><rect x="69.2354%" y="1509" width="0.0183%" height="15" fill="rgb(228,1,33)" fg:x="212922332361" fg:w="56220765"/><text x="69.4854%" y="1519.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (39,942,851 samples, 0.01%)</title><rect x="69.2593%" y="1349" width="0.0130%" height="15" fill="rgb(214,50,23)" fg:x="212995787040" fg:w="39942851"/><text x="69.5093%" y="1359.50"></text></g><g><title>[perf-183340.map] (38,791,397 samples, 0.01%)</title><rect x="69.2596%" y="1333" width="0.0126%" height="15" fill="rgb(210,62,9)" fg:x="212996938494" fg:w="38791397"/><text x="69.5096%" y="1343.50"></text></g><g><title>[perf-183340.map] (38,791,397 samples, 0.01%)</title><rect x="69.2596%" y="1317" width="0.0126%" height="15" fill="rgb(210,104,37)" fg:x="212996938494" fg:w="38791397"/><text x="69.5096%" y="1327.50"></text></g><g><title>[perf-183340.map] (38,791,397 samples, 0.01%)</title><rect x="69.2596%" y="1301" width="0.0126%" height="15" fill="rgb(232,104,43)" fg:x="212996938494" fg:w="38791397"/><text x="69.5096%" y="1311.50"></text></g><g><title>[perf-183340.map] (38,791,397 samples, 0.01%)</title><rect x="69.2596%" y="1285" width="0.0126%" height="15" fill="rgb(244,52,6)" fg:x="212996938494" fg:w="38791397"/><text x="69.5096%" y="1295.50"></text></g><g><title>[perf-183340.map] (38,791,397 samples, 0.01%)</title><rect x="69.2596%" y="1269" width="0.0126%" height="15" fill="rgb(211,174,52)" fg:x="212996938494" fg:w="38791397"/><text x="69.5096%" y="1279.50"></text></g><g><title>[perf-183340.map] (38,791,397 samples, 0.01%)</title><rect x="69.2596%" y="1253" width="0.0126%" height="15" fill="rgb(229,48,4)" fg:x="212996938494" fg:w="38791397"/><text x="69.5096%" y="1263.50"></text></g><g><title>[perf-183340.map] (38,791,397 samples, 0.01%)</title><rect x="69.2596%" y="1237" width="0.0126%" height="15" fill="rgb(205,155,16)" fg:x="212996938494" fg:w="38791397"/><text x="69.5096%" y="1247.50"></text></g><g><title>[perf-183340.map] (30,768,823 samples, 0.01%)</title><rect x="69.2622%" y="1221" width="0.0100%" height="15" fill="rgb(211,141,53)" fg:x="213004961068" fg:w="30768823"/><text x="69.5122%" y="1231.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (48,941,198 samples, 0.02%)</title><rect x="69.2582%" y="1493" width="0.0159%" height="15" fill="rgb(240,148,11)" fg:x="212992381634" fg:w="48941198"/><text x="69.5082%" y="1503.50"></text></g><g><title>[perf-183340.map] (48,941,198 samples, 0.02%)</title><rect x="69.2582%" y="1477" width="0.0159%" height="15" fill="rgb(214,45,23)" fg:x="212992381634" fg:w="48941198"/><text x="69.5082%" y="1487.50"></text></g><g><title>[perf-183340.map] (48,941,198 samples, 0.02%)</title><rect x="69.2582%" y="1461" width="0.0159%" height="15" fill="rgb(248,74,26)" fg:x="212992381634" fg:w="48941198"/><text x="69.5082%" y="1471.50"></text></g><g><title>[perf-183340.map] (47,716,427 samples, 0.02%)</title><rect x="69.2586%" y="1445" width="0.0155%" height="15" fill="rgb(218,121,16)" fg:x="212993606405" fg:w="47716427"/><text x="69.5086%" y="1455.50"></text></g><g><title>[perf-183340.map] (47,716,427 samples, 0.02%)</title><rect x="69.2586%" y="1429" width="0.0155%" height="15" fill="rgb(218,10,47)" fg:x="212993606405" fg:w="47716427"/><text x="69.5086%" y="1439.50"></text></g><g><title>[perf-183340.map] (47,716,427 samples, 0.02%)</title><rect x="69.2586%" y="1413" width="0.0155%" height="15" fill="rgb(227,99,14)" fg:x="212993606405" fg:w="47716427"/><text x="69.5086%" y="1423.50"></text></g><g><title>[perf-183340.map] (47,716,427 samples, 0.02%)</title><rect x="69.2586%" y="1397" width="0.0155%" height="15" fill="rgb(229,83,46)" fg:x="212993606405" fg:w="47716427"/><text x="69.5086%" y="1407.50"></text></g><g><title>[perf-183340.map] (46,713,374 samples, 0.02%)</title><rect x="69.2589%" y="1381" width="0.0152%" height="15" fill="rgb(228,25,1)" fg:x="212994609458" fg:w="46713374"/><text x="69.5089%" y="1391.50"></text></g><g><title>[perf-183340.map] (45,535,792 samples, 0.01%)</title><rect x="69.2593%" y="1365" width="0.0148%" height="15" fill="rgb(252,190,15)" fg:x="212995787040" fg:w="45535792"/><text x="69.5093%" y="1375.50"></text></g><g><title>[perf-183340.map] (63,877,048 samples, 0.02%)</title><rect x="69.2537%" y="1621" width="0.0208%" height="15" fill="rgb(213,103,51)" fg:x="212978553126" fg:w="63877048"/><text x="69.5037%" y="1631.50"></text></g><g><title>[perf-183340.map] (63,877,048 samples, 0.02%)</title><rect x="69.2537%" y="1605" width="0.0208%" height="15" fill="rgb(220,38,44)" fg:x="212978553126" fg:w="63877048"/><text x="69.5037%" y="1615.50"></text></g><g><title>[perf-183340.map] (63,877,048 samples, 0.02%)</title><rect x="69.2537%" y="1589" width="0.0208%" height="15" fill="rgb(210,45,26)" fg:x="212978553126" fg:w="63877048"/><text x="69.5037%" y="1599.50"></text></g><g><title>[perf-183340.map] (51,215,599 samples, 0.02%)</title><rect x="69.2578%" y="1573" width="0.0167%" height="15" fill="rgb(205,95,48)" fg:x="212991214575" fg:w="51215599"/><text x="69.5078%" y="1583.50"></text></g><g><title>[perf-183340.map] (51,215,599 samples, 0.02%)</title><rect x="69.2578%" y="1557" width="0.0167%" height="15" fill="rgb(225,179,37)" fg:x="212991214575" fg:w="51215599"/><text x="69.5078%" y="1567.50"></text></g><g><title>[perf-183340.map] (51,215,599 samples, 0.02%)</title><rect x="69.2578%" y="1541" width="0.0167%" height="15" fill="rgb(230,209,3)" fg:x="212991214575" fg:w="51215599"/><text x="69.5078%" y="1551.50"></text></g><g><title>[perf-183340.map] (51,215,599 samples, 0.02%)</title><rect x="69.2578%" y="1525" width="0.0167%" height="15" fill="rgb(248,12,46)" fg:x="212991214575" fg:w="51215599"/><text x="69.5078%" y="1535.50"></text></g><g><title>[perf-183340.map] (50,048,540 samples, 0.02%)</title><rect x="69.2582%" y="1509" width="0.0163%" height="15" fill="rgb(234,18,0)" fg:x="212992381634" fg:w="50048540"/><text x="69.5082%" y="1519.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (35,549,597 samples, 0.01%)</title><rect x="69.2791%" y="1349" width="0.0116%" height="15" fill="rgb(238,197,14)" fg:x="213056862678" fg:w="35549597"/><text x="69.5291%" y="1359.50"></text></g><g><title>[perf-183341.map] (32,103,167 samples, 0.01%)</title><rect x="69.2802%" y="1333" width="0.0104%" height="15" fill="rgb(251,162,48)" fg:x="213060309108" fg:w="32103167"/><text x="69.5302%" y="1343.50"></text></g><g><title>[perf-183341.map] (32,103,167 samples, 0.01%)</title><rect x="69.2802%" y="1317" width="0.0104%" height="15" fill="rgb(237,73,42)" fg:x="213060309108" fg:w="32103167"/><text x="69.5302%" y="1327.50"></text></g><g><title>[perf-183341.map] (32,103,167 samples, 0.01%)</title><rect x="69.2802%" y="1301" width="0.0104%" height="15" fill="rgb(211,108,8)" fg:x="213060309108" fg:w="32103167"/><text x="69.5302%" y="1311.50"></text></g><g><title>[perf-183341.map] (32,103,167 samples, 0.01%)</title><rect x="69.2802%" y="1285" width="0.0104%" height="15" fill="rgb(213,45,22)" fg:x="213060309108" fg:w="32103167"/><text x="69.5302%" y="1295.50"></text></g><g><title>[perf-183341.map] (32,103,167 samples, 0.01%)</title><rect x="69.2802%" y="1269" width="0.0104%" height="15" fill="rgb(252,154,5)" fg:x="213060309108" fg:w="32103167"/><text x="69.5302%" y="1279.50"></text></g><g><title>[perf-183341.map] (30,943,830 samples, 0.01%)</title><rect x="69.2806%" y="1253" width="0.0101%" height="15" fill="rgb(221,79,52)" fg:x="213061468445" fg:w="30943830"/><text x="69.5306%" y="1263.50"></text></g><g><title>[perf-183341.map] (30,943,830 samples, 0.01%)</title><rect x="69.2806%" y="1237" width="0.0101%" height="15" fill="rgb(229,220,36)" fg:x="213061468445" fg:w="30943830"/><text x="69.5306%" y="1247.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (45,641,050 samples, 0.01%)</title><rect x="69.2784%" y="1493" width="0.0148%" height="15" fill="rgb(211,17,16)" fg:x="213054569946" fg:w="45641050"/><text x="69.5284%" y="1503.50"></text></g><g><title>[perf-183341.map] (45,641,050 samples, 0.01%)</title><rect x="69.2784%" y="1477" width="0.0148%" height="15" fill="rgb(222,55,31)" fg:x="213054569946" fg:w="45641050"/><text x="69.5284%" y="1487.50"></text></g><g><title>[perf-183341.map] (45,641,050 samples, 0.01%)</title><rect x="69.2784%" y="1461" width="0.0148%" height="15" fill="rgb(221,221,31)" fg:x="213054569946" fg:w="45641050"/><text x="69.5284%" y="1471.50"></text></g><g><title>[perf-183341.map] (45,641,050 samples, 0.01%)</title><rect x="69.2784%" y="1445" width="0.0148%" height="15" fill="rgb(227,168,26)" fg:x="213054569946" fg:w="45641050"/><text x="69.5284%" y="1455.50"></text></g><g><title>[perf-183341.map] (45,641,050 samples, 0.01%)</title><rect x="69.2784%" y="1429" width="0.0148%" height="15" fill="rgb(224,139,9)" fg:x="213054569946" fg:w="45641050"/><text x="69.5284%" y="1439.50"></text></g><g><title>[perf-183341.map] (45,641,050 samples, 0.01%)</title><rect x="69.2784%" y="1413" width="0.0148%" height="15" fill="rgb(254,172,0)" fg:x="213054569946" fg:w="45641050"/><text x="69.5284%" y="1423.50"></text></g><g><title>[perf-183341.map] (45,641,050 samples, 0.01%)</title><rect x="69.2784%" y="1397" width="0.0148%" height="15" fill="rgb(235,203,1)" fg:x="213054569946" fg:w="45641050"/><text x="69.5284%" y="1407.50"></text></g><g><title>[perf-183341.map] (45,641,050 samples, 0.01%)</title><rect x="69.2784%" y="1381" width="0.0148%" height="15" fill="rgb(216,205,24)" fg:x="213054569946" fg:w="45641050"/><text x="69.5284%" y="1391.50"></text></g><g><title>[perf-183341.map] (44,468,313 samples, 0.01%)</title><rect x="69.2788%" y="1365" width="0.0145%" height="15" fill="rgb(233,24,6)" fg:x="213055742683" fg:w="44468313"/><text x="69.5288%" y="1375.50"></text></g><g><title>[perf-183341.map] (60,036,072 samples, 0.02%)</title><rect x="69.2744%" y="1621" width="0.0195%" height="15" fill="rgb(244,110,9)" fg:x="213042430174" fg:w="60036072"/><text x="69.5244%" y="1631.50"></text></g><g><title>[perf-183341.map] (60,036,072 samples, 0.02%)</title><rect x="69.2744%" y="1605" width="0.0195%" height="15" fill="rgb(239,222,42)" fg:x="213042430174" fg:w="60036072"/><text x="69.5244%" y="1615.50"></text></g><g><title>[perf-183341.map] (60,036,072 samples, 0.02%)</title><rect x="69.2744%" y="1589" width="0.0195%" height="15" fill="rgb(218,145,13)" fg:x="213042430174" fg:w="60036072"/><text x="69.5244%" y="1599.50"></text></g><g><title>[perf-183341.map] (47,896,300 samples, 0.02%)</title><rect x="69.2784%" y="1573" width="0.0156%" height="15" fill="rgb(207,69,11)" fg:x="213054569946" fg:w="47896300"/><text x="69.5284%" y="1583.50"></text></g><g><title>[perf-183341.map] (47,896,300 samples, 0.02%)</title><rect x="69.2784%" y="1557" width="0.0156%" height="15" fill="rgb(220,223,22)" fg:x="213054569946" fg:w="47896300"/><text x="69.5284%" y="1567.50"></text></g><g><title>[perf-183341.map] (47,896,300 samples, 0.02%)</title><rect x="69.2784%" y="1541" width="0.0156%" height="15" fill="rgb(245,102,5)" fg:x="213054569946" fg:w="47896300"/><text x="69.5284%" y="1551.50"></text></g><g><title>[perf-183341.map] (47,896,300 samples, 0.02%)</title><rect x="69.2784%" y="1525" width="0.0156%" height="15" fill="rgb(211,148,2)" fg:x="213054569946" fg:w="47896300"/><text x="69.5284%" y="1535.50"></text></g><g><title>[perf-183341.map] (47,896,300 samples, 0.02%)</title><rect x="69.2784%" y="1509" width="0.0156%" height="15" fill="rgb(241,13,44)" fg:x="213054569946" fg:w="47896300"/><text x="69.5284%" y="1519.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (37,843,393 samples, 0.01%)</title><rect x="69.2992%" y="1349" width="0.0123%" height="15" fill="rgb(219,137,21)" fg:x="213118730522" fg:w="37843393"/><text x="69.5492%" y="1359.50"></text></g><g><title>[perf-183375.map] (35,596,442 samples, 0.01%)</title><rect x="69.3000%" y="1333" width="0.0116%" height="15" fill="rgb(242,206,5)" fg:x="213120977473" fg:w="35596442"/><text x="69.5500%" y="1343.50"></text></g><g><title>[perf-183375.map] (35,596,442 samples, 0.01%)</title><rect x="69.3000%" y="1317" width="0.0116%" height="15" fill="rgb(217,114,22)" fg:x="213120977473" fg:w="35596442"/><text x="69.5500%" y="1327.50"></text></g><g><title>[perf-183375.map] (35,596,442 samples, 0.01%)</title><rect x="69.3000%" y="1301" width="0.0116%" height="15" fill="rgb(253,206,42)" fg:x="213120977473" fg:w="35596442"/><text x="69.5500%" y="1311.50"></text></g><g><title>[perf-183375.map] (35,596,442 samples, 0.01%)</title><rect x="69.3000%" y="1285" width="0.0116%" height="15" fill="rgb(236,102,18)" fg:x="213120977473" fg:w="35596442"/><text x="69.5500%" y="1295.50"></text></g><g><title>[perf-183375.map] (35,596,442 samples, 0.01%)</title><rect x="69.3000%" y="1269" width="0.0116%" height="15" fill="rgb(208,59,49)" fg:x="213120977473" fg:w="35596442"/><text x="69.5500%" y="1279.50"></text></g><g><title>[perf-183375.map] (35,596,442 samples, 0.01%)</title><rect x="69.3000%" y="1253" width="0.0116%" height="15" fill="rgb(215,194,28)" fg:x="213120977473" fg:w="35596442"/><text x="69.5500%" y="1263.50"></text></g><g><title>[perf-183375.map] (34,605,360 samples, 0.01%)</title><rect x="69.3003%" y="1237" width="0.0113%" height="15" fill="rgb(243,207,11)" fg:x="213121968555" fg:w="34605360"/><text x="69.5503%" y="1247.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (45,726,363 samples, 0.01%)</title><rect x="69.2989%" y="1493" width="0.0149%" height="15" fill="rgb(254,179,35)" fg:x="213117715575" fg:w="45726363"/><text x="69.5489%" y="1503.50"></text></g><g><title>[perf-183375.map] (45,726,363 samples, 0.01%)</title><rect x="69.2989%" y="1477" width="0.0149%" height="15" fill="rgb(235,97,3)" fg:x="213117715575" fg:w="45726363"/><text x="69.5489%" y="1487.50"></text></g><g><title>[perf-183375.map] (45,726,363 samples, 0.01%)</title><rect x="69.2989%" y="1461" width="0.0149%" height="15" fill="rgb(215,155,33)" fg:x="213117715575" fg:w="45726363"/><text x="69.5489%" y="1471.50"></text></g><g><title>[perf-183375.map] (45,726,363 samples, 0.01%)</title><rect x="69.2989%" y="1445" width="0.0149%" height="15" fill="rgb(223,128,12)" fg:x="213117715575" fg:w="45726363"/><text x="69.5489%" y="1455.50"></text></g><g><title>[perf-183375.map] (45,726,363 samples, 0.01%)</title><rect x="69.2989%" y="1429" width="0.0149%" height="15" fill="rgb(208,157,18)" fg:x="213117715575" fg:w="45726363"/><text x="69.5489%" y="1439.50"></text></g><g><title>[perf-183375.map] (45,726,363 samples, 0.01%)</title><rect x="69.2989%" y="1413" width="0.0149%" height="15" fill="rgb(249,70,54)" fg:x="213117715575" fg:w="45726363"/><text x="69.5489%" y="1423.50"></text></g><g><title>[perf-183375.map] (45,726,363 samples, 0.01%)</title><rect x="69.2989%" y="1397" width="0.0149%" height="15" fill="rgb(244,118,24)" fg:x="213117715575" fg:w="45726363"/><text x="69.5489%" y="1407.50"></text></g><g><title>[perf-183375.map] (45,726,363 samples, 0.01%)</title><rect x="69.2989%" y="1381" width="0.0149%" height="15" fill="rgb(211,54,0)" fg:x="213117715575" fg:w="45726363"/><text x="69.5489%" y="1391.50"></text></g><g><title>[perf-183375.map] (45,726,363 samples, 0.01%)</title><rect x="69.2989%" y="1365" width="0.0149%" height="15" fill="rgb(245,137,45)" fg:x="213117715575" fg:w="45726363"/><text x="69.5489%" y="1375.50"></text></g><g><title>node::LoadEnvironment (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1973" width="0.1205%" height="15" fill="rgb(232,154,31)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1983.50"></text></g><g><title>node::StartExecution (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1957" width="0.1205%" height="15" fill="rgb(253,6,39)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1967.50"></text></g><g><title>node::StartExecution (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1941" width="0.1205%" height="15" fill="rgb(234,183,24)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1951.50"></text></g><g><title>node::Realm::ExecuteBootstrapper (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1925" width="0.1205%" height="15" fill="rgb(252,84,40)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1935.50"></text></g><g><title>node::builtins::BuiltinLoader::CompileAndCall (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1909" width="0.1205%" height="15" fill="rgb(224,65,2)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1919.50"></text></g><g><title>v8::Object::CallAsFunction (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1893" width="0.1205%" height="15" fill="rgb(229,38,24)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1903.50"></text></g><g><title>v8::internal::Execution::Call (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1877" width="0.1205%" height="15" fill="rgb(218,131,50)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1887.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1861" width="0.1205%" height="15" fill="rgb(233,106,18)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1871.50"></text></g><g><title>Builtins_JSEntry (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1845" width="0.1205%" height="15" fill="rgb(220,216,11)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1855.50"></text></g><g><title>Builtins_JSEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1829" width="0.1205%" height="15" fill="rgb(251,100,45)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1839.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1813" width="0.1205%" height="15" fill="rgb(235,143,32)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1823.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1797" width="0.1205%" height="15" fill="rgb(248,124,34)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1807.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1781" width="0.1205%" height="15" fill="rgb(225,221,4)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1791.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1765" width="0.1205%" height="15" fill="rgb(242,27,43)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1775.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1749" width="0.1205%" height="15" fill="rgb(227,54,8)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1759.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1733" width="0.1205%" height="15" fill="rgb(253,139,49)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1743.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1717" width="0.1205%" height="15" fill="rgb(231,26,43)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1727.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1701" width="0.1205%" height="15" fill="rgb(207,121,39)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1711.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1685" width="0.1205%" height="15" fill="rgb(223,101,35)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1695.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1669" width="0.1205%" height="15" fill="rgb(232,87,23)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1653" width="0.1205%" height="15" fill="rgb(225,180,29)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1663.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (370,546,819 samples, 0.12%)</title><rect x="69.1937%" y="1637" width="0.1205%" height="15" fill="rgb(225,25,17)" fg:x="212794068425" fg:w="370546819"/><text x="69.4437%" y="1647.50"></text></g><g><title>[perf-183375.map] (62,148,998 samples, 0.02%)</title><rect x="69.2940%" y="1621" width="0.0202%" height="15" fill="rgb(223,8,52)" fg:x="213102466246" fg:w="62148998"/><text x="69.5440%" y="1631.50"></text></g><g><title>[perf-183375.map] (62,148,998 samples, 0.02%)</title><rect x="69.2940%" y="1605" width="0.0202%" height="15" fill="rgb(246,42,21)" fg:x="213102466246" fg:w="62148998"/><text x="69.5440%" y="1615.50"></text></g><g><title>[perf-183375.map] (62,148,998 samples, 0.02%)</title><rect x="69.2940%" y="1589" width="0.0202%" height="15" fill="rgb(205,64,43)" fg:x="213102466246" fg:w="62148998"/><text x="69.5440%" y="1599.50"></text></g><g><title>[perf-183375.map] (48,016,920 samples, 0.02%)</title><rect x="69.2985%" y="1573" width="0.0156%" height="15" fill="rgb(221,160,13)" fg:x="213116598324" fg:w="48016920"/><text x="69.5485%" y="1583.50"></text></g><g><title>[perf-183375.map] (48,016,920 samples, 0.02%)</title><rect x="69.2985%" y="1557" width="0.0156%" height="15" fill="rgb(239,58,35)" fg:x="213116598324" fg:w="48016920"/><text x="69.5485%" y="1567.50"></text></g><g><title>[perf-183375.map] (48,016,920 samples, 0.02%)</title><rect x="69.2985%" y="1541" width="0.0156%" height="15" fill="rgb(251,26,40)" fg:x="213116598324" fg:w="48016920"/><text x="69.5485%" y="1551.50"></text></g><g><title>[perf-183375.map] (48,016,920 samples, 0.02%)</title><rect x="69.2985%" y="1525" width="0.0156%" height="15" fill="rgb(247,0,4)" fg:x="213116598324" fg:w="48016920"/><text x="69.5485%" y="1535.50"></text></g><g><title>[perf-183375.map] (48,016,920 samples, 0.02%)</title><rect x="69.2985%" y="1509" width="0.0156%" height="15" fill="rgb(218,130,10)" fg:x="213116598324" fg:w="48016920"/><text x="69.5485%" y="1519.50"></text></g><g><title>node::fs::AfterOpenFileHandle (32,657,191 samples, 0.01%)</title><rect x="69.3177%" y="1877" width="0.0106%" height="15" fill="rgb(239,32,7)" fg:x="213175432590" fg:w="32657191"/><text x="69.5677%" y="1887.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (31,997,276 samples, 0.01%)</title><rect x="69.3612%" y="1637" width="0.0104%" height="15" fill="rgb(210,192,24)" fg:x="213309237819" fg:w="31997276"/><text x="69.6112%" y="1647.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (46,416,940 samples, 0.02%)</title><rect x="69.3587%" y="1653" width="0.0151%" height="15" fill="rgb(226,212,17)" fg:x="213301500868" fg:w="46416940"/><text x="69.6087%" y="1663.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (86,172,871 samples, 0.03%)</title><rect x="69.3481%" y="1669" width="0.0280%" height="15" fill="rgb(219,201,28)" fg:x="213269101183" fg:w="86172871"/><text x="69.5981%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (122,611,420 samples, 0.04%)</title><rect x="69.3370%" y="1685" width="0.0399%" height="15" fill="rgb(235,207,41)" fg:x="213234956660" fg:w="122611420"/><text x="69.5870%" y="1695.50"></text></g><g><title>Builtins_AsyncFunctionAwaitResolveClosure (124,794,000 samples, 0.04%)</title><rect x="69.3370%" y="1701" width="0.0406%" height="15" fill="rgb(241,95,54)" fg:x="213234956660" fg:w="124794000"/><text x="69.5870%" y="1711.50"></text></g><g><title>_start (568,055,323 samples, 0.18%)</title><rect x="69.1937%" y="2053" width="0.1847%" height="15" fill="rgb(248,12,23)" fg:x="212794068425" fg:w="568055323"/><text x="69.4437%" y="2063.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (568,055,323 samples, 0.18%)</title><rect x="69.1937%" y="2037" width="0.1847%" height="15" fill="rgb(228,173,4)" fg:x="212794068425" fg:w="568055323"/><text x="69.4437%" y="2047.50"></text></g><g><title>__libc_start_call_main (568,055,323 samples, 0.18%)</title><rect x="69.1937%" y="2021" width="0.1847%" height="15" fill="rgb(254,99,5)" fg:x="212794068425" fg:w="568055323"/><text x="69.4437%" y="2031.50"></text></g><g><title>node::Start (568,055,323 samples, 0.18%)</title><rect x="69.1937%" y="2005" width="0.1847%" height="15" fill="rgb(212,184,17)" fg:x="212794068425" fg:w="568055323"/><text x="69.4437%" y="2015.50"></text></g><g><title>node::NodeMainInstance::Run (568,055,323 samples, 0.18%)</title><rect x="69.1937%" y="1989" width="0.1847%" height="15" fill="rgb(252,174,1)" fg:x="212794068425" fg:w="568055323"/><text x="69.4437%" y="1999.50"></text></g><g><title>node::SpinEventLoopInternal (197,508,504 samples, 0.06%)</title><rect x="69.3142%" y="1973" width="0.0642%" height="15" fill="rgb(241,118,51)" fg:x="213164615244" fg:w="197508504"/><text x="69.5642%" y="1983.50"></text></g><g><title>uv_run (197,508,504 samples, 0.06%)</title><rect x="69.3142%" y="1957" width="0.0642%" height="15" fill="rgb(227,94,47)" fg:x="213164615244" fg:w="197508504"/><text x="69.5642%" y="1967.50"></text></g><g><title>uv__io_poll (197,508,504 samples, 0.06%)</title><rect x="69.3142%" y="1941" width="0.0642%" height="15" fill="rgb(229,104,2)" fg:x="213164615244" fg:w="197508504"/><text x="69.5642%" y="1951.50"></text></g><g><title>uv__async_io.part.0 (197,508,504 samples, 0.06%)</title><rect x="69.3142%" y="1925" width="0.0642%" height="15" fill="rgb(219,28,31)" fg:x="213164615244" fg:w="197508504"/><text x="69.5642%" y="1935.50"></text></g><g><title>uv__work_done (196,406,954 samples, 0.06%)</title><rect x="69.3145%" y="1909" width="0.0639%" height="15" fill="rgb(233,109,36)" fg:x="213165716794" fg:w="196406954"/><text x="69.5645%" y="1919.50"></text></g><g><title>node::MakeLibuvRequestCallback&lt;uv_fs_s, void (*)(uv_fs_s*)&gt;::Wrapper (196,406,954 samples, 0.06%)</title><rect x="69.3145%" y="1893" width="0.0639%" height="15" fill="rgb(246,88,11)" fg:x="213165716794" fg:w="196406954"/><text x="69.5645%" y="1903.50"></text></g><g><title>node::fs::FileHandle::ClosePromise (132,442,527 samples, 0.04%)</title><rect x="69.3353%" y="1877" width="0.0431%" height="15" fill="rgb(209,212,17)" fg:x="213229681221" fg:w="132442527"/><text x="69.5853%" y="1887.50"></text></g><g><title>node::fs::FileHandle::CloseReq::Resolve (132,442,527 samples, 0.04%)</title><rect x="69.3353%" y="1861" width="0.0431%" height="15" fill="rgb(243,59,29)" fg:x="213229681221" fg:w="132442527"/><text x="69.5853%" y="1871.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (132,442,527 samples, 0.04%)</title><rect x="69.3353%" y="1845" width="0.0431%" height="15" fill="rgb(244,205,48)" fg:x="213229681221" fg:w="132442527"/><text x="69.5853%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::Close (132,442,527 samples, 0.04%)</title><rect x="69.3353%" y="1829" width="0.0431%" height="15" fill="rgb(227,30,6)" fg:x="213229681221" fg:w="132442527"/><text x="69.5853%" y="1839.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (127,167,088 samples, 0.04%)</title><rect x="69.3370%" y="1813" width="0.0414%" height="15" fill="rgb(220,205,48)" fg:x="213234956660" fg:w="127167088"/><text x="69.5870%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (127,167,088 samples, 0.04%)</title><rect x="69.3370%" y="1797" width="0.0414%" height="15" fill="rgb(250,94,14)" fg:x="213234956660" fg:w="127167088"/><text x="69.5870%" y="1807.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (127,167,088 samples, 0.04%)</title><rect x="69.3370%" y="1781" width="0.0414%" height="15" fill="rgb(216,119,42)" fg:x="213234956660" fg:w="127167088"/><text x="69.5870%" y="1791.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (127,167,088 samples, 0.04%)</title><rect x="69.3370%" y="1765" width="0.0414%" height="15" fill="rgb(232,155,0)" fg:x="213234956660" fg:w="127167088"/><text x="69.5870%" y="1775.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (127,167,088 samples, 0.04%)</title><rect x="69.3370%" y="1749" width="0.0414%" height="15" fill="rgb(212,24,32)" fg:x="213234956660" fg:w="127167088"/><text x="69.5870%" y="1759.50"></text></g><g><title>Builtins_RunMicrotasks (127,167,088 samples, 0.04%)</title><rect x="69.3370%" y="1733" width="0.0414%" height="15" fill="rgb(216,69,20)" fg:x="213234956660" fg:w="127167088"/><text x="69.5870%" y="1743.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (127,167,088 samples, 0.04%)</title><rect x="69.3370%" y="1717" width="0.0414%" height="15" fill="rgb(229,73,31)" fg:x="213234956660" fg:w="127167088"/><text x="69.5870%" y="1727.50"></text></g><g><title>npm (1,309,436,768 samples, 0.43%)</title><rect x="68.9530%" y="2069" width="0.4258%" height="15" fill="rgb(224,219,20)" fg:x="212053904758" fg:w="1309436768"/><text x="69.2030%" y="2079.50"></text></g><g><title>[perf-183340.map] (44,542,665 samples, 0.01%)</title><rect x="69.3869%" y="2053" width="0.0145%" height="15" fill="rgb(215,146,41)" fg:x="213388290945" fg:w="44542665"/><text x="69.6369%" y="2063.50"></text></g><g><title>[perf-183340.map] (37,505,135 samples, 0.01%)</title><rect x="69.3892%" y="2037" width="0.0122%" height="15" fill="rgb(244,71,31)" fg:x="213395328475" fg:w="37505135"/><text x="69.6392%" y="2047.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (49,544,108 samples, 0.02%)</title><rect x="69.4336%" y="485" width="0.0161%" height="15" fill="rgb(224,24,11)" fg:x="213532065347" fg:w="49544108"/><text x="69.6836%" y="495.50"></text></g><g><title>[perf-183340.map] (46,734,751 samples, 0.02%)</title><rect x="69.4346%" y="469" width="0.0152%" height="15" fill="rgb(229,76,15)" fg:x="213534874704" fg:w="46734751"/><text x="69.6846%" y="479.50"></text></g><g><title>[perf-183340.map] (46,734,751 samples, 0.02%)</title><rect x="69.4346%" y="453" width="0.0152%" height="15" fill="rgb(209,93,2)" fg:x="213534874704" fg:w="46734751"/><text x="69.6846%" y="463.50"></text></g><g><title>[perf-183340.map] (46,734,751 samples, 0.02%)</title><rect x="69.4346%" y="437" width="0.0152%" height="15" fill="rgb(216,200,50)" fg:x="213534874704" fg:w="46734751"/><text x="69.6846%" y="447.50"></text></g><g><title>[perf-183340.map] (46,734,751 samples, 0.02%)</title><rect x="69.4346%" y="421" width="0.0152%" height="15" fill="rgb(211,67,34)" fg:x="213534874704" fg:w="46734751"/><text x="69.6846%" y="431.50"></text></g><g><title>[perf-183340.map] (44,641,538 samples, 0.01%)</title><rect x="69.4352%" y="405" width="0.0145%" height="15" fill="rgb(225,87,47)" fg:x="213536967917" fg:w="44641538"/><text x="69.6852%" y="415.50"></text></g><g><title>[perf-183340.map] (43,721,005 samples, 0.01%)</title><rect x="69.4355%" y="389" width="0.0142%" height="15" fill="rgb(217,185,16)" fg:x="213537888450" fg:w="43721005"/><text x="69.6855%" y="399.50"></text></g><g><title>[perf-183340.map] (42,847,774 samples, 0.01%)</title><rect x="69.4358%" y="373" width="0.0139%" height="15" fill="rgb(205,0,0)" fg:x="213538761681" fg:w="42847774"/><text x="69.6858%" y="383.50"></text></g><g><title>[perf-183340.map] (41,908,033 samples, 0.01%)</title><rect x="69.4361%" y="357" width="0.0136%" height="15" fill="rgb(207,116,45)" fg:x="213539701422" fg:w="41908033"/><text x="69.6861%" y="367.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (94,555,215 samples, 0.03%)</title><rect x="69.4271%" y="629" width="0.0307%" height="15" fill="rgb(221,156,26)" fg:x="213512041398" fg:w="94555215"/><text x="69.6771%" y="639.50"></text></g><g><title>[perf-183340.map] (92,487,717 samples, 0.03%)</title><rect x="69.4278%" y="613" width="0.0301%" height="15" fill="rgb(213,140,4)" fg:x="213514108896" fg:w="92487717"/><text x="69.6778%" y="623.50"></text></g><g><title>[perf-183340.map] (91,391,013 samples, 0.03%)</title><rect x="69.4282%" y="597" width="0.0297%" height="15" fill="rgb(231,224,15)" fg:x="213515205600" fg:w="91391013"/><text x="69.6782%" y="607.50"></text></g><g><title>[perf-183340.map] (88,090,108 samples, 0.03%)</title><rect x="69.4292%" y="581" width="0.0286%" height="15" fill="rgb(244,76,20)" fg:x="213518506505" fg:w="88090108"/><text x="69.6792%" y="591.50"></text></g><g><title>[perf-183340.map] (86,209,747 samples, 0.03%)</title><rect x="69.4298%" y="565" width="0.0280%" height="15" fill="rgb(238,117,7)" fg:x="213520386866" fg:w="86209747"/><text x="69.6798%" y="575.50"></text></g><g><title>[perf-183340.map] (86,209,747 samples, 0.03%)</title><rect x="69.4298%" y="549" width="0.0280%" height="15" fill="rgb(235,1,10)" fg:x="213520386866" fg:w="86209747"/><text x="69.6798%" y="559.50"></text></g><g><title>[perf-183340.map] (82,935,933 samples, 0.03%)</title><rect x="69.4309%" y="533" width="0.0270%" height="15" fill="rgb(216,165,6)" fg:x="213523660680" fg:w="82935933"/><text x="69.6809%" y="543.50"></text></g><g><title>[perf-183340.map] (82,935,933 samples, 0.03%)</title><rect x="69.4309%" y="517" width="0.0270%" height="15" fill="rgb(246,91,35)" fg:x="213523660680" fg:w="82935933"/><text x="69.6809%" y="527.50"></text></g><g><title>[perf-183340.map] (82,044,048 samples, 0.03%)</title><rect x="69.4312%" y="501" width="0.0267%" height="15" fill="rgb(228,96,24)" fg:x="213524552565" fg:w="82044048"/><text x="69.6812%" y="511.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (121,646,074 samples, 0.04%)</title><rect x="69.4244%" y="773" width="0.0396%" height="15" fill="rgb(254,217,53)" fg:x="213503575437" fg:w="121646074"/><text x="69.6744%" y="783.50"></text></g><g><title>[perf-183340.map] (120,709,214 samples, 0.04%)</title><rect x="69.4247%" y="757" width="0.0393%" height="15" fill="rgb(209,60,0)" fg:x="213504512297" fg:w="120709214"/><text x="69.6747%" y="767.50"></text></g><g><title>[perf-183340.map] (120,709,214 samples, 0.04%)</title><rect x="69.4247%" y="741" width="0.0393%" height="15" fill="rgb(250,93,26)" fg:x="213504512297" fg:w="120709214"/><text x="69.6747%" y="751.50"></text></g><g><title>[perf-183340.map] (120,709,214 samples, 0.04%)</title><rect x="69.4247%" y="725" width="0.0393%" height="15" fill="rgb(211,9,40)" fg:x="213504512297" fg:w="120709214"/><text x="69.6747%" y="735.50"></text></g><g><title>[perf-183340.map] (120,709,214 samples, 0.04%)</title><rect x="69.4247%" y="709" width="0.0393%" height="15" fill="rgb(242,57,20)" fg:x="213504512297" fg:w="120709214"/><text x="69.6747%" y="719.50"></text></g><g><title>[perf-183340.map] (120,709,214 samples, 0.04%)</title><rect x="69.4247%" y="693" width="0.0393%" height="15" fill="rgb(248,85,48)" fg:x="213504512297" fg:w="120709214"/><text x="69.6747%" y="703.50"></text></g><g><title>[perf-183340.map] (119,802,852 samples, 0.04%)</title><rect x="69.4250%" y="677" width="0.0390%" height="15" fill="rgb(212,117,2)" fg:x="213505418659" fg:w="119802852"/><text x="69.6750%" y="687.50"></text></g><g><title>[perf-183340.map] (119,802,852 samples, 0.04%)</title><rect x="69.4250%" y="661" width="0.0390%" height="15" fill="rgb(243,19,3)" fg:x="213505418659" fg:w="119802852"/><text x="69.6750%" y="671.50"></text></g><g><title>[perf-183340.map] (115,211,463 samples, 0.04%)</title><rect x="69.4265%" y="645" width="0.0375%" height="15" fill="rgb(232,217,24)" fg:x="213510010048" fg:w="115211463"/><text x="69.6765%" y="655.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (140,008,238 samples, 0.05%)</title><rect x="69.4234%" y="917" width="0.0455%" height="15" fill="rgb(224,175,40)" fg:x="213500620777" fg:w="140008238"/><text x="69.6734%" y="927.50"></text></g><g><title>[perf-183340.map] (140,008,238 samples, 0.05%)</title><rect x="69.4234%" y="901" width="0.0455%" height="15" fill="rgb(212,162,32)" fg:x="213500620777" fg:w="140008238"/><text x="69.6734%" y="911.50"></text></g><g><title>[perf-183340.map] (140,008,238 samples, 0.05%)</title><rect x="69.4234%" y="885" width="0.0455%" height="15" fill="rgb(215,9,4)" fg:x="213500620777" fg:w="140008238"/><text x="69.6734%" y="895.50"></text></g><g><title>[perf-183340.map] (140,008,238 samples, 0.05%)</title><rect x="69.4234%" y="869" width="0.0455%" height="15" fill="rgb(242,42,7)" fg:x="213500620777" fg:w="140008238"/><text x="69.6734%" y="879.50"></text></g><g><title>[perf-183340.map] (140,008,238 samples, 0.05%)</title><rect x="69.4234%" y="853" width="0.0455%" height="15" fill="rgb(242,184,45)" fg:x="213500620777" fg:w="140008238"/><text x="69.6734%" y="863.50"></text></g><g><title>[perf-183340.map] (140,008,238 samples, 0.05%)</title><rect x="69.4234%" y="837" width="0.0455%" height="15" fill="rgb(228,111,51)" fg:x="213500620777" fg:w="140008238"/><text x="69.6734%" y="847.50"></text></g><g><title>[perf-183340.map] (138,931,670 samples, 0.05%)</title><rect x="69.4238%" y="821" width="0.0452%" height="15" fill="rgb(236,147,17)" fg:x="213501697345" fg:w="138931670"/><text x="69.6738%" y="831.50"></text></g><g><title>[perf-183340.map] (138,931,670 samples, 0.05%)</title><rect x="69.4238%" y="805" width="0.0452%" height="15" fill="rgb(210,75,22)" fg:x="213501697345" fg:w="138931670"/><text x="69.6738%" y="815.50"></text></g><g><title>[perf-183340.map] (137,997,127 samples, 0.04%)</title><rect x="69.4241%" y="789" width="0.0449%" height="15" fill="rgb(217,159,45)" fg:x="213502631888" fg:w="137997127"/><text x="69.6741%" y="799.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (158,751,715 samples, 0.05%)</title><rect x="69.4206%" y="1061" width="0.0516%" height="15" fill="rgb(245,165,53)" fg:x="213491880870" fg:w="158751715"/><text x="69.6706%" y="1071.50"></text></g><g><title>[perf-183340.map] (155,156,939 samples, 0.05%)</title><rect x="69.4217%" y="1045" width="0.0505%" height="15" fill="rgb(251,190,50)" fg:x="213495475646" fg:w="155156939"/><text x="69.6717%" y="1055.50"></text></g><g><title>[perf-183340.map] (155,156,939 samples, 0.05%)</title><rect x="69.4217%" y="1029" width="0.0505%" height="15" fill="rgb(208,203,29)" fg:x="213495475646" fg:w="155156939"/><text x="69.6717%" y="1039.50"></text></g><g><title>[perf-183340.map] (155,156,939 samples, 0.05%)</title><rect x="69.4217%" y="1013" width="0.0505%" height="15" fill="rgb(207,209,35)" fg:x="213495475646" fg:w="155156939"/><text x="69.6717%" y="1023.50"></text></g><g><title>[perf-183340.map] (155,156,939 samples, 0.05%)</title><rect x="69.4217%" y="997" width="0.0505%" height="15" fill="rgb(230,144,49)" fg:x="213495475646" fg:w="155156939"/><text x="69.6717%" y="1007.50"></text></g><g><title>[perf-183340.map] (155,156,939 samples, 0.05%)</title><rect x="69.4217%" y="981" width="0.0505%" height="15" fill="rgb(229,31,6)" fg:x="213495475646" fg:w="155156939"/><text x="69.6717%" y="991.50"></text></g><g><title>[perf-183340.map] (155,156,939 samples, 0.05%)</title><rect x="69.4217%" y="965" width="0.0505%" height="15" fill="rgb(251,129,24)" fg:x="213495475646" fg:w="155156939"/><text x="69.6717%" y="975.50"></text></g><g><title>[perf-183340.map] (154,219,616 samples, 0.05%)</title><rect x="69.4221%" y="949" width="0.0501%" height="15" fill="rgb(235,105,15)" fg:x="213496412969" fg:w="154219616"/><text x="69.6721%" y="959.50"></text></g><g><title>[perf-183340.map] (153,144,607 samples, 0.05%)</title><rect x="69.4224%" y="933" width="0.0498%" height="15" fill="rgb(216,52,43)" fg:x="213497487978" fg:w="153144607"/><text x="69.6724%" y="943.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (183,649,128 samples, 0.06%)</title><rect x="69.4180%" y="1205" width="0.0597%" height="15" fill="rgb(238,144,41)" fg:x="213484047082" fg:w="183649128"/><text x="69.6680%" y="1215.50"></text></g><g><title>[perf-183340.map] (182,720,803 samples, 0.06%)</title><rect x="69.4183%" y="1189" width="0.0594%" height="15" fill="rgb(243,63,9)" fg:x="213484975407" fg:w="182720803"/><text x="69.6683%" y="1199.50"></text></g><g><title>[perf-183340.map] (182,720,803 samples, 0.06%)</title><rect x="69.4183%" y="1173" width="0.0594%" height="15" fill="rgb(246,208,1)" fg:x="213484975407" fg:w="182720803"/><text x="69.6683%" y="1183.50"></text></g><g><title>[perf-183340.map] (182,720,803 samples, 0.06%)</title><rect x="69.4183%" y="1157" width="0.0594%" height="15" fill="rgb(233,182,18)" fg:x="213484975407" fg:w="182720803"/><text x="69.6683%" y="1167.50"></text></g><g><title>[perf-183340.map] (182,720,803 samples, 0.06%)</title><rect x="69.4183%" y="1141" width="0.0594%" height="15" fill="rgb(242,224,8)" fg:x="213484975407" fg:w="182720803"/><text x="69.6683%" y="1151.50"></text></g><g><title>[perf-183340.map] (182,720,803 samples, 0.06%)</title><rect x="69.4183%" y="1125" width="0.0594%" height="15" fill="rgb(243,54,37)" fg:x="213484975407" fg:w="182720803"/><text x="69.6683%" y="1135.50"></text></g><g><title>[perf-183340.map] (180,807,586 samples, 0.06%)</title><rect x="69.4190%" y="1109" width="0.0588%" height="15" fill="rgb(233,192,12)" fg:x="213486888624" fg:w="180807586"/><text x="69.6690%" y="1119.50"></text></g><g><title>[perf-183340.map] (180,807,586 samples, 0.06%)</title><rect x="69.4190%" y="1093" width="0.0588%" height="15" fill="rgb(251,192,53)" fg:x="213486888624" fg:w="180807586"/><text x="69.6690%" y="1103.50"></text></g><g><title>[perf-183340.map] (178,904,221 samples, 0.06%)</title><rect x="69.4196%" y="1077" width="0.0582%" height="15" fill="rgb(246,141,26)" fg:x="213488791989" fg:w="178904221"/><text x="69.6696%" y="1087.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (188,555,439 samples, 0.06%)</title><rect x="69.4180%" y="1349" width="0.0613%" height="15" fill="rgb(239,195,19)" fg:x="213484047082" fg:w="188555439"/><text x="69.6680%" y="1359.50"></text></g><g><title>[perf-183340.map] (188,555,439 samples, 0.06%)</title><rect x="69.4180%" y="1333" width="0.0613%" height="15" fill="rgb(241,16,39)" fg:x="213484047082" fg:w="188555439"/><text x="69.6680%" y="1343.50"></text></g><g><title>[perf-183340.map] (188,555,439 samples, 0.06%)</title><rect x="69.4180%" y="1317" width="0.0613%" height="15" fill="rgb(223,13,53)" fg:x="213484047082" fg:w="188555439"/><text x="69.6680%" y="1327.50"></text></g><g><title>[perf-183340.map] (188,555,439 samples, 0.06%)</title><rect x="69.4180%" y="1301" width="0.0613%" height="15" fill="rgb(214,227,0)" fg:x="213484047082" fg:w="188555439"/><text x="69.6680%" y="1311.50"></text></g><g><title>[perf-183340.map] (188,555,439 samples, 0.06%)</title><rect x="69.4180%" y="1285" width="0.0613%" height="15" fill="rgb(228,103,26)" fg:x="213484047082" fg:w="188555439"/><text x="69.6680%" y="1295.50"></text></g><g><title>[perf-183340.map] (188,555,439 samples, 0.06%)</title><rect x="69.4180%" y="1269" width="0.0613%" height="15" fill="rgb(254,177,53)" fg:x="213484047082" fg:w="188555439"/><text x="69.6680%" y="1279.50"></text></g><g><title>[perf-183340.map] (188,555,439 samples, 0.06%)</title><rect x="69.4180%" y="1253" width="0.0613%" height="15" fill="rgb(208,201,34)" fg:x="213484047082" fg:w="188555439"/><text x="69.6680%" y="1263.50"></text></g><g><title>[perf-183340.map] (188,555,439 samples, 0.06%)</title><rect x="69.4180%" y="1237" width="0.0613%" height="15" fill="rgb(212,39,5)" fg:x="213484047082" fg:w="188555439"/><text x="69.6680%" y="1247.50"></text></g><g><title>[perf-183340.map] (188,555,439 samples, 0.06%)</title><rect x="69.4180%" y="1221" width="0.0613%" height="15" fill="rgb(246,117,3)" fg:x="213484047082" fg:w="188555439"/><text x="69.6680%" y="1231.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (196,536,130 samples, 0.06%)</title><rect x="69.4177%" y="1493" width="0.0639%" height="15" fill="rgb(244,118,39)" fg:x="213483011819" fg:w="196536130"/><text x="69.6677%" y="1503.50"></text></g><g><title>[perf-183340.map] (195,500,867 samples, 0.06%)</title><rect x="69.4180%" y="1477" width="0.0636%" height="15" fill="rgb(241,64,10)" fg:x="213484047082" fg:w="195500867"/><text x="69.6680%" y="1487.50"></text></g><g><title>[perf-183340.map] (195,500,867 samples, 0.06%)</title><rect x="69.4180%" y="1461" width="0.0636%" height="15" fill="rgb(229,39,44)" fg:x="213484047082" fg:w="195500867"/><text x="69.6680%" y="1471.50"></text></g><g><title>[perf-183340.map] (195,500,867 samples, 0.06%)</title><rect x="69.4180%" y="1445" width="0.0636%" height="15" fill="rgb(230,226,3)" fg:x="213484047082" fg:w="195500867"/><text x="69.6680%" y="1455.50"></text></g><g><title>[perf-183340.map] (195,500,867 samples, 0.06%)</title><rect x="69.4180%" y="1429" width="0.0636%" height="15" fill="rgb(222,13,42)" fg:x="213484047082" fg:w="195500867"/><text x="69.6680%" y="1439.50"></text></g><g><title>[perf-183340.map] (195,500,867 samples, 0.06%)</title><rect x="69.4180%" y="1413" width="0.0636%" height="15" fill="rgb(247,180,54)" fg:x="213484047082" fg:w="195500867"/><text x="69.6680%" y="1423.50"></text></g><g><title>[perf-183340.map] (195,500,867 samples, 0.06%)</title><rect x="69.4180%" y="1397" width="0.0636%" height="15" fill="rgb(205,96,16)" fg:x="213484047082" fg:w="195500867"/><text x="69.6680%" y="1407.50"></text></g><g><title>[perf-183340.map] (195,500,867 samples, 0.06%)</title><rect x="69.4180%" y="1381" width="0.0636%" height="15" fill="rgb(205,100,21)" fg:x="213484047082" fg:w="195500867"/><text x="69.6680%" y="1391.50"></text></g><g><title>[perf-183340.map] (195,500,867 samples, 0.06%)</title><rect x="69.4180%" y="1365" width="0.0636%" height="15" fill="rgb(248,51,4)" fg:x="213484047082" fg:w="195500867"/><text x="69.6680%" y="1375.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (207,802,551 samples, 0.07%)</title><rect x="69.4144%" y="1637" width="0.0676%" height="15" fill="rgb(217,197,30)" fg:x="213472810156" fg:w="207802551"/><text x="69.6644%" y="1647.50"></text></g><g><title>[perf-183340.map] (197,600,888 samples, 0.06%)</title><rect x="69.4177%" y="1621" width="0.0643%" height="15" fill="rgb(240,179,40)" fg:x="213483011819" fg:w="197600888"/><text x="69.6677%" y="1631.50"></text></g><g><title>[perf-183340.map] (197,600,888 samples, 0.06%)</title><rect x="69.4177%" y="1605" width="0.0643%" height="15" fill="rgb(212,185,35)" fg:x="213483011819" fg:w="197600888"/><text x="69.6677%" y="1615.50"></text></g><g><title>[perf-183340.map] (197,600,888 samples, 0.06%)</title><rect x="69.4177%" y="1589" width="0.0643%" height="15" fill="rgb(251,222,31)" fg:x="213483011819" fg:w="197600888"/><text x="69.6677%" y="1599.50"></text></g><g><title>[perf-183340.map] (197,600,888 samples, 0.06%)</title><rect x="69.4177%" y="1573" width="0.0643%" height="15" fill="rgb(208,140,36)" fg:x="213483011819" fg:w="197600888"/><text x="69.6677%" y="1583.50"></text></g><g><title>[perf-183340.map] (197,600,888 samples, 0.06%)</title><rect x="69.4177%" y="1557" width="0.0643%" height="15" fill="rgb(220,148,1)" fg:x="213483011819" fg:w="197600888"/><text x="69.6677%" y="1567.50"></text></g><g><title>[perf-183340.map] (197,600,888 samples, 0.06%)</title><rect x="69.4177%" y="1541" width="0.0643%" height="15" fill="rgb(254,4,28)" fg:x="213483011819" fg:w="197600888"/><text x="69.6677%" y="1551.50"></text></g><g><title>[perf-183340.map] (197,600,888 samples, 0.06%)</title><rect x="69.4177%" y="1525" width="0.0643%" height="15" fill="rgb(222,185,44)" fg:x="213483011819" fg:w="197600888"/><text x="69.6677%" y="1535.50"></text></g><g><title>[perf-183340.map] (197,600,888 samples, 0.06%)</title><rect x="69.4177%" y="1509" width="0.0643%" height="15" fill="rgb(215,74,39)" fg:x="213483011819" fg:w="197600888"/><text x="69.6677%" y="1519.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (213,421,007 samples, 0.07%)</title><rect x="69.4129%" y="1669" width="0.0694%" height="15" fill="rgb(247,86,4)" fg:x="213468349115" fg:w="213421007"/><text x="69.6629%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (208,959,966 samples, 0.07%)</title><rect x="69.4144%" y="1653" width="0.0679%" height="15" fill="rgb(231,105,32)" fg:x="213472810156" fg:w="208959966"/><text x="69.6644%" y="1663.50"></text></g><g><title>Builtins_AsyncFunctionAwaitResolveClosure (218,518,121 samples, 0.07%)</title><rect x="69.4129%" y="1701" width="0.0711%" height="15" fill="rgb(222,65,35)" fg:x="213468349115" fg:w="218518121"/><text x="69.6629%" y="1711.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (218,518,121 samples, 0.07%)</title><rect x="69.4129%" y="1685" width="0.0711%" height="15" fill="rgb(218,145,35)" fg:x="213468349115" fg:w="218518121"/><text x="69.6629%" y="1695.50"></text></g><g><title>node::fs::AfterMkdirp (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1877" width="0.0725%" height="15" fill="rgb(208,7,15)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1887.50"></text></g><g><title>node::fs::FSReqPromise&lt;node::AliasedBufferBase&lt;double, v8::Float64Array&gt; &gt;::Resolve (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1861" width="0.0725%" height="15" fill="rgb(209,83,13)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1871.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1845" width="0.0725%" height="15" fill="rgb(218,3,10)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::Close (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1829" width="0.0725%" height="15" fill="rgb(211,219,4)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1839.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1813" width="0.0725%" height="15" fill="rgb(228,194,12)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1797" width="0.0725%" height="15" fill="rgb(210,175,7)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1807.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1781" width="0.0725%" height="15" fill="rgb(243,132,6)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1791.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1765" width="0.0725%" height="15" fill="rgb(207,72,18)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1775.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1749" width="0.0725%" height="15" fill="rgb(236,1,18)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1759.50"></text></g><g><title>Builtins_RunMicrotasks (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1733" width="0.0725%" height="15" fill="rgb(227,0,18)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1743.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (222,976,365 samples, 0.07%)</title><rect x="69.4129%" y="1717" width="0.0725%" height="15" fill="rgb(247,37,5)" fg:x="213468349115" fg:w="222976365"/><text x="69.6629%" y="1727.50"></text></g><g><title>OSSL_DECODER_CTX_new_for_pkey (37,276,487 samples, 0.01%)</title><rect x="69.4960%" y="1397" width="0.0121%" height="15" fill="rgb(237,179,24)" fg:x="213723846078" fg:w="37276487"/><text x="69.7460%" y="1407.50"></text></g><g><title>ASN1_item_d2i (42,972,986 samples, 0.01%)</title><rect x="69.4953%" y="1541" width="0.0140%" height="15" fill="rgb(226,53,20)" fg:x="213721555252" fg:w="42972986"/><text x="69.7453%" y="1551.50"></text></g><g><title>asn1_item_embed_d2i (42,972,986 samples, 0.01%)</title><rect x="69.4953%" y="1525" width="0.0140%" height="15" fill="rgb(247,75,7)" fg:x="213721555252" fg:w="42972986"/><text x="69.7453%" y="1535.50"></text></g><g><title>asn1_template_ex_d2i (42,972,986 samples, 0.01%)</title><rect x="69.4953%" y="1509" width="0.0140%" height="15" fill="rgb(233,96,12)" fg:x="213721555252" fg:w="42972986"/><text x="69.7453%" y="1519.50"></text></g><g><title>asn1_template_noexp_d2i (42,972,986 samples, 0.01%)</title><rect x="69.4953%" y="1493" width="0.0140%" height="15" fill="rgb(224,125,0)" fg:x="213721555252" fg:w="42972986"/><text x="69.7453%" y="1503.50"></text></g><g><title>asn1_item_embed_d2i (42,972,986 samples, 0.01%)</title><rect x="69.4953%" y="1477" width="0.0140%" height="15" fill="rgb(224,92,25)" fg:x="213721555252" fg:w="42972986"/><text x="69.7453%" y="1487.50"></text></g><g><title>asn1_template_ex_d2i (41,820,388 samples, 0.01%)</title><rect x="69.4956%" y="1461" width="0.0136%" height="15" fill="rgb(224,42,24)" fg:x="213722707850" fg:w="41820388"/><text x="69.7456%" y="1471.50"></text></g><g><title>asn1_template_noexp_d2i (41,820,388 samples, 0.01%)</title><rect x="69.4956%" y="1445" width="0.0136%" height="15" fill="rgb(234,132,49)" fg:x="213722707850" fg:w="41820388"/><text x="69.7456%" y="1455.50"></text></g><g><title>asn1_item_embed_d2i (41,820,388 samples, 0.01%)</title><rect x="69.4956%" y="1429" width="0.0136%" height="15" fill="rgb(248,100,35)" fg:x="213722707850" fg:w="41820388"/><text x="69.7456%" y="1439.50"></text></g><g><title>x509_pubkey_ex_d2i_ex (40,682,160 samples, 0.01%)</title><rect x="69.4960%" y="1413" width="0.0132%" height="15" fill="rgb(239,94,40)" fg:x="213723846078" fg:w="40682160"/><text x="69.7460%" y="1423.50"></text></g><g><title>PEM_ASN1_read_bio (44,062,147 samples, 0.01%)</title><rect x="69.4953%" y="1557" width="0.0143%" height="15" fill="rgb(235,139,28)" fg:x="213721555252" fg:w="44062147"/><text x="69.7453%" y="1567.50"></text></g><g><title>Builtins_CallApiCallbackGeneric (45,251,945 samples, 0.01%)</title><rect x="69.4953%" y="1605" width="0.0147%" height="15" fill="rgb(217,144,7)" fg:x="213721555252" fg:w="45251945"/><text x="69.7453%" y="1615.50"></text></g><g><title>node::crypto::SecureContext::AddRootCerts (45,251,945 samples, 0.01%)</title><rect x="69.4953%" y="1589" width="0.0147%" height="15" fill="rgb(227,55,4)" fg:x="213721555252" fg:w="45251945"/><text x="69.7453%" y="1599.50"></text></g><g><title>node::crypto::NewRootCertStore (45,251,945 samples, 0.01%)</title><rect x="69.4953%" y="1573" width="0.0147%" height="15" fill="rgb(252,82,54)" fg:x="213721555252" fg:w="45251945"/><text x="69.7453%" y="1583.50"></text></g><g><title>node::fs::AfterOpenFileHandle (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1877" width="0.0257%" height="15" fill="rgb(245,172,4)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1887.50"></text></g><g><title>node::fs::FSReqAfterScope::Reject (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1861" width="0.0257%" height="15" fill="rgb(207,26,27)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1871.50"></text></g><g><title>node::fs::FSReqPromise&lt;node::AliasedBufferBase&lt;double, v8::Float64Array&gt; &gt;::Reject (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1845" width="0.0257%" height="15" fill="rgb(252,98,18)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1829" width="0.0257%" height="15" fill="rgb(244,8,26)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1839.50"></text></g><g><title>node::InternalCallbackScope::Close (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1813" width="0.0257%" height="15" fill="rgb(237,173,45)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1797" width="0.0257%" height="15" fill="rgb(208,213,49)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1807.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1781" width="0.0257%" height="15" fill="rgb(212,122,37)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1791.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1765" width="0.0257%" height="15" fill="rgb(213,80,17)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1775.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1749" width="0.0257%" height="15" fill="rgb(206,210,43)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1759.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1733" width="0.0257%" height="15" fill="rgb(229,214,3)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1743.50"></text></g><g><title>Builtins_RunMicrotasks (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1717" width="0.0257%" height="15" fill="rgb(235,213,29)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1727.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (79,160,707 samples, 0.03%)</title><rect x="69.4854%" y="1701" width="0.0257%" height="15" fill="rgb(248,135,26)" fg:x="213691325480" fg:w="79160707"/><text x="69.7354%" y="1711.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (74,310,328 samples, 0.02%)</title><rect x="69.4870%" y="1685" width="0.0242%" height="15" fill="rgb(242,188,12)" fg:x="213696175859" fg:w="74310328"/><text x="69.7370%" y="1695.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (73,294,427 samples, 0.02%)</title><rect x="69.4873%" y="1669" width="0.0238%" height="15" fill="rgb(245,38,12)" fg:x="213697191760" fg:w="73294427"/><text x="69.7373%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (70,835,092 samples, 0.02%)</title><rect x="69.4881%" y="1653" width="0.0230%" height="15" fill="rgb(218,42,13)" fg:x="213699651095" fg:w="70835092"/><text x="69.7381%" y="1663.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (49,970,228 samples, 0.02%)</title><rect x="69.4949%" y="1637" width="0.0162%" height="15" fill="rgb(238,132,49)" fg:x="213720515959" fg:w="49970228"/><text x="69.7449%" y="1647.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (48,930,935 samples, 0.02%)</title><rect x="69.4953%" y="1621" width="0.0159%" height="15" fill="rgb(209,196,19)" fg:x="213721555252" fg:w="48930935"/><text x="69.7453%" y="1631.50"></text></g><g><title>Builtins_AsyncFunctionAwaitResolveClosure (40,284,117 samples, 0.01%)</title><rect x="69.5135%" y="1701" width="0.0131%" height="15" fill="rgb(244,131,22)" fg:x="213777699246" fg:w="40284117"/><text x="69.7635%" y="1711.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (40,284,117 samples, 0.01%)</title><rect x="69.5135%" y="1685" width="0.0131%" height="15" fill="rgb(223,18,34)" fg:x="213777699246" fg:w="40284117"/><text x="69.7635%" y="1695.50"></text></g><g><title>node::MakeLibuvRequestCallback&lt;uv_fs_s, void (*)(uv_fs_s*)&gt;::Wrapper (361,229,622 samples, 0.12%)</title><rect x="69.4095%" y="1893" width="0.1175%" height="15" fill="rgb(252,124,54)" fg:x="213457871323" fg:w="361229622"/><text x="69.6595%" y="1903.50"></text></g><g><title>node::fs::FileHandle::ClosePromise (43,869,351 samples, 0.01%)</title><rect x="69.5127%" y="1877" width="0.0143%" height="15" fill="rgb(229,106,42)" fg:x="213775231594" fg:w="43869351"/><text x="69.7627%" y="1887.50"></text></g><g><title>node::fs::FileHandle::CloseReq::Resolve (43,869,351 samples, 0.01%)</title><rect x="69.5127%" y="1861" width="0.0143%" height="15" fill="rgb(221,129,1)" fg:x="213775231594" fg:w="43869351"/><text x="69.7627%" y="1871.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (43,869,351 samples, 0.01%)</title><rect x="69.5127%" y="1845" width="0.0143%" height="15" fill="rgb(229,74,15)" fg:x="213775231594" fg:w="43869351"/><text x="69.7627%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::Close (43,869,351 samples, 0.01%)</title><rect x="69.5127%" y="1829" width="0.0143%" height="15" fill="rgb(210,206,50)" fg:x="213775231594" fg:w="43869351"/><text x="69.7627%" y="1839.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (41,401,699 samples, 0.01%)</title><rect x="69.5135%" y="1813" width="0.0135%" height="15" fill="rgb(251,114,31)" fg:x="213777699246" fg:w="41401699"/><text x="69.7635%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (41,401,699 samples, 0.01%)</title><rect x="69.5135%" y="1797" width="0.0135%" height="15" fill="rgb(215,225,28)" fg:x="213777699246" fg:w="41401699"/><text x="69.7635%" y="1807.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (41,401,699 samples, 0.01%)</title><rect x="69.5135%" y="1781" width="0.0135%" height="15" fill="rgb(237,109,14)" fg:x="213777699246" fg:w="41401699"/><text x="69.7635%" y="1791.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (41,401,699 samples, 0.01%)</title><rect x="69.5135%" y="1765" width="0.0135%" height="15" fill="rgb(230,13,37)" fg:x="213777699246" fg:w="41401699"/><text x="69.7635%" y="1775.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (41,401,699 samples, 0.01%)</title><rect x="69.5135%" y="1749" width="0.0135%" height="15" fill="rgb(231,40,28)" fg:x="213777699246" fg:w="41401699"/><text x="69.7635%" y="1759.50"></text></g><g><title>Builtins_RunMicrotasks (41,401,699 samples, 0.01%)</title><rect x="69.5135%" y="1733" width="0.0135%" height="15" fill="rgb(231,202,18)" fg:x="213777699246" fg:w="41401699"/><text x="69.7635%" y="1743.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (41,401,699 samples, 0.01%)</title><rect x="69.5135%" y="1717" width="0.0135%" height="15" fill="rgb(225,33,18)" fg:x="213777699246" fg:w="41401699"/><text x="69.7635%" y="1727.50"></text></g><g><title>uv__async_io.part.0 (370,730,342 samples, 0.12%)</title><rect x="69.4076%" y="1925" width="0.1205%" height="15" fill="rgb(223,64,47)" fg:x="213451884344" fg:w="370730342"/><text x="69.6576%" y="1935.50"></text></g><g><title>uv__work_done (364,743,363 samples, 0.12%)</title><rect x="69.4095%" y="1909" width="0.1186%" height="15" fill="rgb(234,114,13)" fg:x="213457871323" fg:w="364743363"/><text x="69.6595%" y="1919.50"></text></g><g><title>uv__io_poll (413,254,270 samples, 0.13%)</title><rect x="69.4076%" y="1941" width="0.1344%" height="15" fill="rgb(248,56,40)" fg:x="213451884344" fg:w="413254270"/><text x="69.6576%" y="1951.50"></text></g><g><title>uv__stream_io (42,523,928 samples, 0.01%)</title><rect x="69.5281%" y="1925" width="0.0138%" height="15" fill="rgb(221,194,21)" fg:x="213822614686" fg:w="42523928"/><text x="69.7781%" y="1935.50"></text></g><g><title>uv__read (41,345,202 samples, 0.01%)</title><rect x="69.5285%" y="1909" width="0.0134%" height="15" fill="rgb(242,108,46)" fg:x="213823793412" fg:w="41345202"/><text x="69.7785%" y="1919.50"></text></g><g><title>node::LibuvStreamWrap::ReadStart (41,345,202 samples, 0.01%)</title><rect x="69.5285%" y="1893" width="0.0134%" height="15" fill="rgb(220,106,10)" fg:x="213823793412" fg:w="41345202"/><text x="69.7785%" y="1903.50"></text></g><g><title>node::LibuvStreamWrap::OnUvRead (41,345,202 samples, 0.01%)</title><rect x="69.5285%" y="1877" width="0.0134%" height="15" fill="rgb(211,88,4)" fg:x="213823793412" fg:w="41345202"/><text x="69.7785%" y="1887.50"></text></g><g><title>node::crypto::TLSWrap::OnStreamRead (41,345,202 samples, 0.01%)</title><rect x="69.5285%" y="1861" width="0.0134%" height="15" fill="rgb(214,95,34)" fg:x="213823793412" fg:w="41345202"/><text x="69.7785%" y="1871.50"></text></g><g><title>node::crypto::TLSWrap::ClearOut (41,345,202 samples, 0.01%)</title><rect x="69.5285%" y="1845" width="0.0134%" height="15" fill="rgb(250,160,33)" fg:x="213823793412" fg:w="41345202"/><text x="69.7785%" y="1855.50"></text></g><g><title>_start (416,616,966 samples, 0.14%)</title><rect x="69.4072%" y="2053" width="0.1355%" height="15" fill="rgb(225,29,10)" fg:x="213450796881" fg:w="416616966"/><text x="69.6572%" y="2063.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (416,616,966 samples, 0.14%)</title><rect x="69.4072%" y="2037" width="0.1355%" height="15" fill="rgb(224,28,30)" fg:x="213450796881" fg:w="416616966"/><text x="69.6572%" y="2047.50"></text></g><g><title>__libc_start_call_main (416,616,966 samples, 0.14%)</title><rect x="69.4072%" y="2021" width="0.1355%" height="15" fill="rgb(231,77,4)" fg:x="213450796881" fg:w="416616966"/><text x="69.6572%" y="2031.50"></text></g><g><title>node::Start (416,616,966 samples, 0.14%)</title><rect x="69.4072%" y="2005" width="0.1355%" height="15" fill="rgb(209,63,21)" fg:x="213450796881" fg:w="416616966"/><text x="69.6572%" y="2015.50"></text></g><g><title>node::NodeMainInstance::Run (416,616,966 samples, 0.14%)</title><rect x="69.4072%" y="1989" width="0.1355%" height="15" fill="rgb(226,22,11)" fg:x="213450796881" fg:w="416616966"/><text x="69.6572%" y="1999.50"></text></g><g><title>node::SpinEventLoopInternal (416,616,966 samples, 0.14%)</title><rect x="69.4072%" y="1973" width="0.1355%" height="15" fill="rgb(216,82,30)" fg:x="213450796881" fg:w="416616966"/><text x="69.6572%" y="1983.50"></text></g><g><title>uv_run (416,616,966 samples, 0.14%)</title><rect x="69.4072%" y="1957" width="0.1355%" height="15" fill="rgb(246,227,38)" fg:x="213450796881" fg:w="416616966"/><text x="69.6572%" y="1967.50"></text></g><g><title>npm_info_@tailw (546,280,059 samples, 0.18%)</title><rect x="69.3788%" y="2069" width="0.1776%" height="15" fill="rgb(251,203,53)" fg:x="213363341526" fg:w="546280059"/><text x="69.6288%" y="2079.50"></text></g><g><title>[perf-183341.map] (44,437,202 samples, 0.01%)</title><rect x="69.5628%" y="2053" width="0.0144%" height="15" fill="rgb(254,101,1)" fg:x="213929320706" fg:w="44437202"/><text x="69.8128%" y="2063.50"></text></g><g><title>[perf-183341.map] (41,474,459 samples, 0.01%)</title><rect x="69.5638%" y="2037" width="0.0135%" height="15" fill="rgb(241,180,5)" fg:x="213932283449" fg:w="41474459"/><text x="69.8138%" y="2047.50"></text></g><g><title>[perf-183341.map] (35,040,166 samples, 0.01%)</title><rect x="69.5659%" y="2021" width="0.0114%" height="15" fill="rgb(218,168,4)" fg:x="213938717742" fg:w="35040166"/><text x="69.8159%" y="2031.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (49,776,056 samples, 0.02%)</title><rect x="69.6081%" y="485" width="0.0162%" height="15" fill="rgb(224,223,32)" fg:x="214068535623" fg:w="49776056"/><text x="69.8581%" y="495.50"></text></g><g><title>[perf-183341.map] (46,020,127 samples, 0.01%)</title><rect x="69.6093%" y="469" width="0.0150%" height="15" fill="rgb(236,106,22)" fg:x="214072291552" fg:w="46020127"/><text x="69.8593%" y="479.50"></text></g><g><title>[perf-183341.map] (45,094,081 samples, 0.01%)</title><rect x="69.6096%" y="453" width="0.0147%" height="15" fill="rgb(206,121,5)" fg:x="214073217598" fg:w="45094081"/><text x="69.8596%" y="463.50"></text></g><g><title>[perf-183341.map] (44,153,907 samples, 0.01%)</title><rect x="69.6099%" y="437" width="0.0144%" height="15" fill="rgb(233,87,28)" fg:x="214074157772" fg:w="44153907"/><text x="69.8599%" y="447.50"></text></g><g><title>[perf-183341.map] (43,330,452 samples, 0.01%)</title><rect x="69.6102%" y="421" width="0.0141%" height="15" fill="rgb(236,137,17)" fg:x="214074981227" fg:w="43330452"/><text x="69.8602%" y="431.50"></text></g><g><title>[perf-183341.map] (43,330,452 samples, 0.01%)</title><rect x="69.6102%" y="405" width="0.0141%" height="15" fill="rgb(209,183,38)" fg:x="214074981227" fg:w="43330452"/><text x="69.8602%" y="415.50"></text></g><g><title>[perf-183341.map] (43,330,452 samples, 0.01%)</title><rect x="69.6102%" y="389" width="0.0141%" height="15" fill="rgb(206,162,44)" fg:x="214074981227" fg:w="43330452"/><text x="69.8602%" y="399.50"></text></g><g><title>[perf-183341.map] (42,454,168 samples, 0.01%)</title><rect x="69.6105%" y="373" width="0.0138%" height="15" fill="rgb(237,70,39)" fg:x="214075857511" fg:w="42454168"/><text x="69.8605%" y="383.50"></text></g><g><title>[perf-183341.map] (40,446,838 samples, 0.01%)</title><rect x="69.6111%" y="357" width="0.0132%" height="15" fill="rgb(212,176,5)" fg:x="214077864841" fg:w="40446838"/><text x="69.8611%" y="367.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (91,709,289 samples, 0.03%)</title><rect x="69.5996%" y="629" width="0.0298%" height="15" fill="rgb(232,95,16)" fg:x="214042298511" fg:w="91709289"/><text x="69.8496%" y="639.50"></text></g><g><title>[perf-183341.map] (87,496,310 samples, 0.03%)</title><rect x="69.6009%" y="613" width="0.0285%" height="15" fill="rgb(219,115,35)" fg:x="214046511490" fg:w="87496310"/><text x="69.8509%" y="623.50"></text></g><g><title>[perf-183341.map] (85,555,425 samples, 0.03%)</title><rect x="69.6016%" y="597" width="0.0278%" height="15" fill="rgb(251,67,27)" fg:x="214048452375" fg:w="85555425"/><text x="69.8516%" y="607.50"></text></g><g><title>[perf-183341.map] (83,561,761 samples, 0.03%)</title><rect x="69.6022%" y="581" width="0.0272%" height="15" fill="rgb(222,95,40)" fg:x="214050446039" fg:w="83561761"/><text x="69.8522%" y="591.50"></text></g><g><title>[perf-183341.map] (83,561,761 samples, 0.03%)</title><rect x="69.6022%" y="565" width="0.0272%" height="15" fill="rgb(250,35,16)" fg:x="214050446039" fg:w="83561761"/><text x="69.8522%" y="575.50"></text></g><g><title>[perf-183341.map] (82,529,838 samples, 0.03%)</title><rect x="69.6025%" y="549" width="0.0268%" height="15" fill="rgb(224,86,44)" fg:x="214051477962" fg:w="82529838"/><text x="69.8525%" y="559.50"></text></g><g><title>[perf-183341.map] (81,484,201 samples, 0.03%)</title><rect x="69.6029%" y="533" width="0.0265%" height="15" fill="rgb(237,53,53)" fg:x="214052523599" fg:w="81484201"/><text x="69.8529%" y="543.50"></text></g><g><title>[perf-183341.map] (77,307,656 samples, 0.03%)</title><rect x="69.6042%" y="517" width="0.0251%" height="15" fill="rgb(208,171,33)" fg:x="214056700144" fg:w="77307656"/><text x="69.8542%" y="527.50"></text></g><g><title>[perf-183341.map] (76,392,921 samples, 0.02%)</title><rect x="69.6045%" y="501" width="0.0248%" height="15" fill="rgb(222,64,27)" fg:x="214057614879" fg:w="76392921"/><text x="69.8545%" y="511.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (119,979,416 samples, 0.04%)</title><rect x="69.5980%" y="773" width="0.0390%" height="15" fill="rgb(221,121,35)" fg:x="214037642269" fg:w="119979416"/><text x="69.8480%" y="783.50"></text></g><g><title>[perf-183341.map] (119,094,861 samples, 0.04%)</title><rect x="69.5983%" y="757" width="0.0387%" height="15" fill="rgb(228,137,42)" fg:x="214038526824" fg:w="119094861"/><text x="69.8483%" y="767.50"></text></g><g><title>[perf-183341.map] (119,094,861 samples, 0.04%)</title><rect x="69.5983%" y="741" width="0.0387%" height="15" fill="rgb(227,54,21)" fg:x="214038526824" fg:w="119094861"/><text x="69.8483%" y="751.50"></text></g><g><title>[perf-183341.map] (119,094,861 samples, 0.04%)</title><rect x="69.5983%" y="725" width="0.0387%" height="15" fill="rgb(240,168,33)" fg:x="214038526824" fg:w="119094861"/><text x="69.8483%" y="735.50"></text></g><g><title>[perf-183341.map] (119,094,861 samples, 0.04%)</title><rect x="69.5983%" y="709" width="0.0387%" height="15" fill="rgb(243,159,6)" fg:x="214038526824" fg:w="119094861"/><text x="69.8483%" y="719.50"></text></g><g><title>[perf-183341.map] (118,120,885 samples, 0.04%)</title><rect x="69.5986%" y="693" width="0.0384%" height="15" fill="rgb(205,211,41)" fg:x="214039500800" fg:w="118120885"/><text x="69.8486%" y="703.50"></text></g><g><title>[perf-183341.map] (117,235,703 samples, 0.04%)</title><rect x="69.5989%" y="677" width="0.0381%" height="15" fill="rgb(253,30,1)" fg:x="214040385982" fg:w="117235703"/><text x="69.8489%" y="687.50"></text></g><g><title>[perf-183341.map] (116,256,939 samples, 0.04%)</title><rect x="69.5993%" y="661" width="0.0378%" height="15" fill="rgb(226,80,18)" fg:x="214041364746" fg:w="116256939"/><text x="69.8493%" y="671.50"></text></g><g><title>[perf-183341.map] (115,323,174 samples, 0.04%)</title><rect x="69.5996%" y="645" width="0.0375%" height="15" fill="rgb(253,156,46)" fg:x="214042298511" fg:w="115323174"/><text x="69.8496%" y="655.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (145,438,690 samples, 0.05%)</title><rect x="69.5964%" y="917" width="0.0473%" height="15" fill="rgb(248,87,27)" fg:x="214032697727" fg:w="145438690"/><text x="69.8464%" y="927.50"></text></g><g><title>[perf-183341.map] (145,438,690 samples, 0.05%)</title><rect x="69.5964%" y="901" width="0.0473%" height="15" fill="rgb(227,122,2)" fg:x="214032697727" fg:w="145438690"/><text x="69.8464%" y="911.50"></text></g><g><title>[perf-183341.map] (145,438,690 samples, 0.05%)</title><rect x="69.5964%" y="885" width="0.0473%" height="15" fill="rgb(229,94,39)" fg:x="214032697727" fg:w="145438690"/><text x="69.8464%" y="895.50"></text></g><g><title>[perf-183341.map] (145,438,690 samples, 0.05%)</title><rect x="69.5964%" y="869" width="0.0473%" height="15" fill="rgb(225,173,31)" fg:x="214032697727" fg:w="145438690"/><text x="69.8464%" y="879.50"></text></g><g><title>[perf-183341.map] (145,438,690 samples, 0.05%)</title><rect x="69.5964%" y="853" width="0.0473%" height="15" fill="rgb(239,176,30)" fg:x="214032697727" fg:w="145438690"/><text x="69.8464%" y="863.50"></text></g><g><title>[perf-183341.map] (145,438,690 samples, 0.05%)</title><rect x="69.5964%" y="837" width="0.0473%" height="15" fill="rgb(212,104,21)" fg:x="214032697727" fg:w="145438690"/><text x="69.8464%" y="847.50"></text></g><g><title>[perf-183341.map] (144,338,477 samples, 0.05%)</title><rect x="69.5968%" y="821" width="0.0469%" height="15" fill="rgb(240,209,40)" fg:x="214033797940" fg:w="144338477"/><text x="69.8468%" y="831.50"></text></g><g><title>[perf-183341.map] (143,475,791 samples, 0.05%)</title><rect x="69.5971%" y="805" width="0.0467%" height="15" fill="rgb(234,195,5)" fg:x="214034660626" fg:w="143475791"/><text x="69.8471%" y="815.50"></text></g><g><title>[perf-183341.map] (142,356,615 samples, 0.05%)</title><rect x="69.5974%" y="789" width="0.0463%" height="15" fill="rgb(238,213,1)" fg:x="214035779802" fg:w="142356615"/><text x="69.8474%" y="799.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (167,413,560 samples, 0.05%)</title><rect x="69.5929%" y="1061" width="0.0544%" height="15" fill="rgb(235,182,54)" fg:x="214021743496" fg:w="167413560"/><text x="69.8429%" y="1071.50"></text></g><g><title>[perf-183341.map] (165,469,032 samples, 0.05%)</title><rect x="69.5935%" y="1045" width="0.0538%" height="15" fill="rgb(229,50,46)" fg:x="214023688024" fg:w="165469032"/><text x="69.8435%" y="1055.50"></text></g><g><title>[perf-183341.map] (165,469,032 samples, 0.05%)</title><rect x="69.5935%" y="1029" width="0.0538%" height="15" fill="rgb(219,145,13)" fg:x="214023688024" fg:w="165469032"/><text x="69.8435%" y="1039.50"></text></g><g><title>[perf-183341.map] (165,469,032 samples, 0.05%)</title><rect x="69.5935%" y="1013" width="0.0538%" height="15" fill="rgb(220,226,10)" fg:x="214023688024" fg:w="165469032"/><text x="69.8435%" y="1023.50"></text></g><g><title>[perf-183341.map] (165,469,032 samples, 0.05%)</title><rect x="69.5935%" y="997" width="0.0538%" height="15" fill="rgb(248,47,30)" fg:x="214023688024" fg:w="165469032"/><text x="69.8435%" y="1007.50"></text></g><g><title>[perf-183341.map] (165,469,032 samples, 0.05%)</title><rect x="69.5935%" y="981" width="0.0538%" height="15" fill="rgb(231,209,44)" fg:x="214023688024" fg:w="165469032"/><text x="69.8435%" y="991.50"></text></g><g><title>[perf-183341.map] (164,484,732 samples, 0.05%)</title><rect x="69.5938%" y="965" width="0.0535%" height="15" fill="rgb(209,80,30)" fg:x="214024672324" fg:w="164484732"/><text x="69.8438%" y="975.50"></text></g><g><title>[perf-183341.map] (163,406,176 samples, 0.05%)</title><rect x="69.5942%" y="949" width="0.0531%" height="15" fill="rgb(232,9,14)" fg:x="214025750880" fg:w="163406176"/><text x="69.8442%" y="959.50"></text></g><g><title>[perf-183341.map] (159,467,196 samples, 0.05%)</title><rect x="69.5955%" y="933" width="0.0519%" height="15" fill="rgb(243,91,43)" fg:x="214029689860" fg:w="159467196"/><text x="69.8455%" y="943.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (191,255,823 samples, 0.06%)</title><rect x="69.5911%" y="1205" width="0.0622%" height="15" fill="rgb(231,90,52)" fg:x="214016398584" fg:w="191255823"/><text x="69.8411%" y="1215.50"></text></g><g><title>[perf-183341.map] (190,228,224 samples, 0.06%)</title><rect x="69.5915%" y="1189" width="0.0619%" height="15" fill="rgb(253,192,44)" fg:x="214017426183" fg:w="190228224"/><text x="69.8415%" y="1199.50"></text></g><g><title>[perf-183341.map] (190,228,224 samples, 0.06%)</title><rect x="69.5915%" y="1173" width="0.0619%" height="15" fill="rgb(241,66,31)" fg:x="214017426183" fg:w="190228224"/><text x="69.8415%" y="1183.50"></text></g><g><title>[perf-183341.map] (190,228,224 samples, 0.06%)</title><rect x="69.5915%" y="1157" width="0.0619%" height="15" fill="rgb(235,81,37)" fg:x="214017426183" fg:w="190228224"/><text x="69.8415%" y="1167.50"></text></g><g><title>[perf-183341.map] (190,228,224 samples, 0.06%)</title><rect x="69.5915%" y="1141" width="0.0619%" height="15" fill="rgb(223,221,9)" fg:x="214017426183" fg:w="190228224"/><text x="69.8415%" y="1151.50"></text></g><g><title>[perf-183341.map] (190,228,224 samples, 0.06%)</title><rect x="69.5915%" y="1125" width="0.0619%" height="15" fill="rgb(242,180,7)" fg:x="214017426183" fg:w="190228224"/><text x="69.8415%" y="1135.50"></text></g><g><title>[perf-183341.map] (190,228,224 samples, 0.06%)</title><rect x="69.5915%" y="1109" width="0.0619%" height="15" fill="rgb(243,78,19)" fg:x="214017426183" fg:w="190228224"/><text x="69.8415%" y="1119.50"></text></g><g><title>[perf-183341.map] (189,143,661 samples, 0.06%)</title><rect x="69.5918%" y="1093" width="0.0615%" height="15" fill="rgb(233,23,17)" fg:x="214018510746" fg:w="189143661"/><text x="69.8418%" y="1103.50"></text></g><g><title>[perf-183341.map] (188,069,515 samples, 0.06%)</title><rect x="69.5922%" y="1077" width="0.0612%" height="15" fill="rgb(252,122,45)" fg:x="214019584892" fg:w="188069515"/><text x="69.8422%" y="1087.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (196,811,437 samples, 0.06%)</title><rect x="69.5911%" y="1349" width="0.0640%" height="15" fill="rgb(247,108,20)" fg:x="214016398584" fg:w="196811437"/><text x="69.8411%" y="1359.50"></text></g><g><title>[perf-183341.map] (196,811,437 samples, 0.06%)</title><rect x="69.5911%" y="1333" width="0.0640%" height="15" fill="rgb(235,84,21)" fg:x="214016398584" fg:w="196811437"/><text x="69.8411%" y="1343.50"></text></g><g><title>[perf-183341.map] (196,811,437 samples, 0.06%)</title><rect x="69.5911%" y="1317" width="0.0640%" height="15" fill="rgb(247,129,10)" fg:x="214016398584" fg:w="196811437"/><text x="69.8411%" y="1327.50"></text></g><g><title>[perf-183341.map] (196,811,437 samples, 0.06%)</title><rect x="69.5911%" y="1301" width="0.0640%" height="15" fill="rgb(208,173,14)" fg:x="214016398584" fg:w="196811437"/><text x="69.8411%" y="1311.50"></text></g><g><title>[perf-183341.map] (196,811,437 samples, 0.06%)</title><rect x="69.5911%" y="1285" width="0.0640%" height="15" fill="rgb(236,31,38)" fg:x="214016398584" fg:w="196811437"/><text x="69.8411%" y="1295.50"></text></g><g><title>[perf-183341.map] (196,811,437 samples, 0.06%)</title><rect x="69.5911%" y="1269" width="0.0640%" height="15" fill="rgb(232,65,17)" fg:x="214016398584" fg:w="196811437"/><text x="69.8411%" y="1279.50"></text></g><g><title>[perf-183341.map] (196,811,437 samples, 0.06%)</title><rect x="69.5911%" y="1253" width="0.0640%" height="15" fill="rgb(224,45,49)" fg:x="214016398584" fg:w="196811437"/><text x="69.8411%" y="1263.50"></text></g><g><title>[perf-183341.map] (196,811,437 samples, 0.06%)</title><rect x="69.5911%" y="1237" width="0.0640%" height="15" fill="rgb(225,2,53)" fg:x="214016398584" fg:w="196811437"/><text x="69.8411%" y="1247.50"></text></g><g><title>[perf-183341.map] (196,811,437 samples, 0.06%)</title><rect x="69.5911%" y="1221" width="0.0640%" height="15" fill="rgb(248,210,53)" fg:x="214016398584" fg:w="196811437"/><text x="69.8411%" y="1231.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (203,437,889 samples, 0.07%)</title><rect x="69.5908%" y="1493" width="0.0662%" height="15" fill="rgb(211,1,30)" fg:x="214015255932" fg:w="203437889"/><text x="69.8408%" y="1503.50"></text></g><g><title>[perf-183341.map] (203,437,889 samples, 0.07%)</title><rect x="69.5908%" y="1477" width="0.0662%" height="15" fill="rgb(224,96,15)" fg:x="214015255932" fg:w="203437889"/><text x="69.8408%" y="1487.50"></text></g><g><title>[perf-183341.map] (203,437,889 samples, 0.07%)</title><rect x="69.5908%" y="1461" width="0.0662%" height="15" fill="rgb(252,45,11)" fg:x="214015255932" fg:w="203437889"/><text x="69.8408%" y="1471.50"></text></g><g><title>[perf-183341.map] (203,437,889 samples, 0.07%)</title><rect x="69.5908%" y="1445" width="0.0662%" height="15" fill="rgb(220,125,38)" fg:x="214015255932" fg:w="203437889"/><text x="69.8408%" y="1455.50"></text></g><g><title>[perf-183341.map] (203,437,889 samples, 0.07%)</title><rect x="69.5908%" y="1429" width="0.0662%" height="15" fill="rgb(243,161,33)" fg:x="214015255932" fg:w="203437889"/><text x="69.8408%" y="1439.50"></text></g><g><title>[perf-183341.map] (203,437,889 samples, 0.07%)</title><rect x="69.5908%" y="1413" width="0.0662%" height="15" fill="rgb(248,197,34)" fg:x="214015255932" fg:w="203437889"/><text x="69.8408%" y="1423.50"></text></g><g><title>[perf-183341.map] (203,437,889 samples, 0.07%)</title><rect x="69.5908%" y="1397" width="0.0662%" height="15" fill="rgb(228,165,23)" fg:x="214015255932" fg:w="203437889"/><text x="69.8408%" y="1407.50"></text></g><g><title>[perf-183341.map] (203,437,889 samples, 0.07%)</title><rect x="69.5908%" y="1381" width="0.0662%" height="15" fill="rgb(236,94,38)" fg:x="214015255932" fg:w="203437889"/><text x="69.8408%" y="1391.50"></text></g><g><title>[perf-183341.map] (203,437,889 samples, 0.07%)</title><rect x="69.5908%" y="1365" width="0.0662%" height="15" fill="rgb(220,13,23)" fg:x="214015255932" fg:w="203437889"/><text x="69.8408%" y="1375.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (216,259,626 samples, 0.07%)</title><rect x="69.5869%" y="1637" width="0.0703%" height="15" fill="rgb(234,26,39)" fg:x="214003450320" fg:w="216259626"/><text x="69.8369%" y="1647.50"></text></g><g><title>[perf-183341.map] (204,454,014 samples, 0.07%)</title><rect x="69.5908%" y="1621" width="0.0665%" height="15" fill="rgb(205,117,44)" fg:x="214015255932" fg:w="204454014"/><text x="69.8408%" y="1631.50"></text></g><g><title>[perf-183341.map] (204,454,014 samples, 0.07%)</title><rect x="69.5908%" y="1605" width="0.0665%" height="15" fill="rgb(250,42,2)" fg:x="214015255932" fg:w="204454014"/><text x="69.8408%" y="1615.50"></text></g><g><title>[perf-183341.map] (204,454,014 samples, 0.07%)</title><rect x="69.5908%" y="1589" width="0.0665%" height="15" fill="rgb(223,83,14)" fg:x="214015255932" fg:w="204454014"/><text x="69.8408%" y="1599.50"></text></g><g><title>[perf-183341.map] (204,454,014 samples, 0.07%)</title><rect x="69.5908%" y="1573" width="0.0665%" height="15" fill="rgb(241,147,50)" fg:x="214015255932" fg:w="204454014"/><text x="69.8408%" y="1583.50"></text></g><g><title>[perf-183341.map] (204,454,014 samples, 0.07%)</title><rect x="69.5908%" y="1557" width="0.0665%" height="15" fill="rgb(218,90,6)" fg:x="214015255932" fg:w="204454014"/><text x="69.8408%" y="1567.50"></text></g><g><title>[perf-183341.map] (204,454,014 samples, 0.07%)</title><rect x="69.5908%" y="1541" width="0.0665%" height="15" fill="rgb(210,191,5)" fg:x="214015255932" fg:w="204454014"/><text x="69.8408%" y="1551.50"></text></g><g><title>[perf-183341.map] (204,454,014 samples, 0.07%)</title><rect x="69.5908%" y="1525" width="0.0665%" height="15" fill="rgb(225,139,19)" fg:x="214015255932" fg:w="204454014"/><text x="69.8408%" y="1535.50"></text></g><g><title>[perf-183341.map] (204,454,014 samples, 0.07%)</title><rect x="69.5908%" y="1509" width="0.0665%" height="15" fill="rgb(210,1,33)" fg:x="214015255932" fg:w="204454014"/><text x="69.8408%" y="1519.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (222,967,015 samples, 0.07%)</title><rect x="69.5852%" y="1669" width="0.0725%" height="15" fill="rgb(213,50,3)" fg:x="213998215959" fg:w="222967015"/><text x="69.8352%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (220,951,858 samples, 0.07%)</title><rect x="69.5859%" y="1653" width="0.0718%" height="15" fill="rgb(234,227,4)" fg:x="214000231116" fg:w="220951858"/><text x="69.8359%" y="1663.50"></text></g><g><title>Builtins_AsyncFunctionAwaitResolveClosure (226,404,578 samples, 0.07%)</title><rect x="69.5848%" y="1701" width="0.0736%" height="15" fill="rgb(246,63,5)" fg:x="213997007170" fg:w="226404578"/><text x="69.8348%" y="1711.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (226,404,578 samples, 0.07%)</title><rect x="69.5848%" y="1685" width="0.0736%" height="15" fill="rgb(245,136,27)" fg:x="213997007170" fg:w="226404578"/><text x="69.8348%" y="1695.50"></text></g><g><title>node::fs::AfterMkdirp (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1877" width="0.0754%" height="15" fill="rgb(247,199,27)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1887.50"></text></g><g><title>node::fs::FSReqPromise&lt;node::AliasedBufferBase&lt;double, v8::Float64Array&gt; &gt;::Resolve (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1861" width="0.0754%" height="15" fill="rgb(252,158,49)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1871.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1845" width="0.0754%" height="15" fill="rgb(254,73,1)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::Close (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1829" width="0.0754%" height="15" fill="rgb(248,93,19)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1839.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1813" width="0.0754%" height="15" fill="rgb(206,67,5)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1797" width="0.0754%" height="15" fill="rgb(209,210,4)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1807.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1781" width="0.0754%" height="15" fill="rgb(214,185,36)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1791.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1765" width="0.0754%" height="15" fill="rgb(233,191,26)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1775.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1749" width="0.0754%" height="15" fill="rgb(248,94,17)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1759.50"></text></g><g><title>Builtins_RunMicrotasks (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1733" width="0.0754%" height="15" fill="rgb(250,64,4)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1743.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (231,862,087 samples, 0.08%)</title><rect x="69.5848%" y="1717" width="0.0754%" height="15" fill="rgb(218,41,53)" fg:x="213997007170" fg:w="231862087"/><text x="69.8348%" y="1727.50"></text></g><g><title>OSSL_DECODER_CTX_new_for_pkey (31,239,534 samples, 0.01%)</title><rect x="69.6702%" y="1397" width="0.0102%" height="15" fill="rgb(251,176,28)" fg:x="214259628618" fg:w="31239534"/><text x="69.9202%" y="1407.50"></text></g><g><title>asn1_template_ex_d2i (39,139,267 samples, 0.01%)</title><rect x="69.6692%" y="1509" width="0.0127%" height="15" fill="rgb(247,22,9)" fg:x="214256566875" fg:w="39139267"/><text x="69.9192%" y="1519.50"></text></g><g><title>asn1_template_noexp_d2i (39,139,267 samples, 0.01%)</title><rect x="69.6692%" y="1493" width="0.0127%" height="15" fill="rgb(218,201,14)" fg:x="214256566875" fg:w="39139267"/><text x="69.9192%" y="1503.50"></text></g><g><title>asn1_item_embed_d2i (39,139,267 samples, 0.01%)</title><rect x="69.6692%" y="1477" width="0.0127%" height="15" fill="rgb(218,94,10)" fg:x="214256566875" fg:w="39139267"/><text x="69.9192%" y="1487.50"></text></g><g><title>asn1_template_ex_d2i (39,139,267 samples, 0.01%)</title><rect x="69.6692%" y="1461" width="0.0127%" height="15" fill="rgb(222,183,52)" fg:x="214256566875" fg:w="39139267"/><text x="69.9192%" y="1471.50"></text></g><g><title>asn1_template_noexp_d2i (39,139,267 samples, 0.01%)</title><rect x="69.6692%" y="1445" width="0.0127%" height="15" fill="rgb(242,140,25)" fg:x="214256566875" fg:w="39139267"/><text x="69.9192%" y="1455.50"></text></g><g><title>asn1_item_embed_d2i (39,139,267 samples, 0.01%)</title><rect x="69.6692%" y="1429" width="0.0127%" height="15" fill="rgb(235,197,38)" fg:x="214256566875" fg:w="39139267"/><text x="69.9192%" y="1439.50"></text></g><g><title>x509_pubkey_ex_d2i_ex (37,312,629 samples, 0.01%)</title><rect x="69.6698%" y="1413" width="0.0121%" height="15" fill="rgb(237,136,15)" fg:x="214258393513" fg:w="37312629"/><text x="69.9198%" y="1423.50"></text></g><g><title>ASN1_item_d2i (39,827,352 samples, 0.01%)</title><rect x="69.6692%" y="1541" width="0.0130%" height="15" fill="rgb(223,44,49)" fg:x="214256566875" fg:w="39827352"/><text x="69.9192%" y="1551.50"></text></g><g><title>asn1_item_embed_d2i (39,827,352 samples, 0.01%)</title><rect x="69.6692%" y="1525" width="0.0130%" height="15" fill="rgb(227,71,15)" fg:x="214256566875" fg:w="39827352"/><text x="69.9192%" y="1535.50"></text></g><g><title>PEM_ASN1_read_bio (44,395,828 samples, 0.01%)</title><rect x="69.6692%" y="1557" width="0.0144%" height="15" fill="rgb(225,153,20)" fg:x="214256566875" fg:w="44395828"/><text x="69.9192%" y="1567.50"></text></g><g><title>Builtins_CallApiCallbackGeneric (46,243,106 samples, 0.02%)</title><rect x="69.6692%" y="1605" width="0.0150%" height="15" fill="rgb(210,190,26)" fg:x="214256566875" fg:w="46243106"/><text x="69.9192%" y="1615.50"></text></g><g><title>node::crypto::SecureContext::AddRootCerts (46,243,106 samples, 0.02%)</title><rect x="69.6692%" y="1589" width="0.0150%" height="15" fill="rgb(223,147,5)" fg:x="214256566875" fg:w="46243106"/><text x="69.9192%" y="1599.50"></text></g><g><title>node::crypto::NewRootCertStore (46,243,106 samples, 0.02%)</title><rect x="69.6692%" y="1573" width="0.0150%" height="15" fill="rgb(207,14,23)" fg:x="214256566875" fg:w="46243106"/><text x="69.9192%" y="1583.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (53,280,217 samples, 0.02%)</title><rect x="69.6689%" y="1637" width="0.0173%" height="15" fill="rgb(211,195,53)" fg:x="214255452929" fg:w="53280217"/><text x="69.9189%" y="1647.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (52,166,271 samples, 0.02%)</title><rect x="69.6692%" y="1621" width="0.0170%" height="15" fill="rgb(237,75,46)" fg:x="214256566875" fg:w="52166271"/><text x="69.9192%" y="1631.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (78,677,118 samples, 0.03%)</title><rect x="69.6610%" y="1701" width="0.0256%" height="15" fill="rgb(254,55,14)" fg:x="214231183385" fg:w="78677118"/><text x="69.9110%" y="1711.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (75,471,012 samples, 0.02%)</title><rect x="69.6620%" y="1685" width="0.0245%" height="15" fill="rgb(230,185,30)" fg:x="214234389491" fg:w="75471012"/><text x="69.9120%" y="1695.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (75,471,012 samples, 0.02%)</title><rect x="69.6620%" y="1669" width="0.0245%" height="15" fill="rgb(220,14,11)" fg:x="214234389491" fg:w="75471012"/><text x="69.9120%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (73,136,492 samples, 0.02%)</title><rect x="69.6628%" y="1653" width="0.0238%" height="15" fill="rgb(215,169,44)" fg:x="214236724011" fg:w="73136492"/><text x="69.9128%" y="1663.50"></text></g><g><title>node::fs::AfterOpenFileHandle (81,028,123 samples, 0.03%)</title><rect x="69.6606%" y="1877" width="0.0263%" height="15" fill="rgb(253,203,20)" fg:x="214229952340" fg:w="81028123"/><text x="69.9106%" y="1887.50"></text></g><g><title>node::fs::FSReqAfterScope::Reject (81,028,123 samples, 0.03%)</title><rect x="69.6606%" y="1861" width="0.0263%" height="15" fill="rgb(229,225,17)" fg:x="214229952340" fg:w="81028123"/><text x="69.9106%" y="1871.50"></text></g><g><title>node::fs::FSReqPromise&lt;node::AliasedBufferBase&lt;double, v8::Float64Array&gt; &gt;::Reject (81,028,123 samples, 0.03%)</title><rect x="69.6606%" y="1845" width="0.0263%" height="15" fill="rgb(236,76,26)" fg:x="214229952340" fg:w="81028123"/><text x="69.9106%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (81,028,123 samples, 0.03%)</title><rect x="69.6606%" y="1829" width="0.0263%" height="15" fill="rgb(234,15,30)" fg:x="214229952340" fg:w="81028123"/><text x="69.9106%" y="1839.50"></text></g><g><title>node::InternalCallbackScope::Close (81,028,123 samples, 0.03%)</title><rect x="69.6606%" y="1813" width="0.0263%" height="15" fill="rgb(211,113,48)" fg:x="214229952340" fg:w="81028123"/><text x="69.9106%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (79,797,078 samples, 0.03%)</title><rect x="69.6610%" y="1797" width="0.0259%" height="15" fill="rgb(221,31,36)" fg:x="214231183385" fg:w="79797078"/><text x="69.9110%" y="1807.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (79,797,078 samples, 0.03%)</title><rect x="69.6610%" y="1781" width="0.0259%" height="15" fill="rgb(215,118,52)" fg:x="214231183385" fg:w="79797078"/><text x="69.9110%" y="1791.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (79,797,078 samples, 0.03%)</title><rect x="69.6610%" y="1765" width="0.0259%" height="15" fill="rgb(241,151,27)" fg:x="214231183385" fg:w="79797078"/><text x="69.9110%" y="1775.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (79,797,078 samples, 0.03%)</title><rect x="69.6610%" y="1749" width="0.0259%" height="15" fill="rgb(253,51,3)" fg:x="214231183385" fg:w="79797078"/><text x="69.9110%" y="1759.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (79,797,078 samples, 0.03%)</title><rect x="69.6610%" y="1733" width="0.0259%" height="15" fill="rgb(216,201,24)" fg:x="214231183385" fg:w="79797078"/><text x="69.9110%" y="1743.50"></text></g><g><title>Builtins_RunMicrotasks (79,797,078 samples, 0.03%)</title><rect x="69.6610%" y="1717" width="0.0259%" height="15" fill="rgb(231,107,4)" fg:x="214231183385" fg:w="79797078"/><text x="69.9110%" y="1727.50"></text></g><g><title>node::MakeLibuvRequestCallback&lt;uv_fs_s, void (*)(uv_fs_s*)&gt;::Wrapper (342,651,828 samples, 0.11%)</title><rect x="69.5816%" y="1893" width="0.1114%" height="15" fill="rgb(243,97,54)" fg:x="213987018110" fg:w="342651828"/><text x="69.8316%" y="1903.50"></text></g><g><title>uv__async_io.part.0 (348,263,376 samples, 0.11%)</title><rect x="69.5808%" y="1925" width="0.1132%" height="15" fill="rgb(221,32,51)" fg:x="213984552544" fg:w="348263376"/><text x="69.8308%" y="1935.50"></text></g><g><title>uv__work_done (345,797,810 samples, 0.11%)</title><rect x="69.5816%" y="1909" width="0.1124%" height="15" fill="rgb(218,171,35)" fg:x="213987018110" fg:w="345797810"/><text x="69.8316%" y="1919.50"></text></g><g><title>uv__io_poll (383,698,728 samples, 0.12%)</title><rect x="69.5808%" y="1941" width="0.1248%" height="15" fill="rgb(214,20,53)" fg:x="213984552544" fg:w="383698728"/><text x="69.8308%" y="1951.50"></text></g><g><title>uv__stream_io (35,435,352 samples, 0.01%)</title><rect x="69.6940%" y="1925" width="0.0115%" height="15" fill="rgb(239,9,52)" fg:x="214332815920" fg:w="35435352"/><text x="69.9440%" y="1935.50"></text></g><g><title>uv__read (34,349,002 samples, 0.01%)</title><rect x="69.6944%" y="1909" width="0.0112%" height="15" fill="rgb(215,114,45)" fg:x="214333902270" fg:w="34349002"/><text x="69.9444%" y="1919.50"></text></g><g><title>node::LibuvStreamWrap::ReadStart (34,349,002 samples, 0.01%)</title><rect x="69.6944%" y="1893" width="0.0112%" height="15" fill="rgb(208,118,9)" fg:x="214333902270" fg:w="34349002"/><text x="69.9444%" y="1903.50"></text></g><g><title>node::LibuvStreamWrap::OnUvRead (34,349,002 samples, 0.01%)</title><rect x="69.6944%" y="1877" width="0.0112%" height="15" fill="rgb(235,7,39)" fg:x="214333902270" fg:w="34349002"/><text x="69.9444%" y="1887.50"></text></g><g><title>node::crypto::TLSWrap::OnStreamRead (34,349,002 samples, 0.01%)</title><rect x="69.6944%" y="1861" width="0.0112%" height="15" fill="rgb(243,225,15)" fg:x="214333902270" fg:w="34349002"/><text x="69.9444%" y="1871.50"></text></g><g><title>node::crypto::TLSWrap::ClearOut (34,349,002 samples, 0.01%)</title><rect x="69.6944%" y="1845" width="0.0112%" height="15" fill="rgb(225,216,18)" fg:x="214333902270" fg:w="34349002"/><text x="69.9444%" y="1855.50"></text></g><g><title>_start (385,754,835 samples, 0.13%)</title><rect x="69.5804%" y="2053" width="0.1254%" height="15" fill="rgb(233,36,38)" fg:x="213983483791" fg:w="385754835"/><text x="69.8304%" y="2063.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (385,754,835 samples, 0.13%)</title><rect x="69.5804%" y="2037" width="0.1254%" height="15" fill="rgb(239,88,23)" fg:x="213983483791" fg:w="385754835"/><text x="69.8304%" y="2047.50"></text></g><g><title>__libc_start_call_main (385,754,835 samples, 0.13%)</title><rect x="69.5804%" y="2021" width="0.1254%" height="15" fill="rgb(219,181,35)" fg:x="213983483791" fg:w="385754835"/><text x="69.8304%" y="2031.50"></text></g><g><title>node::Start (385,754,835 samples, 0.13%)</title><rect x="69.5804%" y="2005" width="0.1254%" height="15" fill="rgb(215,18,46)" fg:x="213983483791" fg:w="385754835"/><text x="69.8304%" y="2015.50"></text></g><g><title>node::NodeMainInstance::Run (385,754,835 samples, 0.13%)</title><rect x="69.5804%" y="1989" width="0.1254%" height="15" fill="rgb(241,38,11)" fg:x="213983483791" fg:w="385754835"/><text x="69.8304%" y="1999.50"></text></g><g><title>node::SpinEventLoopInternal (385,754,835 samples, 0.13%)</title><rect x="69.5804%" y="1973" width="0.1254%" height="15" fill="rgb(248,169,45)" fg:x="213983483791" fg:w="385754835"/><text x="69.8304%" y="1983.50"></text></g><g><title>uv_run (385,754,835 samples, 0.13%)</title><rect x="69.5804%" y="1957" width="0.1254%" height="15" fill="rgb(239,50,49)" fg:x="213983483791" fg:w="385754835"/><text x="69.8304%" y="1967.50"></text></g><g><title>npm_info_vscode (503,904,083 samples, 0.16%)</title><rect x="69.5564%" y="2069" width="0.1639%" height="15" fill="rgb(231,96,31)" fg:x="213909621585" fg:w="503904083"/><text x="69.8064%" y="2079.50"></text></g><g><title>[perf-183375.map] (67,562,360 samples, 0.02%)</title><rect x="69.7273%" y="2053" width="0.0220%" height="15" fill="rgb(224,193,37)" fg:x="214435016316" fg:w="67562360"/><text x="69.9773%" y="2063.50"></text></g><g><title>[perf-183375.map] (59,635,827 samples, 0.02%)</title><rect x="69.7298%" y="2037" width="0.0194%" height="15" fill="rgb(227,153,50)" fg:x="214442942849" fg:w="59635827"/><text x="69.9798%" y="2047.50"></text></g><g><title>[perf-183375.map] (49,393,994 samples, 0.02%)</title><rect x="69.7332%" y="2021" width="0.0161%" height="15" fill="rgb(249,228,3)" fg:x="214453184682" fg:w="49393994"/><text x="69.9832%" y="2031.50"></text></g><g><title>[perf-183375.map] (46,083,715 samples, 0.01%)</title><rect x="69.7342%" y="2005" width="0.0150%" height="15" fill="rgb(219,164,43)" fg:x="214456494961" fg:w="46083715"/><text x="69.9842%" y="2015.50"></text></g><g><title>[perf-183375.map] (38,331,531 samples, 0.01%)</title><rect x="69.7368%" y="1989" width="0.0125%" height="15" fill="rgb(216,45,41)" fg:x="214464247145" fg:w="38331531"/><text x="69.9868%" y="1999.50"></text></g><g><title>sha512_block_data_order_avx2 (138,709,465 samples, 0.05%)</title><rect x="69.7555%" y="2037" width="0.0451%" height="15" fill="rgb(210,226,51)" fg:x="214521903235" fg:w="138709465"/><text x="70.0055%" y="2047.50"></text></g><g><title>[unknown] (161,395,219 samples, 0.05%)</title><rect x="69.7492%" y="2053" width="0.0525%" height="15" fill="rgb(209,117,49)" fg:x="214502578676" fg:w="161395219"/><text x="69.9992%" y="2063.50"></text></g><g><title>epoll_pwait (39,831,785 samples, 0.01%)</title><rect x="69.8138%" y="1925" width="0.0130%" height="15" fill="rgb(206,196,24)" fg:x="214701237291" fg:w="39831785"/><text x="70.0638%" y="1935.50"></text></g><g><title>__syscall_cancel_arch_end (38,825,546 samples, 0.01%)</title><rect x="69.8141%" y="1909" width="0.0126%" height="15" fill="rgb(253,218,3)" fg:x="214702243530" fg:w="38825546"/><text x="70.0641%" y="1919.50"></text></g><g><title>[unknown] (38,825,546 samples, 0.01%)</title><rect x="69.8141%" y="1893" width="0.0126%" height="15" fill="rgb(252,166,2)" fg:x="214702243530" fg:w="38825546"/><text x="70.0641%" y="1903.50"></text></g><g><title>[unknown] (38,825,546 samples, 0.01%)</title><rect x="69.8141%" y="1877" width="0.0126%" height="15" fill="rgb(236,218,26)" fg:x="214702243530" fg:w="38825546"/><text x="70.0641%" y="1887.50"></text></g><g><title>[unknown] (38,825,546 samples, 0.01%)</title><rect x="69.8141%" y="1861" width="0.0126%" height="15" fill="rgb(254,84,19)" fg:x="214702243530" fg:w="38825546"/><text x="70.0641%" y="1871.50"></text></g><g><title>[unknown] (36,808,231 samples, 0.01%)</title><rect x="69.8148%" y="1845" width="0.0120%" height="15" fill="rgb(219,137,29)" fg:x="214704260845" fg:w="36808231"/><text x="70.0648%" y="1855.50"></text></g><g><title>[unknown] (35,226,940 samples, 0.01%)</title><rect x="69.8153%" y="1829" width="0.0115%" height="15" fill="rgb(227,47,52)" fg:x="214705842136" fg:w="35226940"/><text x="70.0653%" y="1839.50"></text></g><g><title>[unknown] (32,355,234 samples, 0.01%)</title><rect x="69.8163%" y="1813" width="0.0105%" height="15" fill="rgb(229,167,24)" fg:x="214708713842" fg:w="32355234"/><text x="70.0663%" y="1823.50"></text></g><g><title>[unknown] (32,355,234 samples, 0.01%)</title><rect x="69.8163%" y="1797" width="0.0105%" height="15" fill="rgb(233,164,1)" fg:x="214708713842" fg:w="32355234"/><text x="70.0663%" y="1807.50"></text></g><g><title>v8::internal::IncrementalMarkingJob::Task::RunInternal (41,537,206 samples, 0.01%)</title><rect x="69.8291%" y="1877" width="0.0135%" height="15" fill="rgb(218,88,48)" fg:x="214748251597" fg:w="41537206"/><text x="70.0791%" y="1887.50"></text></g><g><title>v8::internal::ScavengerCollector::CollectGarbage (50,750,729 samples, 0.02%)</title><rect x="69.8441%" y="1765" width="0.0165%" height="15" fill="rgb(226,214,24)" fg:x="214794410390" fg:w="50750729"/><text x="70.0941%" y="1775.50"></text></g><g><title>v8::platform::DefaultJobHandle::Join (39,384,091 samples, 0.01%)</title><rect x="69.8478%" y="1749" width="0.0128%" height="15" fill="rgb(233,29,12)" fg:x="214805777028" fg:w="39384091"/><text x="70.0978%" y="1759.50"></text></g><g><title>v8::platform::DefaultJobState::Join (39,384,091 samples, 0.01%)</title><rect x="69.8478%" y="1733" width="0.0128%" height="15" fill="rgb(219,120,34)" fg:x="214805777028" fg:w="39384091"/><text x="70.0978%" y="1743.50"></text></g><g><title>v8::internal::ScavengerCollector::JobTask::Run (38,156,842 samples, 0.01%)</title><rect x="69.8482%" y="1717" width="0.0124%" height="15" fill="rgb(226,78,44)" fg:x="214807004277" fg:w="38156842"/><text x="70.0982%" y="1727.50"></text></g><g><title>v8::internal::ScavengerCollector::JobTask::ProcessItems (38,156,842 samples, 0.01%)</title><rect x="69.8482%" y="1701" width="0.0124%" height="15" fill="rgb(240,15,48)" fg:x="214807004277" fg:w="38156842"/><text x="70.0982%" y="1711.50"></text></g><g><title>node::PerIsolatePlatformData::RunForegroundTask (100,354,094 samples, 0.03%)</title><rect x="69.8284%" y="1893" width="0.0326%" height="15" fill="rgb(253,176,7)" fg:x="214746001375" fg:w="100354094"/><text x="70.0784%" y="1903.50"></text></g><g><title>v8::internal::MinorGCJob::Task::RunInternal (56,566,666 samples, 0.02%)</title><rect x="69.8426%" y="1877" width="0.0184%" height="15" fill="rgb(206,166,28)" fg:x="214789788803" fg:w="56566666"/><text x="70.0926%" y="1887.50"></text></g><g><title>v8::internal::Heap::CollectGarbage (56,566,666 samples, 0.02%)</title><rect x="69.8426%" y="1861" width="0.0184%" height="15" fill="rgb(241,53,51)" fg:x="214789788803" fg:w="56566666"/><text x="70.0926%" y="1871.50"></text></g><g><title>PushAllRegistersAndIterateStack (56,566,666 samples, 0.02%)</title><rect x="69.8426%" y="1845" width="0.0184%" height="15" fill="rgb(249,112,30)" fg:x="214789788803" fg:w="56566666"/><text x="70.0926%" y="1855.50"></text></g><g><title>void heap::base::Stack::SetMarkerAndCallbackImpl&lt;v8::internal::Heap::CollectGarbage(v8::internal::AllocationSpace, v8::internal::GarbageCollectionReason, v8::GCCallbackFlags)::{lambda()#2}&gt; (56,566,666 samples, 0.02%)</title><rect x="69.8426%" y="1829" width="0.0184%" height="15" fill="rgb(217,85,30)" fg:x="214789788803" fg:w="56566666"/><text x="70.0926%" y="1839.50"></text></g><g><title>v8::internal::Heap::CollectGarbage (56,566,666 samples, 0.02%)</title><rect x="69.8426%" y="1813" width="0.0184%" height="15" fill="rgb(233,49,7)" fg:x="214789788803" fg:w="56566666"/><text x="70.0926%" y="1823.50"></text></g><g><title>v8::internal::Heap::PerformGarbageCollection (56,566,666 samples, 0.02%)</title><rect x="69.8426%" y="1797" width="0.0184%" height="15" fill="rgb(234,109,9)" fg:x="214789788803" fg:w="56566666"/><text x="70.0926%" y="1807.50"></text></g><g><title>v8::internal::Heap::Scavenge (53,158,261 samples, 0.02%)</title><rect x="69.8437%" y="1781" width="0.0173%" height="15" fill="rgb(253,95,22)" fg:x="214793197208" fg:w="53158261"/><text x="70.0937%" y="1791.50"></text></g><g><title>node::PerIsolatePlatformData::FlushForegroundTasksInternal (101,561,800 samples, 0.03%)</title><rect x="69.8284%" y="1909" width="0.0330%" height="15" fill="rgb(233,176,25)" fg:x="214746001375" fg:w="101561800"/><text x="70.0784%" y="1919.50"></text></g><g><title>Builtins_AsyncFunctionAwaitResolveClosure (42,989,795 samples, 0.01%)</title><rect x="69.8704%" y="1685" width="0.0140%" height="15" fill="rgb(236,33,39)" fg:x="214875089414" fg:w="42989795"/><text x="70.1204%" y="1695.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (46,146,809 samples, 0.02%)</title><rect x="69.8704%" y="1765" width="0.0150%" height="15" fill="rgb(223,226,42)" fg:x="214875089414" fg:w="46146809"/><text x="70.1204%" y="1775.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (46,146,809 samples, 0.02%)</title><rect x="69.8704%" y="1749" width="0.0150%" height="15" fill="rgb(216,99,33)" fg:x="214875089414" fg:w="46146809"/><text x="70.1204%" y="1759.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (46,146,809 samples, 0.02%)</title><rect x="69.8704%" y="1733" width="0.0150%" height="15" fill="rgb(235,84,23)" fg:x="214875089414" fg:w="46146809"/><text x="70.1204%" y="1743.50"></text></g><g><title>Builtins_RunMicrotasks (46,146,809 samples, 0.02%)</title><rect x="69.8704%" y="1717" width="0.0150%" height="15" fill="rgb(232,2,27)" fg:x="214875089414" fg:w="46146809"/><text x="70.1204%" y="1727.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (46,146,809 samples, 0.02%)</title><rect x="69.8704%" y="1701" width="0.0150%" height="15" fill="rgb(241,23,22)" fg:x="214875089414" fg:w="46146809"/><text x="70.1204%" y="1711.50"></text></g><g><title>node::InternalCallbackScope::Close (48,413,994 samples, 0.02%)</title><rect x="69.8700%" y="1813" width="0.0157%" height="15" fill="rgb(211,73,27)" fg:x="214873944528" fg:w="48413994"/><text x="70.1200%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (47,269,108 samples, 0.02%)</title><rect x="69.8704%" y="1797" width="0.0154%" height="15" fill="rgb(235,109,49)" fg:x="214875089414" fg:w="47269108"/><text x="70.1204%" y="1807.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (47,269,108 samples, 0.02%)</title><rect x="69.8704%" y="1781" width="0.0154%" height="15" fill="rgb(230,99,29)" fg:x="214875089414" fg:w="47269108"/><text x="70.1204%" y="1791.50"></text></g><g><title>Builtins_CallApiCallbackOptimizedNoProfiling (53,341,045 samples, 0.02%)</title><rect x="70.0162%" y="549" width="0.0173%" height="15" fill="rgb(245,199,7)" fg:x="215323517008" fg:w="53341045"/><text x="70.2662%" y="559.50"></text></g><g><title>void node::(anonymous namespace)::CompressionStream&lt;node::(anonymous namespace)::ZlibContext&gt;::Write&lt;false&gt; (53,341,045 samples, 0.02%)</title><rect x="70.0162%" y="533" width="0.0173%" height="15" fill="rgb(217,179,10)" fg:x="215323517008" fg:w="53341045"/><text x="70.2662%" y="543.50"></text></g><g><title>node::(anonymous namespace)::ZlibContext::DoThreadPoolWork (52,270,294 samples, 0.02%)</title><rect x="70.0165%" y="517" width="0.0170%" height="15" fill="rgb(254,99,47)" fg:x="215324587759" fg:w="52270294"/><text x="70.2665%" y="527.50"></text></g><g><title>inflate (52,270,294 samples, 0.02%)</title><rect x="70.0165%" y="501" width="0.0170%" height="15" fill="rgb(251,121,7)" fg:x="215324587759" fg:w="52270294"/><text x="70.2665%" y="511.50"></text></g><g><title>inflate_fast_chunk_ (38,716,971 samples, 0.01%)</title><rect x="70.0209%" y="485" width="0.0126%" height="15" fill="rgb(250,177,26)" fg:x="215338141082" fg:w="38716971"/><text x="70.2709%" y="495.50"></text></g><g><title>[perf-183375.map] (69,895,214 samples, 0.02%)</title><rect x="70.0348%" y="533" width="0.0227%" height="15" fill="rgb(232,88,15)" fg:x="215380863990" fg:w="69895214"/><text x="70.2848%" y="543.50"></text></g><g><title>[perf-183375.map] (35,920,463 samples, 0.01%)</title><rect x="70.0459%" y="517" width="0.0117%" height="15" fill="rgb(251,54,54)" fg:x="215414838741" fg:w="35920463"/><text x="70.2959%" y="527.50"></text></g><g><title>[perf-183375.map] (134,395,564 samples, 0.04%)</title><rect x="70.0141%" y="597" width="0.0437%" height="15" fill="rgb(208,177,15)" fg:x="215317121414" fg:w="134395564"/><text x="70.2641%" y="607.50"></text></g><g><title>[perf-183375.map] (129,111,319 samples, 0.04%)</title><rect x="70.0158%" y="581" width="0.0420%" height="15" fill="rgb(205,97,32)" fg:x="215322405659" fg:w="129111319"/><text x="70.2658%" y="591.50"></text></g><g><title>[perf-183375.map] (129,111,319 samples, 0.04%)</title><rect x="70.0158%" y="565" width="0.0420%" height="15" fill="rgb(217,192,13)" fg:x="215322405659" fg:w="129111319"/><text x="70.2658%" y="575.50"></text></g><g><title>[perf-183375.map] (74,658,925 samples, 0.02%)</title><rect x="70.0335%" y="549" width="0.0243%" height="15" fill="rgb(215,163,41)" fg:x="215376858053" fg:w="74658925"/><text x="70.2835%" y="559.50"></text></g><g><title>Builtins_JSEntryTrampoline (522,017,992 samples, 0.17%)</title><rect x="69.8884%" y="1749" width="0.1697%" height="15" fill="rgb(246,83,29)" fg:x="214930573885" fg:w="522017992"/><text x="70.1384%" y="1759.50"></text></g><g><title>[perf-183375.map] (516,564,786 samples, 0.17%)</title><rect x="69.8902%" y="1733" width="0.1680%" height="15" fill="rgb(219,2,45)" fg:x="214936027091" fg:w="516564786"/><text x="70.1402%" y="1743.50"></text></g><g><title>[perf-183375.map] (512,391,770 samples, 0.17%)</title><rect x="69.8915%" y="1717" width="0.1666%" height="15" fill="rgb(242,215,33)" fg:x="214940200107" fg:w="512391770"/><text x="70.1415%" y="1727.50"></text></g><g><title>[perf-183375.map] (508,278,446 samples, 0.17%)</title><rect x="69.8929%" y="1701" width="0.1653%" height="15" fill="rgb(217,1,6)" fg:x="214944313431" fg:w="508278446"/><text x="70.1429%" y="1711.50"></text></g><g><title>[perf-183375.map] (497,805,835 samples, 0.16%)</title><rect x="69.8963%" y="1685" width="0.1619%" height="15" fill="rgb(207,85,52)" fg:x="214954786042" fg:w="497805835"/><text x="70.1463%" y="1695.50"></text></g><g><title>[perf-183375.map] (490,824,261 samples, 0.16%)</title><rect x="69.8985%" y="1669" width="0.1596%" height="15" fill="rgb(231,171,19)" fg:x="214961767616" fg:w="490824261"/><text x="70.1485%" y="1679.50"></text></g><g><title>[perf-183375.map] (471,486,744 samples, 0.15%)</title><rect x="69.9048%" y="1653" width="0.1533%" height="15" fill="rgb(207,128,4)" fg:x="214981105133" fg:w="471486744"/><text x="70.1548%" y="1663.50"></text></g><g><title>[perf-183375.map] (435,639,741 samples, 0.14%)</title><rect x="69.9165%" y="1637" width="0.1417%" height="15" fill="rgb(219,208,4)" fg:x="215016952136" fg:w="435639741"/><text x="70.1665%" y="1647.50"></text></g><g><title>[perf-183375.map] (416,990,454 samples, 0.14%)</title><rect x="69.9225%" y="1621" width="0.1356%" height="15" fill="rgb(235,161,42)" fg:x="215035601423" fg:w="416990454"/><text x="70.1725%" y="1631.50"></text></g><g><title>[perf-183375.map] (401,518,732 samples, 0.13%)</title><rect x="69.9276%" y="1605" width="0.1306%" height="15" fill="rgb(247,218,18)" fg:x="215051073145" fg:w="401518732"/><text x="70.1776%" y="1615.50"></text></g><g><title>[perf-183375.map] (394,202,652 samples, 0.13%)</title><rect x="69.9300%" y="1589" width="0.1282%" height="15" fill="rgb(232,114,51)" fg:x="215058389225" fg:w="394202652"/><text x="70.1800%" y="1599.50"></text></g><g><title>[perf-183375.map] (389,522,731 samples, 0.13%)</title><rect x="69.9315%" y="1573" width="0.1267%" height="15" fill="rgb(222,95,3)" fg:x="215063069146" fg:w="389522731"/><text x="70.1815%" y="1583.50"></text></g><g><title>[perf-183375.map] (382,923,656 samples, 0.12%)</title><rect x="69.9336%" y="1557" width="0.1245%" height="15" fill="rgb(240,65,29)" fg:x="215069668221" fg:w="382923656"/><text x="70.1836%" y="1567.50"></text></g><g><title>[perf-183375.map] (378,575,207 samples, 0.12%)</title><rect x="69.9350%" y="1541" width="0.1231%" height="15" fill="rgb(249,209,20)" fg:x="215074016670" fg:w="378575207"/><text x="70.1850%" y="1551.50"></text></g><g><title>[perf-183375.map] (374,768,109 samples, 0.12%)</title><rect x="69.9363%" y="1525" width="0.1219%" height="15" fill="rgb(241,48,37)" fg:x="215077823768" fg:w="374768109"/><text x="70.1863%" y="1535.50"></text></g><g><title>[perf-183375.map] (370,354,164 samples, 0.12%)</title><rect x="69.9377%" y="1509" width="0.1204%" height="15" fill="rgb(230,140,42)" fg:x="215082237713" fg:w="370354164"/><text x="70.1877%" y="1519.50"></text></g><g><title>[perf-183375.map] (370,354,164 samples, 0.12%)</title><rect x="69.9377%" y="1493" width="0.1204%" height="15" fill="rgb(230,176,45)" fg:x="215082237713" fg:w="370354164"/><text x="70.1877%" y="1503.50"></text></g><g><title>[perf-183375.map] (366,257,510 samples, 0.12%)</title><rect x="69.9390%" y="1477" width="0.1191%" height="15" fill="rgb(245,112,21)" fg:x="215086334367" fg:w="366257510"/><text x="70.1890%" y="1487.50"></text></g><g><title>[perf-183375.map] (363,440,797 samples, 0.12%)</title><rect x="69.9400%" y="1461" width="0.1182%" height="15" fill="rgb(207,183,35)" fg:x="215089151080" fg:w="363440797"/><text x="70.1900%" y="1471.50"></text></g><g><title>[perf-183375.map] (362,703,484 samples, 0.12%)</title><rect x="69.9402%" y="1445" width="0.1179%" height="15" fill="rgb(227,44,33)" fg:x="215089888393" fg:w="362703484"/><text x="70.1902%" y="1455.50"></text></g><g><title>[perf-183375.map] (359,791,976 samples, 0.12%)</title><rect x="69.9411%" y="1429" width="0.1170%" height="15" fill="rgb(246,120,21)" fg:x="215092799901" fg:w="359791976"/><text x="70.1911%" y="1439.50"></text></g><g><title>[perf-183375.map] (359,791,976 samples, 0.12%)</title><rect x="69.9411%" y="1413" width="0.1170%" height="15" fill="rgb(235,57,52)" fg:x="215092799901" fg:w="359791976"/><text x="70.1911%" y="1423.50"></text></g><g><title>[perf-183375.map] (359,078,778 samples, 0.12%)</title><rect x="69.9414%" y="1397" width="0.1168%" height="15" fill="rgb(238,84,10)" fg:x="215093513099" fg:w="359078778"/><text x="70.1914%" y="1407.50"></text></g><g><title>[perf-183375.map] (354,628,810 samples, 0.12%)</title><rect x="69.9428%" y="1381" width="0.1153%" height="15" fill="rgb(251,200,32)" fg:x="215097963067" fg:w="354628810"/><text x="70.1928%" y="1391.50"></text></g><g><title>[perf-183375.map] (351,214,045 samples, 0.11%)</title><rect x="69.9439%" y="1365" width="0.1142%" height="15" fill="rgb(247,159,13)" fg:x="215101377832" fg:w="351214045"/><text x="70.1939%" y="1375.50"></text></g><g><title>[perf-183375.map] (348,877,108 samples, 0.11%)</title><rect x="69.9447%" y="1349" width="0.1134%" height="15" fill="rgb(238,64,4)" fg:x="215103714769" fg:w="348877108"/><text x="70.1947%" y="1359.50"></text></g><g><title>[perf-183375.map] (345,183,083 samples, 0.11%)</title><rect x="69.9459%" y="1333" width="0.1122%" height="15" fill="rgb(221,131,51)" fg:x="215107408794" fg:w="345183083"/><text x="70.1959%" y="1343.50"></text></g><g><title>[perf-183375.map] (342,846,252 samples, 0.11%)</title><rect x="69.9467%" y="1317" width="0.1115%" height="15" fill="rgb(242,5,29)" fg:x="215109745625" fg:w="342846252"/><text x="70.1967%" y="1327.50"></text></g><g><title>[perf-183375.map] (337,017,127 samples, 0.11%)</title><rect x="69.9485%" y="1301" width="0.1096%" height="15" fill="rgb(214,130,32)" fg:x="215115574750" fg:w="337017127"/><text x="70.1985%" y="1311.50"></text></g><g><title>[perf-183375.map] (334,631,033 samples, 0.11%)</title><rect x="69.9493%" y="1285" width="0.1088%" height="15" fill="rgb(244,210,16)" fg:x="215117960844" fg:w="334631033"/><text x="70.1993%" y="1295.50"></text></g><g><title>[perf-183375.map] (332,266,580 samples, 0.11%)</title><rect x="69.9501%" y="1269" width="0.1080%" height="15" fill="rgb(234,48,26)" fg:x="215120325297" fg:w="332266580"/><text x="70.2001%" y="1279.50"></text></g><g><title>[perf-183375.map] (331,094,319 samples, 0.11%)</title><rect x="69.9505%" y="1253" width="0.1077%" height="15" fill="rgb(231,82,38)" fg:x="215121497558" fg:w="331094319"/><text x="70.2005%" y="1263.50"></text></g><g><title>[perf-183375.map] (329,438,924 samples, 0.11%)</title><rect x="69.9510%" y="1237" width="0.1071%" height="15" fill="rgb(254,128,41)" fg:x="215123152953" fg:w="329438924"/><text x="70.2010%" y="1247.50"></text></g><g><title>[perf-183375.map] (327,932,840 samples, 0.11%)</title><rect x="69.9515%" y="1221" width="0.1066%" height="15" fill="rgb(212,73,49)" fg:x="215124659037" fg:w="327932840"/><text x="70.2015%" y="1231.50"></text></g><g><title>[perf-183375.map] (327,932,840 samples, 0.11%)</title><rect x="69.9515%" y="1205" width="0.1066%" height="15" fill="rgb(205,62,54)" fg:x="215124659037" fg:w="327932840"/><text x="70.2015%" y="1215.50"></text></g><g><title>[perf-183375.map] (325,834,403 samples, 0.11%)</title><rect x="69.9522%" y="1189" width="0.1060%" height="15" fill="rgb(228,0,8)" fg:x="215126757474" fg:w="325834403"/><text x="70.2022%" y="1199.50"></text></g><g><title>[perf-183375.map] (323,711,943 samples, 0.11%)</title><rect x="69.9529%" y="1173" width="0.1053%" height="15" fill="rgb(251,28,17)" fg:x="215128879934" fg:w="323711943"/><text x="70.2029%" y="1183.50"></text></g><g><title>[perf-183375.map] (322,946,561 samples, 0.11%)</title><rect x="69.9531%" y="1157" width="0.1050%" height="15" fill="rgb(238,105,27)" fg:x="215129645316" fg:w="322946561"/><text x="70.2031%" y="1167.50"></text></g><g><title>[perf-183375.map] (304,840,197 samples, 0.10%)</title><rect x="69.9590%" y="1141" width="0.0991%" height="15" fill="rgb(237,216,33)" fg:x="215147751680" fg:w="304840197"/><text x="70.2090%" y="1151.50"></text></g><g><title>[perf-183375.map] (283,275,300 samples, 0.09%)</title><rect x="69.9660%" y="1125" width="0.0921%" height="15" fill="rgb(229,228,25)" fg:x="215169316577" fg:w="283275300"/><text x="70.2160%" y="1135.50"></text></g><g><title>[perf-183375.map] (266,442,255 samples, 0.09%)</title><rect x="69.9715%" y="1109" width="0.0866%" height="15" fill="rgb(233,75,23)" fg:x="215186149622" fg:w="266442255"/><text x="70.2215%" y="1119.50"></text></g><g><title>[perf-183375.map] (256,054,865 samples, 0.08%)</title><rect x="69.9749%" y="1093" width="0.0833%" height="15" fill="rgb(231,207,16)" fg:x="215196537012" fg:w="256054865"/><text x="70.2249%" y="1103.50"></text></g><g><title>[perf-183375.map] (249,866,222 samples, 0.08%)</title><rect x="69.9769%" y="1077" width="0.0812%" height="15" fill="rgb(231,191,45)" fg:x="215202725655" fg:w="249866222"/><text x="70.2269%" y="1087.50"></text></g><g><title>[perf-183375.map] (239,912,316 samples, 0.08%)</title><rect x="69.9801%" y="1061" width="0.0780%" height="15" fill="rgb(224,133,17)" fg:x="215212679561" fg:w="239912316"/><text x="70.2301%" y="1071.50"></text></g><g><title>[perf-183375.map] (235,953,715 samples, 0.08%)</title><rect x="69.9814%" y="1045" width="0.0767%" height="15" fill="rgb(209,178,27)" fg:x="215216638162" fg:w="235953715"/><text x="70.2314%" y="1055.50"></text></g><g><title>[perf-183375.map] (234,709,766 samples, 0.08%)</title><rect x="69.9818%" y="1029" width="0.0763%" height="15" fill="rgb(218,37,11)" fg:x="215217882111" fg:w="234709766"/><text x="70.2318%" y="1039.50"></text></g><g><title>[perf-183375.map] (231,694,122 samples, 0.08%)</title><rect x="69.9828%" y="1013" width="0.0753%" height="15" fill="rgb(251,226,25)" fg:x="215220897755" fg:w="231694122"/><text x="70.2328%" y="1023.50"></text></g><g><title>[perf-183375.map] (227,480,353 samples, 0.07%)</title><rect x="69.9842%" y="997" width="0.0740%" height="15" fill="rgb(209,222,27)" fg:x="215225111524" fg:w="227480353"/><text x="70.2342%" y="1007.50"></text></g><g><title>[perf-183375.map] (226,678,759 samples, 0.07%)</title><rect x="69.9844%" y="981" width="0.0737%" height="15" fill="rgb(238,22,21)" fg:x="215225913118" fg:w="226678759"/><text x="70.2344%" y="991.50"></text></g><g><title>[perf-183375.map] (222,125,562 samples, 0.07%)</title><rect x="69.9859%" y="965" width="0.0722%" height="15" fill="rgb(233,161,25)" fg:x="215230466315" fg:w="222125562"/><text x="70.2359%" y="975.50"></text></g><g><title>[perf-183375.map] (217,505,157 samples, 0.07%)</title><rect x="69.9874%" y="949" width="0.0707%" height="15" fill="rgb(226,122,53)" fg:x="215235086720" fg:w="217505157"/><text x="70.2374%" y="959.50"></text></g><g><title>[perf-183375.map] (209,869,099 samples, 0.07%)</title><rect x="69.9899%" y="933" width="0.0682%" height="15" fill="rgb(220,123,17)" fg:x="215242722778" fg:w="209869099"/><text x="70.2399%" y="943.50"></text></g><g><title>[perf-183375.map] (203,289,661 samples, 0.07%)</title><rect x="69.9920%" y="917" width="0.0661%" height="15" fill="rgb(230,224,35)" fg:x="215249302216" fg:w="203289661"/><text x="70.2420%" y="927.50"></text></g><g><title>[perf-183375.map] (200,865,853 samples, 0.07%)</title><rect x="69.9928%" y="901" width="0.0653%" height="15" fill="rgb(246,83,8)" fg:x="215251726024" fg:w="200865853"/><text x="70.2428%" y="911.50"></text></g><g><title>[perf-183375.map] (199,138,825 samples, 0.06%)</title><rect x="69.9934%" y="885" width="0.0648%" height="15" fill="rgb(230,214,17)" fg:x="215253453052" fg:w="199138825"/><text x="70.2434%" y="895.50"></text></g><g><title>[perf-183375.map] (197,104,814 samples, 0.06%)</title><rect x="69.9940%" y="869" width="0.0641%" height="15" fill="rgb(222,97,18)" fg:x="215255487063" fg:w="197104814"/><text x="70.2440%" y="879.50"></text></g><g><title>[perf-183375.map] (195,883,045 samples, 0.06%)</title><rect x="69.9944%" y="853" width="0.0637%" height="15" fill="rgb(206,79,1)" fg:x="215256708832" fg:w="195883045"/><text x="70.2444%" y="863.50"></text></g><g><title>[perf-183375.map] (191,355,858 samples, 0.06%)</title><rect x="69.9959%" y="837" width="0.0622%" height="15" fill="rgb(214,121,34)" fg:x="215261236019" fg:w="191355858"/><text x="70.2459%" y="847.50"></text></g><g><title>[perf-183375.map] (190,219,988 samples, 0.06%)</title><rect x="69.9963%" y="821" width="0.0619%" height="15" fill="rgb(249,199,46)" fg:x="215262371889" fg:w="190219988"/><text x="70.2463%" y="831.50"></text></g><g><title>[perf-183375.map] (189,003,632 samples, 0.06%)</title><rect x="69.9967%" y="805" width="0.0615%" height="15" fill="rgb(214,222,46)" fg:x="215263588245" fg:w="189003632"/><text x="70.2467%" y="815.50"></text></g><g><title>[perf-183375.map] (189,003,632 samples, 0.06%)</title><rect x="69.9967%" y="789" width="0.0615%" height="15" fill="rgb(248,168,30)" fg:x="215263588245" fg:w="189003632"/><text x="70.2467%" y="799.50"></text></g><g><title>[perf-183375.map] (188,036,879 samples, 0.06%)</title><rect x="69.9970%" y="773" width="0.0611%" height="15" fill="rgb(226,14,28)" fg:x="215264554998" fg:w="188036879"/><text x="70.2470%" y="783.50"></text></g><g><title>[perf-183375.map] (186,848,776 samples, 0.06%)</title><rect x="69.9974%" y="757" width="0.0608%" height="15" fill="rgb(253,123,1)" fg:x="215265743101" fg:w="186848776"/><text x="70.2474%" y="767.50"></text></g><g><title>[perf-183375.map] (186,848,776 samples, 0.06%)</title><rect x="69.9974%" y="741" width="0.0608%" height="15" fill="rgb(225,24,42)" fg:x="215265743101" fg:w="186848776"/><text x="70.2474%" y="751.50"></text></g><g><title>[perf-183375.map] (185,727,392 samples, 0.06%)</title><rect x="69.9977%" y="725" width="0.0604%" height="15" fill="rgb(216,161,37)" fg:x="215266864485" fg:w="185727392"/><text x="70.2477%" y="735.50"></text></g><g><title>[perf-183375.map] (185,727,392 samples, 0.06%)</title><rect x="69.9977%" y="709" width="0.0604%" height="15" fill="rgb(251,164,26)" fg:x="215266864485" fg:w="185727392"/><text x="70.2477%" y="719.50"></text></g><g><title>[perf-183375.map] (185,727,392 samples, 0.06%)</title><rect x="69.9977%" y="693" width="0.0604%" height="15" fill="rgb(219,177,3)" fg:x="215266864485" fg:w="185727392"/><text x="70.2477%" y="703.50"></text></g><g><title>[perf-183375.map] (185,727,392 samples, 0.06%)</title><rect x="69.9977%" y="677" width="0.0604%" height="15" fill="rgb(222,65,0)" fg:x="215266864485" fg:w="185727392"/><text x="70.2477%" y="687.50"></text></g><g><title>[perf-183375.map] (183,557,285 samples, 0.06%)</title><rect x="69.9984%" y="661" width="0.0597%" height="15" fill="rgb(223,69,54)" fg:x="215269034592" fg:w="183557285"/><text x="70.2484%" y="671.50"></text></g><g><title>[perf-183375.map] (152,067,922 samples, 0.05%)</title><rect x="70.0087%" y="645" width="0.0494%" height="15" fill="rgb(235,30,27)" fg:x="215300523955" fg:w="152067922"/><text x="70.2587%" y="655.50"></text></g><g><title>[perf-183375.map] (143,852,959 samples, 0.05%)</title><rect x="70.0114%" y="629" width="0.0468%" height="15" fill="rgb(220,183,50)" fg:x="215308738918" fg:w="143852959"/><text x="70.2614%" y="639.50"></text></g><g><title>[perf-183375.map] (140,505,643 samples, 0.05%)</title><rect x="70.0124%" y="613" width="0.0457%" height="15" fill="rgb(248,198,15)" fg:x="215312086234" fg:w="140505643"/><text x="70.2624%" y="623.50"></text></g><g><title>v8::Object::CallAsFunction (526,106,849 samples, 0.17%)</title><rect x="69.8873%" y="1813" width="0.1711%" height="15" fill="rgb(222,211,4)" fg:x="214927232630" fg:w="526106849"/><text x="70.1373%" y="1823.50"></text></g><g><title>v8::internal::Execution::Call (525,207,293 samples, 0.17%)</title><rect x="69.8876%" y="1797" width="0.1708%" height="15" fill="rgb(214,102,34)" fg:x="214928132186" fg:w="525207293"/><text x="70.1376%" y="1807.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (525,207,293 samples, 0.17%)</title><rect x="69.8876%" y="1781" width="0.1708%" height="15" fill="rgb(245,92,5)" fg:x="214928132186" fg:w="525207293"/><text x="70.1376%" y="1791.50"></text></g><g><title>Builtins_JSEntry (525,207,293 samples, 0.17%)</title><rect x="69.8876%" y="1765" width="0.1708%" height="15" fill="rgb(252,72,51)" fg:x="214928132186" fg:w="525207293"/><text x="70.1376%" y="1775.50"></text></g><g><title>node::InternalMakeCallback (582,549,778 samples, 0.19%)</title><rect x="69.8693%" y="1829" width="0.1894%" height="15" fill="rgb(252,208,19)" fg:x="214871780884" fg:w="582549778"/><text x="70.1193%" y="1839.50"></text></g><g><title>node::AsyncWrap::MakeCallback (584,769,421 samples, 0.19%)</title><rect x="69.8689%" y="1845" width="0.1901%" height="15" fill="rgb(211,69,7)" fg:x="214870739752" fg:w="584769421"/><text x="70.1189%" y="1855.50"></text></g><g><title>node::fs::FSReqCallback::Resolve (589,255,860 samples, 0.19%)</title><rect x="69.8689%" y="1861" width="0.1916%" height="15" fill="rgb(211,27,16)" fg:x="214870739752" fg:w="589255860"/><text x="70.1189%" y="1871.50"></text></g><g><title>node::fs::AfterInteger (596,829,888 samples, 0.19%)</title><rect x="69.8669%" y="1877" width="0.1941%" height="15" fill="rgb(219,216,14)" fg:x="214864349173" fg:w="596829888"/><text x="70.1169%" y="1887.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (56,525,528 samples, 0.02%)</title><rect x="70.0817%" y="485" width="0.0184%" height="15" fill="rgb(219,71,8)" fg:x="215524950138" fg:w="56525528"/><text x="70.3317%" y="495.50"></text></g><g><title>[perf-183375.map] (52,178,105 samples, 0.02%)</title><rect x="70.0831%" y="469" width="0.0170%" height="15" fill="rgb(223,170,53)" fg:x="215529297561" fg:w="52178105"/><text x="70.3331%" y="479.50"></text></g><g><title>[perf-183375.map] (52,178,105 samples, 0.02%)</title><rect x="70.0831%" y="453" width="0.0170%" height="15" fill="rgb(246,21,26)" fg:x="215529297561" fg:w="52178105"/><text x="70.3331%" y="463.50"></text></g><g><title>[perf-183375.map] (49,942,911 samples, 0.02%)</title><rect x="70.0838%" y="437" width="0.0162%" height="15" fill="rgb(248,20,46)" fg:x="215531532755" fg:w="49942911"/><text x="70.3338%" y="447.50"></text></g><g><title>[perf-183375.map] (49,942,911 samples, 0.02%)</title><rect x="70.0838%" y="421" width="0.0162%" height="15" fill="rgb(252,94,11)" fg:x="215531532755" fg:w="49942911"/><text x="70.3338%" y="431.50"></text></g><g><title>[perf-183375.map] (48,850,070 samples, 0.02%)</title><rect x="70.0842%" y="405" width="0.0159%" height="15" fill="rgb(236,163,8)" fg:x="215532625596" fg:w="48850070"/><text x="70.3342%" y="415.50"></text></g><g><title>[perf-183375.map] (48,850,070 samples, 0.02%)</title><rect x="70.0842%" y="389" width="0.0159%" height="15" fill="rgb(217,221,45)" fg:x="215532625596" fg:w="48850070"/><text x="70.3342%" y="399.50"></text></g><g><title>[perf-183375.map] (48,850,070 samples, 0.02%)</title><rect x="70.0842%" y="373" width="0.0159%" height="15" fill="rgb(238,38,17)" fg:x="215532625596" fg:w="48850070"/><text x="70.3342%" y="383.50"></text></g><g><title>[perf-183375.map] (44,849,093 samples, 0.01%)</title><rect x="70.0855%" y="357" width="0.0146%" height="15" fill="rgb(242,210,23)" fg:x="215536626573" fg:w="44849093"/><text x="70.3355%" y="367.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (101,104,988 samples, 0.03%)</title><rect x="70.0754%" y="629" width="0.0329%" height="15" fill="rgb(250,86,53)" fg:x="215505805898" fg:w="101104988"/><text x="70.3254%" y="639.50"></text></g><g><title>[perf-183375.map] (95,494,572 samples, 0.03%)</title><rect x="70.0773%" y="613" width="0.0311%" height="15" fill="rgb(223,168,25)" fg:x="215511416314" fg:w="95494572"/><text x="70.3273%" y="623.50"></text></g><g><title>[perf-183375.map] (94,291,532 samples, 0.03%)</title><rect x="70.0777%" y="597" width="0.0307%" height="15" fill="rgb(251,189,4)" fg:x="215512619354" fg:w="94291532"/><text x="70.3277%" y="607.50"></text></g><g><title>[perf-183375.map] (91,866,111 samples, 0.03%)</title><rect x="70.0784%" y="581" width="0.0299%" height="15" fill="rgb(245,19,28)" fg:x="215515044775" fg:w="91866111"/><text x="70.3284%" y="591.50"></text></g><g><title>[perf-183375.map] (91,866,111 samples, 0.03%)</title><rect x="70.0784%" y="565" width="0.0299%" height="15" fill="rgb(207,10,34)" fg:x="215515044775" fg:w="91866111"/><text x="70.3284%" y="575.50"></text></g><g><title>[perf-183375.map] (91,866,111 samples, 0.03%)</title><rect x="70.0784%" y="549" width="0.0299%" height="15" fill="rgb(235,153,31)" fg:x="215515044775" fg:w="91866111"/><text x="70.3284%" y="559.50"></text></g><g><title>[perf-183375.map] (91,866,111 samples, 0.03%)</title><rect x="70.0784%" y="533" width="0.0299%" height="15" fill="rgb(228,72,37)" fg:x="215515044775" fg:w="91866111"/><text x="70.3284%" y="543.50"></text></g><g><title>[perf-183375.map] (90,601,339 samples, 0.03%)</title><rect x="70.0789%" y="517" width="0.0295%" height="15" fill="rgb(215,15,16)" fg:x="215516309547" fg:w="90601339"/><text x="70.3289%" y="527.50"></text></g><g><title>[perf-183375.map] (86,229,971 samples, 0.03%)</title><rect x="70.0803%" y="501" width="0.0280%" height="15" fill="rgb(250,119,29)" fg:x="215520680915" fg:w="86229971"/><text x="70.3303%" y="511.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (136,168,533 samples, 0.04%)</title><rect x="70.0718%" y="773" width="0.0443%" height="15" fill="rgb(214,59,1)" fg:x="215494470710" fg:w="136168533"/><text x="70.3218%" y="783.50"></text></g><g><title>[perf-183375.map] (130,394,559 samples, 0.04%)</title><rect x="70.0736%" y="757" width="0.0424%" height="15" fill="rgb(223,109,25)" fg:x="215500244684" fg:w="130394559"/><text x="70.3236%" y="767.50"></text></g><g><title>[perf-183375.map] (130,394,559 samples, 0.04%)</title><rect x="70.0736%" y="741" width="0.0424%" height="15" fill="rgb(230,198,22)" fg:x="215500244684" fg:w="130394559"/><text x="70.3236%" y="751.50"></text></g><g><title>[perf-183375.map] (130,394,559 samples, 0.04%)</title><rect x="70.0736%" y="725" width="0.0424%" height="15" fill="rgb(245,184,46)" fg:x="215500244684" fg:w="130394559"/><text x="70.3236%" y="735.50"></text></g><g><title>[perf-183375.map] (129,263,834 samples, 0.04%)</title><rect x="70.0740%" y="709" width="0.0420%" height="15" fill="rgb(253,73,16)" fg:x="215501375409" fg:w="129263834"/><text x="70.3240%" y="719.50"></text></g><g><title>[perf-183375.map] (129,263,834 samples, 0.04%)</title><rect x="70.0740%" y="693" width="0.0420%" height="15" fill="rgb(206,94,45)" fg:x="215501375409" fg:w="129263834"/><text x="70.3240%" y="703.50"></text></g><g><title>[perf-183375.map] (128,111,233 samples, 0.04%)</title><rect x="70.0744%" y="677" width="0.0417%" height="15" fill="rgb(236,83,27)" fg:x="215502528010" fg:w="128111233"/><text x="70.3244%" y="687.50"></text></g><g><title>[perf-183375.map] (127,012,832 samples, 0.04%)</title><rect x="70.0747%" y="661" width="0.0413%" height="15" fill="rgb(220,196,8)" fg:x="215503626411" fg:w="127012832"/><text x="70.3247%" y="671.50"></text></g><g><title>[perf-183375.map] (126,010,294 samples, 0.04%)</title><rect x="70.0751%" y="645" width="0.0410%" height="15" fill="rgb(254,185,14)" fg:x="215504628949" fg:w="126010294"/><text x="70.3251%" y="655.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (160,523,241 samples, 0.05%)</title><rect x="70.0710%" y="917" width="0.0522%" height="15" fill="rgb(226,50,22)" fg:x="215492208520" fg:w="160523241"/><text x="70.3210%" y="927.50"></text></g><g><title>[perf-183375.map] (159,456,445 samples, 0.05%)</title><rect x="70.0714%" y="901" width="0.0519%" height="15" fill="rgb(253,147,0)" fg:x="215493275316" fg:w="159456445"/><text x="70.3214%" y="911.50"></text></g><g><title>[perf-183375.map] (159,456,445 samples, 0.05%)</title><rect x="70.0714%" y="885" width="0.0519%" height="15" fill="rgb(252,46,33)" fg:x="215493275316" fg:w="159456445"/><text x="70.3214%" y="895.50"></text></g><g><title>[perf-183375.map] (158,261,051 samples, 0.05%)</title><rect x="70.0718%" y="869" width="0.0515%" height="15" fill="rgb(242,22,54)" fg:x="215494470710" fg:w="158261051"/><text x="70.3218%" y="879.50"></text></g><g><title>[perf-183375.map] (158,261,051 samples, 0.05%)</title><rect x="70.0718%" y="853" width="0.0515%" height="15" fill="rgb(223,178,32)" fg:x="215494470710" fg:w="158261051"/><text x="70.3218%" y="863.50"></text></g><g><title>[perf-183375.map] (158,261,051 samples, 0.05%)</title><rect x="70.0718%" y="837" width="0.0515%" height="15" fill="rgb(214,106,53)" fg:x="215494470710" fg:w="158261051"/><text x="70.3218%" y="847.50"></text></g><g><title>[perf-183375.map] (158,261,051 samples, 0.05%)</title><rect x="70.0718%" y="821" width="0.0515%" height="15" fill="rgb(232,65,50)" fg:x="215494470710" fg:w="158261051"/><text x="70.3218%" y="831.50"></text></g><g><title>[perf-183375.map] (158,261,051 samples, 0.05%)</title><rect x="70.0718%" y="805" width="0.0515%" height="15" fill="rgb(231,110,28)" fg:x="215494470710" fg:w="158261051"/><text x="70.3218%" y="815.50"></text></g><g><title>[perf-183375.map] (158,261,051 samples, 0.05%)</title><rect x="70.0718%" y="789" width="0.0515%" height="15" fill="rgb(216,71,40)" fg:x="215494470710" fg:w="158261051"/><text x="70.3218%" y="799.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (172,382,678 samples, 0.06%)</title><rect x="70.0696%" y="1061" width="0.0561%" height="15" fill="rgb(229,89,53)" fg:x="215487946562" fg:w="172382678"/><text x="70.3196%" y="1071.50"></text></g><g><title>[perf-183375.map] (171,474,747 samples, 0.06%)</title><rect x="70.0699%" y="1045" width="0.0558%" height="15" fill="rgb(210,124,14)" fg:x="215488854493" fg:w="171474747"/><text x="70.3199%" y="1055.50"></text></g><g><title>[perf-183375.map] (171,474,747 samples, 0.06%)</title><rect x="70.0699%" y="1029" width="0.0558%" height="15" fill="rgb(236,213,6)" fg:x="215488854493" fg:w="171474747"/><text x="70.3199%" y="1039.50"></text></g><g><title>[perf-183375.map] (171,474,747 samples, 0.06%)</title><rect x="70.0699%" y="1013" width="0.0558%" height="15" fill="rgb(228,41,5)" fg:x="215488854493" fg:w="171474747"/><text x="70.3199%" y="1023.50"></text></g><g><title>[perf-183375.map] (170,465,893 samples, 0.06%)</title><rect x="70.0703%" y="997" width="0.0554%" height="15" fill="rgb(221,167,25)" fg:x="215489863347" fg:w="170465893"/><text x="70.3203%" y="1007.50"></text></g><g><title>[perf-183375.map] (170,465,893 samples, 0.06%)</title><rect x="70.0703%" y="981" width="0.0554%" height="15" fill="rgb(228,144,37)" fg:x="215489863347" fg:w="170465893"/><text x="70.3203%" y="991.50"></text></g><g><title>[perf-183375.map] (170,465,893 samples, 0.06%)</title><rect x="70.0703%" y="965" width="0.0554%" height="15" fill="rgb(227,189,38)" fg:x="215489863347" fg:w="170465893"/><text x="70.3203%" y="975.50"></text></g><g><title>[perf-183375.map] (169,283,823 samples, 0.06%)</title><rect x="70.0706%" y="949" width="0.0550%" height="15" fill="rgb(218,8,2)" fg:x="215491045417" fg:w="169283823"/><text x="70.3206%" y="959.50"></text></g><g><title>[perf-183375.map] (168,120,720 samples, 0.05%)</title><rect x="70.0710%" y="933" width="0.0547%" height="15" fill="rgb(209,61,28)" fg:x="215492208520" fg:w="168120720"/><text x="70.3210%" y="943.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (188,673,510 samples, 0.06%)</title><rect x="70.0685%" y="1205" width="0.0614%" height="15" fill="rgb(233,140,39)" fg:x="215484495275" fg:w="188673510"/><text x="70.3185%" y="1215.50"></text></g><g><title>[perf-183375.map] (188,673,510 samples, 0.06%)</title><rect x="70.0685%" y="1189" width="0.0614%" height="15" fill="rgb(251,66,48)" fg:x="215484495275" fg:w="188673510"/><text x="70.3185%" y="1199.50"></text></g><g><title>[perf-183375.map] (188,673,510 samples, 0.06%)</title><rect x="70.0685%" y="1173" width="0.0614%" height="15" fill="rgb(210,44,45)" fg:x="215484495275" fg:w="188673510"/><text x="70.3185%" y="1183.50"></text></g><g><title>[perf-183375.map] (188,673,510 samples, 0.06%)</title><rect x="70.0685%" y="1157" width="0.0614%" height="15" fill="rgb(214,136,46)" fg:x="215484495275" fg:w="188673510"/><text x="70.3185%" y="1167.50"></text></g><g><title>[perf-183375.map] (188,673,510 samples, 0.06%)</title><rect x="70.0685%" y="1141" width="0.0614%" height="15" fill="rgb(207,130,50)" fg:x="215484495275" fg:w="188673510"/><text x="70.3185%" y="1151.50"></text></g><g><title>[perf-183375.map] (188,673,510 samples, 0.06%)</title><rect x="70.0685%" y="1125" width="0.0614%" height="15" fill="rgb(228,102,49)" fg:x="215484495275" fg:w="188673510"/><text x="70.3185%" y="1135.50"></text></g><g><title>[perf-183375.map] (186,294,418 samples, 0.06%)</title><rect x="70.0693%" y="1109" width="0.0606%" height="15" fill="rgb(253,55,1)" fg:x="215486874367" fg:w="186294418"/><text x="70.3193%" y="1119.50"></text></g><g><title>[perf-183375.map] (186,294,418 samples, 0.06%)</title><rect x="70.0693%" y="1093" width="0.0606%" height="15" fill="rgb(238,222,9)" fg:x="215486874367" fg:w="186294418"/><text x="70.3193%" y="1103.50"></text></g><g><title>[perf-183375.map] (186,294,418 samples, 0.06%)</title><rect x="70.0693%" y="1077" width="0.0606%" height="15" fill="rgb(246,99,6)" fg:x="215486874367" fg:w="186294418"/><text x="70.3193%" y="1087.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (194,334,676 samples, 0.06%)</title><rect x="70.0678%" y="1349" width="0.0632%" height="15" fill="rgb(219,110,26)" fg:x="215482189586" fg:w="194334676"/><text x="70.3178%" y="1359.50"></text></g><g><title>[perf-183375.map] (194,334,676 samples, 0.06%)</title><rect x="70.0678%" y="1333" width="0.0632%" height="15" fill="rgb(239,160,33)" fg:x="215482189586" fg:w="194334676"/><text x="70.3178%" y="1343.50"></text></g><g><title>[perf-183375.map] (194,334,676 samples, 0.06%)</title><rect x="70.0678%" y="1317" width="0.0632%" height="15" fill="rgb(220,202,23)" fg:x="215482189586" fg:w="194334676"/><text x="70.3178%" y="1327.50"></text></g><g><title>[perf-183375.map] (193,190,793 samples, 0.06%)</title><rect x="70.0681%" y="1301" width="0.0628%" height="15" fill="rgb(208,80,26)" fg:x="215483333469" fg:w="193190793"/><text x="70.3181%" y="1311.50"></text></g><g><title>[perf-183375.map] (193,190,793 samples, 0.06%)</title><rect x="70.0681%" y="1285" width="0.0628%" height="15" fill="rgb(243,85,7)" fg:x="215483333469" fg:w="193190793"/><text x="70.3181%" y="1295.50"></text></g><g><title>[perf-183375.map] (193,190,793 samples, 0.06%)</title><rect x="70.0681%" y="1269" width="0.0628%" height="15" fill="rgb(228,77,47)" fg:x="215483333469" fg:w="193190793"/><text x="70.3181%" y="1279.50"></text></g><g><title>[perf-183375.map] (192,028,987 samples, 0.06%)</title><rect x="70.0685%" y="1253" width="0.0624%" height="15" fill="rgb(212,226,8)" fg:x="215484495275" fg:w="192028987"/><text x="70.3185%" y="1263.50"></text></g><g><title>[perf-183375.map] (192,028,987 samples, 0.06%)</title><rect x="70.0685%" y="1237" width="0.0624%" height="15" fill="rgb(241,120,54)" fg:x="215484495275" fg:w="192028987"/><text x="70.3185%" y="1247.50"></text></g><g><title>[perf-183375.map] (192,028,987 samples, 0.06%)</title><rect x="70.0685%" y="1221" width="0.0624%" height="15" fill="rgb(226,80,16)" fg:x="215484495275" fg:w="192028987"/><text x="70.3185%" y="1231.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (205,511,836 samples, 0.07%)</title><rect x="70.0649%" y="1637" width="0.0668%" height="15" fill="rgb(240,76,13)" fg:x="215473457050" fg:w="205511836"/><text x="70.3149%" y="1647.50"></text></g><g><title>[perf-183375.map] (199,012,400 samples, 0.06%)</title><rect x="70.0670%" y="1621" width="0.0647%" height="15" fill="rgb(252,74,8)" fg:x="215479956486" fg:w="199012400"/><text x="70.3170%" y="1631.50"></text></g><g><title>[perf-183375.map] (199,012,400 samples, 0.06%)</title><rect x="70.0670%" y="1605" width="0.0647%" height="15" fill="rgb(244,155,2)" fg:x="215479956486" fg:w="199012400"/><text x="70.3170%" y="1615.50"></text></g><g><title>[perf-183375.map] (199,012,400 samples, 0.06%)</title><rect x="70.0670%" y="1589" width="0.0647%" height="15" fill="rgb(215,81,35)" fg:x="215479956486" fg:w="199012400"/><text x="70.3170%" y="1599.50"></text></g><g><title>[perf-183375.map] (199,012,400 samples, 0.06%)</title><rect x="70.0670%" y="1573" width="0.0647%" height="15" fill="rgb(206,55,2)" fg:x="215479956486" fg:w="199012400"/><text x="70.3170%" y="1583.50"></text></g><g><title>[perf-183375.map] (199,012,400 samples, 0.06%)</title><rect x="70.0670%" y="1557" width="0.0647%" height="15" fill="rgb(231,2,34)" fg:x="215479956486" fg:w="199012400"/><text x="70.3170%" y="1567.50"></text></g><g><title>[perf-183375.map] (199,012,400 samples, 0.06%)</title><rect x="70.0670%" y="1541" width="0.0647%" height="15" fill="rgb(242,176,48)" fg:x="215479956486" fg:w="199012400"/><text x="70.3170%" y="1551.50"></text></g><g><title>[perf-183375.map] (199,012,400 samples, 0.06%)</title><rect x="70.0670%" y="1525" width="0.0647%" height="15" fill="rgb(249,31,36)" fg:x="215479956486" fg:w="199012400"/><text x="70.3170%" y="1535.50"></text></g><g><title>[perf-183375.map] (199,012,400 samples, 0.06%)</title><rect x="70.0670%" y="1509" width="0.0647%" height="15" fill="rgb(205,18,17)" fg:x="215479956486" fg:w="199012400"/><text x="70.3170%" y="1519.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (197,905,968 samples, 0.06%)</title><rect x="70.0674%" y="1493" width="0.0644%" height="15" fill="rgb(254,130,5)" fg:x="215481062918" fg:w="197905968"/><text x="70.3174%" y="1503.50"></text></g><g><title>[perf-183375.map] (197,905,968 samples, 0.06%)</title><rect x="70.0674%" y="1477" width="0.0644%" height="15" fill="rgb(229,42,45)" fg:x="215481062918" fg:w="197905968"/><text x="70.3174%" y="1487.50"></text></g><g><title>[perf-183375.map] (197,905,968 samples, 0.06%)</title><rect x="70.0674%" y="1461" width="0.0644%" height="15" fill="rgb(245,95,25)" fg:x="215481062918" fg:w="197905968"/><text x="70.3174%" y="1471.50"></text></g><g><title>[perf-183375.map] (197,905,968 samples, 0.06%)</title><rect x="70.0674%" y="1445" width="0.0644%" height="15" fill="rgb(249,193,38)" fg:x="215481062918" fg:w="197905968"/><text x="70.3174%" y="1455.50"></text></g><g><title>[perf-183375.map] (197,905,968 samples, 0.06%)</title><rect x="70.0674%" y="1429" width="0.0644%" height="15" fill="rgb(241,140,43)" fg:x="215481062918" fg:w="197905968"/><text x="70.3174%" y="1439.50"></text></g><g><title>[perf-183375.map] (197,905,968 samples, 0.06%)</title><rect x="70.0674%" y="1413" width="0.0644%" height="15" fill="rgb(245,78,48)" fg:x="215481062918" fg:w="197905968"/><text x="70.3174%" y="1423.50"></text></g><g><title>[perf-183375.map] (197,905,968 samples, 0.06%)</title><rect x="70.0674%" y="1397" width="0.0644%" height="15" fill="rgb(214,92,39)" fg:x="215481062918" fg:w="197905968"/><text x="70.3174%" y="1407.50"></text></g><g><title>[perf-183375.map] (197,905,968 samples, 0.06%)</title><rect x="70.0674%" y="1381" width="0.0644%" height="15" fill="rgb(211,189,14)" fg:x="215481062918" fg:w="197905968"/><text x="70.3174%" y="1391.50"></text></g><g><title>[perf-183375.map] (196,779,300 samples, 0.06%)</title><rect x="70.0678%" y="1365" width="0.0640%" height="15" fill="rgb(218,7,24)" fg:x="215482189586" fg:w="196779300"/><text x="70.3178%" y="1375.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (214,719,059 samples, 0.07%)</title><rect x="70.0623%" y="1669" width="0.0698%" height="15" fill="rgb(224,200,49)" fg:x="215465305234" fg:w="214719059"/><text x="70.3123%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (209,522,276 samples, 0.07%)</title><rect x="70.0640%" y="1653" width="0.0681%" height="15" fill="rgb(218,210,14)" fg:x="215470502017" fg:w="209522276"/><text x="70.3140%" y="1663.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (217,027,530 samples, 0.07%)</title><rect x="70.0619%" y="1685" width="0.0706%" height="15" fill="rgb(234,142,31)" fg:x="215464246133" fg:w="217027530"/><text x="70.3119%" y="1695.50"></text></g><g><title>Builtins_AsyncFunctionAwaitResolveClosure (240,720,458 samples, 0.08%)</title><rect x="70.0617%" y="1701" width="0.0783%" height="15" fill="rgb(227,165,2)" fg:x="215463517211" fg:w="240720458"/><text x="70.3117%" y="1711.50"></text></g><g><title>node::fs::AfterMkdirp (244,317,135 samples, 0.08%)</title><rect x="70.0609%" y="1877" width="0.0794%" height="15" fill="rgb(232,44,46)" fg:x="215461179061" fg:w="244317135"/><text x="70.3109%" y="1887.50"></text></g><g><title>node::fs::FSReqPromise&lt;node::AliasedBufferBase&lt;double, v8::Float64Array&gt; &gt;::Resolve (243,138,586 samples, 0.08%)</title><rect x="70.0613%" y="1861" width="0.0791%" height="15" fill="rgb(236,149,47)" fg:x="215462357610" fg:w="243138586"/><text x="70.3113%" y="1871.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (243,138,586 samples, 0.08%)</title><rect x="70.0613%" y="1845" width="0.0791%" height="15" fill="rgb(227,45,31)" fg:x="215462357610" fg:w="243138586"/><text x="70.3113%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::Close (243,138,586 samples, 0.08%)</title><rect x="70.0613%" y="1829" width="0.0791%" height="15" fill="rgb(240,176,51)" fg:x="215462357610" fg:w="243138586"/><text x="70.3113%" y="1839.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (243,138,586 samples, 0.08%)</title><rect x="70.0613%" y="1813" width="0.0791%" height="15" fill="rgb(249,146,41)" fg:x="215462357610" fg:w="243138586"/><text x="70.3113%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (243,138,586 samples, 0.08%)</title><rect x="70.0613%" y="1797" width="0.0791%" height="15" fill="rgb(213,208,4)" fg:x="215462357610" fg:w="243138586"/><text x="70.3113%" y="1807.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (243,138,586 samples, 0.08%)</title><rect x="70.0613%" y="1781" width="0.0791%" height="15" fill="rgb(245,84,36)" fg:x="215462357610" fg:w="243138586"/><text x="70.3113%" y="1791.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (243,138,586 samples, 0.08%)</title><rect x="70.0613%" y="1765" width="0.0791%" height="15" fill="rgb(254,84,18)" fg:x="215462357610" fg:w="243138586"/><text x="70.3113%" y="1775.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (243,138,586 samples, 0.08%)</title><rect x="70.0613%" y="1749" width="0.0791%" height="15" fill="rgb(225,38,54)" fg:x="215462357610" fg:w="243138586"/><text x="70.3113%" y="1759.50"></text></g><g><title>Builtins_RunMicrotasks (243,138,586 samples, 0.08%)</title><rect x="70.0613%" y="1733" width="0.0791%" height="15" fill="rgb(246,50,30)" fg:x="215462357610" fg:w="243138586"/><text x="70.3113%" y="1743.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (241,978,985 samples, 0.08%)</title><rect x="70.0617%" y="1717" width="0.0787%" height="15" fill="rgb(246,148,9)" fg:x="215463517211" fg:w="241978985"/><text x="70.3117%" y="1727.50"></text></g><g><title>v8::Object::CallAsFunction (139,246,349 samples, 0.05%)</title><rect x="70.1424%" y="1813" width="0.0453%" height="15" fill="rgb(223,75,4)" fg:x="215711612097" fg:w="139246349"/><text x="70.3924%" y="1823.50"></text></g><g><title>v8::internal::Execution::Call (139,246,349 samples, 0.05%)</title><rect x="70.1424%" y="1797" width="0.0453%" height="15" fill="rgb(239,148,41)" fg:x="215711612097" fg:w="139246349"/><text x="70.3924%" y="1807.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (139,246,349 samples, 0.05%)</title><rect x="70.1424%" y="1781" width="0.0453%" height="15" fill="rgb(205,195,3)" fg:x="215711612097" fg:w="139246349"/><text x="70.3924%" y="1791.50"></text></g><g><title>Builtins_JSEntry (136,884,380 samples, 0.04%)</title><rect x="70.1431%" y="1765" width="0.0445%" height="15" fill="rgb(254,161,1)" fg:x="215713974066" fg:w="136884380"/><text x="70.3931%" y="1775.50"></text></g><g><title>Builtins_JSEntryTrampoline (134,562,422 samples, 0.04%)</title><rect x="70.1439%" y="1749" width="0.0438%" height="15" fill="rgb(211,229,8)" fg:x="215716296024" fg:w="134562422"/><text x="70.3939%" y="1759.50"></text></g><g><title>[perf-183375.map] (133,458,179 samples, 0.04%)</title><rect x="70.1442%" y="1733" width="0.0434%" height="15" fill="rgb(220,97,9)" fg:x="215717400267" fg:w="133458179"/><text x="70.3942%" y="1743.50"></text></g><g><title>[perf-183375.map] (133,458,179 samples, 0.04%)</title><rect x="70.1442%" y="1717" width="0.0434%" height="15" fill="rgb(240,218,8)" fg:x="215717400267" fg:w="133458179"/><text x="70.3942%" y="1727.50"></text></g><g><title>[perf-183375.map] (126,841,183 samples, 0.04%)</title><rect x="70.1464%" y="1701" width="0.0412%" height="15" fill="rgb(250,44,0)" fg:x="215724017263" fg:w="126841183"/><text x="70.3964%" y="1711.50"></text></g><g><title>[perf-183375.map] (121,279,880 samples, 0.04%)</title><rect x="70.1482%" y="1685" width="0.0394%" height="15" fill="rgb(236,41,53)" fg:x="215729578566" fg:w="121279880"/><text x="70.3982%" y="1695.50"></text></g><g><title>[perf-183375.map] (101,244,894 samples, 0.03%)</title><rect x="70.1547%" y="1669" width="0.0329%" height="15" fill="rgb(218,227,13)" fg:x="215749613552" fg:w="101244894"/><text x="70.4047%" y="1679.50"></text></g><g><title>node::AsyncWrap::MakeCallback (142,692,698 samples, 0.05%)</title><rect x="70.1416%" y="1845" width="0.0464%" height="15" fill="rgb(217,94,32)" fg:x="215709303456" fg:w="142692698"/><text x="70.3916%" y="1855.50"></text></g><g><title>node::InternalMakeCallback (142,692,698 samples, 0.05%)</title><rect x="70.1416%" y="1829" width="0.0464%" height="15" fill="rgb(213,217,12)" fg:x="215709303456" fg:w="142692698"/><text x="70.3916%" y="1839.50"></text></g><g><title>node::fs::FSReqCallback::Resolve (143,310,207 samples, 0.05%)</title><rect x="70.1416%" y="1861" width="0.0466%" height="15" fill="rgb(229,13,46)" fg:x="215709303456" fg:w="143310207"/><text x="70.3916%" y="1871.50"></text></g><g><title>node::fs::AfterNoArgs (151,194,196 samples, 0.05%)</title><rect x="70.1404%" y="1877" width="0.0492%" height="15" fill="rgb(243,139,5)" fg:x="215705496196" fg:w="151194196"/><text x="70.3904%" y="1887.50"></text></g><g><title>ASN1_item_d2i (40,743,484 samples, 0.01%)</title><rect x="70.2107%" y="1541" width="0.0132%" height="15" fill="rgb(249,38,45)" fg:x="215921900552" fg:w="40743484"/><text x="70.4607%" y="1551.50"></text></g><g><title>asn1_item_embed_d2i (40,743,484 samples, 0.01%)</title><rect x="70.2107%" y="1525" width="0.0132%" height="15" fill="rgb(216,70,11)" fg:x="215921900552" fg:w="40743484"/><text x="70.4607%" y="1535.50"></text></g><g><title>asn1_template_ex_d2i (40,743,484 samples, 0.01%)</title><rect x="70.2107%" y="1509" width="0.0132%" height="15" fill="rgb(253,101,25)" fg:x="215921900552" fg:w="40743484"/><text x="70.4607%" y="1519.50"></text></g><g><title>asn1_template_noexp_d2i (40,743,484 samples, 0.01%)</title><rect x="70.2107%" y="1493" width="0.0132%" height="15" fill="rgb(207,197,30)" fg:x="215921900552" fg:w="40743484"/><text x="70.4607%" y="1503.50"></text></g><g><title>asn1_item_embed_d2i (40,743,484 samples, 0.01%)</title><rect x="70.2107%" y="1477" width="0.0132%" height="15" fill="rgb(238,87,13)" fg:x="215921900552" fg:w="40743484"/><text x="70.4607%" y="1487.50"></text></g><g><title>asn1_template_ex_d2i (40,743,484 samples, 0.01%)</title><rect x="70.2107%" y="1461" width="0.0132%" height="15" fill="rgb(215,155,8)" fg:x="215921900552" fg:w="40743484"/><text x="70.4607%" y="1471.50"></text></g><g><title>asn1_template_noexp_d2i (40,743,484 samples, 0.01%)</title><rect x="70.2107%" y="1445" width="0.0132%" height="15" fill="rgb(239,166,38)" fg:x="215921900552" fg:w="40743484"/><text x="70.4607%" y="1455.50"></text></g><g><title>asn1_item_embed_d2i (40,743,484 samples, 0.01%)</title><rect x="70.2107%" y="1429" width="0.0132%" height="15" fill="rgb(240,194,35)" fg:x="215921900552" fg:w="40743484"/><text x="70.4607%" y="1439.50"></text></g><g><title>x509_pubkey_ex_d2i_ex (36,313,731 samples, 0.01%)</title><rect x="70.2122%" y="1413" width="0.0118%" height="15" fill="rgb(219,10,44)" fg:x="215926330305" fg:w="36313731"/><text x="70.4622%" y="1423.50"></text></g><g><title>PEM_ASN1_read_bio (44,268,679 samples, 0.01%)</title><rect x="70.2107%" y="1557" width="0.0144%" height="15" fill="rgb(251,220,35)" fg:x="215921900552" fg:w="44268679"/><text x="70.4607%" y="1567.50"></text></g><g><title>Builtins_CallApiCallbackGeneric (45,452,855 samples, 0.01%)</title><rect x="70.2107%" y="1605" width="0.0148%" height="15" fill="rgb(218,117,13)" fg:x="215921900552" fg:w="45452855"/><text x="70.4607%" y="1615.50"></text></g><g><title>node::crypto::SecureContext::AddRootCerts (45,452,855 samples, 0.01%)</title><rect x="70.2107%" y="1589" width="0.0148%" height="15" fill="rgb(221,213,40)" fg:x="215921900552" fg:w="45452855"/><text x="70.4607%" y="1599.50"></text></g><g><title>node::crypto::NewRootCertStore (45,452,855 samples, 0.01%)</title><rect x="70.2107%" y="1573" width="0.0148%" height="15" fill="rgb(251,224,35)" fg:x="215921900552" fg:w="45452855"/><text x="70.4607%" y="1583.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (83,357,457 samples, 0.03%)</title><rect x="70.2000%" y="1685" width="0.0271%" height="15" fill="rgb(241,33,39)" fg:x="215888769461" fg:w="83357457"/><text x="70.4500%" y="1695.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (83,357,457 samples, 0.03%)</title><rect x="70.2000%" y="1669" width="0.0271%" height="15" fill="rgb(222,74,17)" fg:x="215888769461" fg:w="83357457"/><text x="70.4500%" y="1679.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (82,338,619 samples, 0.03%)</title><rect x="70.2003%" y="1653" width="0.0268%" height="15" fill="rgb(225,103,0)" fg:x="215889788299" fg:w="82338619"/><text x="70.4503%" y="1663.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (55,403,755 samples, 0.02%)</title><rect x="70.2091%" y="1637" width="0.0180%" height="15" fill="rgb(240,0,12)" fg:x="215916723163" fg:w="55403755"/><text x="70.4591%" y="1647.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (50,226,366 samples, 0.02%)</title><rect x="70.2107%" y="1621" width="0.0163%" height="15" fill="rgb(233,213,37)" fg:x="215921900552" fg:w="50226366"/><text x="70.4607%" y="1631.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (140,346,285 samples, 0.05%)</title><rect x="70.1923%" y="1701" width="0.0456%" height="15" fill="rgb(225,84,52)" fg:x="215865111941" fg:w="140346285"/><text x="70.4423%" y="1711.50"></text></g><g><title>[perf-183375.map] (33,331,308 samples, 0.01%)</title><rect x="70.2271%" y="1685" width="0.0108%" height="15" fill="rgb(247,160,51)" fg:x="215972126918" fg:w="33331308"/><text x="70.4771%" y="1695.50"></text></g><g><title>node::fs::FSReqAfterScope::Reject (156,253,716 samples, 0.05%)</title><rect x="70.1895%" y="1861" width="0.0508%" height="15" fill="rgb(244,60,51)" fg:x="215856690392" fg:w="156253716"/><text x="70.4395%" y="1871.50"></text></g><g><title>node::fs::FSReqPromise&lt;node::AliasedBufferBase&lt;double, v8::Float64Array&gt; &gt;::Reject (154,976,346 samples, 0.05%)</title><rect x="70.1900%" y="1845" width="0.0504%" height="15" fill="rgb(233,114,7)" fg:x="215857967762" fg:w="154976346"/><text x="70.4400%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (154,976,346 samples, 0.05%)</title><rect x="70.1900%" y="1829" width="0.0504%" height="15" fill="rgb(246,136,16)" fg:x="215857967762" fg:w="154976346"/><text x="70.4400%" y="1839.50"></text></g><g><title>node::InternalCallbackScope::Close (154,976,346 samples, 0.05%)</title><rect x="70.1900%" y="1813" width="0.0504%" height="15" fill="rgb(243,114,45)" fg:x="215857967762" fg:w="154976346"/><text x="70.4400%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (147,832,167 samples, 0.05%)</title><rect x="70.1923%" y="1797" width="0.0481%" height="15" fill="rgb(247,183,43)" fg:x="215865111941" fg:w="147832167"/><text x="70.4423%" y="1807.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (147,832,167 samples, 0.05%)</title><rect x="70.1923%" y="1781" width="0.0481%" height="15" fill="rgb(251,210,42)" fg:x="215865111941" fg:w="147832167"/><text x="70.4423%" y="1791.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (147,832,167 samples, 0.05%)</title><rect x="70.1923%" y="1765" width="0.0481%" height="15" fill="rgb(221,88,35)" fg:x="215865111941" fg:w="147832167"/><text x="70.4423%" y="1775.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (147,832,167 samples, 0.05%)</title><rect x="70.1923%" y="1749" width="0.0481%" height="15" fill="rgb(242,21,20)" fg:x="215865111941" fg:w="147832167"/><text x="70.4423%" y="1759.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (147,832,167 samples, 0.05%)</title><rect x="70.1923%" y="1733" width="0.0481%" height="15" fill="rgb(233,226,36)" fg:x="215865111941" fg:w="147832167"/><text x="70.4423%" y="1743.50"></text></g><g><title>Builtins_RunMicrotasks (147,832,167 samples, 0.05%)</title><rect x="70.1923%" y="1717" width="0.0481%" height="15" fill="rgb(243,189,34)" fg:x="215865111941" fg:w="147832167"/><text x="70.4423%" y="1727.50"></text></g><g><title>node::fs::AfterOpenFileHandle (163,137,123 samples, 0.05%)</title><rect x="70.1895%" y="1877" width="0.0530%" height="15" fill="rgb(207,145,50)" fg:x="215856690392" fg:w="163137123"/><text x="70.4395%" y="1887.50"></text></g><g><title>Builtins_ObjectPrototypeHasOwnProperty (33,056,006 samples, 0.01%)</title><rect x="70.3543%" y="1349" width="0.0107%" height="15" fill="rgb(242,1,50)" fg:x="216363497255" fg:w="33056006"/><text x="70.6043%" y="1359.50"></text></g><g><title>[perf-183375.map] (148,222,561 samples, 0.05%)</title><rect x="70.3854%" y="1301" width="0.0482%" height="15" fill="rgb(231,65,32)" fg:x="216459180067" fg:w="148222561"/><text x="70.6354%" y="1311.50"></text></g><g><title>[perf-183375.map] (144,599,308 samples, 0.05%)</title><rect x="70.3866%" y="1285" width="0.0470%" height="15" fill="rgb(208,68,49)" fg:x="216462803320" fg:w="144599308"/><text x="70.6366%" y="1295.50"></text></g><g><title>[perf-183375.map] (138,840,733 samples, 0.05%)</title><rect x="70.3885%" y="1269" width="0.0451%" height="15" fill="rgb(253,54,49)" fg:x="216468561895" fg:w="138840733"/><text x="70.6385%" y="1279.50"></text></g><g><title>[perf-183375.map] (114,730,607 samples, 0.04%)</title><rect x="70.3963%" y="1253" width="0.0373%" height="15" fill="rgb(245,186,24)" fg:x="216492672021" fg:w="114730607"/><text x="70.6463%" y="1263.50"></text></g><g><title>[perf-183375.map] (112,528,234 samples, 0.04%)</title><rect x="70.3971%" y="1237" width="0.0366%" height="15" fill="rgb(209,2,41)" fg:x="216494874394" fg:w="112528234"/><text x="70.6471%" y="1247.50"></text></g><g><title>[perf-183375.map] (109,228,074 samples, 0.04%)</title><rect x="70.3981%" y="1221" width="0.0355%" height="15" fill="rgb(242,208,54)" fg:x="216498174554" fg:w="109228074"/><text x="70.6481%" y="1231.50"></text></g><g><title>[perf-183375.map] (109,228,074 samples, 0.04%)</title><rect x="70.3981%" y="1205" width="0.0355%" height="15" fill="rgb(225,9,51)" fg:x="216498174554" fg:w="109228074"/><text x="70.6481%" y="1215.50"></text></g><g><title>[perf-183375.map] (109,228,074 samples, 0.04%)</title><rect x="70.3981%" y="1189" width="0.0355%" height="15" fill="rgb(207,207,25)" fg:x="216498174554" fg:w="109228074"/><text x="70.6481%" y="1199.50"></text></g><g><title>[perf-183375.map] (109,228,074 samples, 0.04%)</title><rect x="70.3981%" y="1173" width="0.0355%" height="15" fill="rgb(253,96,18)" fg:x="216498174554" fg:w="109228074"/><text x="70.6481%" y="1183.50"></text></g><g><title>[perf-183375.map] (109,228,074 samples, 0.04%)</title><rect x="70.3981%" y="1157" width="0.0355%" height="15" fill="rgb(252,215,20)" fg:x="216498174554" fg:w="109228074"/><text x="70.6481%" y="1167.50"></text></g><g><title>[perf-183375.map] (108,057,351 samples, 0.04%)</title><rect x="70.3985%" y="1141" width="0.0351%" height="15" fill="rgb(245,227,26)" fg:x="216499345277" fg:w="108057351"/><text x="70.6485%" y="1151.50"></text></g><g><title>[perf-183375.map] (106,946,791 samples, 0.03%)</title><rect x="70.3989%" y="1125" width="0.0348%" height="15" fill="rgb(241,208,0)" fg:x="216500455837" fg:w="106946791"/><text x="70.6489%" y="1135.50"></text></g><g><title>[perf-183375.map] (105,937,290 samples, 0.03%)</title><rect x="70.3992%" y="1109" width="0.0344%" height="15" fill="rgb(224,130,10)" fg:x="216501465338" fg:w="105937290"/><text x="70.6492%" y="1119.50"></text></g><g><title>[perf-183375.map] (104,807,919 samples, 0.03%)</title><rect x="70.3996%" y="1093" width="0.0341%" height="15" fill="rgb(237,29,0)" fg:x="216502594709" fg:w="104807919"/><text x="70.6496%" y="1103.50"></text></g><g><title>[perf-183375.map] (103,616,036 samples, 0.03%)</title><rect x="70.3999%" y="1077" width="0.0337%" height="15" fill="rgb(219,27,41)" fg:x="216503786592" fg:w="103616036"/><text x="70.6499%" y="1087.50"></text></g><g><title>[perf-183375.map] (102,447,219 samples, 0.03%)</title><rect x="70.4003%" y="1061" width="0.0333%" height="15" fill="rgb(245,101,19)" fg:x="216504955409" fg:w="102447219"/><text x="70.6503%" y="1071.50"></text></g><g><title>[perf-183375.map] (99,123,148 samples, 0.03%)</title><rect x="70.4014%" y="1045" width="0.0322%" height="15" fill="rgb(243,44,37)" fg:x="216508279480" fg:w="99123148"/><text x="70.6514%" y="1055.50"></text></g><g><title>[perf-183375.map] (92,555,453 samples, 0.03%)</title><rect x="70.4035%" y="1029" width="0.0301%" height="15" fill="rgb(228,213,43)" fg:x="216514847175" fg:w="92555453"/><text x="70.6535%" y="1039.50"></text></g><g><title>[perf-183375.map] (90,193,042 samples, 0.03%)</title><rect x="70.4043%" y="1013" width="0.0293%" height="15" fill="rgb(219,163,21)" fg:x="216517209586" fg:w="90193042"/><text x="70.6543%" y="1023.50"></text></g><g><title>[perf-183375.map] (89,217,648 samples, 0.03%)</title><rect x="70.4046%" y="997" width="0.0290%" height="15" fill="rgb(234,86,24)" fg:x="216518184980" fg:w="89217648"/><text x="70.6546%" y="1007.50"></text></g><g><title>[perf-183375.map] (86,714,006 samples, 0.03%)</title><rect x="70.4054%" y="981" width="0.0282%" height="15" fill="rgb(225,10,24)" fg:x="216520688622" fg:w="86714006"/><text x="70.6554%" y="991.50"></text></g><g><title>[perf-183375.map] (84,427,496 samples, 0.03%)</title><rect x="70.4062%" y="965" width="0.0275%" height="15" fill="rgb(218,109,7)" fg:x="216522975132" fg:w="84427496"/><text x="70.6562%" y="975.50"></text></g><g><title>[perf-183375.map] (81,912,284 samples, 0.03%)</title><rect x="70.4070%" y="949" width="0.0266%" height="15" fill="rgb(210,20,26)" fg:x="216525490344" fg:w="81912284"/><text x="70.6570%" y="959.50"></text></g><g><title>[perf-183375.map] (78,373,444 samples, 0.03%)</title><rect x="70.4082%" y="933" width="0.0255%" height="15" fill="rgb(216,18,1)" fg:x="216529029184" fg:w="78373444"/><text x="70.6582%" y="943.50"></text></g><g><title>[perf-183375.map] (62,380,148 samples, 0.02%)</title><rect x="70.4134%" y="917" width="0.0203%" height="15" fill="rgb(206,163,23)" fg:x="216545022480" fg:w="62380148"/><text x="70.6634%" y="927.50"></text></g><g><title>[perf-183375.map] (56,520,882 samples, 0.02%)</title><rect x="70.4153%" y="901" width="0.0184%" height="15" fill="rgb(229,150,31)" fg:x="216550881746" fg:w="56520882"/><text x="70.6653%" y="911.50"></text></g><g><title>[perf-183375.map] (44,541,838 samples, 0.01%)</title><rect x="70.4192%" y="885" width="0.0145%" height="15" fill="rgb(231,10,5)" fg:x="216562860790" fg:w="44541838"/><text x="70.6692%" y="895.50"></text></g><g><title>node::InternalMakeCallback (537,352,924 samples, 0.17%)</title><rect x="70.2592%" y="1813" width="0.1747%" height="15" fill="rgb(250,40,50)" fg:x="216071050642" fg:w="537352924"/><text x="70.5092%" y="1823.50"></text></g><g><title>v8::Object::CallAsFunction (511,563,433 samples, 0.17%)</title><rect x="70.2676%" y="1797" width="0.1663%" height="15" fill="rgb(217,119,7)" fg:x="216096840133" fg:w="511563433"/><text x="70.5176%" y="1807.50"></text></g><g><title>v8::internal::Execution::Call (511,563,433 samples, 0.17%)</title><rect x="70.2676%" y="1781" width="0.1663%" height="15" fill="rgb(245,214,40)" fg:x="216096840133" fg:w="511563433"/><text x="70.5176%" y="1791.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (511,563,433 samples, 0.17%)</title><rect x="70.2676%" y="1765" width="0.1663%" height="15" fill="rgb(216,187,1)" fg:x="216096840133" fg:w="511563433"/><text x="70.5176%" y="1775.50"></text></g><g><title>Builtins_JSEntry (511,563,433 samples, 0.17%)</title><rect x="70.2676%" y="1749" width="0.1663%" height="15" fill="rgb(237,146,21)" fg:x="216096840133" fg:w="511563433"/><text x="70.5176%" y="1759.50"></text></g><g><title>Builtins_JSEntryTrampoline (510,353,870 samples, 0.17%)</title><rect x="70.2680%" y="1733" width="0.1660%" height="15" fill="rgb(210,174,47)" fg:x="216098049696" fg:w="510353870"/><text x="70.5180%" y="1743.50"></text></g><g><title>[perf-183375.map] (510,353,870 samples, 0.17%)</title><rect x="70.2680%" y="1717" width="0.1660%" height="15" fill="rgb(218,111,39)" fg:x="216098049696" fg:w="510353870"/><text x="70.5180%" y="1727.50"></text></g><g><title>[perf-183375.map] (509,188,730 samples, 0.17%)</title><rect x="70.2684%" y="1701" width="0.1656%" height="15" fill="rgb(224,95,19)" fg:x="216099214836" fg:w="509188730"/><text x="70.5184%" y="1711.50"></text></g><g><title>[perf-183375.map] (502,445,014 samples, 0.16%)</title><rect x="70.2706%" y="1685" width="0.1634%" height="15" fill="rgb(234,15,38)" fg:x="216105958552" fg:w="502445014"/><text x="70.5206%" y="1695.50"></text></g><g><title>[perf-183375.map] (501,343,631 samples, 0.16%)</title><rect x="70.2709%" y="1669" width="0.1630%" height="15" fill="rgb(246,56,12)" fg:x="216107059935" fg:w="501343631"/><text x="70.5209%" y="1679.50"></text></g><g><title>[perf-183375.map] (499,339,025 samples, 0.16%)</title><rect x="70.2716%" y="1653" width="0.1624%" height="15" fill="rgb(247,16,17)" fg:x="216109064541" fg:w="499339025"/><text x="70.5216%" y="1663.50"></text></g><g><title>[perf-183375.map] (485,981,794 samples, 0.16%)</title><rect x="70.2759%" y="1637" width="0.1580%" height="15" fill="rgb(215,151,11)" fg:x="216122421772" fg:w="485981794"/><text x="70.5259%" y="1647.50"></text></g><g><title>[perf-183375.map] (474,431,439 samples, 0.15%)</title><rect x="70.2797%" y="1621" width="0.1543%" height="15" fill="rgb(225,16,24)" fg:x="216133972127" fg:w="474431439"/><text x="70.5297%" y="1631.50"></text></g><g><title>[perf-183375.map] (466,945,944 samples, 0.15%)</title><rect x="70.2821%" y="1605" width="0.1518%" height="15" fill="rgb(217,117,5)" fg:x="216141457622" fg:w="466945944"/><text x="70.5321%" y="1615.50"></text></g><g><title>[perf-183375.map] (435,875,891 samples, 0.14%)</title><rect x="70.2922%" y="1589" width="0.1417%" height="15" fill="rgb(246,187,53)" fg:x="216172527675" fg:w="435875891"/><text x="70.5422%" y="1599.50"></text></g><g><title>[perf-183375.map] (429,260,726 samples, 0.14%)</title><rect x="70.2944%" y="1573" width="0.1396%" height="15" fill="rgb(241,71,40)" fg:x="216179142840" fg:w="429260726"/><text x="70.5444%" y="1583.50"></text></g><g><title>[perf-183375.map] (427,119,018 samples, 0.14%)</title><rect x="70.2951%" y="1557" width="0.1389%" height="15" fill="rgb(231,67,39)" fg:x="216181284548" fg:w="427119018"/><text x="70.5451%" y="1567.50"></text></g><g><title>[perf-183375.map] (413,028,719 samples, 0.13%)</title><rect x="70.2997%" y="1541" width="0.1343%" height="15" fill="rgb(222,120,24)" fg:x="216195374847" fg:w="413028719"/><text x="70.5497%" y="1551.50"></text></g><g><title>[perf-183375.map] (411,825,718 samples, 0.13%)</title><rect x="70.3001%" y="1525" width="0.1339%" height="15" fill="rgb(248,3,3)" fg:x="216196577848" fg:w="411825718"/><text x="70.5501%" y="1535.50"></text></g><g><title>[perf-183375.map] (410,767,469 samples, 0.13%)</title><rect x="70.3004%" y="1509" width="0.1336%" height="15" fill="rgb(228,218,5)" fg:x="216197636097" fg:w="410767469"/><text x="70.5504%" y="1519.50"></text></g><g><title>[perf-183375.map] (407,166,098 samples, 0.13%)</title><rect x="70.3016%" y="1493" width="0.1324%" height="15" fill="rgb(212,202,43)" fg:x="216201237468" fg:w="407166098"/><text x="70.5516%" y="1503.50"></text></g><g><title>[perf-183375.map] (407,166,098 samples, 0.13%)</title><rect x="70.3016%" y="1477" width="0.1324%" height="15" fill="rgb(235,183,2)" fg:x="216201237468" fg:w="407166098"/><text x="70.5516%" y="1487.50"></text></g><g><title>[perf-183375.map] (403,805,302 samples, 0.13%)</title><rect x="70.3027%" y="1461" width="0.1313%" height="15" fill="rgb(230,165,10)" fg:x="216204598264" fg:w="403805302"/><text x="70.5527%" y="1471.50"></text></g><g><title>[perf-183375.map] (399,187,809 samples, 0.13%)</title><rect x="70.3042%" y="1445" width="0.1298%" height="15" fill="rgb(219,54,40)" fg:x="216209215757" fg:w="399187809"/><text x="70.5542%" y="1455.50"></text></g><g><title>[perf-183375.map] (398,051,016 samples, 0.13%)</title><rect x="70.3045%" y="1429" width="0.1294%" height="15" fill="rgb(244,73,9)" fg:x="216210352550" fg:w="398051016"/><text x="70.5545%" y="1439.50"></text></g><g><title>[perf-183375.map] (367,864,021 samples, 0.12%)</title><rect x="70.3144%" y="1413" width="0.1196%" height="15" fill="rgb(212,32,45)" fg:x="216240539545" fg:w="367864021"/><text x="70.5644%" y="1423.50"></text></g><g><title>[perf-183375.map] (316,091,314 samples, 0.10%)</title><rect x="70.3312%" y="1397" width="0.1028%" height="15" fill="rgb(205,58,31)" fg:x="216292312252" fg:w="316091314"/><text x="70.5812%" y="1407.50"></text></g><g><title>[perf-183375.map] (307,276,850 samples, 0.10%)</title><rect x="70.3341%" y="1381" width="0.0999%" height="15" fill="rgb(250,120,43)" fg:x="216301126716" fg:w="307276850"/><text x="70.5841%" y="1391.50"></text></g><g><title>[perf-183375.map] (290,201,315 samples, 0.09%)</title><rect x="70.3396%" y="1365" width="0.0944%" height="15" fill="rgb(235,13,10)" fg:x="216318202251" fg:w="290201315"/><text x="70.5896%" y="1375.50"></text></g><g><title>[perf-183375.map] (173,230,299 samples, 0.06%)</title><rect x="70.3776%" y="1349" width="0.0563%" height="15" fill="rgb(232,219,31)" fg:x="216435173267" fg:w="173230299"/><text x="70.6276%" y="1359.50"></text></g><g><title>[perf-183375.map] (163,741,990 samples, 0.05%)</title><rect x="70.3807%" y="1333" width="0.0532%" height="15" fill="rgb(218,157,51)" fg:x="216444661576" fg:w="163741990"/><text x="70.6307%" y="1343.50"></text></g><g><title>[perf-183375.map] (154,386,338 samples, 0.05%)</title><rect x="70.3838%" y="1317" width="0.0502%" height="15" fill="rgb(211,91,52)" fg:x="216454017228" fg:w="154386338"/><text x="70.6338%" y="1327.50"></text></g><g><title>node::AsyncWrap::MakeCallback (538,534,829 samples, 0.18%)</title><rect x="70.2592%" y="1829" width="0.1751%" height="15" fill="rgb(240,173,1)" fg:x="216071050642" fg:w="538534829"/><text x="70.5092%" y="1839.50"></text></g><g><title>node::fs::FSReqCallback::Reject (543,026,203 samples, 0.18%)</title><rect x="70.2581%" y="1845" width="0.1766%" height="15" fill="rgb(248,20,47)" fg:x="216067651732" fg:w="543026203"/><text x="70.5081%" y="1855.50"></text></g><g><title>node::fs::FSReqAfterScope::Reject (594,855,072 samples, 0.19%)</title><rect x="70.2483%" y="1861" width="0.1934%" height="15" fill="rgb(217,221,40)" fg:x="216037322208" fg:w="594855072"/><text x="70.4983%" y="1871.50"></text></g><g><title>node::fs::AfterStat (602,757,600 samples, 0.20%)</title><rect x="70.2483%" y="1877" width="0.1960%" height="15" fill="rgb(226,149,51)" fg:x="216037322208" fg:w="602757600"/><text x="70.4983%" y="1887.50"></text></g><g><title>v8::internal::JsonParser&lt;unsigned char&gt;::ParseJson (31,085,280 samples, 0.01%)</title><rect x="70.4449%" y="1637" width="0.0101%" height="15" fill="rgb(252,193,7)" fg:x="216641906098" fg:w="31085280"/><text x="70.6949%" y="1647.50"></text></g><g><title>v8::internal::MaybeHandle&lt;v8::internal::Object&gt; v8::internal::JsonParser&lt;unsigned char&gt;::ParseJsonValue&lt;false&gt; (31,085,280 samples, 0.01%)</title><rect x="70.4449%" y="1621" width="0.0101%" height="15" fill="rgb(205,123,0)" fg:x="216641906098" fg:w="31085280"/><text x="70.6949%" y="1631.50"></text></g><g><title>Builtins_CEntry_Return1_ArgvOnStack_BuiltinExit (39,545,240 samples, 0.01%)</title><rect x="70.4449%" y="1669" width="0.0129%" height="15" fill="rgb(233,173,25)" fg:x="216641906098" fg:w="39545240"/><text x="70.6949%" y="1679.50"></text></g><g><title>v8::internal::Builtin_JsonParse (39,545,240 samples, 0.01%)</title><rect x="70.4449%" y="1653" width="0.0129%" height="15" fill="rgb(216,63,32)" fg:x="216641906098" fg:w="39545240"/><text x="70.6949%" y="1663.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (95,372,490 samples, 0.03%)</title><rect x="70.4446%" y="1685" width="0.0310%" height="15" fill="rgb(209,56,45)" fg:x="216640973772" fg:w="95372490"/><text x="70.6946%" y="1695.50"></text></g><g><title>v8::internal::JsonParser&lt;unsigned char&gt;::BuildJsonObject (62,560,269 samples, 0.02%)</title><rect x="70.4853%" y="1605" width="0.0203%" height="15" fill="rgb(226,111,49)" fg:x="216766187815" fg:w="62560269"/><text x="70.7353%" y="1615.50"></text></g><g><title>v8::internal::Handle&lt;v8::internal::Object&gt; v8::internal::JSDataObjectBuilder::BuildFromIterator&lt;v8::internal::JsonParser&lt;unsigned char&gt;::NamedPropertyIterator&amp;&gt; (60,169,396 samples, 0.02%)</title><rect x="70.4861%" y="1589" width="0.0196%" height="15" fill="rgb(244,181,21)" fg:x="216768578688" fg:w="60169396"/><text x="70.7361%" y="1599.50"></text></g><g><title>v8::internal::JsonParser&lt;unsigned char&gt;::ParseJson (146,074,521 samples, 0.05%)</title><rect x="70.4756%" y="1637" width="0.0475%" height="15" fill="rgb(222,126,15)" fg:x="216736346262" fg:w="146074521"/><text x="70.7256%" y="1647.50"></text></g><g><title>v8::internal::MaybeHandle&lt;v8::internal::Object&gt; v8::internal::JsonParser&lt;unsigned char&gt;::ParseJsonValue&lt;false&gt; (142,363,449 samples, 0.05%)</title><rect x="70.4768%" y="1621" width="0.0463%" height="15" fill="rgb(222,95,17)" fg:x="216740057334" fg:w="142363449"/><text x="70.7268%" y="1631.50"></text></g><g><title>v8::internal::JsonParser&lt;unsigned char&gt;::ScanJsonString (42,151,051 samples, 0.01%)</title><rect x="70.5094%" y="1605" width="0.0137%" height="15" fill="rgb(254,46,5)" fg:x="216840269732" fg:w="42151051"/><text x="70.7594%" y="1615.50"></text></g><g><title>Builtins_CEntry_Return1_ArgvOnStack_BuiltinExit (162,467,019 samples, 0.05%)</title><rect x="70.4756%" y="1669" width="0.0528%" height="15" fill="rgb(236,216,35)" fg:x="216736346262" fg:w="162467019"/><text x="70.7256%" y="1679.50"></text></g><g><title>v8::internal::Builtin_JsonParse (162,467,019 samples, 0.05%)</title><rect x="70.4756%" y="1653" width="0.0528%" height="15" fill="rgb(217,187,26)" fg:x="216736346262" fg:w="162467019"/><text x="70.7256%" y="1663.50"></text></g><g><title>Builtins_ArrayFilter (34,593,569 samples, 0.01%)</title><rect x="70.5292%" y="1637" width="0.0112%" height="15" fill="rgb(207,192,25)" fg:x="216901171224" fg:w="34593569"/><text x="70.7792%" y="1647.50"></text></g><g><title>[perf-183375.map] (33,538,431 samples, 0.01%)</title><rect x="70.5295%" y="1621" width="0.0109%" height="15" fill="rgb(253,135,27)" fg:x="216902226362" fg:w="33538431"/><text x="70.7795%" y="1631.50"></text></g><g><title>[perf-183375.map] (32,483,293 samples, 0.01%)</title><rect x="70.5299%" y="1605" width="0.0106%" height="15" fill="rgb(211,122,29)" fg:x="216903281500" fg:w="32483293"/><text x="70.7799%" y="1615.50"></text></g><g><title>Builtins_InterpreterEntryTrampoline (57,976,185 samples, 0.02%)</title><rect x="70.5284%" y="1669" width="0.0189%" height="15" fill="rgb(233,162,40)" fg:x="216898813281" fg:w="57976185"/><text x="70.7784%" y="1679.50"></text></g><g><title>[perf-183375.map] (55,618,242 samples, 0.02%)</title><rect x="70.5292%" y="1653" width="0.0181%" height="15" fill="rgb(222,184,47)" fg:x="216901171224" fg:w="55618242"/><text x="70.7792%" y="1663.50"></text></g><g><title>Builtins_AsyncFunctionAwaitResolveClosure (403,307,554 samples, 0.13%)</title><rect x="70.4443%" y="1701" width="0.1311%" height="15" fill="rgb(249,99,23)" fg:x="216640079808" fg:w="403307554"/><text x="70.6943%" y="1711.50"></text></g><g><title>[perf-183375.map] (307,041,100 samples, 0.10%)</title><rect x="70.4756%" y="1685" width="0.0998%" height="15" fill="rgb(214,60,12)" fg:x="216736346262" fg:w="307041100"/><text x="70.7256%" y="1695.50"></text></g><g><title>[perf-183375.map] (66,318,808 samples, 0.02%)</title><rect x="70.5538%" y="1669" width="0.0216%" height="15" fill="rgb(250,229,36)" fg:x="216977068554" fg:w="66318808"/><text x="70.8038%" y="1679.50"></text></g><g><title>[perf-183375.map] (39,296,684 samples, 0.01%)</title><rect x="70.5626%" y="1653" width="0.0128%" height="15" fill="rgb(232,195,10)" fg:x="217004090678" fg:w="39296684"/><text x="70.8126%" y="1663.50"></text></g><g><title>node::MakeLibuvRequestCallback&lt;uv_fs_s, void (*)(uv_fs_s*)&gt;::Wrapper (2,207,879,865 samples, 0.72%)</title><rect x="69.8657%" y="1893" width="0.7179%" height="15" fill="rgb(205,213,31)" fg:x="214860779884" fg:w="2207879865"/><text x="70.1157%" y="1903.50"></text></g><g><title>node::fs::FileHandle::ClosePromise (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1877" width="0.1394%" height="15" fill="rgb(237,43,8)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1887.50"></text></g><g><title>node::fs::FileHandle::CloseReq::Resolve (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1861" width="0.1394%" height="15" fill="rgb(216,208,3)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1871.50"></text></g><g><title>node::InternalCallbackScope::~InternalCallbackScope (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1845" width="0.1394%" height="15" fill="rgb(228,179,44)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1855.50"></text></g><g><title>node::InternalCallbackScope::Close (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1829" width="0.1394%" height="15" fill="rgb(230,192,27)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1839.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1813" width="0.1394%" height="15" fill="rgb(251,30,38)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1823.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1797" width="0.1394%" height="15" fill="rgb(246,55,52)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1807.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1781" width="0.1394%" height="15" fill="rgb(249,79,26)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1791.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1765" width="0.1394%" height="15" fill="rgb(220,202,16)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1775.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1749" width="0.1394%" height="15" fill="rgb(250,170,23)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1759.50"></text></g><g><title>Builtins_RunMicrotasks (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1733" width="0.1394%" height="15" fill="rgb(230,7,37)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1743.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (428,579,941 samples, 0.14%)</title><rect x="70.4443%" y="1717" width="0.1394%" height="15" fill="rgb(213,71,1)" fg:x="216640079808" fg:w="428579941"/><text x="70.6943%" y="1727.50"></text></g><g><title>uv__async_io.part.0 (2,360,232,270 samples, 0.77%)</title><rect x="69.8268%" y="1925" width="0.7675%" height="15" fill="rgb(227,87,39)" fg:x="214741069076" fg:w="2360232270"/><text x="70.0768%" y="1935.50"></text></g><g><title>uv__work_done (2,241,712,641 samples, 0.73%)</title><rect x="69.8653%" y="1909" width="0.7289%" height="15" fill="rgb(210,41,29)" fg:x="214859588705" fg:w="2241712641"/><text x="70.1153%" y="1919.50"></text></g><g><title>node::crypto::TLSWrap::SSLInfoCallback (49,147,119 samples, 0.02%)</title><rect x="70.6070%" y="1749" width="0.0160%" height="15" fill="rgb(206,191,31)" fg:x="217140634524" fg:w="49147119"/><text x="70.8570%" y="1759.50"></text></g><g><title>node::AsyncWrap::MakeCallback (49,147,119 samples, 0.02%)</title><rect x="70.6070%" y="1733" width="0.0160%" height="15" fill="rgb(247,75,54)" fg:x="217140634524" fg:w="49147119"/><text x="70.8570%" y="1743.50"></text></g><g><title>node::InternalMakeCallback (49,147,119 samples, 0.02%)</title><rect x="70.6070%" y="1717" width="0.0160%" height="15" fill="rgb(208,54,50)" fg:x="217140634524" fg:w="49147119"/><text x="70.8570%" y="1727.50"></text></g><g><title>v8::Object::CallAsFunction (32,984,617 samples, 0.01%)</title><rect x="70.6123%" y="1701" width="0.0107%" height="15" fill="rgb(214,90,37)" fg:x="217156797026" fg:w="32984617"/><text x="70.8623%" y="1711.50"></text></g><g><title>v8::internal::Execution::Call (32,984,617 samples, 0.01%)</title><rect x="70.6123%" y="1685" width="0.0107%" height="15" fill="rgb(220,132,6)" fg:x="217156797026" fg:w="32984617"/><text x="70.8623%" y="1695.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (32,984,617 samples, 0.01%)</title><rect x="70.6123%" y="1669" width="0.0107%" height="15" fill="rgb(213,167,7)" fg:x="217156797026" fg:w="32984617"/><text x="70.8623%" y="1679.50"></text></g><g><title>Builtins_JSEntry (32,984,617 samples, 0.01%)</title><rect x="70.6123%" y="1653" width="0.0107%" height="15" fill="rgb(243,36,27)" fg:x="217156797026" fg:w="32984617"/><text x="70.8623%" y="1663.50"></text></g><g><title>Builtins_JSEntryTrampoline (32,984,617 samples, 0.01%)</title><rect x="70.6123%" y="1637" width="0.0107%" height="15" fill="rgb(235,147,12)" fg:x="217156797026" fg:w="32984617"/><text x="70.8623%" y="1647.50"></text></g><g><title>tls_finish_handshake (50,216,745 samples, 0.02%)</title><rect x="70.6070%" y="1765" width="0.0163%" height="15" fill="rgb(212,198,44)" fg:x="217140634524" fg:w="50216745"/><text x="70.8570%" y="1775.50"></text></g><g><title>SSL_read (108,858,299 samples, 0.04%)</title><rect x="70.5994%" y="1829" width="0.0354%" height="15" fill="rgb(218,68,50)" fg:x="217117266392" fg:w="108858299"/><text x="70.8494%" y="1839.50"></text></g><g><title>ssl3_read (108,858,299 samples, 0.04%)</title><rect x="70.5994%" y="1813" width="0.0354%" height="15" fill="rgb(224,79,48)" fg:x="217117266392" fg:w="108858299"/><text x="70.8494%" y="1823.50"></text></g><g><title>ssl3_read_bytes (108,093,273 samples, 0.04%)</title><rect x="70.5997%" y="1797" width="0.0351%" height="15" fill="rgb(213,191,50)" fg:x="217118031418" fg:w="108093273"/><text x="70.8497%" y="1807.50"></text></g><g><title>state_machine.part.0 (88,994,687 samples, 0.03%)</title><rect x="70.6059%" y="1781" width="0.0289%" height="15" fill="rgb(254,146,10)" fg:x="217137130004" fg:w="88994687"/><text x="70.8559%" y="1791.50"></text></g><g><title>Builtins_AsyncFunctionAwaitResolveClosure (42,576,921 samples, 0.01%)</title><rect x="70.6468%" y="1525" width="0.0138%" height="15" fill="rgb(215,175,11)" fg:x="217262930629" fg:w="42576921"/><text x="70.8968%" y="1535.50"></text></g><g><title>[perf-183375.map] (35,439,960 samples, 0.01%)</title><rect x="70.6491%" y="1509" width="0.0115%" height="15" fill="rgb(207,49,7)" fg:x="217270067590" fg:w="35439960"/><text x="70.8991%" y="1519.50"></text></g><g><title>[perf-183375.map] (32,592,273 samples, 0.01%)</title><rect x="70.6500%" y="1493" width="0.0106%" height="15" fill="rgb(234,144,29)" fg:x="217272915277" fg:w="32592273"/><text x="70.9000%" y="1503.50"></text></g><g><title>Builtins_CallApiCallbackOptimizedNoProfiling (72,940,828 samples, 0.02%)</title><rect x="70.6468%" y="1653" width="0.0237%" height="15" fill="rgb(213,222,48)" fg:x="217262930629" fg:w="72940828"/><text x="70.8968%" y="1663.50"></text></g><g><title>v8::internal::MicrotaskQueue::PerformCheckpoint (72,940,828 samples, 0.02%)</title><rect x="70.6468%" y="1637" width="0.0237%" height="15" fill="rgb(222,8,6)" fg:x="217262930629" fg:w="72940828"/><text x="70.8968%" y="1647.50"></text></g><g><title>v8::internal::MicrotaskQueue::RunMicrotasks (72,940,828 samples, 0.02%)</title><rect x="70.6468%" y="1621" width="0.0237%" height="15" fill="rgb(221,114,49)" fg:x="217262930629" fg:w="72940828"/><text x="70.8968%" y="1631.50"></text></g><g><title>v8::internal::Execution::TryRunMicrotasks (72,940,828 samples, 0.02%)</title><rect x="70.6468%" y="1605" width="0.0237%" height="15" fill="rgb(250,140,42)" fg:x="217262930629" fg:w="72940828"/><text x="70.8968%" y="1615.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (72,940,828 samples, 0.02%)</title><rect x="70.6468%" y="1589" width="0.0237%" height="15" fill="rgb(250,150,27)" fg:x="217262930629" fg:w="72940828"/><text x="70.8968%" y="1599.50"></text></g><g><title>Builtins_JSRunMicrotasksEntry (72,940,828 samples, 0.02%)</title><rect x="70.6468%" y="1573" width="0.0237%" height="15" fill="rgb(252,159,3)" fg:x="217262930629" fg:w="72940828"/><text x="70.8968%" y="1583.50"></text></g><g><title>Builtins_RunMicrotasks (72,940,828 samples, 0.02%)</title><rect x="70.6468%" y="1557" width="0.0237%" height="15" fill="rgb(241,182,3)" fg:x="217262930629" fg:w="72940828"/><text x="70.8968%" y="1567.50"></text></g><g><title>Builtins_PromiseFulfillReactionJob (72,940,828 samples, 0.02%)</title><rect x="70.6468%" y="1541" width="0.0237%" height="15" fill="rgb(236,3,9)" fg:x="217262930629" fg:w="72940828"/><text x="70.8968%" y="1551.50"></text></g><g><title>node::InternalCallbackScope::Close (139,125,859 samples, 0.05%)</title><rect x="70.6356%" y="1765" width="0.0452%" height="15" fill="rgb(223,227,51)" fg:x="217228519322" fg:w="139125859"/><text x="70.8856%" y="1775.50"></text></g><g><title>v8::Object::CallAsFunction (137,837,724 samples, 0.04%)</title><rect x="70.6360%" y="1749" width="0.0448%" height="15" fill="rgb(232,133,30)" fg:x="217229807457" fg:w="137837724"/><text x="70.8860%" y="1759.50"></text></g><g><title>v8::internal::Execution::Call (137,837,724 samples, 0.04%)</title><rect x="70.6360%" y="1733" width="0.0448%" height="15" fill="rgb(209,93,27)" fg:x="217229807457" fg:w="137837724"/><text x="70.8860%" y="1743.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (137,837,724 samples, 0.04%)</title><rect x="70.6360%" y="1717" width="0.0448%" height="15" fill="rgb(208,108,34)" fg:x="217229807457" fg:w="137837724"/><text x="70.8860%" y="1727.50"></text></g><g><title>Builtins_JSEntry (137,837,724 samples, 0.04%)</title><rect x="70.6360%" y="1701" width="0.0448%" height="15" fill="rgb(215,189,13)" fg:x="217229807457" fg:w="137837724"/><text x="70.8860%" y="1711.50"></text></g><g><title>Builtins_JSEntryTrampoline (137,837,724 samples, 0.04%)</title><rect x="70.6360%" y="1685" width="0.0448%" height="15" fill="rgb(206,88,23)" fg:x="217229807457" fg:w="137837724"/><text x="70.8860%" y="1695.50"></text></g><g><title>[perf-183375.map] (137,837,724 samples, 0.04%)</title><rect x="70.6360%" y="1669" width="0.0448%" height="15" fill="rgb(240,173,0)" fg:x="217229807457" fg:w="137837724"/><text x="70.8860%" y="1679.50"></text></g><g><title>Builtins_CallApiCallbackOptimizedNoProfiling (35,062,324 samples, 0.01%)</title><rect x="70.6928%" y="853" width="0.0114%" height="15" fill="rgb(223,106,52)" fg:x="217404264725" fg:w="35062324"/><text x="70.9428%" y="863.50"></text></g><g><title>void node::(anonymous namespace)::CompressionStream&lt;node::(anonymous namespace)::ZlibContext&gt;::Write&lt;false&gt; (35,062,324 samples, 0.01%)</title><rect x="70.6928%" y="837" width="0.0114%" height="15" fill="rgb(206,130,16)" fg:x="217404264725" fg:w="35062324"/><text x="70.9428%" y="847.50"></text></g><g><title>node::(anonymous namespace)::ZlibContext::DoThreadPoolWork (34,229,614 samples, 0.01%)</title><rect x="70.6930%" y="821" width="0.0111%" height="15" fill="rgb(220,54,25)" fg:x="217405097435" fg:w="34229614"/><text x="70.9430%" y="831.50"></text></g><g><title>inflate (34,229,614 samples, 0.01%)</title><rect x="70.6930%" y="805" width="0.0111%" height="15" fill="rgb(210,4,38)" fg:x="217405097435" fg:w="34229614"/><text x="70.9430%" y="815.50"></text></g><g><title>node::(anonymous namespace)::ZlibContext::DoThreadPoolWork (56,498,252 samples, 0.02%)</title><rect x="70.7079%" y="725" width="0.0184%" height="15" fill="rgb(238,94,39)" fg:x="217450813198" fg:w="56498252"/><text x="70.9579%" y="735.50"></text></g><g><title>inflate (56,498,252 samples, 0.02%)</title><rect x="70.7079%" y="709" width="0.0184%" height="15" fill="rgb(234,124,34)" fg:x="217450813198" fg:w="56498252"/><text x="70.9579%" y="719.50"></text></g><g><title>inflate_fast_chunk_ (46,618,238 samples, 0.02%)</title><rect x="70.7111%" y="693" width="0.0152%" height="15" fill="rgb(221,91,40)" fg:x="217460693212" fg:w="46618238"/><text x="70.9611%" y="703.50"></text></g><g><title>Builtins_CallApiCallbackOptimizedNoProfiling (59,666,209 samples, 0.02%)</title><rect x="70.7072%" y="757" width="0.0194%" height="15" fill="rgb(246,53,28)" fg:x="217448766232" fg:w="59666209"/><text x="70.9572%" y="767.50"></text></g><g><title>void node::(anonymous namespace)::CompressionStream&lt;node::(anonymous namespace)::ZlibContext&gt;::Write&lt;false&gt; (59,666,209 samples, 0.02%)</title><rect x="70.7072%" y="741" width="0.0194%" height="15" fill="rgb(229,109,7)" fg:x="217448766232" fg:w="59666209"/><text x="70.9572%" y="751.50"></text></g><g><title>[perf-183375.map] (73,011,986 samples, 0.02%)</title><rect x="70.7072%" y="773" width="0.0237%" height="15" fill="rgb(249,117,8)" fg:x="217448766232" fg:w="73011986"/><text x="70.9572%" y="783.50"></text></g><g><title>[perf-183375.map] (131,667,892 samples, 0.04%)</title><rect x="70.6885%" y="1333" width="0.0428%" height="15" fill="rgb(210,181,1)" fg:x="217391215851" fg:w="131667892"/><text x="70.9385%" y="1343.50"></text></g><g><title>[perf-183375.map] (131,667,892 samples, 0.04%)</title><rect x="70.6885%" y="1317" width="0.0428%" height="15" fill="rgb(211,66,1)" fg:x="217391215851" fg:w="131667892"/><text x="70.9385%" y="1327.50"></text></g><g><title>[perf-183375.map] (131,667,892 samples, 0.04%)</title><rect x="70.6885%" y="1301" width="0.0428%" height="15" fill="rgb(221,90,14)" fg:x="217391215851" fg:w="131667892"/><text x="70.9385%" y="1311.50"></text></g><g><title>[perf-183375.map] (130,912,615 samples, 0.04%)</title><rect x="70.6888%" y="1285" width="0.0426%" height="15" fill="rgb(219,222,44)" fg:x="217391971128" fg:w="130912615"/><text x="70.9388%" y="1295.50"></text></g><g><title>[perf-183375.map] (130,912,615 samples, 0.04%)</title><rect x="70.6888%" y="1269" width="0.0426%" height="15" fill="rgb(246,34,33)" fg:x="217391971128" fg:w="130912615"/><text x="70.9388%" y="1279.50"></text></g><g><title>[perf-183375.map] (130,912,615 samples, 0.04%)</title><rect x="70.6888%" y="1253" width="0.0426%" height="15" fill="rgb(227,135,41)" fg:x="217391971128" fg:w="130912615"/><text x="70.9388%" y="1263.50"></text></g><g><title>[perf-183375.map] (130,167,056 samples, 0.04%)</title><rect x="70.6890%" y="1237" width="0.0423%" height="15" fill="rgb(226,15,14)" fg:x="217392716687" fg:w="130167056"/><text x="70.9390%" y="1247.50"></text></g><g><title>[perf-183375.map] (129,271,639 samples, 0.04%)</title><rect x="70.6893%" y="1221" width="0.0420%" height="15" fill="rgb(236,148,47)" fg:x="217393612104" fg:w="129271639"/><text x="70.9393%" y="1231.50"></text></g><g><title>[perf-183375.map] (129,271,639 samples, 0.04%)</title><rect x="70.6893%" y="1205" width="0.0420%" height="15" fill="rgb(233,162,52)" fg:x="217393612104" fg:w="129271639"/><text x="70.9393%" y="1215.50"></text></g><g><title>[perf-183375.map] (128,037,390 samples, 0.04%)</title><rect x="70.6897%" y="1189" width="0.0416%" height="15" fill="rgb(244,35,28)" fg:x="217394846353" fg:w="128037390"/><text x="70.9397%" y="1199.50"></text></g><g><title>[perf-183375.map] (128,037,390 samples, 0.04%)</title><rect x="70.6897%" y="1173" width="0.0416%" height="15" fill="rgb(205,121,10)" fg:x="217394846353" fg:w="128037390"/><text x="70.9397%" y="1183.50"></text></g><g><title>[perf-183375.map] (126,795,090 samples, 0.04%)</title><rect x="70.6901%" y="1157" width="0.0412%" height="15" fill="rgb(250,58,18)" fg:x="217396088653" fg:w="126795090"/><text x="70.9401%" y="1167.50"></text></g><g><title>[perf-183375.map] (125,758,616 samples, 0.04%)</title><rect x="70.6904%" y="1141" width="0.0409%" height="15" fill="rgb(216,37,13)" fg:x="217397125127" fg:w="125758616"/><text x="70.9404%" y="1151.50"></text></g><g><title>[perf-183375.map] (125,758,616 samples, 0.04%)</title><rect x="70.6904%" y="1125" width="0.0409%" height="15" fill="rgb(221,215,42)" fg:x="217397125127" fg:w="125758616"/><text x="70.9404%" y="1135.50"></text></g><g><title>[perf-183375.map] (125,758,616 samples, 0.04%)</title><rect x="70.6904%" y="1109" width="0.0409%" height="15" fill="rgb(217,214,19)" fg:x="217397125127" fg:w="125758616"/><text x="70.9404%" y="1119.50"></text></g><g><title>[perf-183375.map] (125,758,616 samples, 0.04%)</title><rect x="70.6904%" y="1093" width="0.0409%" height="15" fill="rgb(233,139,13)" fg:x="217397125127" fg:w="125758616"/><text x="70.9404%" y="1103.50"></text></g><g><title>[perf-183375.map] (124,717,310 samples, 0.04%)</title><rect x="70.6908%" y="1077" width="0.0406%" height="15" fill="rgb(247,168,23)" fg:x="217398166433" fg:w="124717310"/><text x="70.9408%" y="1087.50"></text></g><g><title>[perf-183375.map] (124,717,310 samples, 0.04%)</title><rect x="70.6908%" y="1061" width="0.0406%" height="15" fill="rgb(207,202,1)" fg:x="217398166433" fg:w="124717310"/><text x="70.9408%" y="1071.50"></text></g><g><title>[perf-183375.map] (124,717,310 samples, 0.04%)</title><rect x="70.6908%" y="1045" width="0.0406%" height="15" fill="rgb(220,155,48)" fg:x="217398166433" fg:w="124717310"/><text x="70.9408%" y="1055.50"></text></g><g><title>[perf-183375.map] (124,717,310 samples, 0.04%)</title><rect x="70.6908%" y="1029" width="0.0406%" height="15" fill="rgb(250,43,26)" fg:x="217398166433" fg:w="124717310"/><text x="70.9408%" y="1039.50"></text></g><g><title>[perf-183375.map] (124,717,310 samples, 0.04%)</title><rect x="70.6908%" y="1013" width="0.0406%" height="15" fill="rgb(212,190,23)" fg:x="217398166433" fg:w="124717310"/><text x="70.9408%" y="1023.50"></text></g><g><title>[perf-183375.map] (124,717,310 samples, 0.04%)</title><rect x="70.6908%" y="997" width="0.0406%" height="15" fill="rgb(216,39,24)" fg:x="217398166433" fg:w="124717310"/><text x="70.9408%" y="1007.50"></text></g><g><title>[perf-183375.map] (124,717,310 samples, 0.04%)</title><rect x="70.6908%" y="981" width="0.0406%" height="15" fill="rgb(252,113,16)" fg:x="217398166433" fg:w="124717310"/><text x="70.9408%" y="991.50"></text></g><g><title>[perf-183375.map] (124,717,310 samples, 0.04%)</title><rect x="70.6908%" y="965" width="0.0406%" height="15" fill="rgb(208,113,19)" fg:x="217398166433" fg:w="124717310"/><text x="70.9408%" y="975.50"></text></g><g><title>[perf-183375.map] (123,551,418 samples, 0.04%)</title><rect x="70.6912%" y="949" width="0.0402%" height="15" fill="rgb(234,107,25)" fg:x="217399332325" fg:w="123551418"/><text x="70.9412%" y="959.50"></text></g><g><title>[perf-183375.map] (122,490,634 samples, 0.04%)</title><rect x="70.6915%" y="933" width="0.0398%" height="15" fill="rgb(234,217,51)" fg:x="217400393109" fg:w="122490634"/><text x="70.9415%" y="943.50"></text></g><g><title>[perf-183375.map] (121,744,824 samples, 0.04%)</title><rect x="70.6917%" y="917" width="0.0396%" height="15" fill="rgb(251,29,42)" fg:x="217401138919" fg:w="121744824"/><text x="70.9417%" y="927.50"></text></g><g><title>[perf-183375.map] (119,578,109 samples, 0.04%)</title><rect x="70.6924%" y="901" width="0.0389%" height="15" fill="rgb(221,62,51)" fg:x="217403305634" fg:w="119578109"/><text x="70.9424%" y="911.50"></text></g><g><title>[perf-183375.map] (119,578,109 samples, 0.04%)</title><rect x="70.6924%" y="885" width="0.0389%" height="15" fill="rgb(240,192,43)" fg:x="217403305634" fg:w="119578109"/><text x="70.9424%" y="895.50"></text></g><g><title>[perf-183375.map] (118,619,018 samples, 0.04%)</title><rect x="70.6928%" y="869" width="0.0386%" height="15" fill="rgb(224,157,47)" fg:x="217404264725" fg:w="118619018"/><text x="70.9428%" y="879.50"></text></g><g><title>[perf-183375.map] (83,556,694 samples, 0.03%)</title><rect x="70.7042%" y="853" width="0.0272%" height="15" fill="rgb(226,84,45)" fg:x="217439327049" fg:w="83556694"/><text x="70.9542%" y="863.50"></text></g><g><title>[perf-183375.map] (82,704,041 samples, 0.03%)</title><rect x="70.7044%" y="837" width="0.0269%" height="15" fill="rgb(208,207,23)" fg:x="217440179702" fg:w="82704041"/><text x="70.9544%" y="847.50"></text></g><g><title>[perf-183375.map] (82,704,041 samples, 0.03%)</title><rect x="70.7044%" y="821" width="0.0269%" height="15" fill="rgb(253,34,51)" fg:x="217440179702" fg:w="82704041"/><text x="70.9544%" y="831.50"></text></g><g><title>[perf-183375.map] (81,177,961 samples, 0.03%)</title><rect x="70.7049%" y="805" width="0.0264%" height="15" fill="rgb(227,26,34)" fg:x="217441705782" fg:w="81177961"/><text x="70.9549%" y="815.50"></text></g><g><title>[perf-183375.map] (77,171,144 samples, 0.03%)</title><rect x="70.7062%" y="789" width="0.0251%" height="15" fill="rgb(245,75,19)" fg:x="217445712599" fg:w="77171144"/><text x="70.9562%" y="799.50"></text></g><g><title>node::AsyncWrap::MakeCallback (134,003,667 samples, 0.04%)</title><rect x="70.6882%" y="1509" width="0.0436%" height="15" fill="rgb(250,191,31)" fg:x="217390117346" fg:w="134003667"/><text x="70.9382%" y="1519.50"></text></g><g><title>node::InternalMakeCallback (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1493" width="0.0432%" height="15" fill="rgb(224,11,50)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1503.50"></text></g><g><title>v8::Object::CallAsFunction (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1477" width="0.0432%" height="15" fill="rgb(231,171,7)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1487.50"></text></g><g><title>v8::internal::Execution::Call (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1461" width="0.0432%" height="15" fill="rgb(252,214,10)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1471.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1445" width="0.0432%" height="15" fill="rgb(249,45,46)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1455.50"></text></g><g><title>Builtins_JSEntry (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1429" width="0.0432%" height="15" fill="rgb(240,173,7)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1439.50"></text></g><g><title>Builtins_JSEntryTrampoline (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1413" width="0.0432%" height="15" fill="rgb(235,214,13)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1423.50"></text></g><g><title>[perf-183375.map] (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1397" width="0.0432%" height="15" fill="rgb(245,156,8)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1407.50"></text></g><g><title>[perf-183375.map] (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1381" width="0.0432%" height="15" fill="rgb(235,46,12)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1391.50"></text></g><g><title>[perf-183375.map] (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1365" width="0.0432%" height="15" fill="rgb(221,81,14)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1375.50"></text></g><g><title>[perf-183375.map] (132,905,162 samples, 0.04%)</title><rect x="70.6885%" y="1349" width="0.0432%" height="15" fill="rgb(238,207,9)" fg:x="217391215851" fg:w="132905162"/><text x="70.9385%" y="1359.50"></text></g><g><title>Builtins_CallApiCallbackOptimizedNoProfiling (137,542,860 samples, 0.04%)</title><rect x="70.6873%" y="1605" width="0.0447%" height="15" fill="rgb(224,129,35)" fg:x="217387499331" fg:w="137542860"/><text x="70.9373%" y="1615.50"></text></g><g><title>node::(anonymous namespace)::Parser::Execute (137,542,860 samples, 0.04%)</title><rect x="70.6873%" y="1589" width="0.0447%" height="15" fill="rgb(243,218,34)" fg:x="217387499331" fg:w="137542860"/><text x="70.9373%" y="1599.50"></text></g><g><title>node::(anonymous namespace)::Parser::Execute (137,542,860 samples, 0.04%)</title><rect x="70.6873%" y="1573" width="0.0447%" height="15" fill="rgb(220,166,13)" fg:x="217387499331" fg:w="137542860"/><text x="70.9373%" y="1583.50"></text></g><g><title>llhttp__internal_execute (137,542,860 samples, 0.04%)</title><rect x="70.6873%" y="1557" width="0.0447%" height="15" fill="rgb(227,167,49)" fg:x="217387499331" fg:w="137542860"/><text x="70.9373%" y="1567.50"></text></g><g><title>llhttp__on_body (137,542,860 samples, 0.04%)</title><rect x="70.6873%" y="1541" width="0.0447%" height="15" fill="rgb(234,142,12)" fg:x="217387499331" fg:w="137542860"/><text x="70.9373%" y="1551.50"></text></g><g><title>node::(anonymous namespace)::Parser::Proxy&lt;int (node::(anonymous namespace)::Parser::*)(char const*, unsigned long), &amp;node::(anonymous namespace)::Parser::on_body&gt;::Raw (137,542,860 samples, 0.04%)</title><rect x="70.6873%" y="1525" width="0.0447%" height="15" fill="rgb(207,100,48)" fg:x="217387499331" fg:w="137542860"/><text x="70.9373%" y="1535.50"></text></g><g><title>node::AsyncWrap::MakeCallback (57,275,049 samples, 0.02%)</title><rect x="70.7372%" y="1493" width="0.0186%" height="15" fill="rgb(210,25,14)" fg:x="217541090384" fg:w="57275049"/><text x="70.9872%" y="1503.50"></text></g><g><title>node::InternalMakeCallback (57,275,049 samples, 0.02%)</title><rect x="70.7372%" y="1477" width="0.0186%" height="15" fill="rgb(246,116,27)" fg:x="217541090384" fg:w="57275049"/><text x="70.9872%" y="1487.50"></text></g><g><title>v8::Object::CallAsFunction (57,275,049 samples, 0.02%)</title><rect x="70.7372%" y="1461" width="0.0186%" height="15" fill="rgb(214,193,42)" fg:x="217541090384" fg:w="57275049"/><text x="70.9872%" y="1471.50"></text></g><g><title>v8::internal::Execution::Call (57,275,049 samples, 0.02%)</title><rect x="70.7372%" y="1445" width="0.0186%" height="15" fill="rgb(214,122,8)" fg:x="217541090384" fg:w="57275049"/><text x="70.9872%" y="1455.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (57,275,049 samples, 0.02%)</title><rect x="70.7372%" y="1429" width="0.0186%" height="15" fill="rgb(244,173,18)" fg:x="217541090384" fg:w="57275049"/><text x="70.9872%" y="1439.50"></text></g><g><title>Builtins_JSEntry (57,275,049 samples, 0.02%)</title><rect x="70.7372%" y="1413" width="0.0186%" height="15" fill="rgb(232,68,19)" fg:x="217541090384" fg:w="57275049"/><text x="70.9872%" y="1423.50"></text></g><g><title>Builtins_JSEntryTrampoline (56,229,667 samples, 0.02%)</title><rect x="70.7376%" y="1397" width="0.0183%" height="15" fill="rgb(236,224,1)" fg:x="217542135766" fg:w="56229667"/><text x="70.9876%" y="1407.50"></text></g><g><title>[perf-183375.map] (56,229,667 samples, 0.02%)</title><rect x="70.7376%" y="1381" width="0.0183%" height="15" fill="rgb(240,11,8)" fg:x="217542135766" fg:w="56229667"/><text x="70.9876%" y="1391.50"></text></g><g><title>[perf-183375.map] (56,229,667 samples, 0.02%)</title><rect x="70.7376%" y="1365" width="0.0183%" height="15" fill="rgb(244,159,20)" fg:x="217542135766" fg:w="56229667"/><text x="70.9876%" y="1375.50"></text></g><g><title>[perf-183375.map] (56,229,667 samples, 0.02%)</title><rect x="70.7376%" y="1349" width="0.0183%" height="15" fill="rgb(240,223,54)" fg:x="217542135766" fg:w="56229667"/><text x="70.9876%" y="1359.50"></text></g><g><title>[perf-183375.map] (56,229,667 samples, 0.02%)</title><rect x="70.7376%" y="1333" width="0.0183%" height="15" fill="rgb(237,146,5)" fg:x="217542135766" fg:w="56229667"/><text x="70.9876%" y="1343.50"></text></g><g><title>[perf-183375.map] (52,780,244 samples, 0.02%)</title><rect x="70.7387%" y="1317" width="0.0172%" height="15" fill="rgb(218,221,32)" fg:x="217545585189" fg:w="52780244"/><text x="70.9887%" y="1327.50"></text></g><g><title>[perf-183375.map] (51,710,177 samples, 0.02%)</title><rect x="70.7391%" y="1301" width="0.0168%" height="15" fill="rgb(244,96,26)" fg:x="217546655256" fg:w="51710177"/><text x="70.9891%" y="1311.50"></text></g><g><title>[perf-183375.map] (50,675,389 samples, 0.02%)</title><rect x="70.7394%" y="1285" width="0.0165%" height="15" fill="rgb(245,184,37)" fg:x="217547690044" fg:w="50675389"/><text x="70.9894%" y="1295.50"></text></g><g><title>[perf-183375.map] (50,675,389 samples, 0.02%)</title><rect x="70.7394%" y="1269" width="0.0165%" height="15" fill="rgb(248,91,47)" fg:x="217547690044" fg:w="50675389"/><text x="70.9894%" y="1279.50"></text></g><g><title>[perf-183375.map] (49,526,531 samples, 0.02%)</title><rect x="70.7398%" y="1253" width="0.0161%" height="15" fill="rgb(243,199,8)" fg:x="217548838902" fg:w="49526531"/><text x="70.9898%" y="1263.50"></text></g><g><title>[perf-183375.map] (41,105,665 samples, 0.01%)</title><rect x="70.7425%" y="1237" width="0.0134%" height="15" fill="rgb(249,12,15)" fg:x="217557259768" fg:w="41105665"/><text x="70.9925%" y="1247.50"></text></g><g><title>llhttp__on_body (59,986,809 samples, 0.02%)</title><rect x="70.7372%" y="1525" width="0.0195%" height="15" fill="rgb(245,97,12)" fg:x="217541090384" fg:w="59986809"/><text x="70.9872%" y="1535.50"></text></g><g><title>node::(anonymous namespace)::Parser::Proxy&lt;int (node::(anonymous namespace)::Parser::*)(char const*, unsigned long), &amp;node::(anonymous namespace)::Parser::on_body&gt;::Raw (59,986,809 samples, 0.02%)</title><rect x="70.7372%" y="1509" width="0.0195%" height="15" fill="rgb(244,61,1)" fg:x="217541090384" fg:w="59986809"/><text x="70.9872%" y="1519.50"></text></g><g><title>llhttp__internal_execute (77,593,292 samples, 0.03%)</title><rect x="70.7372%" y="1541" width="0.0252%" height="15" fill="rgb(222,194,10)" fg:x="217541090384" fg:w="77593292"/><text x="70.9872%" y="1551.50"></text></g><g><title>Builtins_CallApiCallbackOptimizedNoProfiling (78,675,317 samples, 0.03%)</title><rect x="70.7372%" y="1589" width="0.0256%" height="15" fill="rgb(226,178,8)" fg:x="217541090384" fg:w="78675317"/><text x="70.9872%" y="1599.50"></text></g><g><title>node::(anonymous namespace)::Parser::Execute (78,675,317 samples, 0.03%)</title><rect x="70.7372%" y="1573" width="0.0256%" height="15" fill="rgb(241,32,34)" fg:x="217541090384" fg:w="78675317"/><text x="70.9872%" y="1583.50"></text></g><g><title>node::(anonymous namespace)::Parser::Execute (78,675,317 samples, 0.03%)</title><rect x="70.7372%" y="1557" width="0.0256%" height="15" fill="rgb(254,26,6)" fg:x="217541090384" fg:w="78675317"/><text x="70.9872%" y="1567.50"></text></g><g><title>v8::internal::(anonymous namespace)::Invoke (253,415,586 samples, 0.08%)</title><rect x="70.6815%" y="1733" width="0.0824%" height="15" fill="rgb(249,71,11)" fg:x="217369688719" fg:w="253415586"/><text x="70.9315%" y="1743.50"></text></g><g><title>Builtins_JSEntry (253,415,586 samples, 0.08%)</title><rect x="70.6815%" y="1717" width="0.0824%" height="15" fill="rgb(232,170,27)" fg:x="217369688719" fg:w="253415586"/><text x="70.9315%" y="1727.50"></text></g><g><title>Builtins_JSEntryTrampoline (253,415,586 samples, 0.08%)</title><rect x="70.6815%" y="1701" width="0.0824%" height="15" fill="rgb(214,223,17)" fg:x="217369688719" fg:w="253415586"/><text x="70.9315%" y="1711.50"></text></g><g><title>[perf-183375.map] (246,099,920 samples, 0.08%)</title><rect x="70.6839%" y="1685" width="0.0800%" height="15" fill="rgb(250,18,15)" fg:x="217377004385" fg:w="246099920"/><text x="70.9339%" y="1695.50"></text></g><g><title>[perf-183375.map] (242,166,416 samples, 0.08%)</title><rect x="70.6852%" y="1669" width="0.0787%" height="15" fill="rgb(212,153,51)" fg:x="217380937889" fg:w="242166416"/><text x="70.9352%" y="1679.50"></text></g><g><title>[perf-183375.map] (241,125,723 samples, 0.08%)</title><rect x="70.6855%" y="1653" width="0.0784%" height="15" fill="rgb(219,194,12)" fg:x="217381978582" fg:w="241125723"/><text x="70.9355%" y="1663.50"></text></g><g><title>[perf-183375.map] (239,318,851 samples, 0.08%)</title><rect x="70.6861%" y="1637" width="0.0778%" height="15" fill="rgb(212,58,17)" fg:x="217383785454" fg:w="239318851"/><text x="70.9361%" y="1647.50"></text></g><g><title>[perf-183375.map] (237,451,746 samples, 0.08%)</title><rect x="70.6867%" y="1621" width="0.0772%" height="15" fill="rgb(254,5,10)" fg:x="217385652559" fg:w="237451746"/><text x="70.9367%" y="1631.50"></text></g><g><title>[perf-183375.map] (98,062,114 samples, 0.03%)</title><rect x="70.7320%" y="1605" width="0.0319%" height="15" fill="rgb(246,91,7)" fg:x="217525042191" fg:w="98062114"/><text x="70.9820%" y="1615.50"></text></g><g><title>node::AsyncWrap::MakeCallback (396,543,141 samples, 0.13%)</title><rect x="70.6352%" y="1797" width="0.1289%" height="15" fill="rgb(218,108,49)" fg:x="217227371300" fg:w="396543141"/><text x="70.8852%" y="1807.50"></text></g><g><title>node::InternalMakeCallback (395,395,119 samples, 0.13%)</title><rect x="70.6356%" y="1781" width="0.1286%" height="15" fill="rgb(238,123,20)" fg:x="217228519322" fg:w="395395119"/><text x="70.8856%" y="1791.50"></text></g><g><title>v8::Object::CallAsFunction (254,225,722 samples, 0.08%)</title><rect x="70.6815%" y="1765" width="0.0827%" height="15" fill="rgb(231,69,23)" fg:x="217369688719" fg:w="254225722"/><text x="70.9315%" y="1775.50"></text></g><g><title>v8::internal::Execution::Call (254,225,722 samples, 0.08%)</title><rect x="70.6815%" y="1749" width="0.0827%" height="15" fill="rgb(230,209,3)" fg:x="217369688719" fg:w="254225722"/><text x="70.9315%" y="1759.50"></text></g><g><title>node::EmitToJSStreamListener::OnStreamRead (398,935,991 samples, 0.13%)</title><rect x="70.6348%" y="1829" width="0.1297%" height="15" fill="rgb(231,19,0)" fg:x="217226124691" fg:w="398935991"/><text x="70.8848%" y="1839.50"></text></g><g><title>node::StreamBase::CallJSOnreadMethod (397,689,382 samples, 0.13%)</title><rect x="70.6352%" y="1813" width="0.1293%" height="15" fill="rgb(226,192,25)" fg:x="217227371300" fg:w="397689382"/><text x="70.8852%" y="1823.50"></text></g><g><title>node::crypto::TLSWrap::ClearOut (514,198,461 samples, 0.17%)</title><rect x="70.5992%" y="1845" width="0.1672%" height="15" fill="rgb(223,175,53)" fg:x="217116639690" fg:w="514198461"/><text x="70.8492%" y="1855.50"></text></g><g><title>node::LibuvStreamWrap::OnUvRead (521,468,016 samples, 0.17%)</title><rect x="70.5980%" y="1877" width="0.1696%" height="15" fill="rgb(248,35,51)" fg:x="217112980436" fg:w="521468016"/><text x="70.8480%" y="1887.50"></text></g><g><title>node::crypto::TLSWrap::OnStreamRead (521,468,016 samples, 0.17%)</title><rect x="70.5980%" y="1861" width="0.1696%" height="15" fill="rgb(230,37,26)" fg:x="217112980436" fg:w="521468016"/><text x="70.8480%" y="1871.50"></text></g><g><title>node::LibuvStreamWrap::ReadStart (523,622,239 samples, 0.17%)</title><rect x="70.5980%" y="1893" width="0.1703%" height="15" fill="rgb(206,120,22)" fg:x="217112980436" fg:w="523622239"/><text x="70.8480%" y="1903.50"></text></g><g><title>uv__stream_io (559,001,778 samples, 0.18%)</title><rect x="70.5954%" y="1925" width="0.1818%" height="15" fill="rgb(207,165,28)" fg:x="217104713524" fg:w="559001778"/><text x="70.8454%" y="1935.50"></text></g><g><title>uv__read (550,734,866 samples, 0.18%)</title><rect x="70.5980%" y="1909" width="0.1791%" height="15" fill="rgb(226,23,46)" fg:x="217112980436" fg:w="550734866"/><text x="70.8480%" y="1919.50"></text></g><g><title>uv__io_poll (2,969,145,971 samples, 0.97%)</title><rect x="69.8123%" y="1941" width="0.9655%" height="15" fill="rgb(208,130,44)" fg:x="214696679372" fg:w="2969145971"/><text x="70.0623%" y="1951.50"></text></g><g><title>_start (2,987,939,797 samples, 0.97%)</title><rect x="69.8120%" y="2053" width="0.9716%" height="15" fill="rgb(231,67,8)" fg:x="214695519732" fg:w="2987939797"/><text x="70.0620%" y="2063.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (2,987,939,797 samples, 0.97%)</title><rect x="69.8120%" y="2037" width="0.9716%" height="15" fill="rgb(205,183,22)" fg:x="214695519732" fg:w="2987939797"/><text x="70.0620%" y="2047.50"></text></g><g><title>__libc_start_call_main (2,987,939,797 samples, 0.97%)</title><rect x="69.8120%" y="2021" width="0.9716%" height="15" fill="rgb(224,47,9)" fg:x="214695519732" fg:w="2987939797"/><text x="70.0620%" y="2031.50"></text></g><g><title>node::Start (2,987,939,797 samples, 0.97%)</title><rect x="69.8120%" y="2005" width="0.9716%" height="15" fill="rgb(250,183,49)" fg:x="214695519732" fg:w="2987939797"/><text x="70.0620%" y="2015.50"></text></g><g><title>node::NodeMainInstance::Run (2,987,939,797 samples, 0.97%)</title><rect x="69.8120%" y="1989" width="0.9716%" height="15" fill="rgb(220,151,39)" fg:x="214695519732" fg:w="2987939797"/><text x="70.0620%" y="1999.50"></text></g><g><title>node::SpinEventLoopInternal (2,987,939,797 samples, 0.97%)</title><rect x="69.8120%" y="1973" width="0.9716%" height="15" fill="rgb(220,118,20)" fg:x="214695519732" fg:w="2987939797"/><text x="70.0620%" y="1983.50"></text></g><g><title>uv_run (2,987,939,797 samples, 0.97%)</title><rect x="69.8120%" y="1957" width="0.9716%" height="15" fill="rgb(231,65,51)" fg:x="214695519732" fg:w="2987939797"/><text x="70.0620%" y="1967.50"></text></g><g><title>npm_install_vsc (3,353,167,591 samples, 1.09%)</title><rect x="69.7203%" y="2069" width="1.0903%" height="15" fill="rgb(253,125,37)" fg:x="214413525668" fg:w="3353167591"/><text x="69.9703%" y="2079.50"></text></g><g><title>on_controller.h (40,967,065 samples, 0.01%)</title><rect x="70.8106%" y="2069" width="0.0133%" height="15" fill="rgb(232,102,6)" fg:x="217766693259" fg:w="40967065"/><text x="71.0606%" y="2079.50"></text></g><g><title>op_unittest.cc0 (46,281,404 samples, 0.02%)</title><rect x="70.8239%" y="2069" width="0.0150%" height="15" fill="rgb(251,105,13)" fg:x="217807660324" fg:w="46281404"/><text x="71.0739%" y="2079.50"></text></g><g><title>unsigned int llvm::ComputeMappedEditDistance&lt;char, llvm::ComputeEditDistance&lt;char&gt;(llvm::ArrayRef&lt;char&gt;, llvm::ArrayRef&lt;char&gt;, bool, unsigned int)::{lambda(char const&amp;)#1}&gt; (32,872,388 samples, 0.01%)</title><rect x="70.8489%" y="2053" width="0.0107%" height="15" fill="rgb(222,179,29)" fg:x="217884507861" fg:w="32872388"/><text x="71.0989%" y="2063.50"></text></g><g><title>ost_delegate.cc (65,516,370 samples, 0.02%)</title><rect x="70.8390%" y="2069" width="0.0213%" height="15" fill="rgb(229,180,53)" fg:x="217853941728" fg:w="65516370"/><text x="71.0890%" y="2079.50"></text></g><g><title>over_helper.cc0 (44,459,815 samples, 0.01%)</title><rect x="70.8606%" y="2069" width="0.0145%" height="15" fill="rgb(238,104,13)" fg:x="217920379276" fg:w="44459815"/><text x="71.1106%" y="2079.50"></text></g><g><title>r:screen_ash.cc (40,600,716 samples, 0.01%)</title><rect x="70.8750%" y="2069" width="0.0132%" height="15" fill="rgb(210,130,5)" fg:x="217964842129" fg:w="40600716"/><text x="71.1250%" y="2079.50"></text></g><g><title>[unknown] (44,072,632 samples, 0.01%)</title><rect x="70.8934%" y="2021" width="0.0143%" height="15" fill="rgb(233,87,49)" fg:x="218021422676" fg:w="44072632"/><text x="71.1434%" y="2031.50"></text></g><g><title>[unknown] (70,729,369 samples, 0.02%)</title><rect x="70.8908%" y="2037" width="0.0230%" height="15" fill="rgb(243,34,9)" fg:x="218013344376" fg:w="70729369"/><text x="71.1408%" y="2047.50"></text></g><g><title>[unknown] (214,064,581 samples, 0.07%)</title><rect x="70.8894%" y="2053" width="0.0696%" height="15" fill="rgb(235,225,10)" fg:x="218008972604" fg:w="214064581"/><text x="71.1394%" y="2063.50"></text></g><g><title>rence_helpers.h (383,008,852 samples, 0.12%)</title><rect x="70.8882%" y="2069" width="0.1245%" height="15" fill="rgb(212,0,30)" fg:x="218005442845" fg:w="383008852"/><text x="71.1382%" y="2079.50"></text></g><g><title>[unknown] (99,616,864 samples, 0.03%)</title><rect x="71.0132%" y="2053" width="0.0324%" height="15" fill="rgb(211,177,0)" fg:x="218389675475" fg:w="99616864"/><text x="71.2632%" y="2063.50"></text></g><g><title>rflow_bubble.cc (220,393,870 samples, 0.07%)</title><rect x="71.0128%" y="2069" width="0.0717%" height="15" fill="rgb(225,220,11)" fg:x="218388451697" fg:w="220393870"/><text x="71.2628%" y="2079.50"></text></g><g><title>rop_tracker.cc0 (51,143,092 samples, 0.02%)</title><rect x="71.0844%" y="2069" width="0.0166%" height="15" fill="rgb(215,10,13)" fg:x="218608845567" fg:w="51143092"/><text x="71.3344%" y="2079.50"></text></g><g><title>sh_unittest.cc0 (54,875,897 samples, 0.02%)</title><rect x="71.1011%" y="2069" width="0.0178%" height="15" fill="rgb(240,177,14)" fg:x="218659988659" fg:w="54875897"/><text x="71.3511%" y="2079.50"></text></g><g><title>&lt;F as nom::internal::Parser&lt;I,O,E&gt;&gt;::parse (41,152,642 samples, 0.01%)</title><rect x="71.1279%" y="1893" width="0.0134%" height="15" fill="rgb(243,7,39)" fg:x="218742499613" fg:w="41152642"/><text x="71.3779%" y="1903.50"></text></g><g><title>&lt;F as nom::internal::Parser&lt;I,O,E&gt;&gt;::parse (34,728,450 samples, 0.01%)</title><rect x="71.1300%" y="1877" width="0.0113%" height="15" fill="rgb(212,99,0)" fg:x="218748923805" fg:w="34728450"/><text x="71.3800%" y="1887.50"></text></g><g><title>&lt;F as nom::internal::Parser&lt;I,O,E&gt;&gt;::parse (34,075,364 samples, 0.01%)</title><rect x="71.1302%" y="1861" width="0.0111%" height="15" fill="rgb(225,162,48)" fg:x="218749576891" fg:w="34075364"/><text x="71.3802%" y="1871.50"></text></g><g><title>&lt;(A,B,C,D) as nom::branch::Alt&lt;Input,Output,Error&gt;&gt;::choice (63,782,501 samples, 0.02%)</title><rect x="71.1245%" y="1909" width="0.0207%" height="15" fill="rgb(246,16,25)" fg:x="218732044307" fg:w="63782501"/><text x="71.3745%" y="1919.50"></text></g><g><title>sqlformat::format (79,705,955 samples, 0.03%)</title><rect x="71.1218%" y="1925" width="0.0259%" height="15" fill="rgb(220,150,2)" fg:x="218723569572" fg:w="79705955"/><text x="71.3718%" y="1935.50"></text></g><g><title>sqlez::savepoint::&lt;impl sqlez::connection::Connection&gt;::with_savepoint (86,246,447 samples, 0.03%)</title><rect x="71.1204%" y="1941" width="0.0280%" height="15" fill="rgb(237,113,11)" fg:x="218719351245" fg:w="86246447"/><text x="71.3704%" y="1951.50"></text></g><g><title>sqlez::statement::Statement::prepare (36,597,711 samples, 0.01%)</title><rect x="71.1494%" y="1941" width="0.0119%" height="15" fill="rgb(236,70,20)" fg:x="218808684961" fg:w="36597711"/><text x="71.3994%" y="1951.50"></text></g><g><title>sqlite3_prepare_v2 (36,597,711 samples, 0.01%)</title><rect x="71.1494%" y="1925" width="0.0119%" height="15" fill="rgb(234,94,7)" fg:x="218808684961" fg:w="36597711"/><text x="71.3994%" y="1935.50"></text></g><g><title>sqlite3LockAndPrepare.part.0 (36,597,711 samples, 0.01%)</title><rect x="71.1494%" y="1909" width="0.0119%" height="15" fill="rgb(250,221,0)" fg:x="218808684961" fg:w="36597711"/><text x="71.3994%" y="1919.50"></text></g><g><title>sqlite3Prepare (36,597,711 samples, 0.01%)</title><rect x="71.1494%" y="1893" width="0.0119%" height="15" fill="rgb(245,149,46)" fg:x="218808684961" fg:w="36597711"/><text x="71.3994%" y="1903.50"></text></g><g><title>sqlite3RunParser (36,597,711 samples, 0.01%)</title><rect x="71.1494%" y="1877" width="0.0119%" height="15" fill="rgb(215,37,27)" fg:x="218808684961" fg:w="36597711"/><text x="71.3994%" y="1887.50"></text></g><g><title>yy_reduce.isra.0 (35,521,004 samples, 0.01%)</title><rect x="71.1498%" y="1861" width="0.0116%" height="15" fill="rgb(232,65,3)" fg:x="218809761668" fg:w="35521004"/><text x="71.3998%" y="1871.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (142,708,797 samples, 0.05%)</title><rect x="71.1197%" y="1957" width="0.0464%" height="15" fill="rgb(214,2,16)" fg:x="218717320203" fg:w="142708797"/><text x="71.3697%" y="1967.50"></text></g><g><title>sqlezWorker (146,668,921 samples, 0.05%)</title><rect x="71.1189%" y="2069" width="0.0477%" height="15" fill="rgb(227,131,50)" fg:x="218714864556" fg:w="146668921"/><text x="71.3689%" y="2079.50"></text></g><g><title>__GI___clone3 (145,637,672 samples, 0.05%)</title><rect x="71.1193%" y="2053" width="0.0474%" height="15" fill="rgb(247,131,45)" fg:x="218715895805" fg:w="145637672"/><text x="71.3693%" y="2063.50"></text></g><g><title>start_thread (145,637,672 samples, 0.05%)</title><rect x="71.1193%" y="2037" width="0.0474%" height="15" fill="rgb(215,97,47)" fg:x="218715895805" fg:w="145637672"/><text x="71.3693%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (145,637,672 samples, 0.05%)</title><rect x="71.1193%" y="2021" width="0.0474%" height="15" fill="rgb(233,143,12)" fg:x="218715895805" fg:w="145637672"/><text x="71.3693%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (145,637,672 samples, 0.05%)</title><rect x="71.1193%" y="2005" width="0.0474%" height="15" fill="rgb(222,57,17)" fg:x="218715895805" fg:w="145637672"/><text x="71.3693%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (145,637,672 samples, 0.05%)</title><rect x="71.1193%" y="1989" width="0.0474%" height="15" fill="rgb(214,119,38)" fg:x="218715895805" fg:w="145637672"/><text x="71.3693%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (145,012,632 samples, 0.05%)</title><rect x="71.1195%" y="1973" width="0.0472%" height="15" fill="rgb(217,28,47)" fg:x="218716520845" fg:w="145012632"/><text x="71.3695%" y="1983.50"></text></g><g><title>st_delegate.cc0 (52,657,728 samples, 0.02%)</title><rect x="71.1666%" y="2069" width="0.0171%" height="15" fill="rgb(231,14,52)" fg:x="218861533477" fg:w="52657728"/><text x="71.4166%" y="2079.50"></text></g><g><title>t_controller.cc (60,832,979 samples, 0.02%)</title><rect x="71.1837%" y="2069" width="0.0198%" height="15" fill="rgb(220,158,18)" fg:x="218914191205" fg:w="60832979"/><text x="71.4337%" y="2079.50"></text></g><g><title>tabase_types.cc (38,450,457 samples, 0.01%)</title><rect x="71.2035%" y="2069" width="0.0125%" height="15" fill="rgb(222,143,46)" fg:x="218975024184" fg:w="38450457"/><text x="71.4535%" y="2079.50"></text></g><g><title>&lt;rustls::client::tls13::ExpectCertificateVerify as rustls::common_state::State&lt;rustls::client::client_conn::ClientConnectionData&gt;&gt;::handle (37,956,294 samples, 0.01%)</title><rect x="71.2271%" y="1733" width="0.0123%" height="15" fill="rgb(227,165,5)" fg:x="219047515490" fg:w="37956294"/><text x="71.4771%" y="1743.50"></text></g><g><title>&lt;rustls_platform_verifier::verification::others::Verifier as rustls::verify::ServerCertVerifier&gt;::verify_server_cert (37,956,294 samples, 0.01%)</title><rect x="71.2271%" y="1717" width="0.0123%" height="15" fill="rgb(216,222,49)" fg:x="219047515490" fg:w="37956294"/><text x="71.4771%" y="1727.50"></text></g><g><title>once_cell::imp::OnceCell&lt;T&gt;::initialize (34,594,825 samples, 0.01%)</title><rect x="71.2282%" y="1701" width="0.0112%" height="15" fill="rgb(238,73,39)" fg:x="219050876959" fg:w="34594825"/><text x="71.4782%" y="1711.50"></text></g><g><title>once_cell::imp::initialize_or_wait (34,594,825 samples, 0.01%)</title><rect x="71.2282%" y="1685" width="0.0112%" height="15" fill="rgb(252,115,9)" fg:x="219050876959" fg:w="34594825"/><text x="71.4782%" y="1695.50"></text></g><g><title>once_cell::imp::OnceCell&lt;T&gt;::initialize::_{{closure}} (34,594,825 samples, 0.01%)</title><rect x="71.2282%" y="1669" width="0.0112%" height="15" fill="rgb(238,202,4)" fg:x="219050876959" fg:w="34594825"/><text x="71.4782%" y="1679.50"></text></g><g><title>rustls_native_certs::load_native_certs (34,594,825 samples, 0.01%)</title><rect x="71.2282%" y="1653" width="0.0112%" height="15" fill="rgb(252,153,44)" fg:x="219050876959" fg:w="34594825"/><text x="71.4782%" y="1663.50"></text></g><g><title>rustls_native_certs::CertPaths::load (34,594,825 samples, 0.01%)</title><rect x="71.2282%" y="1637" width="0.0112%" height="15" fill="rgb(235,128,27)" fg:x="219050876959" fg:w="34594825"/><text x="71.4782%" y="1647.50"></text></g><g><title>rustls::conn::ConnectionCore&lt;Data&gt;::process_new_packets (40,874,385 samples, 0.01%)</title><rect x="71.2271%" y="1749" width="0.0133%" height="15" fill="rgb(221,121,47)" fg:x="219047515490" fg:w="40874385"/><text x="71.4771%" y="1759.50"></text></g><g><title>tokio_rustls::common::Stream&lt;IO,C&gt;::read_io (41,796,755 samples, 0.01%)</title><rect x="71.2271%" y="1765" width="0.0136%" height="15" fill="rgb(247,211,47)" fg:x="219047515490" fg:w="41796755"/><text x="71.4771%" y="1775.50"></text></g><g><title>&lt;tokio_rustls::Connect&lt;IO&gt; as core::future::future::Future&gt;::poll (42,769,140 samples, 0.01%)</title><rect x="71.2271%" y="1781" width="0.0139%" height="15" fill="rgb(252,47,49)" fg:x="219047515490" fg:w="42769140"/><text x="71.4771%" y="1791.50"></text></g><g><title>aws_lc_0_32_3_jent_entropy_collector_alloc (50,464,339 samples, 0.02%)</title><rect x="71.2412%" y="1621" width="0.0164%" height="15" fill="rgb(219,119,53)" fg:x="219091056290" fg:w="50464339"/><text x="71.4912%" y="1631.50"></text></g><g><title>_jent_entropy_collector_alloc (50,464,339 samples, 0.02%)</title><rect x="71.2412%" y="1605" width="0.0164%" height="15" fill="rgb(243,165,53)" fg:x="219091056290" fg:w="50464339"/><text x="71.4912%" y="1615.50"></text></g><g><title>jent_hash_time (35,921,501 samples, 0.01%)</title><rect x="71.2577%" y="1573" width="0.0117%" height="15" fill="rgb(230,12,35)" fg:x="219141520629" fg:w="35921501"/><text x="71.5077%" y="1583.50"></text></g><g><title>&lt;rustls::crypto::aws_lc_rs::AwsLcRs as rustls::crypto::SecureRandom&gt;::fill (97,592,728 samples, 0.03%)</title><rect x="71.2412%" y="1765" width="0.0317%" height="15" fill="rgb(239,57,49)" fg:x="219091056290" fg:w="97592728"/><text x="71.4912%" y="1775.50"></text></g><g><title>aws_lc_0_32_3_RAND_bytes (97,592,728 samples, 0.03%)</title><rect x="71.2412%" y="1749" width="0.0317%" height="15" fill="rgb(231,154,7)" fg:x="219091056290" fg:w="97592728"/><text x="71.4912%" y="1759.50"></text></g><g><title>rand_bytes_private.part.0 (97,592,728 samples, 0.03%)</title><rect x="71.2412%" y="1733" width="0.0317%" height="15" fill="rgb(248,81,34)" fg:x="219091056290" fg:w="97592728"/><text x="71.4912%" y="1743.50"></text></g><g><title>aws_lc_0_32_3_get_entropy_source (97,592,728 samples, 0.03%)</title><rect x="71.2412%" y="1717" width="0.0317%" height="15" fill="rgb(247,9,5)" fg:x="219091056290" fg:w="97592728"/><text x="71.4912%" y="1727.50"></text></g><g><title>aws_lc_0_32_3_tree_jitter_initialize (97,592,728 samples, 0.03%)</title><rect x="71.2412%" y="1701" width="0.0317%" height="15" fill="rgb(228,172,27)" fg:x="219091056290" fg:w="97592728"/><text x="71.4912%" y="1711.50"></text></g><g><title>aws_lc_0_32_3_CRYPTO_once (97,592,728 samples, 0.03%)</title><rect x="71.2412%" y="1685" width="0.0317%" height="15" fill="rgb(230,57,44)" fg:x="219091056290" fg:w="97592728"/><text x="71.4912%" y="1695.50"></text></g><g><title>pthread_once@GLIBC_2.2.5 (97,592,728 samples, 0.03%)</title><rect x="71.2412%" y="1669" width="0.0317%" height="15" fill="rgb(249,35,22)" fg:x="219091056290" fg:w="97592728"/><text x="71.4912%" y="1679.50"></text></g><g><title>__pthread_once_slow.isra.0 (97,592,728 samples, 0.03%)</title><rect x="71.2412%" y="1653" width="0.0317%" height="15" fill="rgb(250,137,27)" fg:x="219091056290" fg:w="97592728"/><text x="71.4912%" y="1663.50"></text></g><g><title>tree_jitter_initialize_once (97,592,728 samples, 0.03%)</title><rect x="71.2412%" y="1637" width="0.0317%" height="15" fill="rgb(251,57,31)" fg:x="219091056290" fg:w="97592728"/><text x="71.4912%" y="1647.50"></text></g><g><title>aws_lc_0_32_3_jent_read_entropy (47,128,389 samples, 0.02%)</title><rect x="71.2577%" y="1621" width="0.0153%" height="15" fill="rgb(238,60,0)" fg:x="219141520629" fg:w="47128389"/><text x="71.5077%" y="1631.50"></text></g><g><title>aws_lc_0_32_3_jent_random_data (47,128,389 samples, 0.02%)</title><rect x="71.2577%" y="1605" width="0.0153%" height="15" fill="rgb(242,185,39)" fg:x="219141520629" fg:w="47128389"/><text x="71.5077%" y="1615.50"></text></g><g><title>aws_lc_0_32_3_jent_measure_jitter (47,128,389 samples, 0.02%)</title><rect x="71.2577%" y="1589" width="0.0153%" height="15" fill="rgb(240,63,43)" fg:x="219141520629" fg:w="47128389"/><text x="71.5077%" y="1599.50"></text></g><g><title>&lt;futures_util::future::either::Either&lt;A,B&gt; as core::future::future::Future&gt;::poll (145,006,076 samples, 0.05%)</title><rect x="71.2265%" y="1845" width="0.0472%" height="15" fill="rgb(236,155,6)" fg:x="219045673226" fg:w="145006076"/><text x="71.4765%" y="1855.50"></text></g><g><title>zed_reqwest::connect::with_timeout::_{{closure}} (144,014,845 samples, 0.05%)</title><rect x="71.2268%" y="1829" width="0.0468%" height="15" fill="rgb(215,11,29)" fg:x="219046664457" fg:w="144014845"/><text x="71.4768%" y="1839.50"></text></g><g><title>zed_reqwest::connect::ConnectorService::connect_with_maybe_proxy::_{{closure}} (144,014,845 samples, 0.05%)</title><rect x="71.2268%" y="1813" width="0.0468%" height="15" fill="rgb(228,180,48)" fg:x="219046664457" fg:w="144014845"/><text x="71.4768%" y="1823.50"></text></g><g><title>&lt;hyper_rustls::connector::HttpsConnector&lt;T&gt; as tower_service::Service&lt;http::uri::Uri&gt;&gt;::call::_{{closure}} (144,014,845 samples, 0.05%)</title><rect x="71.2268%" y="1797" width="0.0468%" height="15" fill="rgb(241,102,12)" fg:x="219046664457" fg:w="144014845"/><text x="71.4768%" y="1807.50"></text></g><g><title>rustls::client::client_conn::connection::ClientConnection::new (100,394,672 samples, 0.03%)</title><rect x="71.2410%" y="1781" width="0.0326%" height="15" fill="rgb(246,213,4)" fg:x="219090284630" fg:w="100394672"/><text x="71.4910%" y="1791.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::send_request::_{{closure}} (148,751,563 samples, 0.05%)</title><rect x="71.2262%" y="1861" width="0.0484%" height="15" fill="rgb(218,134,35)" fg:x="219044718626" fg:w="148751563"/><text x="71.4762%" y="1871.50"></text></g><g><title>&lt;reqwest_client::ReqwestClient as http_client::HttpClient&gt;::send::_{{closure}}::_{{closure}} (149,955,247 samples, 0.05%)</title><rect x="71.2262%" y="1893" width="0.0488%" height="15" fill="rgb(251,117,35)" fg:x="219044718626" fg:w="149955247"/><text x="71.4762%" y="1903.50"></text></g><g><title>&lt;zed_reqwest::async_impl::client::PendingRequest as core::future::future::Future&gt;::poll (149,955,247 samples, 0.05%)</title><rect x="71.2262%" y="1877" width="0.0488%" height="15" fill="rgb(206,156,45)" fg:x="219044718626" fg:w="149955247"/><text x="71.4762%" y="1887.50"></text></g><g><title>tokio::runtime::scheduler::multi_thread::worker::Context::run_task (165,096,262 samples, 0.05%)</title><rect x="71.2237%" y="1925" width="0.0537%" height="15" fill="rgb(218,52,27)" fg:x="219037018134" fg:w="165096262"/><text x="71.4737%" y="1935.50"></text></g><g><title>tokio::runtime::task::raw::poll (165,096,262 samples, 0.05%)</title><rect x="71.2237%" y="1909" width="0.0537%" height="15" fill="rgb(238,83,36)" fg:x="219037018134" fg:w="165096262"/><text x="71.4737%" y="1919.50"></text></g><g><title>__GI___clone3 (186,495,636 samples, 0.06%)</title><rect x="71.2170%" y="2053" width="0.0606%" height="15" fill="rgb(218,53,43)" fg:x="219016476132" fg:w="186495636"/><text x="71.4670%" y="2063.50"></text></g><g><title>start_thread (186,495,636 samples, 0.06%)</title><rect x="71.2170%" y="2037" width="0.0606%" height="15" fill="rgb(239,54,39)" fg:x="219016476132" fg:w="186495636"/><text x="71.4670%" y="2047.50"></text></g><g><title>set_alt_signal_stack_and_start (186,495,636 samples, 0.06%)</title><rect x="71.2170%" y="2021" width="0.0606%" height="15" fill="rgb(212,198,13)" fg:x="219016476132" fg:w="186495636"/><text x="71.4670%" y="2031.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (186,495,636 samples, 0.06%)</title><rect x="71.2170%" y="2005" width="0.0606%" height="15" fill="rgb(234,54,46)" fg:x="219016476132" fg:w="186495636"/><text x="71.4670%" y="2015.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (186,495,636 samples, 0.06%)</title><rect x="71.2170%" y="1989" width="0.0606%" height="15" fill="rgb(217,120,7)" fg:x="219016476132" fg:w="186495636"/><text x="71.4670%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (186,495,636 samples, 0.06%)</title><rect x="71.2170%" y="1973" width="0.0606%" height="15" fill="rgb(246,39,15)" fg:x="219016476132" fg:w="186495636"/><text x="71.4670%" y="1983.50"></text></g><g><title>tokio::runtime::task::raw::poll (186,489,937 samples, 0.06%)</title><rect x="71.2170%" y="1957" width="0.0606%" height="15" fill="rgb(242,143,31)" fg:x="219016481831" fg:w="186489937"/><text x="71.4670%" y="1967.50"></text></g><g><title>tokio::runtime::scheduler::multi_thread::worker::run (180,378,180 samples, 0.06%)</title><rect x="71.2190%" y="1941" width="0.0587%" height="15" fill="rgb(252,60,24)" fg:x="219022593588" fg:w="180378180"/><text x="71.4690%" y="1951.50"></text></g><g><title>tokio-runtime-w (202,769,878 samples, 0.07%)</title><rect x="71.2160%" y="2069" width="0.0659%" height="15" fill="rgb(249,220,7)" fg:x="219013474641" fg:w="202769878"/><text x="71.4660%" y="2079.50"></text></g><g><title>top_unittest.cc (46,657,491 samples, 0.02%)</title><rect x="71.2820%" y="2069" width="0.0152%" height="15" fill="rgb(236,67,13)" fg:x="219216244519" fg:w="46657491"/><text x="71.5320%" y="2079.50"></text></g><g><title>tor_handler.cc0 (51,752,901 samples, 0.02%)</title><rect x="71.2971%" y="2069" width="0.0168%" height="15" fill="rgb(210,62,39)" fg:x="219262902010" fg:w="51752901"/><text x="71.5471%" y="2079.50"></text></g><g><title>[unknown] (68,636,905 samples, 0.02%)</title><rect x="71.3160%" y="2053" width="0.0223%" height="15" fill="rgb(219,122,53)" fg:x="219320822777" fg:w="68636905"/><text x="71.5660%" y="2063.50"></text></g><g><title>typos-lsp (180,785,947 samples, 0.06%)</title><rect x="71.3140%" y="2069" width="0.0588%" height="15" fill="rgb(218,87,25)" fg:x="219314654911" fg:w="180785947"/><text x="71.5640%" y="2079.50"></text></g><g><title>ugin_finder.cc0 (45,953,830 samples, 0.01%)</title><rect x="71.3727%" y="2069" width="0.0149%" height="15" fill="rgb(234,179,48)" fg:x="219495440858" fg:w="45953830"/><text x="71.6227%" y="2079.50"></text></g><g><title>[unknown] (32,867,539 samples, 0.01%)</title><rect x="71.3889%" y="2037" width="0.0107%" height="15" fill="rgb(248,90,0)" fg:x="219545088304" fg:w="32867539"/><text x="71.6389%" y="2047.50"></text></g><g><title>[unknown] (111,519,695 samples, 0.04%)</title><rect x="71.3889%" y="2053" width="0.0363%" height="15" fill="rgb(207,228,37)" fg:x="219545088304" fg:w="111519695"/><text x="71.6389%" y="2063.50"></text></g><g><title>y_controller.cc (249,337,431 samples, 0.08%)</title><rect x="71.3877%" y="2069" width="0.0811%" height="15" fill="rgb(235,214,15)" fg:x="219541394688" fg:w="249337431"/><text x="71.6377%" y="2079.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint (39,448,654 samples, 0.01%)</title><rect x="71.4702%" y="53" width="0.0128%" height="15" fill="rgb(210,144,39)" fg:x="219795032378" fg:w="39448654"/><text x="71.7202%" y="63.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1941" width="0.0151%" height="15" fill="rgb(222,67,41)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1951.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1925" width="0.0151%" height="15" fill="rgb(205,35,37)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1935.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1909" width="0.0151%" height="15" fill="rgb(216,125,40)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1919.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1893" width="0.0151%" height="15" fill="rgb(228,227,20)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1903.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1877" width="0.0151%" height="15" fill="rgb(242,173,45)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1887.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1861" width="0.0151%" height="15" fill="rgb(215,79,24)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1845" width="0.0151%" height="15" fill="rgb(238,164,38)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1829" width="0.0151%" height="15" fill="rgb(245,196,38)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1813" width="0.0151%" height="15" fill="rgb(231,217,29)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1797" width="0.0151%" height="15" fill="rgb(245,6,4)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1781" width="0.0151%" height="15" fill="rgb(214,76,49)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1791.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1765" width="0.0151%" height="15" fill="rgb(205,96,12)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1749" width="0.0151%" height="15" fill="rgb(243,131,4)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1759.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1733" width="0.0151%" height="15" fill="rgb(214,114,4)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1717" width="0.0151%" height="15" fill="rgb(234,215,15)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1701" width="0.0151%" height="15" fill="rgb(250,216,45)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1685" width="0.0151%" height="15" fill="rgb(236,128,4)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1669" width="0.0151%" height="15" fill="rgb(234,50,33)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1653" width="0.0151%" height="15" fill="rgb(253,131,37)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1637" width="0.0151%" height="15" fill="rgb(218,55,27)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1647.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1621" width="0.0151%" height="15" fill="rgb(241,220,28)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1605" width="0.0151%" height="15" fill="rgb(241,90,48)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1615.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1589" width="0.0151%" height="15" fill="rgb(216,43,37)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1573" width="0.0151%" height="15" fill="rgb(207,173,9)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1557" width="0.0151%" height="15" fill="rgb(240,126,30)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1541" width="0.0151%" height="15" fill="rgb(228,178,53)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1525" width="0.0151%" height="15" fill="rgb(217,33,4)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1509" width="0.0151%" height="15" fill="rgb(206,124,34)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1493" width="0.0151%" height="15" fill="rgb(208,122,53)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1503.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1477" width="0.0151%" height="15" fill="rgb(215,202,26)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1461" width="0.0151%" height="15" fill="rgb(232,198,31)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1471.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1445" width="0.0151%" height="15" fill="rgb(222,23,35)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1429" width="0.0151%" height="15" fill="rgb(242,27,53)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1413" width="0.0151%" height="15" fill="rgb(210,216,42)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1397" width="0.0151%" height="15" fill="rgb(234,39,38)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1381" width="0.0151%" height="15" fill="rgb(235,126,54)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1365" width="0.0151%" height="15" fill="rgb(235,150,33)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1349" width="0.0151%" height="15" fill="rgb(249,49,53)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1359.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,343,799 samples, 0.02%)</title><rect x="71.4690%" y="1333" width="0.0151%" height="15" fill="rgb(238,60,50)" fg:x="219791418060" fg:w="46343799"/><text x="71.7190%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1317" width="0.0147%" height="15" fill="rgb(210,5,2)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1327.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1301" width="0.0147%" height="15" fill="rgb(214,207,24)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1285" width="0.0147%" height="15" fill="rgb(228,173,2)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1269" width="0.0147%" height="15" fill="rgb(244,26,8)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1253" width="0.0147%" height="15" fill="rgb(249,153,35)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1237" width="0.0147%" height="15" fill="rgb(221,215,40)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1221" width="0.0147%" height="15" fill="rgb(238,106,35)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1205" width="0.0147%" height="15" fill="rgb(207,195,21)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1215.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1189" width="0.0147%" height="15" fill="rgb(205,43,29)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1173" width="0.0147%" height="15" fill="rgb(236,35,21)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1183.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1157" width="0.0147%" height="15" fill="rgb(244,74,8)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1167.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1141" width="0.0147%" height="15" fill="rgb(241,229,7)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1125" width="0.0147%" height="15" fill="rgb(212,223,25)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1109" width="0.0147%" height="15" fill="rgb(234,58,53)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1093" width="0.0147%" height="15" fill="rgb(244,36,1)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1077" width="0.0147%" height="15" fill="rgb(222,40,54)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1061" width="0.0147%" height="15" fill="rgb(210,207,39)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1071.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1045" width="0.0147%" height="15" fill="rgb(234,52,14)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1029" width="0.0147%" height="15" fill="rgb(239,108,46)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1039.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="1013" width="0.0147%" height="15" fill="rgb(252,223,5)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="997" width="0.0147%" height="15" fill="rgb(227,181,11)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="981" width="0.0147%" height="15" fill="rgb(248,126,40)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="965" width="0.0147%" height="15" fill="rgb(243,1,18)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="949" width="0.0147%" height="15" fill="rgb(214,145,23)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="933" width="0.0147%" height="15" fill="rgb(241,218,11)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="917" width="0.0147%" height="15" fill="rgb(214,219,24)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="927.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,090,900 samples, 0.01%)</title><rect x="71.4694%" y="901" width="0.0147%" height="15" fill="rgb(235,32,7)" fg:x="219792670959" fg:w="45090900"/><text x="71.7194%" y="911.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="885" width="0.0139%" height="15" fill="rgb(227,121,28)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="895.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="869" width="0.0139%" height="15" fill="rgb(216,129,49)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="879.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="853" width="0.0139%" height="15" fill="rgb(207,194,50)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="837" width="0.0139%" height="15" fill="rgb(207,4,18)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="821" width="0.0139%" height="15" fill="rgb(213,50,30)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="805" width="0.0139%" height="15" fill="rgb(208,77,22)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="789" width="0.0139%" height="15" fill="rgb(244,204,34)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="773" width="0.0139%" height="15" fill="rgb(230,20,17)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="783.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="757" width="0.0139%" height="15" fill="rgb(237,83,15)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="741" width="0.0139%" height="15" fill="rgb(221,109,25)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="751.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="725" width="0.0139%" height="15" fill="rgb(205,194,52)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="735.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="709" width="0.0139%" height="15" fill="rgb(244,173,54)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="719.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="693" width="0.0139%" height="15" fill="rgb(227,181,18)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="677" width="0.0139%" height="15" fill="rgb(238,36,30)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="661" width="0.0139%" height="15" fill="rgb(254,85,0)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="645" width="0.0139%" height="15" fill="rgb(247,63,33)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="629" width="0.0139%" height="15" fill="rgb(220,7,54)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="613" width="0.0139%" height="15" fill="rgb(238,227,21)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="623.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="597" width="0.0139%" height="15" fill="rgb(237,29,31)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="607.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="581" width="0.0139%" height="15" fill="rgb(211,21,50)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="591.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="565" width="0.0139%" height="15" fill="rgb(239,119,2)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="575.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="549" width="0.0139%" height="15" fill="rgb(250,2,39)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="533" width="0.0139%" height="15" fill="rgb(244,46,53)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="543.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="517" width="0.0139%" height="15" fill="rgb(209,21,19)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="501" width="0.0139%" height="15" fill="rgb(236,145,4)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="485" width="0.0139%" height="15" fill="rgb(220,133,36)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="469" width="0.0139%" height="15" fill="rgb(244,18,3)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="453" width="0.0139%" height="15" fill="rgb(232,171,48)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="437" width="0.0139%" height="15" fill="rgb(223,223,53)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="421" width="0.0139%" height="15" fill="rgb(246,92,13)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="431.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="405" width="0.0139%" height="15" fill="rgb(229,171,10)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="389" width="0.0139%" height="15" fill="rgb(213,131,26)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="399.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="373" width="0.0139%" height="15" fill="rgb(242,87,54)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="357" width="0.0139%" height="15" fill="rgb(237,21,35)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="341" width="0.0139%" height="15" fill="rgb(253,13,47)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="325" width="0.0139%" height="15" fill="rgb(215,122,49)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="309" width="0.0139%" height="15" fill="rgb(209,179,30)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="293" width="0.0139%" height="15" fill="rgb(235,100,24)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="277" width="0.0139%" height="15" fill="rgb(209,67,24)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="287.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="261" width="0.0139%" height="15" fill="rgb(206,74,32)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="271.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="245" width="0.0139%" height="15" fill="rgb(212,45,25)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="255.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="229" width="0.0139%" height="15" fill="rgb(239,26,3)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="213" width="0.0139%" height="15" fill="rgb(218,36,15)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="223.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="197" width="0.0139%" height="15" fill="rgb(206,108,24)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="207.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="181" width="0.0139%" height="15" fill="rgb(234,204,42)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="165" width="0.0139%" height="15" fill="rgb(229,2,11)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="149" width="0.0139%" height="15" fill="rgb(221,20,48)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="133" width="0.0139%" height="15" fill="rgb(244,164,10)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="143.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="117" width="0.0139%" height="15" fill="rgb(243,229,2)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="127.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="101" width="0.0139%" height="15" fill="rgb(232,131,37)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="111.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="85" width="0.0139%" height="15" fill="rgb(217,156,11)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="95.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (42,729,481 samples, 0.01%)</title><rect x="71.4702%" y="69" width="0.0139%" height="15" fill="rgb(239,99,48)" fg:x="219795032378" fg:w="42729481"/><text x="71.7202%" y="79.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (44,817,136 samples, 0.01%)</title><rect x="71.4849%" y="53" width="0.0146%" height="15" fill="rgb(231,209,9)" fg:x="219840242278" fg:w="44817136"/><text x="71.7349%" y="63.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (45,869,497 samples, 0.01%)</title><rect x="71.4849%" y="133" width="0.0149%" height="15" fill="rgb(254,97,27)" fg:x="219840242278" fg:w="45869497"/><text x="71.7349%" y="143.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,869,497 samples, 0.01%)</title><rect x="71.4849%" y="117" width="0.0149%" height="15" fill="rgb(223,151,38)" fg:x="219840242278" fg:w="45869497"/><text x="71.7349%" y="127.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (45,869,497 samples, 0.01%)</title><rect x="71.4849%" y="101" width="0.0149%" height="15" fill="rgb(219,206,35)" fg:x="219840242278" fg:w="45869497"/><text x="71.7349%" y="111.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (45,869,497 samples, 0.01%)</title><rect x="71.4849%" y="85" width="0.0149%" height="15" fill="rgb(216,130,31)" fg:x="219840242278" fg:w="45869497"/><text x="71.7349%" y="95.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,869,497 samples, 0.01%)</title><rect x="71.4849%" y="69" width="0.0149%" height="15" fill="rgb(251,97,34)" fg:x="219840242278" fg:w="45869497"/><text x="71.7349%" y="79.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,142,836 samples, 0.02%)</title><rect x="71.4849%" y="245" width="0.0160%" height="15" fill="rgb(246,159,47)" fg:x="219840242278" fg:w="49142836"/><text x="71.7349%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (49,142,836 samples, 0.02%)</title><rect x="71.4849%" y="229" width="0.0160%" height="15" fill="rgb(232,87,10)" fg:x="219840242278" fg:w="49142836"/><text x="71.7349%" y="239.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,142,836 samples, 0.02%)</title><rect x="71.4849%" y="213" width="0.0160%" height="15" fill="rgb(249,1,37)" fg:x="219840242278" fg:w="49142836"/><text x="71.7349%" y="223.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (49,142,836 samples, 0.02%)</title><rect x="71.4849%" y="197" width="0.0160%" height="15" fill="rgb(239,135,14)" fg:x="219840242278" fg:w="49142836"/><text x="71.7349%" y="207.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (49,142,836 samples, 0.02%)</title><rect x="71.4849%" y="181" width="0.0160%" height="15" fill="rgb(253,116,46)" fg:x="219840242278" fg:w="49142836"/><text x="71.7349%" y="191.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (49,142,836 samples, 0.02%)</title><rect x="71.4849%" y="165" width="0.0160%" height="15" fill="rgb(222,217,37)" fg:x="219840242278" fg:w="49142836"/><text x="71.7349%" y="175.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,142,836 samples, 0.02%)</title><rect x="71.4849%" y="149" width="0.0160%" height="15" fill="rgb(252,96,8)" fg:x="219840242278" fg:w="49142836"/><text x="71.7349%" y="159.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (52,534,268 samples, 0.02%)</title><rect x="71.4849%" y="261" width="0.0171%" height="15" fill="rgb(254,103,41)" fg:x="219840242278" fg:w="52534268"/><text x="71.7349%" y="271.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="1093" width="0.0186%" height="15" fill="rgb(218,213,19)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="1103.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="1077" width="0.0186%" height="15" fill="rgb(253,95,21)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="1087.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="1061" width="0.0186%" height="15" fill="rgb(229,26,28)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="1045" width="0.0186%" height="15" fill="rgb(230,129,16)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="1029" width="0.0186%" height="15" fill="rgb(236,126,17)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="1013" width="0.0186%" height="15" fill="rgb(209,33,33)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="997" width="0.0186%" height="15" fill="rgb(227,85,29)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="1007.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="981" width="0.0186%" height="15" fill="rgb(241,53,46)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="965" width="0.0186%" height="15" fill="rgb(228,167,53)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="975.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="949" width="0.0186%" height="15" fill="rgb(238,195,45)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="933" width="0.0186%" height="15" fill="rgb(252,124,45)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="917" width="0.0186%" height="15" fill="rgb(251,38,35)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="901" width="0.0186%" height="15" fill="rgb(227,33,2)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="911.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="885" width="0.0186%" height="15" fill="rgb(223,157,46)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="895.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="869" width="0.0186%" height="15" fill="rgb(222,78,41)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="879.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="853" width="0.0186%" height="15" fill="rgb(248,176,11)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="863.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (57,168,975 samples, 0.02%)</title><rect x="71.4840%" y="837" width="0.0186%" height="15" fill="rgb(241,221,18)" fg:x="219837761859" fg:w="57168975"/><text x="71.7340%" y="847.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="821" width="0.0182%" height="15" fill="rgb(218,85,22)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="805" width="0.0182%" height="15" fill="rgb(222,223,7)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="815.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="789" width="0.0182%" height="15" fill="rgb(254,59,39)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="773" width="0.0182%" height="15" fill="rgb(247,100,27)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="757" width="0.0182%" height="15" fill="rgb(237,207,10)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="741" width="0.0182%" height="15" fill="rgb(220,121,28)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="751.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="725" width="0.0182%" height="15" fill="rgb(213,223,20)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="735.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="709" width="0.0182%" height="15" fill="rgb(205,121,27)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="719.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="693" width="0.0182%" height="15" fill="rgb(253,24,53)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="703.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="677" width="0.0182%" height="15" fill="rgb(224,224,47)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="687.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="661" width="0.0182%" height="15" fill="rgb(250,125,36)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="671.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="645" width="0.0182%" height="15" fill="rgb(240,144,38)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="629" width="0.0182%" height="15" fill="rgb(250,15,50)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="613" width="0.0182%" height="15" fill="rgb(210,24,26)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="597" width="0.0182%" height="15" fill="rgb(234,53,53)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="581" width="0.0182%" height="15" fill="rgb(208,108,28)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="591.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="565" width="0.0182%" height="15" fill="rgb(227,143,7)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="549" width="0.0182%" height="15" fill="rgb(238,189,38)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="559.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="533" width="0.0182%" height="15" fill="rgb(222,69,15)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="517" width="0.0182%" height="15" fill="rgb(213,169,7)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="501" width="0.0182%" height="15" fill="rgb(251,219,4)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="485" width="0.0182%" height="15" fill="rgb(241,55,40)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="469" width="0.0182%" height="15" fill="rgb(243,57,30)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="479.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="453" width="0.0182%" height="15" fill="rgb(234,50,30)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="437" width="0.0182%" height="15" fill="rgb(239,23,42)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="447.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="421" width="0.0182%" height="15" fill="rgb(217,38,19)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="405" width="0.0182%" height="15" fill="rgb(215,179,16)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="389" width="0.0182%" height="15" fill="rgb(254,21,37)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="373" width="0.0182%" height="15" fill="rgb(219,207,48)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="357" width="0.0182%" height="15" fill="rgb(227,225,41)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="367.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (55,987,167 samples, 0.02%)</title><rect x="71.4844%" y="341" width="0.0182%" height="15" fill="rgb(223,130,1)" fg:x="219838943667" fg:w="55987167"/><text x="71.7344%" y="351.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (54,688,556 samples, 0.02%)</title><rect x="71.4849%" y="325" width="0.0178%" height="15" fill="rgb(249,54,42)" fg:x="219840242278" fg:w="54688556"/><text x="71.7349%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (54,688,556 samples, 0.02%)</title><rect x="71.4849%" y="309" width="0.0178%" height="15" fill="rgb(248,69,25)" fg:x="219840242278" fg:w="54688556"/><text x="71.7349%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (54,688,556 samples, 0.02%)</title><rect x="71.4849%" y="293" width="0.0178%" height="15" fill="rgb(234,21,32)" fg:x="219840242278" fg:w="54688556"/><text x="71.7349%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (54,688,556 samples, 0.02%)</title><rect x="71.4849%" y="277" width="0.0178%" height="15" fill="rgb(252,136,6)" fg:x="219840242278" fg:w="54688556"/><text x="71.7349%" y="287.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (131,912,643 samples, 0.04%)</title><rect x="71.4690%" y="2021" width="0.0429%" height="15" fill="rgb(245,87,12)" fg:x="219791418060" fg:w="131912643"/><text x="71.7190%" y="2031.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (131,912,643 samples, 0.04%)</title><rect x="71.4690%" y="2005" width="0.0429%" height="15" fill="rgb(208,12,15)" fg:x="219791418060" fg:w="131912643"/><text x="71.7190%" y="2015.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (131,912,643 samples, 0.04%)</title><rect x="71.4690%" y="1989" width="0.0429%" height="15" fill="rgb(250,98,2)" fg:x="219791418060" fg:w="131912643"/><text x="71.7190%" y="1999.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (131,912,643 samples, 0.04%)</title><rect x="71.4690%" y="1973" width="0.0429%" height="15" fill="rgb(205,213,15)" fg:x="219791418060" fg:w="131912643"/><text x="71.7190%" y="1983.50"></text></g><g><title>gpui::window::Window::draw (131,912,643 samples, 0.04%)</title><rect x="71.4690%" y="1957" width="0.0429%" height="15" fill="rgb(248,192,44)" fg:x="219791418060" fg:w="131912643"/><text x="71.7190%" y="1967.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1941" width="0.0278%" height="15" fill="rgb(221,89,17)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1951.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1925" width="0.0278%" height="15" fill="rgb(209,55,3)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1935.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1909" width="0.0278%" height="15" fill="rgb(247,23,45)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1919.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1893" width="0.0278%" height="15" fill="rgb(235,152,23)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1903.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1877" width="0.0278%" height="15" fill="rgb(244,63,13)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1887.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1861" width="0.0278%" height="15" fill="rgb(227,30,37)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1845" width="0.0278%" height="15" fill="rgb(224,49,42)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1829" width="0.0278%" height="15" fill="rgb(218,129,5)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1813" width="0.0278%" height="15" fill="rgb(240,199,54)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1823.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1797" width="0.0278%" height="15" fill="rgb(234,31,13)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1807.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1781" width="0.0278%" height="15" fill="rgb(219,73,54)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1765" width="0.0278%" height="15" fill="rgb(251,162,10)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1775.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1749" width="0.0278%" height="15" fill="rgb(240,138,47)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1733" width="0.0278%" height="15" fill="rgb(216,138,26)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1717" width="0.0278%" height="15" fill="rgb(243,17,35)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1701" width="0.0278%" height="15" fill="rgb(241,60,18)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1685" width="0.0278%" height="15" fill="rgb(234,2,44)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1695.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1669" width="0.0278%" height="15" fill="rgb(225,225,33)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1653" width="0.0278%" height="15" fill="rgb(234,50,31)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1663.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1637" width="0.0278%" height="15" fill="rgb(249,6,25)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1621" width="0.0278%" height="15" fill="rgb(241,5,17)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1605" width="0.0278%" height="15" fill="rgb(207,116,10)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1589" width="0.0278%" height="15" fill="rgb(222,128,18)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1573" width="0.0278%" height="15" fill="rgb(229,109,25)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1583.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1557" width="0.0278%" height="15" fill="rgb(222,102,25)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1541" width="0.0278%" height="15" fill="rgb(239,211,5)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1551.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1525" width="0.0278%" height="15" fill="rgb(223,136,26)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1509" width="0.0278%" height="15" fill="rgb(227,30,15)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1493" width="0.0278%" height="15" fill="rgb(247,76,4)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1477" width="0.0278%" height="15" fill="rgb(245,38,48)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1461" width="0.0278%" height="15" fill="rgb(210,220,14)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1471.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1445" width="0.0278%" height="15" fill="rgb(224,60,51)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1429" width="0.0278%" height="15" fill="rgb(212,133,49)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1439.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1413" width="0.0278%" height="15" fill="rgb(231,39,22)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1397" width="0.0278%" height="15" fill="rgb(236,173,22)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1381" width="0.0278%" height="15" fill="rgb(210,70,0)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1365" width="0.0278%" height="15" fill="rgb(215,170,11)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1349" width="0.0278%" height="15" fill="rgb(220,154,28)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1359.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1333" width="0.0278%" height="15" fill="rgb(240,160,41)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1317" width="0.0278%" height="15" fill="rgb(243,215,41)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1327.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1301" width="0.0278%" height="15" fill="rgb(214,208,31)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1285" width="0.0278%" height="15" fill="rgb(247,57,22)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1269" width="0.0278%" height="15" fill="rgb(228,73,52)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1253" width="0.0278%" height="15" fill="rgb(252,60,9)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1237" width="0.0278%" height="15" fill="rgb(233,9,51)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1247.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1221" width="0.0278%" height="15" fill="rgb(223,67,14)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1205" width="0.0278%" height="15" fill="rgb(222,86,2)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1215.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1189" width="0.0278%" height="15" fill="rgb(243,58,54)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1173" width="0.0278%" height="15" fill="rgb(210,200,39)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1157" width="0.0278%" height="15" fill="rgb(238,135,9)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1141" width="0.0278%" height="15" fill="rgb(232,179,7)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1125" width="0.0278%" height="15" fill="rgb(245,65,41)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1135.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (85,568,844 samples, 0.03%)</title><rect x="71.4840%" y="1109" width="0.0278%" height="15" fill="rgb(227,43,8)" fg:x="219837761859" fg:w="85568844"/><text x="71.7340%" y="1119.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (132,810,172 samples, 0.04%)</title><rect x="71.4690%" y="2053" width="0.0432%" height="15" fill="rgb(235,91,14)" fg:x="219791418060" fg:w="132810172"/><text x="71.7190%" y="2063.50"></text></g><g><title>wayland_client::event_queue::queue_callback (132,810,172 samples, 0.04%)</title><rect x="71.4690%" y="2037" width="0.0432%" height="15" fill="rgb(235,219,31)" fg:x="219791418060" fg:w="132810172"/><text x="71.7190%" y="2047.50"></text></g><g><title>gpui::text_system::line::paint_line (58,133,486 samples, 0.02%)</title><rect x="71.5199%" y="69" width="0.0189%" height="15" fill="rgb(227,121,25)" fg:x="219948131641" fg:w="58133486"/><text x="71.7699%" y="79.50"></text></g><g><title>gpui::window::Window::paint_glyph (54,777,418 samples, 0.02%)</title><rect x="71.5210%" y="53" width="0.0178%" height="15" fill="rgb(254,129,24)" fg:x="219951487709" fg:w="54777418"/><text x="71.7710%" y="63.50"></text></g><g><title>gpui::text_system::TextSystem::raster_bounds (43,454,506 samples, 0.01%)</title><rect x="71.5247%" y="37" width="0.0141%" height="15" fill="rgb(226,144,49)" fg:x="219962810621" fg:w="43454506"/><text x="71.7747%" y="47.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="245" width="0.0211%" height="15" fill="rgb(214,187,32)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="229" width="0.0211%" height="15" fill="rgb(243,129,46)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="239.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="213" width="0.0211%" height="15" fill="rgb(221,185,35)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="223.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="197" width="0.0211%" height="15" fill="rgb(205,0,32)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="207.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="181" width="0.0211%" height="15" fill="rgb(229,179,12)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="165" width="0.0211%" height="15" fill="rgb(252,107,19)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="149" width="0.0211%" height="15" fill="rgb(220,95,27)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="133" width="0.0211%" height="15" fill="rgb(240,113,40)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="143.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="117" width="0.0211%" height="15" fill="rgb(208,4,43)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="127.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="101" width="0.0211%" height="15" fill="rgb(247,189,30)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="111.50"></text></g><g><title>gpui::elements::text::TextLayout::paint (65,042,860 samples, 0.02%)</title><rect x="71.5199%" y="85" width="0.0211%" height="15" fill="rgb(231,157,17)" fg:x="219948131641" fg:w="65042860"/><text x="71.7699%" y="95.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1605" width="0.0252%" height="15" fill="rgb(224,139,6)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1589" width="0.0252%" height="15" fill="rgb(223,83,16)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1599.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1573" width="0.0252%" height="15" fill="rgb(232,211,20)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1557" width="0.0252%" height="15" fill="rgb(225,203,35)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1541" width="0.0252%" height="15" fill="rgb(215,211,44)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1525" width="0.0252%" height="15" fill="rgb(248,213,26)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1509" width="0.0252%" height="15" fill="rgb(214,23,52)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1493" width="0.0252%" height="15" fill="rgb(225,173,50)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1477" width="0.0252%" height="15" fill="rgb(206,150,22)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1487.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1461" width="0.0252%" height="15" fill="rgb(239,64,23)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1445" width="0.0252%" height="15" fill="rgb(242,50,38)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1455.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1429" width="0.0252%" height="15" fill="rgb(217,91,15)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1413" width="0.0252%" height="15" fill="rgb(230,172,6)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1397" width="0.0252%" height="15" fill="rgb(221,98,26)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1381" width="0.0252%" height="15" fill="rgb(227,210,45)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1365" width="0.0252%" height="15" fill="rgb(206,8,30)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1349" width="0.0252%" height="15" fill="rgb(241,219,17)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1333" width="0.0252%" height="15" fill="rgb(247,121,29)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1343.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1317" width="0.0252%" height="15" fill="rgb(219,169,49)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1327.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1301" width="0.0252%" height="15" fill="rgb(253,49,49)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1311.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1285" width="0.0252%" height="15" fill="rgb(217,178,3)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1295.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1269" width="0.0252%" height="15" fill="rgb(234,73,37)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1253" width="0.0252%" height="15" fill="rgb(250,98,22)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1263.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1237" width="0.0252%" height="15" fill="rgb(220,108,37)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1247.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1221" width="0.0252%" height="15" fill="rgb(225,168,10)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1205" width="0.0252%" height="15" fill="rgb(247,215,21)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1189" width="0.0252%" height="15" fill="rgb(253,189,31)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1173" width="0.0252%" height="15" fill="rgb(241,54,22)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1157" width="0.0252%" height="15" fill="rgb(211,87,4)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1141" width="0.0252%" height="15" fill="rgb(245,112,24)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1151.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1125" width="0.0252%" height="15" fill="rgb(235,190,41)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1135.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1109" width="0.0252%" height="15" fill="rgb(214,89,8)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1093" width="0.0252%" height="15" fill="rgb(249,155,35)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1103.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1077" width="0.0252%" height="15" fill="rgb(249,88,26)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1061" width="0.0252%" height="15" fill="rgb(232,56,8)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1045" width="0.0252%" height="15" fill="rgb(240,95,3)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1029" width="0.0252%" height="15" fill="rgb(222,44,28)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="1013" width="0.0252%" height="15" fill="rgb(234,16,30)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="997" width="0.0252%" height="15" fill="rgb(223,26,17)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="981" width="0.0252%" height="15" fill="rgb(239,187,47)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="991.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="965" width="0.0252%" height="15" fill="rgb(247,102,50)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="949" width="0.0252%" height="15" fill="rgb(231,216,22)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="959.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="933" width="0.0252%" height="15" fill="rgb(216,201,26)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="917" width="0.0252%" height="15" fill="rgb(214,186,23)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="901" width="0.0252%" height="15" fill="rgb(235,184,4)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="885" width="0.0252%" height="15" fill="rgb(244,46,17)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="869" width="0.0252%" height="15" fill="rgb(248,74,46)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="853" width="0.0252%" height="15" fill="rgb(243,79,5)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="837" width="0.0252%" height="15" fill="rgb(213,148,1)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="847.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="821" width="0.0252%" height="15" fill="rgb(221,30,0)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="805" width="0.0252%" height="15" fill="rgb(207,85,29)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="815.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="789" width="0.0252%" height="15" fill="rgb(239,31,46)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="773" width="0.0252%" height="15" fill="rgb(219,6,1)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="757" width="0.0252%" height="15" fill="rgb(229,90,29)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="741" width="0.0252%" height="15" fill="rgb(242,201,42)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="725" width="0.0252%" height="15" fill="rgb(243,80,54)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="709" width="0.0252%" height="15" fill="rgb(223,166,15)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="693" width="0.0252%" height="15" fill="rgb(238,78,27)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="703.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,396,027 samples, 0.03%)</title><rect x="71.5196%" y="677" width="0.0252%" height="15" fill="rgb(235,28,43)" fg:x="219946979610" fg:w="77396027"/><text x="71.7696%" y="687.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::paint (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="661" width="0.0248%" height="15" fill="rgb(240,210,28)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="645" width="0.0248%" height="15" fill="rgb(253,6,46)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="629" width="0.0248%" height="15" fill="rgb(250,159,47)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="613" width="0.0248%" height="15" fill="rgb(216,139,2)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="597" width="0.0248%" height="15" fill="rgb(221,124,44)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="581" width="0.0248%" height="15" fill="rgb(205,37,22)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="591.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="565" width="0.0248%" height="15" fill="rgb(250,55,8)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="549" width="0.0248%" height="15" fill="rgb(215,83,48)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="559.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="533" width="0.0248%" height="15" fill="rgb(253,2,32)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="517" width="0.0248%" height="15" fill="rgb(236,67,28)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="501" width="0.0248%" height="15" fill="rgb(252,55,15)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="485" width="0.0248%" height="15" fill="rgb(243,173,17)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="469" width="0.0248%" height="15" fill="rgb(215,212,13)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="453" width="0.0248%" height="15" fill="rgb(253,176,6)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="437" width="0.0248%" height="15" fill="rgb(236,105,26)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="447.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="421" width="0.0248%" height="15" fill="rgb(239,226,32)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="405" width="0.0248%" height="15" fill="rgb(236,104,51)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="415.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="389" width="0.0248%" height="15" fill="rgb(220,172,33)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="373" width="0.0248%" height="15" fill="rgb(224,182,25)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="357" width="0.0248%" height="15" fill="rgb(236,184,24)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="341" width="0.0248%" height="15" fill="rgb(241,221,14)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="325" width="0.0248%" height="15" fill="rgb(227,146,5)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="309" width="0.0248%" height="15" fill="rgb(214,15,23)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="293" width="0.0248%" height="15" fill="rgb(233,157,31)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="303.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="277" width="0.0248%" height="15" fill="rgb(211,27,52)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="287.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (76,243,996 samples, 0.02%)</title><rect x="71.5199%" y="261" width="0.0248%" height="15" fill="rgb(212,223,15)" fg:x="219948131641" fg:w="76243996"/><text x="71.7699%" y="271.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1173" width="0.0102%" height="15" fill="rgb(254,211,0)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1157" width="0.0102%" height="15" fill="rgb(205,43,38)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1167.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1141" width="0.0102%" height="15" fill="rgb(242,206,46)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1125" width="0.0102%" height="15" fill="rgb(220,221,12)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1109" width="0.0102%" height="15" fill="rgb(217,156,35)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1093" width="0.0102%" height="15" fill="rgb(207,181,49)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1077" width="0.0102%" height="15" fill="rgb(235,103,47)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1061" width="0.0102%" height="15" fill="rgb(222,63,28)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1045" width="0.0102%" height="15" fill="rgb(244,137,21)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1055.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (31,292,702 samples, 0.01%)</title><rect x="71.5593%" y="1029" width="0.0102%" height="15" fill="rgb(228,35,27)" fg:x="220069068229" fg:w="31292702"/><text x="71.8093%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,867,144 samples, 0.05%)</title><rect x="71.5196%" y="1749" width="0.0549%" height="15" fill="rgb(226,191,41)" fg:x="219946979610" fg:w="168867144"/><text x="71.7696%" y="1759.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,867,144 samples, 0.05%)</title><rect x="71.5196%" y="1733" width="0.0549%" height="15" fill="rgb(210,154,3)" fg:x="219946979610" fg:w="168867144"/><text x="71.7696%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,867,144 samples, 0.05%)</title><rect x="71.5196%" y="1717" width="0.0549%" height="15" fill="rgb(216,60,49)" fg:x="219946979610" fg:w="168867144"/><text x="71.7696%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,867,144 samples, 0.05%)</title><rect x="71.5196%" y="1701" width="0.0549%" height="15" fill="rgb(226,17,20)" fg:x="219946979610" fg:w="168867144"/><text x="71.7696%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,867,144 samples, 0.05%)</title><rect x="71.5196%" y="1685" width="0.0549%" height="15" fill="rgb(206,115,35)" fg:x="219946979610" fg:w="168867144"/><text x="71.7696%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,867,144 samples, 0.05%)</title><rect x="71.5196%" y="1669" width="0.0549%" height="15" fill="rgb(227,88,1)" fg:x="219946979610" fg:w="168867144"/><text x="71.7696%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,867,144 samples, 0.05%)</title><rect x="71.5196%" y="1653" width="0.0549%" height="15" fill="rgb(230,222,24)" fg:x="219946979610" fg:w="168867144"/><text x="71.7696%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,867,144 samples, 0.05%)</title><rect x="71.5196%" y="1637" width="0.0549%" height="15" fill="rgb(214,124,32)" fg:x="219946979610" fg:w="168867144"/><text x="71.7696%" y="1647.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,867,144 samples, 0.05%)</title><rect x="71.5196%" y="1621" width="0.0549%" height="15" fill="rgb(240,41,36)" fg:x="219946979610" fg:w="168867144"/><text x="71.7696%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (91,471,117 samples, 0.03%)</title><rect x="71.5447%" y="1605" width="0.0297%" height="15" fill="rgb(221,17,52)" fg:x="220024375637" fg:w="91471117"/><text x="71.7947%" y="1615.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (91,471,117 samples, 0.03%)</title><rect x="71.5447%" y="1589" width="0.0297%" height="15" fill="rgb(252,70,16)" fg:x="220024375637" fg:w="91471117"/><text x="71.7947%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (91,471,117 samples, 0.03%)</title><rect x="71.5447%" y="1573" width="0.0297%" height="15" fill="rgb(250,177,4)" fg:x="220024375637" fg:w="91471117"/><text x="71.7947%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (91,471,117 samples, 0.03%)</title><rect x="71.5447%" y="1557" width="0.0297%" height="15" fill="rgb(240,188,47)" fg:x="220024375637" fg:w="91471117"/><text x="71.7947%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (91,471,117 samples, 0.03%)</title><rect x="71.5447%" y="1541" width="0.0297%" height="15" fill="rgb(215,92,12)" fg:x="220024375637" fg:w="91471117"/><text x="71.7947%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (91,471,117 samples, 0.03%)</title><rect x="71.5447%" y="1525" width="0.0297%" height="15" fill="rgb(242,110,29)" fg:x="220024375637" fg:w="91471117"/><text x="71.7947%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (91,471,117 samples, 0.03%)</title><rect x="71.5447%" y="1509" width="0.0297%" height="15" fill="rgb(208,211,26)" fg:x="220024375637" fg:w="91471117"/><text x="71.7947%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (91,471,117 samples, 0.03%)</title><rect x="71.5447%" y="1493" width="0.0297%" height="15" fill="rgb(244,147,6)" fg:x="220024375637" fg:w="91471117"/><text x="71.7947%" y="1503.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (91,471,117 samples, 0.03%)</title><rect x="71.5447%" y="1477" width="0.0297%" height="15" fill="rgb(211,130,42)" fg:x="220024375637" fg:w="91471117"/><text x="71.7947%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (71,190,283 samples, 0.02%)</title><rect x="71.5513%" y="1461" width="0.0231%" height="15" fill="rgb(220,63,1)" fg:x="220044656471" fg:w="71190283"/><text x="71.8013%" y="1471.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (71,190,283 samples, 0.02%)</title><rect x="71.5513%" y="1445" width="0.0231%" height="15" fill="rgb(241,212,30)" fg:x="220044656471" fg:w="71190283"/><text x="71.8013%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (71,190,283 samples, 0.02%)</title><rect x="71.5513%" y="1429" width="0.0231%" height="15" fill="rgb(233,153,17)" fg:x="220044656471" fg:w="71190283"/><text x="71.8013%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (71,190,283 samples, 0.02%)</title><rect x="71.5513%" y="1413" width="0.0231%" height="15" fill="rgb(236,3,10)" fg:x="220044656471" fg:w="71190283"/><text x="71.8013%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (71,190,283 samples, 0.02%)</title><rect x="71.5513%" y="1397" width="0.0231%" height="15" fill="rgb(232,41,21)" fg:x="220044656471" fg:w="71190283"/><text x="71.8013%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (71,190,283 samples, 0.02%)</title><rect x="71.5513%" y="1381" width="0.0231%" height="15" fill="rgb(206,63,51)" fg:x="220044656471" fg:w="71190283"/><text x="71.8013%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (71,190,283 samples, 0.02%)</title><rect x="71.5513%" y="1365" width="0.0231%" height="15" fill="rgb(250,214,3)" fg:x="220044656471" fg:w="71190283"/><text x="71.8013%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (71,190,283 samples, 0.02%)</title><rect x="71.5513%" y="1349" width="0.0231%" height="15" fill="rgb(254,89,27)" fg:x="220044656471" fg:w="71190283"/><text x="71.8013%" y="1359.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (71,190,283 samples, 0.02%)</title><rect x="71.5513%" y="1333" width="0.0231%" height="15" fill="rgb(249,41,14)" fg:x="220044656471" fg:w="71190283"/><text x="71.8013%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (46,778,525 samples, 0.02%)</title><rect x="71.5593%" y="1317" width="0.0152%" height="15" fill="rgb(221,196,51)" fg:x="220069068229" fg:w="46778525"/><text x="71.8093%" y="1327.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,778,525 samples, 0.02%)</title><rect x="71.5593%" y="1301" width="0.0152%" height="15" fill="rgb(214,116,26)" fg:x="220069068229" fg:w="46778525"/><text x="71.8093%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (46,778,525 samples, 0.02%)</title><rect x="71.5593%" y="1285" width="0.0152%" height="15" fill="rgb(236,67,7)" fg:x="220069068229" fg:w="46778525"/><text x="71.8093%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (46,778,525 samples, 0.02%)</title><rect x="71.5593%" y="1269" width="0.0152%" height="15" fill="rgb(253,179,32)" fg:x="220069068229" fg:w="46778525"/><text x="71.8093%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (46,778,525 samples, 0.02%)</title><rect x="71.5593%" y="1253" width="0.0152%" height="15" fill="rgb(218,33,15)" fg:x="220069068229" fg:w="46778525"/><text x="71.8093%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,778,525 samples, 0.02%)</title><rect x="71.5593%" y="1237" width="0.0152%" height="15" fill="rgb(217,202,41)" fg:x="220069068229" fg:w="46778525"/><text x="71.8093%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,778,525 samples, 0.02%)</title><rect x="71.5593%" y="1221" width="0.0152%" height="15" fill="rgb(234,133,5)" fg:x="220069068229" fg:w="46778525"/><text x="71.8093%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,778,525 samples, 0.02%)</title><rect x="71.5593%" y="1205" width="0.0152%" height="15" fill="rgb(240,47,40)" fg:x="220069068229" fg:w="46778525"/><text x="71.8093%" y="1215.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,778,525 samples, 0.02%)</title><rect x="71.5593%" y="1189" width="0.0152%" height="15" fill="rgb(234,166,26)" fg:x="220069068229" fg:w="46778525"/><text x="71.8093%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (182,978,669 samples, 0.06%)</title><rect x="71.5154%" y="1893" width="0.0595%" height="15" fill="rgb(244,125,51)" fg:x="219934077372" fg:w="182978669"/><text x="71.7654%" y="1903.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (182,978,669 samples, 0.06%)</title><rect x="71.5154%" y="1877" width="0.0595%" height="15" fill="rgb(229,171,11)" fg:x="219934077372" fg:w="182978669"/><text x="71.7654%" y="1887.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (182,978,669 samples, 0.06%)</title><rect x="71.5154%" y="1861" width="0.0595%" height="15" fill="rgb(224,38,45)" fg:x="219934077372" fg:w="182978669"/><text x="71.7654%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (182,978,669 samples, 0.06%)</title><rect x="71.5154%" y="1845" width="0.0595%" height="15" fill="rgb(237,27,7)" fg:x="219934077372" fg:w="182978669"/><text x="71.7654%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (182,978,669 samples, 0.06%)</title><rect x="71.5154%" y="1829" width="0.0595%" height="15" fill="rgb(216,52,7)" fg:x="219934077372" fg:w="182978669"/><text x="71.7654%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (182,978,669 samples, 0.06%)</title><rect x="71.5154%" y="1813" width="0.0595%" height="15" fill="rgb(243,11,11)" fg:x="219934077372" fg:w="182978669"/><text x="71.7654%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (182,978,669 samples, 0.06%)</title><rect x="71.5154%" y="1797" width="0.0595%" height="15" fill="rgb(253,167,20)" fg:x="219934077372" fg:w="182978669"/><text x="71.7654%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (182,978,669 samples, 0.06%)</title><rect x="71.5154%" y="1781" width="0.0595%" height="15" fill="rgb(215,207,5)" fg:x="219934077372" fg:w="182978669"/><text x="71.7654%" y="1791.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (182,978,669 samples, 0.06%)</title><rect x="71.5154%" y="1765" width="0.0595%" height="15" fill="rgb(252,127,31)" fg:x="219934077372" fg:w="182978669"/><text x="71.7654%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (194,512,099 samples, 0.06%)</title><rect x="71.5125%" y="2037" width="0.0632%" height="15" fill="rgb(209,106,27)" fg:x="219925326682" fg:w="194512099"/><text x="71.7625%" y="2047.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (194,512,099 samples, 0.06%)</title><rect x="71.5125%" y="2021" width="0.0632%" height="15" fill="rgb(214,220,18)" fg:x="219925326682" fg:w="194512099"/><text x="71.7625%" y="2031.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (194,512,099 samples, 0.06%)</title><rect x="71.5125%" y="2005" width="0.0632%" height="15" fill="rgb(237,89,12)" fg:x="219925326682" fg:w="194512099"/><text x="71.7625%" y="2015.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (194,512,099 samples, 0.06%)</title><rect x="71.5125%" y="1989" width="0.0632%" height="15" fill="rgb(209,167,36)" fg:x="219925326682" fg:w="194512099"/><text x="71.7625%" y="1999.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (194,512,099 samples, 0.06%)</title><rect x="71.5125%" y="1973" width="0.0632%" height="15" fill="rgb(243,45,22)" fg:x="219925326682" fg:w="194512099"/><text x="71.7625%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (194,512,099 samples, 0.06%)</title><rect x="71.5125%" y="1957" width="0.0632%" height="15" fill="rgb(239,2,46)" fg:x="219925326682" fg:w="194512099"/><text x="71.7625%" y="1967.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (194,512,099 samples, 0.06%)</title><rect x="71.5125%" y="1941" width="0.0632%" height="15" fill="rgb(241,101,0)" fg:x="219925326682" fg:w="194512099"/><text x="71.7625%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (194,512,099 samples, 0.06%)</title><rect x="71.5125%" y="1925" width="0.0632%" height="15" fill="rgb(244,34,31)" fg:x="219925326682" fg:w="194512099"/><text x="71.7625%" y="1935.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (194,512,099 samples, 0.06%)</title><rect x="71.5125%" y="1909" width="0.0632%" height="15" fill="rgb(248,23,22)" fg:x="219925326682" fg:w="194512099"/><text x="71.7625%" y="1919.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (211,983,873 samples, 0.07%)</title><rect x="71.5122%" y="2053" width="0.0689%" height="15" fill="rgb(218,27,48)" fg:x="219924228232" fg:w="211983873"/><text x="71.7622%" y="2063.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="2037" width="0.0288%" height="15" fill="rgb(232,78,1)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="2047.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="2021" width="0.0288%" height="15" fill="rgb(233,169,12)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="2031.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="2005" width="0.0288%" height="15" fill="rgb(225,222,54)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="2015.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1989" width="0.0288%" height="15" fill="rgb(245,126,29)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1999.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1973" width="0.0288%" height="15" fill="rgb(241,63,48)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1983.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1957" width="0.0288%" height="15" fill="rgb(235,126,38)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1967.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1941" width="0.0288%" height="15" fill="rgb(232,96,49)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1951.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1925" width="0.0288%" height="15" fill="rgb(211,146,40)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1935.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1909" width="0.0288%" height="15" fill="rgb(247,93,44)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1893" width="0.0288%" height="15" fill="rgb(251,41,49)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1877" width="0.0288%" height="15" fill="rgb(218,155,12)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1861" width="0.0288%" height="15" fill="rgb(221,161,30)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1871.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1845" width="0.0288%" height="15" fill="rgb(221,179,11)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1855.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1829" width="0.0288%" height="15" fill="rgb(224,170,48)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1839.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1813" width="0.0288%" height="15" fill="rgb(223,117,5)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1823.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1797" width="0.0288%" height="15" fill="rgb(209,52,20)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1781" width="0.0288%" height="15" fill="rgb(209,19,41)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1765" width="0.0288%" height="15" fill="rgb(210,177,12)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1749" width="0.0288%" height="15" fill="rgb(211,159,37)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1733" width="0.0288%" height="15" fill="rgb(209,20,2)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1743.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1717" width="0.0288%" height="15" fill="rgb(244,3,46)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1727.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1701" width="0.0288%" height="15" fill="rgb(220,94,38)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1711.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1685" width="0.0288%" height="15" fill="rgb(253,14,31)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1669" width="0.0288%" height="15" fill="rgb(234,176,13)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1653" width="0.0288%" height="15" fill="rgb(218,62,25)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1637" width="0.0288%" height="15" fill="rgb(216,124,40)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1621" width="0.0288%" height="15" fill="rgb(228,170,12)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1631.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (88,660,460 samples, 0.03%)</title><rect x="71.5811%" y="1605" width="0.0288%" height="15" fill="rgb(231,226,5)" fg:x="220136212105" fg:w="88660460"/><text x="71.8311%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1589" width="0.0284%" height="15" fill="rgb(237,122,22)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1599.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1573" width="0.0284%" height="15" fill="rgb(209,185,25)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1557" width="0.0284%" height="15" fill="rgb(228,200,32)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1541" width="0.0284%" height="15" fill="rgb(217,140,10)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1525" width="0.0284%" height="15" fill="rgb(253,17,24)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1509" width="0.0284%" height="15" fill="rgb(212,61,6)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1519.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1493" width="0.0284%" height="15" fill="rgb(205,14,25)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1477" width="0.0284%" height="15" fill="rgb(232,69,41)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1487.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1461" width="0.0284%" height="15" fill="rgb(241,106,47)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1445" width="0.0284%" height="15" fill="rgb(210,213,53)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1429" width="0.0284%" height="15" fill="rgb(253,175,27)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1413" width="0.0284%" height="15" fill="rgb(211,171,24)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1397" width="0.0284%" height="15" fill="rgb(229,80,7)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1407.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (87,492,815 samples, 0.03%)</title><rect x="71.5815%" y="1381" width="0.0284%" height="15" fill="rgb(212,46,39)" fg:x="220137379750" fg:w="87492815"/><text x="71.8315%" y="1391.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (71,481,951 samples, 0.02%)</title><rect x="71.5867%" y="1365" width="0.0232%" height="15" fill="rgb(240,80,45)" fg:x="220153390614" fg:w="71481951"/><text x="71.8367%" y="1375.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (71,481,951 samples, 0.02%)</title><rect x="71.5867%" y="1349" width="0.0232%" height="15" fill="rgb(253,177,40)" fg:x="220153390614" fg:w="71481951"/><text x="71.8367%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (71,481,951 samples, 0.02%)</title><rect x="71.5867%" y="1333" width="0.0232%" height="15" fill="rgb(249,200,15)" fg:x="220153390614" fg:w="71481951"/><text x="71.8367%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (71,481,951 samples, 0.02%)</title><rect x="71.5867%" y="1317" width="0.0232%" height="15" fill="rgb(217,78,26)" fg:x="220153390614" fg:w="71481951"/><text x="71.8367%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (71,481,951 samples, 0.02%)</title><rect x="71.5867%" y="1301" width="0.0232%" height="15" fill="rgb(254,151,32)" fg:x="220153390614" fg:w="71481951"/><text x="71.8367%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (71,481,951 samples, 0.02%)</title><rect x="71.5867%" y="1285" width="0.0232%" height="15" fill="rgb(226,165,27)" fg:x="220153390614" fg:w="71481951"/><text x="71.8367%" y="1295.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (71,481,951 samples, 0.02%)</title><rect x="71.5867%" y="1269" width="0.0232%" height="15" fill="rgb(250,206,4)" fg:x="220153390614" fg:w="71481951"/><text x="71.8367%" y="1279.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (118,015,431 samples, 0.04%)</title><rect x="71.5811%" y="2053" width="0.0384%" height="15" fill="rgb(231,229,27)" fg:x="220136212105" fg:w="118015431"/><text x="71.8311%" y="2063.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (44,557,935 samples, 0.01%)</title><rect x="71.6279%" y="1797" width="0.0145%" height="15" fill="rgb(239,217,8)" fg:x="220280030357" fg:w="44557935"/><text x="71.8779%" y="1807.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,557,935 samples, 0.01%)</title><rect x="71.6279%" y="1781" width="0.0145%" height="15" fill="rgb(225,204,27)" fg:x="220280030357" fg:w="44557935"/><text x="71.8779%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (44,557,935 samples, 0.01%)</title><rect x="71.6279%" y="1765" width="0.0145%" height="15" fill="rgb(230,56,32)" fg:x="220280030357" fg:w="44557935"/><text x="71.8779%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (44,557,935 samples, 0.01%)</title><rect x="71.6279%" y="1749" width="0.0145%" height="15" fill="rgb(222,56,27)" fg:x="220280030357" fg:w="44557935"/><text x="71.8779%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (44,557,935 samples, 0.01%)</title><rect x="71.6279%" y="1733" width="0.0145%" height="15" fill="rgb(253,108,27)" fg:x="220280030357" fg:w="44557935"/><text x="71.8779%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,557,935 samples, 0.01%)</title><rect x="71.6279%" y="1717" width="0.0145%" height="15" fill="rgb(212,87,36)" fg:x="220280030357" fg:w="44557935"/><text x="71.8779%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,557,935 samples, 0.01%)</title><rect x="71.6279%" y="1701" width="0.0145%" height="15" fill="rgb(247,82,36)" fg:x="220280030357" fg:w="44557935"/><text x="71.8779%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,557,935 samples, 0.01%)</title><rect x="71.6279%" y="1685" width="0.0145%" height="15" fill="rgb(222,143,9)" fg:x="220280030357" fg:w="44557935"/><text x="71.8779%" y="1695.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (44,557,935 samples, 0.01%)</title><rect x="71.6279%" y="1669" width="0.0145%" height="15" fill="rgb(238,162,48)" fg:x="220280030357" fg:w="44557935"/><text x="71.8779%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (38,664,787 samples, 0.01%)</title><rect x="71.6298%" y="1653" width="0.0126%" height="15" fill="rgb(221,59,43)" fg:x="220285923505" fg:w="38664787"/><text x="71.8798%" y="1663.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,664,787 samples, 0.01%)</title><rect x="71.6298%" y="1637" width="0.0126%" height="15" fill="rgb(205,166,41)" fg:x="220285923505" fg:w="38664787"/><text x="71.8798%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (38,664,787 samples, 0.01%)</title><rect x="71.6298%" y="1621" width="0.0126%" height="15" fill="rgb(241,186,40)" fg:x="220285923505" fg:w="38664787"/><text x="71.8798%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (38,664,787 samples, 0.01%)</title><rect x="71.6298%" y="1605" width="0.0126%" height="15" fill="rgb(216,119,35)" fg:x="220285923505" fg:w="38664787"/><text x="71.8798%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (38,664,787 samples, 0.01%)</title><rect x="71.6298%" y="1589" width="0.0126%" height="15" fill="rgb(208,68,38)" fg:x="220285923505" fg:w="38664787"/><text x="71.8798%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (38,664,787 samples, 0.01%)</title><rect x="71.6298%" y="1573" width="0.0126%" height="15" fill="rgb(217,113,1)" fg:x="220285923505" fg:w="38664787"/><text x="71.8798%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (38,664,787 samples, 0.01%)</title><rect x="71.6298%" y="1557" width="0.0126%" height="15" fill="rgb(242,153,3)" fg:x="220285923505" fg:w="38664787"/><text x="71.8798%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (38,664,787 samples, 0.01%)</title><rect x="71.6298%" y="1541" width="0.0126%" height="15" fill="rgb(229,76,35)" fg:x="220285923505" fg:w="38664787"/><text x="71.8798%" y="1551.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (38,664,787 samples, 0.01%)</title><rect x="71.6298%" y="1525" width="0.0126%" height="15" fill="rgb(229,125,34)" fg:x="220285923505" fg:w="38664787"/><text x="71.8798%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (73,001,051 samples, 0.02%)</title><rect x="71.6195%" y="2053" width="0.0237%" height="15" fill="rgb(238,179,36)" fg:x="220254227536" fg:w="73001051"/><text x="71.8695%" y="2063.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (73,001,051 samples, 0.02%)</title><rect x="71.6195%" y="2037" width="0.0237%" height="15" fill="rgb(244,183,19)" fg:x="220254227536" fg:w="73001051"/><text x="71.8695%" y="2047.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (73,001,051 samples, 0.02%)</title><rect x="71.6195%" y="2021" width="0.0237%" height="15" fill="rgb(216,85,49)" fg:x="220254227536" fg:w="73001051"/><text x="71.8695%" y="2031.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (73,001,051 samples, 0.02%)</title><rect x="71.6195%" y="2005" width="0.0237%" height="15" fill="rgb(208,161,47)" fg:x="220254227536" fg:w="73001051"/><text x="71.8695%" y="2015.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (73,001,051 samples, 0.02%)</title><rect x="71.6195%" y="1989" width="0.0237%" height="15" fill="rgb(233,210,18)" fg:x="220254227536" fg:w="73001051"/><text x="71.8695%" y="1999.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (73,001,051 samples, 0.02%)</title><rect x="71.6195%" y="1973" width="0.0237%" height="15" fill="rgb(205,104,42)" fg:x="220254227536" fg:w="73001051"/><text x="71.8695%" y="1983.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (73,001,051 samples, 0.02%)</title><rect x="71.6195%" y="1957" width="0.0237%" height="15" fill="rgb(248,90,43)" fg:x="220254227536" fg:w="73001051"/><text x="71.8695%" y="1967.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (67,278,841 samples, 0.02%)</title><rect x="71.6213%" y="1941" width="0.0219%" height="15" fill="rgb(206,198,11)" fg:x="220259949746" fg:w="67278841"/><text x="71.8713%" y="1951.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (67,278,841 samples, 0.02%)</title><rect x="71.6213%" y="1925" width="0.0219%" height="15" fill="rgb(239,165,27)" fg:x="220259949746" fg:w="67278841"/><text x="71.8713%" y="1935.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (67,278,841 samples, 0.02%)</title><rect x="71.6213%" y="1909" width="0.0219%" height="15" fill="rgb(246,44,32)" fg:x="220259949746" fg:w="67278841"/><text x="71.8713%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (67,278,841 samples, 0.02%)</title><rect x="71.6213%" y="1893" width="0.0219%" height="15" fill="rgb(252,65,42)" fg:x="220259949746" fg:w="67278841"/><text x="71.8713%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (67,278,841 samples, 0.02%)</title><rect x="71.6213%" y="1877" width="0.0219%" height="15" fill="rgb(246,197,18)" fg:x="220259949746" fg:w="67278841"/><text x="71.8713%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (67,278,841 samples, 0.02%)</title><rect x="71.6213%" y="1861" width="0.0219%" height="15" fill="rgb(216,192,4)" fg:x="220259949746" fg:w="67278841"/><text x="71.8713%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (67,278,841 samples, 0.02%)</title><rect x="71.6213%" y="1845" width="0.0219%" height="15" fill="rgb(208,117,10)" fg:x="220259949746" fg:w="67278841"/><text x="71.8713%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (67,278,841 samples, 0.02%)</title><rect x="71.6213%" y="1829" width="0.0219%" height="15" fill="rgb(240,61,47)" fg:x="220259949746" fg:w="67278841"/><text x="71.8713%" y="1839.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (67,278,841 samples, 0.02%)</title><rect x="71.6213%" y="1813" width="0.0219%" height="15" fill="rgb(228,178,21)" fg:x="220259949746" fg:w="67278841"/><text x="71.8713%" y="1823.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (79,993,531 samples, 0.03%)</title><rect x="71.6558%" y="1765" width="0.0260%" height="15" fill="rgb(219,96,54)" fg:x="220365980174" fg:w="79993531"/><text x="71.9058%" y="1775.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,993,531 samples, 0.03%)</title><rect x="71.6558%" y="1749" width="0.0260%" height="15" fill="rgb(250,177,24)" fg:x="220365980174" fg:w="79993531"/><text x="71.9058%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (79,993,531 samples, 0.03%)</title><rect x="71.6558%" y="1733" width="0.0260%" height="15" fill="rgb(242,154,46)" fg:x="220365980174" fg:w="79993531"/><text x="71.9058%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (79,993,531 samples, 0.03%)</title><rect x="71.6558%" y="1717" width="0.0260%" height="15" fill="rgb(226,176,29)" fg:x="220365980174" fg:w="79993531"/><text x="71.9058%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (79,993,531 samples, 0.03%)</title><rect x="71.6558%" y="1701" width="0.0260%" height="15" fill="rgb(226,29,2)" fg:x="220365980174" fg:w="79993531"/><text x="71.9058%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (79,993,531 samples, 0.03%)</title><rect x="71.6558%" y="1685" width="0.0260%" height="15" fill="rgb(237,104,14)" fg:x="220365980174" fg:w="79993531"/><text x="71.9058%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (79,993,531 samples, 0.03%)</title><rect x="71.6558%" y="1669" width="0.0260%" height="15" fill="rgb(245,207,31)" fg:x="220365980174" fg:w="79993531"/><text x="71.9058%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (79,993,531 samples, 0.03%)</title><rect x="71.6558%" y="1653" width="0.0260%" height="15" fill="rgb(229,211,45)" fg:x="220365980174" fg:w="79993531"/><text x="71.9058%" y="1663.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (79,993,531 samples, 0.03%)</title><rect x="71.6558%" y="1637" width="0.0260%" height="15" fill="rgb(229,113,15)" fg:x="220365980174" fg:w="79993531"/><text x="71.9058%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (70,926,834 samples, 0.02%)</title><rect x="71.6588%" y="1621" width="0.0231%" height="15" fill="rgb(237,147,15)" fg:x="220375046871" fg:w="70926834"/><text x="71.9088%" y="1631.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (70,926,834 samples, 0.02%)</title><rect x="71.6588%" y="1605" width="0.0231%" height="15" fill="rgb(244,120,12)" fg:x="220375046871" fg:w="70926834"/><text x="71.9088%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (70,926,834 samples, 0.02%)</title><rect x="71.6588%" y="1589" width="0.0231%" height="15" fill="rgb(205,120,12)" fg:x="220375046871" fg:w="70926834"/><text x="71.9088%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (70,926,834 samples, 0.02%)</title><rect x="71.6588%" y="1573" width="0.0231%" height="15" fill="rgb(231,26,45)" fg:x="220375046871" fg:w="70926834"/><text x="71.9088%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (70,926,834 samples, 0.02%)</title><rect x="71.6588%" y="1557" width="0.0231%" height="15" fill="rgb(246,98,1)" fg:x="220375046871" fg:w="70926834"/><text x="71.9088%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (70,926,834 samples, 0.02%)</title><rect x="71.6588%" y="1541" width="0.0231%" height="15" fill="rgb(207,68,45)" fg:x="220375046871" fg:w="70926834"/><text x="71.9088%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (70,926,834 samples, 0.02%)</title><rect x="71.6588%" y="1525" width="0.0231%" height="15" fill="rgb(231,27,38)" fg:x="220375046871" fg:w="70926834"/><text x="71.9088%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (70,926,834 samples, 0.02%)</title><rect x="71.6588%" y="1509" width="0.0231%" height="15" fill="rgb(214,223,3)" fg:x="220375046871" fg:w="70926834"/><text x="71.9088%" y="1519.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (70,926,834 samples, 0.02%)</title><rect x="71.6588%" y="1493" width="0.0231%" height="15" fill="rgb(228,195,46)" fg:x="220375046871" fg:w="70926834"/><text x="71.9088%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (58,217,117 samples, 0.02%)</title><rect x="71.6629%" y="1477" width="0.0189%" height="15" fill="rgb(231,100,42)" fg:x="220387756588" fg:w="58217117"/><text x="71.9129%" y="1487.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (58,217,117 samples, 0.02%)</title><rect x="71.6629%" y="1461" width="0.0189%" height="15" fill="rgb(236,53,4)" fg:x="220387756588" fg:w="58217117"/><text x="71.9129%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (58,217,117 samples, 0.02%)</title><rect x="71.6629%" y="1445" width="0.0189%" height="15" fill="rgb(230,152,12)" fg:x="220387756588" fg:w="58217117"/><text x="71.9129%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (58,217,117 samples, 0.02%)</title><rect x="71.6629%" y="1429" width="0.0189%" height="15" fill="rgb(226,101,19)" fg:x="220387756588" fg:w="58217117"/><text x="71.9129%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (58,217,117 samples, 0.02%)</title><rect x="71.6629%" y="1413" width="0.0189%" height="15" fill="rgb(250,149,32)" fg:x="220387756588" fg:w="58217117"/><text x="71.9129%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (58,217,117 samples, 0.02%)</title><rect x="71.6629%" y="1397" width="0.0189%" height="15" fill="rgb(232,178,12)" fg:x="220387756588" fg:w="58217117"/><text x="71.9129%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (58,217,117 samples, 0.02%)</title><rect x="71.6629%" y="1381" width="0.0189%" height="15" fill="rgb(246,151,17)" fg:x="220387756588" fg:w="58217117"/><text x="71.9129%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (58,217,117 samples, 0.02%)</title><rect x="71.6629%" y="1365" width="0.0189%" height="15" fill="rgb(252,17,51)" fg:x="220387756588" fg:w="58217117"/><text x="71.9129%" y="1375.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (58,217,117 samples, 0.02%)</title><rect x="71.6629%" y="1349" width="0.0189%" height="15" fill="rgb(250,207,23)" fg:x="220387756588" fg:w="58217117"/><text x="71.9129%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (46,489,786 samples, 0.02%)</title><rect x="71.6667%" y="1333" width="0.0151%" height="15" fill="rgb(205,27,5)" fg:x="220399483919" fg:w="46489786"/><text x="71.9167%" y="1343.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,489,786 samples, 0.02%)</title><rect x="71.6667%" y="1317" width="0.0151%" height="15" fill="rgb(224,32,19)" fg:x="220399483919" fg:w="46489786"/><text x="71.9167%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (46,489,786 samples, 0.02%)</title><rect x="71.6667%" y="1301" width="0.0151%" height="15" fill="rgb(247,214,40)" fg:x="220399483919" fg:w="46489786"/><text x="71.9167%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (46,489,786 samples, 0.02%)</title><rect x="71.6667%" y="1285" width="0.0151%" height="15" fill="rgb(239,199,17)" fg:x="220399483919" fg:w="46489786"/><text x="71.9167%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (46,489,786 samples, 0.02%)</title><rect x="71.6667%" y="1269" width="0.0151%" height="15" fill="rgb(251,159,9)" fg:x="220399483919" fg:w="46489786"/><text x="71.9167%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,489,786 samples, 0.02%)</title><rect x="71.6667%" y="1253" width="0.0151%" height="15" fill="rgb(225,78,32)" fg:x="220399483919" fg:w="46489786"/><text x="71.9167%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,489,786 samples, 0.02%)</title><rect x="71.6667%" y="1237" width="0.0151%" height="15" fill="rgb(206,97,47)" fg:x="220399483919" fg:w="46489786"/><text x="71.9167%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,489,786 samples, 0.02%)</title><rect x="71.6667%" y="1221" width="0.0151%" height="15" fill="rgb(227,107,4)" fg:x="220399483919" fg:w="46489786"/><text x="71.9167%" y="1231.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,489,786 samples, 0.02%)</title><rect x="71.6667%" y="1205" width="0.0151%" height="15" fill="rgb(241,146,50)" fg:x="220399483919" fg:w="46489786"/><text x="71.9167%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (120,789,435 samples, 0.04%)</title><rect x="71.6432%" y="2053" width="0.0393%" height="15" fill="rgb(232,92,30)" fg:x="220327228587" fg:w="120789435"/><text x="71.8932%" y="2063.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (120,789,435 samples, 0.04%)</title><rect x="71.6432%" y="2037" width="0.0393%" height="15" fill="rgb(222,0,40)" fg:x="220327228587" fg:w="120789435"/><text x="71.8932%" y="2047.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (120,789,435 samples, 0.04%)</title><rect x="71.6432%" y="2021" width="0.0393%" height="15" fill="rgb(219,54,33)" fg:x="220327228587" fg:w="120789435"/><text x="71.8932%" y="2031.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (120,789,435 samples, 0.04%)</title><rect x="71.6432%" y="2005" width="0.0393%" height="15" fill="rgb(226,209,28)" fg:x="220327228587" fg:w="120789435"/><text x="71.8932%" y="2015.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (120,789,435 samples, 0.04%)</title><rect x="71.6432%" y="1989" width="0.0393%" height="15" fill="rgb(254,205,35)" fg:x="220327228587" fg:w="120789435"/><text x="71.8932%" y="1999.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (120,789,435 samples, 0.04%)</title><rect x="71.6432%" y="1973" width="0.0393%" height="15" fill="rgb(230,159,3)" fg:x="220327228587" fg:w="120789435"/><text x="71.8932%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (120,789,435 samples, 0.04%)</title><rect x="71.6432%" y="1957" width="0.0393%" height="15" fill="rgb(232,190,24)" fg:x="220327228587" fg:w="120789435"/><text x="71.8932%" y="1967.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (120,789,435 samples, 0.04%)</title><rect x="71.6432%" y="1941" width="0.0393%" height="15" fill="rgb(217,227,44)" fg:x="220327228587" fg:w="120789435"/><text x="71.8932%" y="1951.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (120,789,435 samples, 0.04%)</title><rect x="71.6432%" y="1925" width="0.0393%" height="15" fill="rgb(236,211,1)" fg:x="220327228587" fg:w="120789435"/><text x="71.8932%" y="1935.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (111,107,762 samples, 0.04%)</title><rect x="71.6464%" y="1909" width="0.0361%" height="15" fill="rgb(250,127,46)" fg:x="220336910260" fg:w="111107762"/><text x="71.8964%" y="1919.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (111,107,762 samples, 0.04%)</title><rect x="71.6464%" y="1893" width="0.0361%" height="15" fill="rgb(229,213,6)" fg:x="220336910260" fg:w="111107762"/><text x="71.8964%" y="1903.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (111,107,762 samples, 0.04%)</title><rect x="71.6464%" y="1877" width="0.0361%" height="15" fill="rgb(237,15,36)" fg:x="220336910260" fg:w="111107762"/><text x="71.8964%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (111,107,762 samples, 0.04%)</title><rect x="71.6464%" y="1861" width="0.0361%" height="15" fill="rgb(213,131,41)" fg:x="220336910260" fg:w="111107762"/><text x="71.8964%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (111,107,762 samples, 0.04%)</title><rect x="71.6464%" y="1845" width="0.0361%" height="15" fill="rgb(225,82,44)" fg:x="220336910260" fg:w="111107762"/><text x="71.8964%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (111,107,762 samples, 0.04%)</title><rect x="71.6464%" y="1829" width="0.0361%" height="15" fill="rgb(249,42,11)" fg:x="220336910260" fg:w="111107762"/><text x="71.8964%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (111,107,762 samples, 0.04%)</title><rect x="71.6464%" y="1813" width="0.0361%" height="15" fill="rgb(253,11,29)" fg:x="220336910260" fg:w="111107762"/><text x="71.8964%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (111,107,762 samples, 0.04%)</title><rect x="71.6464%" y="1797" width="0.0361%" height="15" fill="rgb(206,8,54)" fg:x="220336910260" fg:w="111107762"/><text x="71.8964%" y="1807.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (111,107,762 samples, 0.04%)</title><rect x="71.6464%" y="1781" width="0.0361%" height="15" fill="rgb(222,186,2)" fg:x="220336910260" fg:w="111107762"/><text x="71.8964%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="2053" width="0.0103%" height="15" fill="rgb(221,206,53)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="2063.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="2037" width="0.0103%" height="15" fill="rgb(230,150,21)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="2047.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="2021" width="0.0103%" height="15" fill="rgb(253,202,10)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="2031.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="2005" width="0.0103%" height="15" fill="rgb(238,109,40)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="2015.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1989" width="0.0103%" height="15" fill="rgb(247,120,22)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1999.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1973" width="0.0103%" height="15" fill="rgb(207,43,30)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1957" width="0.0103%" height="15" fill="rgb(213,211,24)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1967.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1941" width="0.0103%" height="15" fill="rgb(239,73,39)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1951.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1925" width="0.0103%" height="15" fill="rgb(245,182,19)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1935.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1909" width="0.0103%" height="15" fill="rgb(247,143,26)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1919.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1893" width="0.0103%" height="15" fill="rgb(228,191,23)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1877" width="0.0103%" height="15" fill="rgb(253,165,31)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1861" width="0.0103%" height="15" fill="rgb(234,138,20)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1845" width="0.0103%" height="15" fill="rgb(218,191,29)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1855.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1829" width="0.0103%" height="15" fill="rgb(221,157,19)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1839.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1813" width="0.0103%" height="15" fill="rgb(237,26,42)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1823.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1797" width="0.0103%" height="15" fill="rgb(220,163,24)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1807.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1781" width="0.0103%" height="15" fill="rgb(242,115,20)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1765" width="0.0103%" height="15" fill="rgb(210,206,9)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1749" width="0.0103%" height="15" fill="rgb(208,71,17)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1733" width="0.0103%" height="15" fill="rgb(233,7,5)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1717" width="0.0103%" height="15" fill="rgb(207,92,33)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1727.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1701" width="0.0103%" height="15" fill="rgb(218,87,9)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1685" width="0.0103%" height="15" fill="rgb(219,47,37)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1695.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1669" width="0.0103%" height="15" fill="rgb(221,152,34)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1653" width="0.0103%" height="15" fill="rgb(235,176,21)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1637" width="0.0103%" height="15" fill="rgb(232,212,21)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1621" width="0.0103%" height="15" fill="rgb(245,82,39)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1605" width="0.0103%" height="15" fill="rgb(241,52,51)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1615.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,683,945 samples, 0.01%)</title><rect x="71.6825%" y="1589" width="0.0103%" height="15" fill="rgb(219,91,24)" fg:x="220448018022" fg:w="31683945"/><text x="71.9325%" y="1599.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="437" width="0.0100%" height="15" fill="rgb(241,142,12)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="447.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="421" width="0.0100%" height="15" fill="rgb(230,27,9)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="405" width="0.0100%" height="15" fill="rgb(249,181,32)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="415.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="389" width="0.0100%" height="15" fill="rgb(230,107,3)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="373" width="0.0100%" height="15" fill="rgb(246,204,14)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="357" width="0.0100%" height="15" fill="rgb(213,192,47)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="341" width="0.0100%" height="15" fill="rgb(240,44,36)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="351.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="325" width="0.0100%" height="15" fill="rgb(244,209,38)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="335.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="309" width="0.0100%" height="15" fill="rgb(219,34,37)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="319.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="293" width="0.0100%" height="15" fill="rgb(210,28,6)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="277" width="0.0100%" height="15" fill="rgb(244,110,52)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="261" width="0.0100%" height="15" fill="rgb(254,124,47)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="245" width="0.0100%" height="15" fill="rgb(254,110,13)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="255.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="229" width="0.0100%" height="15" fill="rgb(252,57,21)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="239.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (30,794,817 samples, 0.01%)</title><rect x="71.7053%" y="213" width="0.0100%" height="15" fill="rgb(242,60,45)" fg:x="220518112082" fg:w="30794817"/><text x="71.9553%" y="223.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (32,938,985 samples, 0.01%)</title><rect x="71.7053%" y="485" width="0.0107%" height="15" fill="rgb(234,49,30)" fg:x="220518112082" fg:w="32938985"/><text x="71.9553%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (32,938,985 samples, 0.01%)</title><rect x="71.7053%" y="469" width="0.0107%" height="15" fill="rgb(218,98,6)" fg:x="220518112082" fg:w="32938985"/><text x="71.9553%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (32,938,985 samples, 0.01%)</title><rect x="71.7053%" y="453" width="0.0107%" height="15" fill="rgb(220,174,29)" fg:x="220518112082" fg:w="32938985"/><text x="71.9553%" y="463.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1269" width="0.0119%" height="15" fill="rgb(236,163,23)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1253" width="0.0119%" height="15" fill="rgb(242,114,45)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1263.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1237" width="0.0119%" height="15" fill="rgb(232,10,53)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1221" width="0.0119%" height="15" fill="rgb(245,108,29)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1205" width="0.0119%" height="15" fill="rgb(240,89,53)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1189" width="0.0119%" height="15" fill="rgb(226,60,45)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1173" width="0.0119%" height="15" fill="rgb(230,41,44)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1183.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1157" width="0.0119%" height="15" fill="rgb(230,26,20)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1167.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1141" width="0.0119%" height="15" fill="rgb(237,170,32)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1151.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1125" width="0.0119%" height="15" fill="rgb(212,35,42)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1109" width="0.0119%" height="15" fill="rgb(227,31,34)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1093" width="0.0119%" height="15" fill="rgb(216,19,18)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1077" width="0.0119%" height="15" fill="rgb(211,133,42)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1061" width="0.0119%" height="15" fill="rgb(244,66,13)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1071.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1045" width="0.0119%" height="15" fill="rgb(218,185,50)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1055.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1029" width="0.0119%" height="15" fill="rgb(219,149,13)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1039.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (36,553,874 samples, 0.01%)</title><rect x="71.7045%" y="1013" width="0.0119%" height="15" fill="rgb(221,125,0)" fg:x="220515788780" fg:w="36553874"/><text x="71.9545%" y="1023.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="997" width="0.0115%" height="15" fill="rgb(247,126,27)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="981" width="0.0115%" height="15" fill="rgb(250,138,30)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="991.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="965" width="0.0115%" height="15" fill="rgb(230,151,9)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="949" width="0.0115%" height="15" fill="rgb(233,80,38)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="933" width="0.0115%" height="15" fill="rgb(232,68,43)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="917" width="0.0115%" height="15" fill="rgb(254,5,50)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="901" width="0.0115%" height="15" fill="rgb(225,45,5)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="911.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="885" width="0.0115%" height="15" fill="rgb(239,22,3)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="895.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="869" width="0.0115%" height="15" fill="rgb(243,129,0)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="853" width="0.0115%" height="15" fill="rgb(223,164,0)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="863.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="837" width="0.0115%" height="15" fill="rgb(221,46,29)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="847.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="821" width="0.0115%" height="15" fill="rgb(205,97,47)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="805" width="0.0115%" height="15" fill="rgb(249,14,8)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="789" width="0.0115%" height="15" fill="rgb(216,77,3)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="773" width="0.0115%" height="15" fill="rgb(206,168,54)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="757" width="0.0115%" height="15" fill="rgb(236,3,41)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="741" width="0.0115%" height="15" fill="rgb(231,132,24)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="751.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="725" width="0.0115%" height="15" fill="rgb(227,221,40)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="735.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="709" width="0.0115%" height="15" fill="rgb(233,151,11)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="693" width="0.0115%" height="15" fill="rgb(247,81,35)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="677" width="0.0115%" height="15" fill="rgb(243,128,48)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="661" width="0.0115%" height="15" fill="rgb(253,16,10)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="645" width="0.0115%" height="15" fill="rgb(228,67,27)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="655.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,489,306 samples, 0.01%)</title><rect x="71.7049%" y="629" width="0.0115%" height="15" fill="rgb(231,105,25)" fg:x="220516853348" fg:w="35489306"/><text x="71.9549%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (34,230,572 samples, 0.01%)</title><rect x="71.7053%" y="613" width="0.0111%" height="15" fill="rgb(213,166,47)" fg:x="220518112082" fg:w="34230572"/><text x="71.9553%" y="623.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,230,572 samples, 0.01%)</title><rect x="71.7053%" y="597" width="0.0111%" height="15" fill="rgb(209,27,10)" fg:x="220518112082" fg:w="34230572"/><text x="71.9553%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (34,230,572 samples, 0.01%)</title><rect x="71.7053%" y="581" width="0.0111%" height="15" fill="rgb(241,44,30)" fg:x="220518112082" fg:w="34230572"/><text x="71.9553%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (34,230,572 samples, 0.01%)</title><rect x="71.7053%" y="565" width="0.0111%" height="15" fill="rgb(223,216,15)" fg:x="220518112082" fg:w="34230572"/><text x="71.9553%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,230,572 samples, 0.01%)</title><rect x="71.7053%" y="549" width="0.0111%" height="15" fill="rgb(227,14,7)" fg:x="220518112082" fg:w="34230572"/><text x="71.9553%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,230,572 samples, 0.01%)</title><rect x="71.7053%" y="533" width="0.0111%" height="15" fill="rgb(237,14,5)" fg:x="220518112082" fg:w="34230572"/><text x="71.9553%" y="543.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,230,572 samples, 0.01%)</title><rect x="71.7053%" y="517" width="0.0111%" height="15" fill="rgb(232,14,36)" fg:x="220518112082" fg:w="34230572"/><text x="71.9553%" y="527.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (34,230,572 samples, 0.01%)</title><rect x="71.7053%" y="501" width="0.0111%" height="15" fill="rgb(234,0,38)" fg:x="220518112082" fg:w="34230572"/><text x="71.9553%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="2053" width="0.0274%" height="15" fill="rgb(207,170,14)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="2063.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="2037" width="0.0274%" height="15" fill="rgb(252,45,13)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="2047.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="2021" width="0.0274%" height="15" fill="rgb(213,142,7)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="2031.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="2005" width="0.0274%" height="15" fill="rgb(216,157,23)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="2015.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1989" width="0.0274%" height="15" fill="rgb(212,145,33)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1999.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1973" width="0.0274%" height="15" fill="rgb(233,26,13)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1983.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1957" width="0.0274%" height="15" fill="rgb(219,196,19)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1967.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1941" width="0.0274%" height="15" fill="rgb(246,56,21)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1951.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1925" width="0.0274%" height="15" fill="rgb(222,28,53)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1909" width="0.0274%" height="15" fill="rgb(224,5,27)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1893" width="0.0274%" height="15" fill="rgb(220,153,33)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1877" width="0.0274%" height="15" fill="rgb(226,58,19)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1887.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1861" width="0.0274%" height="15" fill="rgb(239,112,23)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1871.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1845" width="0.0274%" height="15" fill="rgb(251,213,20)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1855.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1829" width="0.0274%" height="15" fill="rgb(215,181,21)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1839.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1813" width="0.0274%" height="15" fill="rgb(240,8,35)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1797" width="0.0274%" height="15" fill="rgb(232,203,3)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1781" width="0.0274%" height="15" fill="rgb(214,202,43)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1765" width="0.0274%" height="15" fill="rgb(254,35,11)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1749" width="0.0274%" height="15" fill="rgb(239,173,13)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1759.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1733" width="0.0274%" height="15" fill="rgb(220,141,0)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1717" width="0.0274%" height="15" fill="rgb(210,98,12)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1727.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1701" width="0.0274%" height="15" fill="rgb(254,153,22)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1685" width="0.0274%" height="15" fill="rgb(247,223,17)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1669" width="0.0274%" height="15" fill="rgb(246,56,7)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1653" width="0.0274%" height="15" fill="rgb(240,226,12)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1637" width="0.0274%" height="15" fill="rgb(205,87,46)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1647.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (84,409,069 samples, 0.03%)</title><rect x="71.6928%" y="1621" width="0.0274%" height="15" fill="rgb(245,214,51)" fg:x="220479701967" fg:w="84409069"/><text x="71.9428%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (83,301,026 samples, 0.03%)</title><rect x="71.6931%" y="1605" width="0.0271%" height="15" fill="rgb(223,172,33)" fg:x="220480810010" fg:w="83301026"/><text x="71.9431%" y="1615.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (83,301,026 samples, 0.03%)</title><rect x="71.6931%" y="1589" width="0.0271%" height="15" fill="rgb(227,203,34)" fg:x="220480810010" fg:w="83301026"/><text x="71.9431%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (83,301,026 samples, 0.03%)</title><rect x="71.6931%" y="1573" width="0.0271%" height="15" fill="rgb(248,143,44)" fg:x="220480810010" fg:w="83301026"/><text x="71.9431%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (83,301,026 samples, 0.03%)</title><rect x="71.6931%" y="1557" width="0.0271%" height="15" fill="rgb(226,162,5)" fg:x="220480810010" fg:w="83301026"/><text x="71.9431%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,301,026 samples, 0.03%)</title><rect x="71.6931%" y="1541" width="0.0271%" height="15" fill="rgb(211,143,1)" fg:x="220480810010" fg:w="83301026"/><text x="71.9431%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,301,026 samples, 0.03%)</title><rect x="71.6931%" y="1525" width="0.0271%" height="15" fill="rgb(224,96,15)" fg:x="220480810010" fg:w="83301026"/><text x="71.9431%" y="1535.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,301,026 samples, 0.03%)</title><rect x="71.6931%" y="1509" width="0.0271%" height="15" fill="rgb(222,4,38)" fg:x="220480810010" fg:w="83301026"/><text x="71.9431%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (76,315,402 samples, 0.02%)</title><rect x="71.6954%" y="1493" width="0.0248%" height="15" fill="rgb(253,228,15)" fg:x="220487795634" fg:w="76315402"/><text x="71.9454%" y="1503.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,315,402 samples, 0.02%)</title><rect x="71.6954%" y="1477" width="0.0248%" height="15" fill="rgb(242,194,12)" fg:x="220487795634" fg:w="76315402"/><text x="71.9454%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (76,315,402 samples, 0.02%)</title><rect x="71.6954%" y="1461" width="0.0248%" height="15" fill="rgb(214,177,31)" fg:x="220487795634" fg:w="76315402"/><text x="71.9454%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (76,315,402 samples, 0.02%)</title><rect x="71.6954%" y="1445" width="0.0248%" height="15" fill="rgb(226,58,51)" fg:x="220487795634" fg:w="76315402"/><text x="71.9454%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,315,402 samples, 0.02%)</title><rect x="71.6954%" y="1429" width="0.0248%" height="15" fill="rgb(250,119,16)" fg:x="220487795634" fg:w="76315402"/><text x="71.9454%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,315,402 samples, 0.02%)</title><rect x="71.6954%" y="1413" width="0.0248%" height="15" fill="rgb(223,128,53)" fg:x="220487795634" fg:w="76315402"/><text x="71.9454%" y="1423.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,315,402 samples, 0.02%)</title><rect x="71.6954%" y="1397" width="0.0248%" height="15" fill="rgb(251,199,15)" fg:x="220487795634" fg:w="76315402"/><text x="71.9454%" y="1407.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (64,676,915 samples, 0.02%)</title><rect x="71.6992%" y="1381" width="0.0210%" height="15" fill="rgb(235,168,42)" fg:x="220499434121" fg:w="64676915"/><text x="71.9492%" y="1391.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (64,676,915 samples, 0.02%)</title><rect x="71.6992%" y="1365" width="0.0210%" height="15" fill="rgb(250,210,17)" fg:x="220499434121" fg:w="64676915"/><text x="71.9492%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (64,676,915 samples, 0.02%)</title><rect x="71.6992%" y="1349" width="0.0210%" height="15" fill="rgb(226,36,41)" fg:x="220499434121" fg:w="64676915"/><text x="71.9492%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (64,676,915 samples, 0.02%)</title><rect x="71.6992%" y="1333" width="0.0210%" height="15" fill="rgb(225,87,10)" fg:x="220499434121" fg:w="64676915"/><text x="71.9492%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (64,676,915 samples, 0.02%)</title><rect x="71.6992%" y="1317" width="0.0210%" height="15" fill="rgb(228,83,9)" fg:x="220499434121" fg:w="64676915"/><text x="71.9492%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (64,676,915 samples, 0.02%)</title><rect x="71.6992%" y="1301" width="0.0210%" height="15" fill="rgb(225,16,36)" fg:x="220499434121" fg:w="64676915"/><text x="71.9492%" y="1311.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (64,676,915 samples, 0.02%)</title><rect x="71.6992%" y="1285" width="0.0210%" height="15" fill="rgb(242,198,13)" fg:x="220499434121" fg:w="64676915"/><text x="71.9492%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (33,309,508 samples, 0.01%)</title><rect x="71.7208%" y="293" width="0.0108%" height="15" fill="rgb(239,25,51)" fg:x="220565933102" fg:w="33309508"/><text x="71.9708%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (33,309,508 samples, 0.01%)</title><rect x="71.7208%" y="277" width="0.0108%" height="15" fill="rgb(239,28,37)" fg:x="220565933102" fg:w="33309508"/><text x="71.9708%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (33,309,508 samples, 0.01%)</title><rect x="71.7208%" y="261" width="0.0108%" height="15" fill="rgb(234,70,17)" fg:x="220565933102" fg:w="33309508"/><text x="71.9708%" y="271.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="1077" width="0.0129%" height="15" fill="rgb(231,215,53)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="1061" width="0.0129%" height="15" fill="rgb(218,140,42)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="1071.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="1045" width="0.0129%" height="15" fill="rgb(233,227,45)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="1029" width="0.0129%" height="15" fill="rgb(225,189,21)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="1013" width="0.0129%" height="15" fill="rgb(237,176,54)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="997" width="0.0129%" height="15" fill="rgb(215,131,46)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="981" width="0.0129%" height="15" fill="rgb(218,95,20)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="991.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="965" width="0.0129%" height="15" fill="rgb(208,198,12)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="949" width="0.0129%" height="15" fill="rgb(239,107,50)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="959.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="933" width="0.0129%" height="15" fill="rgb(240,217,37)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="917" width="0.0129%" height="15" fill="rgb(242,197,49)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="901" width="0.0129%" height="15" fill="rgb(219,171,17)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="885" width="0.0129%" height="15" fill="rgb(209,81,40)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="895.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="869" width="0.0129%" height="15" fill="rgb(237,156,30)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="853" width="0.0129%" height="15" fill="rgb(212,127,16)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="863.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="837" width="0.0129%" height="15" fill="rgb(226,66,32)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="847.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (39,766,519 samples, 0.01%)</title><rect x="71.7202%" y="821" width="0.0129%" height="15" fill="rgb(245,22,46)" fg:x="220564111036" fg:w="39766519"/><text x="71.9702%" y="831.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="805" width="0.0126%" height="15" fill="rgb(210,112,21)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="815.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="789" width="0.0126%" height="15" fill="rgb(207,118,39)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="799.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="773" width="0.0126%" height="15" fill="rgb(205,206,35)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="757" width="0.0126%" height="15" fill="rgb(222,120,2)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="741" width="0.0126%" height="15" fill="rgb(205,38,18)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="725" width="0.0126%" height="15" fill="rgb(226,61,2)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="735.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="709" width="0.0126%" height="15" fill="rgb(242,161,23)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="719.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="693" width="0.0126%" height="15" fill="rgb(213,13,52)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="703.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="677" width="0.0126%" height="15" fill="rgb(246,209,47)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="661" width="0.0126%" height="15" fill="rgb(214,41,3)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="645" width="0.0126%" height="15" fill="rgb(236,119,38)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="655.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="629" width="0.0126%" height="15" fill="rgb(218,50,11)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="613" width="0.0126%" height="15" fill="rgb(228,38,11)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="597" width="0.0126%" height="15" fill="rgb(212,13,9)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="581" width="0.0126%" height="15" fill="rgb(208,211,9)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="565" width="0.0126%" height="15" fill="rgb(239,39,32)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="575.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="549" width="0.0126%" height="15" fill="rgb(254,179,26)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="533" width="0.0126%" height="15" fill="rgb(249,165,28)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="543.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="517" width="0.0126%" height="15" fill="rgb(225,59,50)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="501" width="0.0126%" height="15" fill="rgb(209,122,5)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="485" width="0.0126%" height="15" fill="rgb(214,65,34)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="469" width="0.0126%" height="15" fill="rgb(249,183,32)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="453" width="0.0126%" height="15" fill="rgb(218,122,24)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="463.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="437" width="0.0126%" height="15" fill="rgb(224,109,18)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="421" width="0.0126%" height="15" fill="rgb(210,68,50)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="431.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="405" width="0.0126%" height="15" fill="rgb(212,184,34)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="389" width="0.0126%" height="15" fill="rgb(238,105,48)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="373" width="0.0126%" height="15" fill="rgb(222,134,54)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="357" width="0.0126%" height="15" fill="rgb(246,24,43)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="341" width="0.0126%" height="15" fill="rgb(227,169,22)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="351.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,810,741 samples, 0.01%)</title><rect x="71.7205%" y="325" width="0.0126%" height="15" fill="rgb(253,152,4)" fg:x="220565066814" fg:w="38810741"/><text x="71.9705%" y="335.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (37,944,453 samples, 0.01%)</title><rect x="71.7208%" y="309" width="0.0123%" height="15" fill="rgb(219,158,36)" fg:x="220565933102" fg:w="37944453"/><text x="71.9708%" y="319.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="2005" width="0.0259%" height="15" fill="rgb(251,128,40)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="2015.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1989" width="0.0259%" height="15" fill="rgb(254,101,39)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1999.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1973" width="0.0259%" height="15" fill="rgb(221,168,40)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1983.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1957" width="0.0259%" height="15" fill="rgb(221,14,27)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1967.50"></text></g><g><title>gpui::window::Window::draw (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1941" width="0.0259%" height="15" fill="rgb(207,36,43)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1951.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1925" width="0.0259%" height="15" fill="rgb(240,172,53)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1935.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1909" width="0.0259%" height="15" fill="rgb(241,138,43)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1919.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1893" width="0.0259%" height="15" fill="rgb(227,78,19)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1903.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1877" width="0.0259%" height="15" fill="rgb(215,127,44)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1887.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1861" width="0.0259%" height="15" fill="rgb(227,13,10)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1871.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1845" width="0.0259%" height="15" fill="rgb(249,177,6)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1829" width="0.0259%" height="15" fill="rgb(215,154,26)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1813" width="0.0259%" height="15" fill="rgb(250,168,20)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1797" width="0.0259%" height="15" fill="rgb(222,53,38)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1781" width="0.0259%" height="15" fill="rgb(245,154,5)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1791.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1765" width="0.0259%" height="15" fill="rgb(214,89,50)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1749" width="0.0259%" height="15" fill="rgb(232,73,14)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1759.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1733" width="0.0259%" height="15" fill="rgb(230,101,20)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1717" width="0.0259%" height="15" fill="rgb(208,56,28)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1701" width="0.0259%" height="15" fill="rgb(247,205,22)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1685" width="0.0259%" height="15" fill="rgb(252,109,51)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1669" width="0.0259%" height="15" fill="rgb(220,40,24)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1679.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1653" width="0.0259%" height="15" fill="rgb(251,108,7)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1637" width="0.0259%" height="15" fill="rgb(238,102,51)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1647.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1621" width="0.0259%" height="15" fill="rgb(219,149,34)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1605" width="0.0259%" height="15" fill="rgb(239,70,0)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1589" width="0.0259%" height="15" fill="rgb(246,214,23)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1573" width="0.0259%" height="15" fill="rgb(239,221,51)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1557" width="0.0259%" height="15" fill="rgb(254,62,14)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1567.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1541" width="0.0259%" height="15" fill="rgb(253,57,33)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1525" width="0.0259%" height="15" fill="rgb(229,34,6)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1535.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1509" width="0.0259%" height="15" fill="rgb(235,191,23)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1493" width="0.0259%" height="15" fill="rgb(217,207,27)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1477" width="0.0259%" height="15" fill="rgb(232,41,44)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1461" width="0.0259%" height="15" fill="rgb(221,188,19)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1445" width="0.0259%" height="15" fill="rgb(245,180,45)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1455.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1429" width="0.0259%" height="15" fill="rgb(250,220,42)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1413" width="0.0259%" height="15" fill="rgb(234,16,34)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1423.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1397" width="0.0259%" height="15" fill="rgb(233,217,23)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1381" width="0.0259%" height="15" fill="rgb(209,22,46)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1365" width="0.0259%" height="15" fill="rgb(213,101,18)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1349" width="0.0259%" height="15" fill="rgb(215,179,52)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1333" width="0.0259%" height="15" fill="rgb(223,50,25)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1343.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1317" width="0.0259%" height="15" fill="rgb(224,51,44)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1301" width="0.0259%" height="15" fill="rgb(224,13,54)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1311.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1285" width="0.0259%" height="15" fill="rgb(219,58,47)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1269" width="0.0259%" height="15" fill="rgb(246,124,34)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1253" width="0.0259%" height="15" fill="rgb(245,109,25)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1237" width="0.0259%" height="15" fill="rgb(235,48,23)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1247.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1221" width="0.0259%" height="15" fill="rgb(229,203,36)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1231.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1205" width="0.0259%" height="15" fill="rgb(234,180,9)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1189" width="0.0259%" height="15" fill="rgb(228,98,45)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1199.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1173" width="0.0259%" height="15" fill="rgb(240,24,36)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1157" width="0.0259%" height="15" fill="rgb(227,154,19)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1141" width="0.0259%" height="15" fill="rgb(231,2,48)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1125" width="0.0259%" height="15" fill="rgb(219,216,0)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1135.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1109" width="0.0259%" height="15" fill="rgb(251,88,0)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1119.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,582,392 samples, 0.03%)</title><rect x="71.7202%" y="1093" width="0.0259%" height="15" fill="rgb(242,45,45)" fg:x="220564111036" fg:w="79582392"/><text x="71.9702%" y="1103.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="1077" width="0.0129%" height="15" fill="rgb(218,149,45)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="1087.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="1061" width="0.0129%" height="15" fill="rgb(247,194,10)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="1045" width="0.0129%" height="15" fill="rgb(234,33,37)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="1029" width="0.0129%" height="15" fill="rgb(218,61,13)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="1013" width="0.0129%" height="15" fill="rgb(210,80,52)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="997" width="0.0129%" height="15" fill="rgb(218,203,27)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="1007.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="981" width="0.0129%" height="15" fill="rgb(209,126,33)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="991.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="965" width="0.0129%" height="15" fill="rgb(234,173,41)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="975.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="949" width="0.0129%" height="15" fill="rgb(228,166,9)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="933" width="0.0129%" height="15" fill="rgb(208,124,43)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="943.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="917" width="0.0129%" height="15" fill="rgb(212,154,38)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="901" width="0.0129%" height="15" fill="rgb(246,179,35)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="885" width="0.0129%" height="15" fill="rgb(251,3,50)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="869" width="0.0129%" height="15" fill="rgb(219,96,8)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="879.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="853" width="0.0129%" height="15" fill="rgb(251,216,33)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="863.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="837" width="0.0129%" height="15" fill="rgb(243,145,29)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="847.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="821" width="0.0129%" height="15" fill="rgb(210,75,20)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="831.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (39,815,873 samples, 0.01%)</title><rect x="71.7332%" y="805" width="0.0129%" height="15" fill="rgb(235,56,8)" fg:x="220603877555" fg:w="39815873"/><text x="71.9832%" y="815.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (80,524,755 samples, 0.03%)</title><rect x="71.7202%" y="2053" width="0.0262%" height="15" fill="rgb(226,175,49)" fg:x="220564111036" fg:w="80524755"/><text x="71.9702%" y="2063.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (80,524,755 samples, 0.03%)</title><rect x="71.7202%" y="2037" width="0.0262%" height="15" fill="rgb(242,204,23)" fg:x="220564111036" fg:w="80524755"/><text x="71.9702%" y="2047.50"></text></g><g><title>wayland_client::event_queue::queue_callback (80,524,755 samples, 0.03%)</title><rect x="71.7202%" y="2021" width="0.0262%" height="15" fill="rgb(225,104,24)" fg:x="220564111036" fg:w="80524755"/><text x="71.9702%" y="2031.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint::_{{closure}} (54,906,927 samples, 0.02%)</title><rect x="71.7467%" y="69" width="0.0179%" height="15" fill="rgb(253,34,1)" fg:x="220645654629" fg:w="54906927"/><text x="71.9967%" y="79.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}}::_{{closure}} (54,906,927 samples, 0.02%)</title><rect x="71.7467%" y="53" width="0.0179%" height="15" fill="rgb(233,199,23)" fg:x="220645654629" fg:w="54906927"/><text x="71.9967%" y="63.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawIntoIter&lt;(gpui::app::entity_map::Entity&lt;language::buffer::Buffer&gt;,())&gt;&gt; (74,138,288 samples, 0.02%)</title><rect x="71.7664%" y="53" width="0.0241%" height="15" fill="rgb(247,7,51)" fg:x="220706226297" fg:w="74138288"/><text x="72.0164%" y="63.50"></text></g><g><title>&lt;gpui::app::entity_map::AnyEntity as core::ops::drop::Drop&gt;::drop (74,138,288 samples, 0.02%)</title><rect x="71.7664%" y="37" width="0.0241%" height="15" fill="rgb(214,146,12)" fg:x="220706226297" fg:w="74138288"/><text x="72.0164%" y="47.50"></text></g><g><title>multi_buffer::MultiBuffer::all_buffers (227,516,566 samples, 0.07%)</title><rect x="71.8080%" y="53" width="0.0740%" height="15" fill="rgb(234,181,43)" fg:x="220833966149" fg:w="227516566"/><text x="72.0580%" y="63.50"></text></g><g><title>&lt;gpui::app::entity_map::AnyEntity as core::clone::Clone&gt;::clone (227,516,566 samples, 0.07%)</title><rect x="71.8080%" y="37" width="0.0740%" height="15" fill="rgb(239,148,6)" fg:x="220833966149" fg:w="227516566"/><text x="72.0580%" y="47.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint (417,925,079 samples, 0.14%)</title><rect x="71.7467%" y="85" width="0.1359%" height="15" fill="rgb(206,151,17)" fg:x="220645654629" fg:w="417925079"/><text x="71.9967%" y="95.50"></text></g><g><title>editor::element::EditorElement::register_actions (357,353,411 samples, 0.12%)</title><rect x="71.7664%" y="69" width="0.1162%" height="15" fill="rgb(213,215,10)" fg:x="220706226297" fg:w="357353411"/><text x="72.0164%" y="79.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1973" width="0.1366%" height="15" fill="rgb(215,220,44)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1983.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1957" width="0.1366%" height="15" fill="rgb(245,205,37)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1967.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1941" width="0.1366%" height="15" fill="rgb(245,130,43)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1951.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1925" width="0.1366%" height="15" fill="rgb(231,227,38)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1935.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1909" width="0.1366%" height="15" fill="rgb(233,185,4)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1919.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1893" width="0.1366%" height="15" fill="rgb(224,154,43)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1877" width="0.1366%" height="15" fill="rgb(235,156,15)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1861" width="0.1366%" height="15" fill="rgb(211,55,43)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1845" width="0.1366%" height="15" fill="rgb(247,149,40)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1829" width="0.1366%" height="15" fill="rgb(232,171,16)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1813" width="0.1366%" height="15" fill="rgb(215,117,49)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1823.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1797" width="0.1366%" height="15" fill="rgb(246,194,11)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1781" width="0.1366%" height="15" fill="rgb(242,101,44)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1791.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1765" width="0.1366%" height="15" fill="rgb(226,174,6)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1749" width="0.1366%" height="15" fill="rgb(213,150,20)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1733" width="0.1366%" height="15" fill="rgb(222,124,42)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1717" width="0.1366%" height="15" fill="rgb(250,19,47)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1701" width="0.1366%" height="15" fill="rgb(241,217,19)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1685" width="0.1366%" height="15" fill="rgb(207,210,34)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1669" width="0.1366%" height="15" fill="rgb(244,45,4)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1679.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1653" width="0.1366%" height="15" fill="rgb(252,134,50)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1637" width="0.1366%" height="15" fill="rgb(238,74,2)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1647.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1621" width="0.1366%" height="15" fill="rgb(226,58,46)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1605" width="0.1366%" height="15" fill="rgb(232,83,35)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1589" width="0.1366%" height="15" fill="rgb(212,148,47)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1573" width="0.1366%" height="15" fill="rgb(235,29,1)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1557" width="0.1366%" height="15" fill="rgb(247,55,37)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1541" width="0.1366%" height="15" fill="rgb(222,48,3)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1525" width="0.1366%" height="15" fill="rgb(234,21,33)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1535.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1509" width="0.1366%" height="15" fill="rgb(247,178,53)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1493" width="0.1366%" height="15" fill="rgb(225,75,7)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1503.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1477" width="0.1366%" height="15" fill="rgb(219,199,7)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1461" width="0.1366%" height="15" fill="rgb(209,93,42)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1445" width="0.1366%" height="15" fill="rgb(240,175,17)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1429" width="0.1366%" height="15" fill="rgb(232,106,7)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1413" width="0.1366%" height="15" fill="rgb(242,106,43)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1397" width="0.1366%" height="15" fill="rgb(242,61,37)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1381" width="0.1366%" height="15" fill="rgb(205,72,10)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1391.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1365" width="0.1366%" height="15" fill="rgb(214,184,36)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1349" width="0.1366%" height="15" fill="rgb(206,107,18)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1359.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1333" width="0.1366%" height="15" fill="rgb(210,75,5)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1317" width="0.1366%" height="15" fill="rgb(205,3,19)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1301" width="0.1366%" height="15" fill="rgb(207,181,42)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1285" width="0.1366%" height="15" fill="rgb(229,179,43)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1269" width="0.1366%" height="15" fill="rgb(246,95,30)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1253" width="0.1366%" height="15" fill="rgb(234,144,45)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1237" width="0.1366%" height="15" fill="rgb(250,54,25)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1247.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1221" width="0.1366%" height="15" fill="rgb(215,195,40)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1205" width="0.1366%" height="15" fill="rgb(233,188,42)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1215.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1189" width="0.1366%" height="15" fill="rgb(247,227,35)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1173" width="0.1366%" height="15" fill="rgb(249,124,27)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1157" width="0.1366%" height="15" fill="rgb(219,207,25)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1141" width="0.1366%" height="15" fill="rgb(241,216,47)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1125" width="0.1366%" height="15" fill="rgb(233,82,50)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1109" width="0.1366%" height="15" fill="rgb(232,63,2)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1093" width="0.1366%" height="15" fill="rgb(236,184,28)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1103.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1077" width="0.1366%" height="15" fill="rgb(254,63,27)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1061" width="0.1366%" height="15" fill="rgb(253,106,28)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1071.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1045" width="0.1366%" height="15" fill="rgb(225,141,39)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1029" width="0.1366%" height="15" fill="rgb(222,157,20)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="1013" width="0.1366%" height="15" fill="rgb(210,190,9)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="997" width="0.1366%" height="15" fill="rgb(242,167,7)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="981" width="0.1366%" height="15" fill="rgb(227,82,41)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="965" width="0.1366%" height="15" fill="rgb(222,131,13)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="949" width="0.1366%" height="15" fill="rgb(221,98,26)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="959.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (420,031,750 samples, 0.14%)</title><rect x="71.7464%" y="933" width="0.1366%" height="15" fill="rgb(251,63,52)" fg:x="220644635791" fg:w="420031750"/><text x="71.9964%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="917" width="0.1362%" height="15" fill="rgb(246,25,43)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="927.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="901" width="0.1362%" height="15" fill="rgb(247,167,15)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="911.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="885" width="0.1362%" height="15" fill="rgb(240,104,42)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="869" width="0.1362%" height="15" fill="rgb(224,54,6)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="853" width="0.1362%" height="15" fill="rgb(244,108,35)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="837" width="0.1362%" height="15" fill="rgb(216,154,2)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="821" width="0.1362%" height="15" fill="rgb(222,8,47)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="805" width="0.1362%" height="15" fill="rgb(252,93,1)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="815.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="789" width="0.1362%" height="15" fill="rgb(223,226,51)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="799.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="773" width="0.1362%" height="15" fill="rgb(206,147,9)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="757" width="0.1362%" height="15" fill="rgb(248,180,41)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="767.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="741" width="0.1362%" height="15" fill="rgb(209,47,50)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="751.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="725" width="0.1362%" height="15" fill="rgb(243,65,31)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="709" width="0.1362%" height="15" fill="rgb(228,128,1)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="693" width="0.1362%" height="15" fill="rgb(231,192,16)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="677" width="0.1362%" height="15" fill="rgb(224,26,40)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="661" width="0.1362%" height="15" fill="rgb(214,192,17)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="645" width="0.1362%" height="15" fill="rgb(225,147,18)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="655.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="629" width="0.1362%" height="15" fill="rgb(205,35,11)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="639.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="613" width="0.1362%" height="15" fill="rgb(242,40,42)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="623.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="597" width="0.1362%" height="15" fill="rgb(250,170,13)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="607.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="581" width="0.1362%" height="15" fill="rgb(240,161,28)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="565" width="0.1362%" height="15" fill="rgb(245,179,12)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="575.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="549" width="0.1362%" height="15" fill="rgb(250,92,32)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="533" width="0.1362%" height="15" fill="rgb(233,10,40)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="517" width="0.1362%" height="15" fill="rgb(217,98,1)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="501" width="0.1362%" height="15" fill="rgb(238,202,7)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="485" width="0.1362%" height="15" fill="rgb(222,91,3)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="469" width="0.1362%" height="15" fill="rgb(211,170,49)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="453" width="0.1362%" height="15" fill="rgb(253,139,18)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="463.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="437" width="0.1362%" height="15" fill="rgb(222,4,43)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="421" width="0.1362%" height="15" fill="rgb(207,205,12)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="431.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="405" width="0.1362%" height="15" fill="rgb(216,159,46)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="389" width="0.1362%" height="15" fill="rgb(236,115,1)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="373" width="0.1362%" height="15" fill="rgb(251,35,33)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="357" width="0.1362%" height="15" fill="rgb(248,62,51)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="341" width="0.1362%" height="15" fill="rgb(254,180,19)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="325" width="0.1362%" height="15" fill="rgb(217,100,32)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="309" width="0.1362%" height="15" fill="rgb(224,71,22)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="319.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="293" width="0.1362%" height="15" fill="rgb(251,185,33)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="303.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="277" width="0.1362%" height="15" fill="rgb(209,75,48)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="287.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="261" width="0.1362%" height="15" fill="rgb(253,190,16)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="245" width="0.1362%" height="15" fill="rgb(226,140,1)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="255.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="229" width="0.1362%" height="15" fill="rgb(206,75,30)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="213" width="0.1362%" height="15" fill="rgb(231,208,37)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="223.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="197" width="0.1362%" height="15" fill="rgb(238,136,40)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="207.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="181" width="0.1362%" height="15" fill="rgb(247,137,17)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="165" width="0.1362%" height="15" fill="rgb(240,60,40)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="149" width="0.1362%" height="15" fill="rgb(236,68,50)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="133" width="0.1362%" height="15" fill="rgb(230,42,12)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="143.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="117" width="0.1362%" height="15" fill="rgb(219,16,16)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="127.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (419,012,912 samples, 0.14%)</title><rect x="71.7467%" y="101" width="0.1362%" height="15" fill="rgb(220,38,35)" fg:x="220645654629" fg:w="419012912"/><text x="71.9967%" y="111.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="1125" width="0.0127%" height="15" fill="rgb(228,33,1)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="1135.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="1109" width="0.0127%" height="15" fill="rgb(241,46,31)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="1119.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="1093" width="0.0127%" height="15" fill="rgb(232,58,20)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="1077" width="0.0127%" height="15" fill="rgb(206,228,53)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="1061" width="0.0127%" height="15" fill="rgb(206,88,33)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="1045" width="0.0127%" height="15" fill="rgb(238,69,7)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="1029" width="0.0127%" height="15" fill="rgb(250,21,46)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="1039.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="1013" width="0.0127%" height="15" fill="rgb(215,212,21)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="997" width="0.0127%" height="15" fill="rgb(211,35,12)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="1007.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="981" width="0.0127%" height="15" fill="rgb(231,184,16)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="965" width="0.0127%" height="15" fill="rgb(242,140,15)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="949" width="0.0127%" height="15" fill="rgb(220,37,14)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="933" width="0.0127%" height="15" fill="rgb(223,146,22)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="917" width="0.0127%" height="15" fill="rgb(216,132,15)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="927.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="901" width="0.0127%" height="15" fill="rgb(248,83,5)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="911.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="885" width="0.0127%" height="15" fill="rgb(231,206,48)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="895.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (38,964,709 samples, 0.01%)</title><rect x="71.8830%" y="869" width="0.0127%" height="15" fill="rgb(253,185,37)" fg:x="221064667541" fg:w="38964709"/><text x="72.1330%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="853" width="0.0121%" height="15" fill="rgb(208,21,44)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="863.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="837" width="0.0121%" height="15" fill="rgb(236,125,4)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="847.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="821" width="0.0121%" height="15" fill="rgb(226,134,25)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="805" width="0.0121%" height="15" fill="rgb(250,201,12)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="789" width="0.0121%" height="15" fill="rgb(225,92,18)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="773" width="0.0121%" height="15" fill="rgb(227,35,22)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="757" width="0.0121%" height="15" fill="rgb(214,180,52)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="741" width="0.0121%" height="15" fill="rgb(233,55,38)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="751.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="725" width="0.0121%" height="15" fill="rgb(249,171,43)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="735.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="709" width="0.0121%" height="15" fill="rgb(239,87,2)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="719.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="693" width="0.0121%" height="15" fill="rgb(248,141,5)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="703.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="677" width="0.0121%" height="15" fill="rgb(238,33,42)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="661" width="0.0121%" height="15" fill="rgb(231,57,19)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="645" width="0.0121%" height="15" fill="rgb(214,78,53)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="629" width="0.0121%" height="15" fill="rgb(206,132,29)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="613" width="0.0121%" height="15" fill="rgb(248,174,31)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="623.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="597" width="0.0121%" height="15" fill="rgb(221,87,13)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="581" width="0.0121%" height="15" fill="rgb(223,197,17)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="591.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="565" width="0.0121%" height="15" fill="rgb(220,144,50)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="549" width="0.0121%" height="15" fill="rgb(244,201,11)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="533" width="0.0121%" height="15" fill="rgb(249,81,34)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="517" width="0.0121%" height="15" fill="rgb(205,161,12)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="501" width="0.0121%" height="15" fill="rgb(252,139,50)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="511.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (37,242,890 samples, 0.01%)</title><rect x="71.8836%" y="485" width="0.0121%" height="15" fill="rgb(205,169,14)" fg:x="221066389360" fg:w="37242890"/><text x="72.1336%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="469" width="0.0118%" height="15" fill="rgb(248,198,33)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="479.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="453" width="0.0118%" height="15" fill="rgb(236,23,21)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="437" width="0.0118%" height="15" fill="rgb(231,13,38)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="421" width="0.0118%" height="15" fill="rgb(239,139,21)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="405" width="0.0118%" height="15" fill="rgb(222,164,45)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="389" width="0.0118%" height="15" fill="rgb(230,52,27)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="399.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="373" width="0.0118%" height="15" fill="rgb(227,143,42)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="383.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="357" width="0.0118%" height="15" fill="rgb(249,127,1)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="341" width="0.0118%" height="15" fill="rgb(243,107,26)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="325" width="0.0118%" height="15" fill="rgb(225,7,45)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,164,106 samples, 0.01%)</title><rect x="71.8839%" y="309" width="0.0118%" height="15" fill="rgb(241,88,38)" fg:x="221067468144" fg:w="36164106"/><text x="72.1339%" y="319.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (467,638,159 samples, 0.15%)</title><rect x="71.7464%" y="2053" width="0.1521%" height="15" fill="rgb(226,121,9)" fg:x="220644635791" fg:w="467638159"/><text x="71.9964%" y="2063.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (467,638,159 samples, 0.15%)</title><rect x="71.7464%" y="2037" width="0.1521%" height="15" fill="rgb(253,60,29)" fg:x="220644635791" fg:w="467638159"/><text x="71.9964%" y="2047.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (467,638,159 samples, 0.15%)</title><rect x="71.7464%" y="2021" width="0.1521%" height="15" fill="rgb(244,181,39)" fg:x="220644635791" fg:w="467638159"/><text x="71.9964%" y="2031.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (467,638,159 samples, 0.15%)</title><rect x="71.7464%" y="2005" width="0.1521%" height="15" fill="rgb(252,203,31)" fg:x="220644635791" fg:w="467638159"/><text x="71.9964%" y="2015.50"></text></g><g><title>gpui::window::Window::draw (467,638,159 samples, 0.15%)</title><rect x="71.7464%" y="1989" width="0.1521%" height="15" fill="rgb(224,120,8)" fg:x="220644635791" fg:w="467638159"/><text x="71.9964%" y="1999.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1973" width="0.0155%" height="15" fill="rgb(205,171,54)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1983.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1957" width="0.0155%" height="15" fill="rgb(235,89,11)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1967.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1941" width="0.0155%" height="15" fill="rgb(212,180,28)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1951.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1925" width="0.0155%" height="15" fill="rgb(247,84,49)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1935.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1909" width="0.0155%" height="15" fill="rgb(236,187,52)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1919.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1893" width="0.0155%" height="15" fill="rgb(227,24,15)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1877" width="0.0155%" height="15" fill="rgb(227,211,13)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1861" width="0.0155%" height="15" fill="rgb(245,52,14)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1845" width="0.0155%" height="15" fill="rgb(225,185,13)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1855.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1829" width="0.0155%" height="15" fill="rgb(217,160,29)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1839.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1813" width="0.0155%" height="15" fill="rgb(216,115,53)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1823.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1797" width="0.0155%" height="15" fill="rgb(236,99,5)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1807.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1781" width="0.0155%" height="15" fill="rgb(222,60,38)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1765" width="0.0155%" height="15" fill="rgb(212,82,22)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1749" width="0.0155%" height="15" fill="rgb(214,48,28)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1733" width="0.0155%" height="15" fill="rgb(245,196,50)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1717" width="0.0155%" height="15" fill="rgb(225,159,46)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1727.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1701" width="0.0155%" height="15" fill="rgb(207,195,48)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1685" width="0.0155%" height="15" fill="rgb(240,73,3)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1695.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1669" width="0.0155%" height="15" fill="rgb(245,57,23)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1653" width="0.0155%" height="15" fill="rgb(240,75,18)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1637" width="0.0155%" height="15" fill="rgb(238,168,12)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1621" width="0.0155%" height="15" fill="rgb(226,20,40)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1605" width="0.0155%" height="15" fill="rgb(224,130,35)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1615.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1589" width="0.0155%" height="15" fill="rgb(225,63,41)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1573" width="0.0155%" height="15" fill="rgb(219,3,3)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1583.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1557" width="0.0155%" height="15" fill="rgb(218,157,4)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1541" width="0.0155%" height="15" fill="rgb(232,76,36)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1525" width="0.0155%" height="15" fill="rgb(247,36,0)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1509" width="0.0155%" height="15" fill="rgb(205,2,34)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1493" width="0.0155%" height="15" fill="rgb(239,136,13)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1503.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1477" width="0.0155%" height="15" fill="rgb(253,122,12)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1461" width="0.0155%" height="15" fill="rgb(222,174,7)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1471.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1445" width="0.0155%" height="15" fill="rgb(208,191,42)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1429" width="0.0155%" height="15" fill="rgb(237,212,15)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1413" width="0.0155%" height="15" fill="rgb(215,65,20)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1397" width="0.0155%" height="15" fill="rgb(232,103,11)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1407.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1381" width="0.0155%" height="15" fill="rgb(235,148,18)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1391.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1365" width="0.0155%" height="15" fill="rgb(240,173,7)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1349" width="0.0155%" height="15" fill="rgb(228,182,25)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1359.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1333" width="0.0155%" height="15" fill="rgb(247,3,52)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1317" width="0.0155%" height="15" fill="rgb(226,155,8)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1301" width="0.0155%" height="15" fill="rgb(243,195,38)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1285" width="0.0155%" height="15" fill="rgb(254,181,33)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1269" width="0.0155%" height="15" fill="rgb(232,98,23)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1279.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1253" width="0.0155%" height="15" fill="rgb(205,23,10)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1237" width="0.0155%" height="15" fill="rgb(212,124,38)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1247.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1221" width="0.0155%" height="15" fill="rgb(228,207,2)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1205" width="0.0155%" height="15" fill="rgb(215,120,22)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1189" width="0.0155%" height="15" fill="rgb(251,172,33)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1173" width="0.0155%" height="15" fill="rgb(250,83,2)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1157" width="0.0155%" height="15" fill="rgb(210,132,53)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1167.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (47,606,409 samples, 0.02%)</title><rect x="71.8830%" y="1141" width="0.0155%" height="15" fill="rgb(221,208,36)" fg:x="221064667541" fg:w="47606409"/><text x="72.1330%" y="1151.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="2053" width="0.0117%" height="15" fill="rgb(205,192,46)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="2063.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="2037" width="0.0117%" height="15" fill="rgb(223,163,14)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="2047.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="2021" width="0.0117%" height="15" fill="rgb(218,41,28)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="2031.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="2005" width="0.0117%" height="15" fill="rgb(235,104,10)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="2015.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1989" width="0.0117%" height="15" fill="rgb(246,17,4)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1999.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1973" width="0.0117%" height="15" fill="rgb(240,7,16)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1957" width="0.0117%" height="15" fill="rgb(213,160,23)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1967.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1941" width="0.0117%" height="15" fill="rgb(251,179,49)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1951.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1925" width="0.0117%" height="15" fill="rgb(247,198,10)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1935.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1909" width="0.0117%" height="15" fill="rgb(220,65,29)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1919.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1893" width="0.0117%" height="15" fill="rgb(237,171,28)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1877" width="0.0117%" height="15" fill="rgb(228,44,26)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1861" width="0.0117%" height="15" fill="rgb(216,210,27)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1845" width="0.0117%" height="15" fill="rgb(252,10,17)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1855.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1829" width="0.0117%" height="15" fill="rgb(214,172,30)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1839.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1813" width="0.0117%" height="15" fill="rgb(253,130,48)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1823.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1797" width="0.0117%" height="15" fill="rgb(226,99,43)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1807.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1781" width="0.0117%" height="15" fill="rgb(239,111,26)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1765" width="0.0117%" height="15" fill="rgb(240,27,53)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1749" width="0.0117%" height="15" fill="rgb(254,163,12)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1733" width="0.0117%" height="15" fill="rgb(225,51,48)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1717" width="0.0117%" height="15" fill="rgb(205,19,32)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1727.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1701" width="0.0117%" height="15" fill="rgb(218,119,26)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1685" width="0.0117%" height="15" fill="rgb(231,173,33)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1695.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1669" width="0.0117%" height="15" fill="rgb(241,100,29)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1653" width="0.0117%" height="15" fill="rgb(250,194,34)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1637" width="0.0117%" height="15" fill="rgb(215,23,50)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1621" width="0.0117%" height="15" fill="rgb(206,49,37)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1605" width="0.0117%" height="15" fill="rgb(247,39,21)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1615.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1589" width="0.0117%" height="15" fill="rgb(209,220,15)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1573" width="0.0117%" height="15" fill="rgb(206,41,33)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1583.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1557" width="0.0117%" height="15" fill="rgb(221,225,45)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1541" width="0.0117%" height="15" fill="rgb(216,27,18)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1525" width="0.0117%" height="15" fill="rgb(250,193,34)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1509" width="0.0117%" height="15" fill="rgb(227,215,20)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1493" width="0.0117%" height="15" fill="rgb(242,211,27)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1503.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1477" width="0.0117%" height="15" fill="rgb(229,190,30)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1461" width="0.0117%" height="15" fill="rgb(253,31,29)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1471.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1445" width="0.0117%" height="15" fill="rgb(229,177,52)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1429" width="0.0117%" height="15" fill="rgb(226,88,8)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1413" width="0.0117%" height="15" fill="rgb(214,55,27)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1397" width="0.0117%" height="15" fill="rgb(233,202,5)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1407.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1381" width="0.0117%" height="15" fill="rgb(251,49,30)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1391.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1365" width="0.0117%" height="15" fill="rgb(235,18,52)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1349" width="0.0117%" height="15" fill="rgb(250,111,51)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1359.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1333" width="0.0117%" height="15" fill="rgb(218,13,25)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1317" width="0.0117%" height="15" fill="rgb(248,96,7)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1301" width="0.0117%" height="15" fill="rgb(217,31,15)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1285" width="0.0117%" height="15" fill="rgb(228,59,49)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1269" width="0.0117%" height="15" fill="rgb(210,152,38)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1279.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (35,995,332 samples, 0.01%)</title><rect x="71.9040%" y="1253" width="0.0117%" height="15" fill="rgb(206,71,11)" fg:x="221129374802" fg:w="35995332"/><text x="72.1540%" y="1263.50"></text></g><g><title>[unknown] (68,030,458 samples, 0.02%)</title><rect x="71.9157%" y="2053" width="0.0221%" height="15" fill="rgb(244,199,5)" fg:x="221165370134" fg:w="68030458"/><text x="72.1657%" y="2063.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (40,194,803 samples, 0.01%)</title><rect x="71.9447%" y="181" width="0.0131%" height="15" fill="rgb(253,49,1)" fg:x="221254427400" fg:w="40194803"/><text x="72.1947%" y="191.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (40,194,803 samples, 0.01%)</title><rect x="71.9447%" y="165" width="0.0131%" height="15" fill="rgb(225,206,40)" fg:x="221254427400" fg:w="40194803"/><text x="72.1947%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (40,194,803 samples, 0.01%)</title><rect x="71.9447%" y="149" width="0.0131%" height="15" fill="rgb(243,116,47)" fg:x="221254427400" fg:w="40194803"/><text x="72.1947%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (40,194,803 samples, 0.01%)</title><rect x="71.9447%" y="133" width="0.0131%" height="15" fill="rgb(219,225,16)" fg:x="221254427400" fg:w="40194803"/><text x="72.1947%" y="143.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (40,194,803 samples, 0.01%)</title><rect x="71.9447%" y="117" width="0.0131%" height="15" fill="rgb(233,29,47)" fg:x="221254427400" fg:w="40194803"/><text x="72.1947%" y="127.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (40,194,803 samples, 0.01%)</title><rect x="71.9447%" y="101" width="0.0131%" height="15" fill="rgb(250,179,18)" fg:x="221254427400" fg:w="40194803"/><text x="72.1947%" y="111.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (40,194,803 samples, 0.01%)</title><rect x="71.9447%" y="85" width="0.0131%" height="15" fill="rgb(215,176,6)" fg:x="221254427400" fg:w="40194803"/><text x="72.1947%" y="95.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (40,194,803 samples, 0.01%)</title><rect x="71.9447%" y="69" width="0.0131%" height="15" fill="rgb(214,117,39)" fg:x="221254427400" fg:w="40194803"/><text x="72.1947%" y="79.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (40,194,803 samples, 0.01%)</title><rect x="71.9447%" y="53" width="0.0131%" height="15" fill="rgb(247,183,36)" fg:x="221254427400" fg:w="40194803"/><text x="72.1947%" y="63.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (30,775,960 samples, 0.01%)</title><rect x="71.9578%" y="117" width="0.0100%" height="15" fill="rgb(237,200,3)" fg:x="221294622203" fg:w="30775960"/><text x="72.2078%" y="127.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (31,938,248 samples, 0.01%)</title><rect x="71.9578%" y="165" width="0.0104%" height="15" fill="rgb(212,220,24)" fg:x="221294622203" fg:w="31938248"/><text x="72.2078%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,938,248 samples, 0.01%)</title><rect x="71.9578%" y="149" width="0.0104%" height="15" fill="rgb(245,216,20)" fg:x="221294622203" fg:w="31938248"/><text x="72.2078%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,938,248 samples, 0.01%)</title><rect x="71.9578%" y="133" width="0.0104%" height="15" fill="rgb(219,124,7)" fg:x="221294622203" fg:w="31938248"/><text x="72.2078%" y="143.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="949" width="0.0285%" height="15" fill="rgb(227,167,8)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="933" width="0.0285%" height="15" fill="rgb(241,37,2)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="943.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="917" width="0.0285%" height="15" fill="rgb(238,134,33)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="901" width="0.0285%" height="15" fill="rgb(248,48,27)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="885" width="0.0285%" height="15" fill="rgb(212,14,16)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="869" width="0.0285%" height="15" fill="rgb(217,205,37)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="879.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="853" width="0.0285%" height="15" fill="rgb(233,185,47)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="863.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="837" width="0.0285%" height="15" fill="rgb(244,88,8)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="821" width="0.0285%" height="15" fill="rgb(213,0,20)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="831.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="805" width="0.0285%" height="15" fill="rgb(238,159,36)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="789" width="0.0285%" height="15" fill="rgb(253,173,17)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="773" width="0.0285%" height="15" fill="rgb(221,23,28)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="757" width="0.0285%" height="15" fill="rgb(218,113,15)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="767.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="741" width="0.0285%" height="15" fill="rgb(233,58,3)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="751.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="725" width="0.0285%" height="15" fill="rgb(250,46,35)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="735.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="709" width="0.0285%" height="15" fill="rgb(210,169,11)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="719.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (87,699,831 samples, 0.03%)</title><rect x="71.9404%" y="693" width="0.0285%" height="15" fill="rgb(246,88,19)" fg:x="221241336155" fg:w="87699831"/><text x="72.1904%" y="703.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="677" width="0.0250%" height="15" fill="rgb(206,81,49)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="687.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="661" width="0.0250%" height="15" fill="rgb(232,144,18)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="671.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="645" width="0.0250%" height="15" fill="rgb(235,2,27)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="629" width="0.0250%" height="15" fill="rgb(239,157,39)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="613" width="0.0250%" height="15" fill="rgb(220,11,17)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="597" width="0.0250%" height="15" fill="rgb(243,94,50)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="581" width="0.0250%" height="15" fill="rgb(218,22,0)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="591.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="565" width="0.0250%" height="15" fill="rgb(249,70,21)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="575.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="549" width="0.0250%" height="15" fill="rgb(245,111,46)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="559.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="533" width="0.0250%" height="15" fill="rgb(244,183,12)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="517" width="0.0250%" height="15" fill="rgb(207,117,0)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="527.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="501" width="0.0250%" height="15" fill="rgb(206,20,43)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="485" width="0.0250%" height="15" fill="rgb(221,104,11)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="469" width="0.0250%" height="15" fill="rgb(254,36,50)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="453" width="0.0250%" height="15" fill="rgb(252,17,15)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="437" width="0.0250%" height="15" fill="rgb(219,129,43)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="447.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="421" width="0.0250%" height="15" fill="rgb(205,34,45)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="405" width="0.0250%" height="15" fill="rgb(251,201,32)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="415.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="389" width="0.0250%" height="15" fill="rgb(205,56,0)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="373" width="0.0250%" height="15" fill="rgb(211,193,27)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="357" width="0.0250%" height="15" fill="rgb(231,100,42)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="341" width="0.0250%" height="15" fill="rgb(245,85,27)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="351.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="325" width="0.0250%" height="15" fill="rgb(241,76,24)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="335.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,810,209 samples, 0.02%)</title><rect x="71.9440%" y="309" width="0.0250%" height="15" fill="rgb(249,157,15)" fg:x="221252225777" fg:w="76810209"/><text x="72.1940%" y="319.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (74,608,586 samples, 0.02%)</title><rect x="71.9447%" y="293" width="0.0243%" height="15" fill="rgb(222,218,25)" fg:x="221254427400" fg:w="74608586"/><text x="72.1947%" y="303.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (74,608,586 samples, 0.02%)</title><rect x="71.9447%" y="277" width="0.0243%" height="15" fill="rgb(252,156,52)" fg:x="221254427400" fg:w="74608586"/><text x="72.1947%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (74,608,586 samples, 0.02%)</title><rect x="71.9447%" y="261" width="0.0243%" height="15" fill="rgb(211,185,7)" fg:x="221254427400" fg:w="74608586"/><text x="72.1947%" y="271.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (74,608,586 samples, 0.02%)</title><rect x="71.9447%" y="245" width="0.0243%" height="15" fill="rgb(234,108,24)" fg:x="221254427400" fg:w="74608586"/><text x="72.1947%" y="255.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (74,608,586 samples, 0.02%)</title><rect x="71.9447%" y="229" width="0.0243%" height="15" fill="rgb(227,218,2)" fg:x="221254427400" fg:w="74608586"/><text x="72.1947%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (74,608,586 samples, 0.02%)</title><rect x="71.9447%" y="213" width="0.0243%" height="15" fill="rgb(224,0,36)" fg:x="221254427400" fg:w="74608586"/><text x="72.1947%" y="223.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (74,608,586 samples, 0.02%)</title><rect x="71.9447%" y="197" width="0.0243%" height="15" fill="rgb(233,201,10)" fg:x="221254427400" fg:w="74608586"/><text x="72.1947%" y="207.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (34,413,783 samples, 0.01%)</title><rect x="71.9578%" y="181" width="0.0112%" height="15" fill="rgb(252,209,14)" fg:x="221294622203" fg:w="34413783"/><text x="72.2078%" y="191.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="661" width="0.0195%" height="15" fill="rgb(205,93,49)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="671.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="645" width="0.0195%" height="15" fill="rgb(234,116,45)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="655.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="629" width="0.0195%" height="15" fill="rgb(248,89,35)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="639.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="613" width="0.0195%" height="15" fill="rgb(233,167,45)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="597" width="0.0195%" height="15" fill="rgb(248,228,14)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="581" width="0.0195%" height="15" fill="rgb(246,91,14)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="565" width="0.0195%" height="15" fill="rgb(227,142,5)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="575.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="549" width="0.0195%" height="15" fill="rgb(221,63,33)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="533" width="0.0195%" height="15" fill="rgb(233,49,0)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="543.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="517" width="0.0195%" height="15" fill="rgb(251,115,38)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="501" width="0.0195%" height="15" fill="rgb(231,214,32)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="485" width="0.0195%" height="15" fill="rgb(248,73,46)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="469" width="0.0195%" height="15" fill="rgb(237,156,4)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="479.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="453" width="0.0195%" height="15" fill="rgb(227,132,2)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="463.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="437" width="0.0195%" height="15" fill="rgb(248,161,9)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="421" width="0.0195%" height="15" fill="rgb(238,77,38)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="431.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="405" width="0.0195%" height="15" fill="rgb(222,166,40)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="389" width="0.0195%" height="15" fill="rgb(214,168,45)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="373" width="0.0195%" height="15" fill="rgb(226,64,37)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="357" width="0.0195%" height="15" fill="rgb(232,210,43)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="367.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="341" width="0.0195%" height="15" fill="rgb(214,76,33)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="351.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="325" width="0.0195%" height="15" fill="rgb(210,78,5)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="335.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="309" width="0.0195%" height="15" fill="rgb(211,107,37)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="319.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="293" width="0.0195%" height="15" fill="rgb(249,67,16)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="277" width="0.0195%" height="15" fill="rgb(222,114,31)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="287.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="261" width="0.0195%" height="15" fill="rgb(242,118,19)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="271.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="245" width="0.0195%" height="15" fill="rgb(223,115,1)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="229" width="0.0195%" height="15" fill="rgb(241,182,54)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="239.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="213" width="0.0195%" height="15" fill="rgb(244,166,36)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="223.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="197" width="0.0195%" height="15" fill="rgb(241,52,43)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="207.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="181" width="0.0195%" height="15" fill="rgb(236,82,9)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="191.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="165" width="0.0195%" height="15" fill="rgb(241,119,0)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="175.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="149" width="0.0195%" height="15" fill="rgb(221,19,22)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="159.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::request_layout (60,031,498 samples, 0.02%)</title><rect x="71.9690%" y="133" width="0.0195%" height="15" fill="rgb(254,144,35)" fg:x="221329035986" fg:w="60031498"/><text x="72.2190%" y="143.50"></text></g><g><title>gpui::view::any_view::render (56,803,416 samples, 0.02%)</title><rect x="71.9700%" y="117" width="0.0185%" height="15" fill="rgb(246,132,30)" fg:x="221332264068" fg:w="56803416"/><text x="72.2200%" y="127.50"></text></g><g><title>gpui::app::App::update (56,803,416 samples, 0.02%)</title><rect x="71.9700%" y="101" width="0.0185%" height="15" fill="rgb(234,69,28)" fg:x="221332264068" fg:w="56803416"/><text x="72.2200%" y="111.50"></text></g><g><title>&lt;git_ui::project_diff::ProjectDiffToolbar as gpui::element::Render&gt;::render (38,526,959 samples, 0.01%)</title><rect x="71.9760%" y="85" width="0.0125%" height="15" fill="rgb(219,106,47)" fg:x="221350540525" fg:w="38526959"/><text x="72.2260%" y="95.50"></text></g><g><title>&lt;ttf_parser::ggg::layout_table::LayoutTable as rustybuzz::hb::ot_layout::LayoutTableExt&gt;::find_language_feature (34,082,593 samples, 0.01%)</title><rect x="72.0068%" y="37" width="0.0111%" height="15" fill="rgb(218,79,24)" fg:x="221445398147" fg:w="34082593"/><text x="72.2568%" y="47.50"></text></g><g><title>editor::element::LineWithInvisibles::from_chunks (54,453,931 samples, 0.02%)</title><rect x="72.0006%" y="213" width="0.0177%" height="15" fill="rgb(225,26,21)" fg:x="221426259459" fg:w="54453931"/><text x="72.2506%" y="223.50"></text></g><g><title>gpui::text_system::WindowTextSystem::shape_line (46,514,149 samples, 0.02%)</title><rect x="72.0032%" y="197" width="0.0151%" height="15" fill="rgb(217,68,49)" fg:x="221434199241" fg:w="46514149"/><text x="72.2532%" y="207.50"></text></g><g><title>gpui::text_system::WindowTextSystem::layout_line (46,514,149 samples, 0.02%)</title><rect x="72.0032%" y="181" width="0.0151%" height="15" fill="rgb(220,204,28)" fg:x="221434199241" fg:w="46514149"/><text x="72.2532%" y="191.50"></text></g><g><title>gpui::text_system::line_layout::LineLayoutCache::layout_line (46,514,149 samples, 0.02%)</title><rect x="72.0032%" y="165" width="0.0151%" height="15" fill="rgb(237,208,43)" fg:x="221434199241" fg:w="46514149"/><text x="72.2532%" y="175.50"></text></g><g><title>&lt;gpui::platform::linux::text_system::CosmicTextSystem as gpui::platform::PlatformTextSystem&gt;::layout_line (46,514,149 samples, 0.02%)</title><rect x="72.0032%" y="149" width="0.0151%" height="15" fill="rgb(213,97,42)" fg:x="221434199241" fg:w="46514149"/><text x="72.2532%" y="159.50"></text></g><g><title>cosmic_text::shape::ShapeLine::build (46,514,149 samples, 0.02%)</title><rect x="72.0032%" y="133" width="0.0151%" height="15" fill="rgb(238,96,52)" fg:x="221434199241" fg:w="46514149"/><text x="72.2532%" y="143.50"></text></g><g><title>cosmic_text::shape::ShapeSpan::build (46,514,149 samples, 0.02%)</title><rect x="72.0032%" y="117" width="0.0151%" height="15" fill="rgb(228,14,13)" fg:x="221434199241" fg:w="46514149"/><text x="72.2532%" y="127.50"></text></g><g><title>cosmic_text::shape::ShapeWord::build (46,514,149 samples, 0.02%)</title><rect x="72.0032%" y="101" width="0.0151%" height="15" fill="rgb(219,123,13)" fg:x="221434199241" fg:w="46514149"/><text x="72.2532%" y="111.50"></text></g><g><title>cosmic_text::shape::Shaping::run (46,514,149 samples, 0.02%)</title><rect x="72.0032%" y="85" width="0.0151%" height="15" fill="rgb(216,144,17)" fg:x="221434199241" fg:w="46514149"/><text x="72.2532%" y="95.50"></text></g><g><title>cosmic_text::shape::shape_fallback (46,514,149 samples, 0.02%)</title><rect x="72.0032%" y="69" width="0.0151%" height="15" fill="rgb(230,228,29)" fg:x="221434199241" fg:w="46514149"/><text x="72.2532%" y="79.50"></text></g><g><title>rustybuzz::hb::ot_shape_plan::hb_ot_shape_plan_t::new (35,315,243 samples, 0.01%)</title><rect x="72.0068%" y="53" width="0.0115%" height="15" fill="rgb(233,18,5)" fg:x="221445398147" fg:w="35315243"/><text x="72.2568%" y="63.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (277,224,973 samples, 0.09%)</title><rect x="71.9397%" y="1877" width="0.0901%" height="15" fill="rgb(233,197,12)" fg:x="221238973836" fg:w="277224973"/><text x="72.1897%" y="1887.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (277,224,973 samples, 0.09%)</title><rect x="71.9397%" y="1861" width="0.0901%" height="15" fill="rgb(234,140,29)" fg:x="221238973836" fg:w="277224973"/><text x="72.1897%" y="1871.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (277,224,973 samples, 0.09%)</title><rect x="71.9397%" y="1845" width="0.0901%" height="15" fill="rgb(233,113,19)" fg:x="221238973836" fg:w="277224973"/><text x="72.1897%" y="1855.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (277,224,973 samples, 0.09%)</title><rect x="71.9397%" y="1829" width="0.0901%" height="15" fill="rgb(246,209,13)" fg:x="221238973836" fg:w="277224973"/><text x="72.1897%" y="1839.50"></text></g><g><title>gpui::window::Window::draw (277,224,973 samples, 0.09%)</title><rect x="71.9397%" y="1813" width="0.0901%" height="15" fill="rgb(242,79,54)" fg:x="221238973836" fg:w="277224973"/><text x="72.1897%" y="1823.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1797" width="0.0894%" height="15" fill="rgb(219,73,16)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1807.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1781" width="0.0894%" height="15" fill="rgb(224,52,10)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1791.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1765" width="0.0894%" height="15" fill="rgb(237,179,5)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1775.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1749" width="0.0894%" height="15" fill="rgb(231,20,6)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1733" width="0.0894%" height="15" fill="rgb(253,171,45)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1743.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1717" width="0.0894%" height="15" fill="rgb(230,75,49)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1701" width="0.0894%" height="15" fill="rgb(216,83,46)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1685" width="0.0894%" height="15" fill="rgb(236,56,9)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1669" width="0.0894%" height="15" fill="rgb(215,28,34)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1653" width="0.0894%" height="15" fill="rgb(230,222,20)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1663.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1637" width="0.0894%" height="15" fill="rgb(235,209,51)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1621" width="0.0894%" height="15" fill="rgb(235,167,1)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1631.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1605" width="0.0894%" height="15" fill="rgb(248,220,0)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1589" width="0.0894%" height="15" fill="rgb(239,0,18)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1573" width="0.0894%" height="15" fill="rgb(229,179,11)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1557" width="0.0894%" height="15" fill="rgb(226,116,53)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1541" width="0.0894%" height="15" fill="rgb(218,1,49)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1551.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1525" width="0.0894%" height="15" fill="rgb(208,184,47)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1509" width="0.0894%" height="15" fill="rgb(238,174,3)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1519.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1493" width="0.0894%" height="15" fill="rgb(247,188,6)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1477" width="0.0894%" height="15" fill="rgb(211,165,46)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1461" width="0.0894%" height="15" fill="rgb(222,190,10)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1445" width="0.0894%" height="15" fill="rgb(206,185,3)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1429" width="0.0894%" height="15" fill="rgb(244,125,37)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1439.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1413" width="0.0894%" height="15" fill="rgb(211,43,7)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1397" width="0.0894%" height="15" fill="rgb(250,41,42)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1407.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1381" width="0.0894%" height="15" fill="rgb(254,54,42)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1365" width="0.0894%" height="15" fill="rgb(213,71,43)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1349" width="0.0894%" height="15" fill="rgb(249,3,44)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1333" width="0.0894%" height="15" fill="rgb(229,80,41)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1317" width="0.0894%" height="15" fill="rgb(231,25,28)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1327.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1301" width="0.0894%" height="15" fill="rgb(208,79,48)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1285" width="0.0894%" height="15" fill="rgb(207,196,38)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1295.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1269" width="0.0894%" height="15" fill="rgb(228,105,49)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1253" width="0.0894%" height="15" fill="rgb(237,99,15)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1237" width="0.0894%" height="15" fill="rgb(224,207,46)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1221" width="0.0894%" height="15" fill="rgb(249,117,50)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1205" width="0.0894%" height="15" fill="rgb(248,17,13)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1215.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1189" width="0.0894%" height="15" fill="rgb(228,187,36)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1173" width="0.0894%" height="15" fill="rgb(234,132,20)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1183.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1157" width="0.0894%" height="15" fill="rgb(209,170,46)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1141" width="0.0894%" height="15" fill="rgb(237,23,19)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1125" width="0.0894%" height="15" fill="rgb(227,21,26)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1109" width="0.0894%" height="15" fill="rgb(222,220,48)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1093" width="0.0894%" height="15" fill="rgb(214,9,16)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1103.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1077" width="0.0894%" height="15" fill="rgb(209,73,30)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1061" width="0.0894%" height="15" fill="rgb(207,20,33)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1071.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1045" width="0.0894%" height="15" fill="rgb(219,153,12)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1029" width="0.0894%" height="15" fill="rgb(235,97,25)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="1013" width="0.0894%" height="15" fill="rgb(244,30,34)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="997" width="0.0894%" height="15" fill="rgb(214,106,45)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="981" width="0.0894%" height="15" fill="rgb(226,41,9)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="991.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (274,862,654 samples, 0.09%)</title><rect x="71.9404%" y="965" width="0.0894%" height="15" fill="rgb(253,139,29)" fg:x="221241336155" fg:w="274862654"/><text x="72.1904%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="949" width="0.0609%" height="15" fill="rgb(213,205,39)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="959.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="933" width="0.0609%" height="15" fill="rgb(209,27,10)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="917" width="0.0609%" height="15" fill="rgb(249,142,16)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="901" width="0.0609%" height="15" fill="rgb(242,65,12)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="885" width="0.0609%" height="15" fill="rgb(232,48,10)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="895.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="869" width="0.0609%" height="15" fill="rgb(253,67,19)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="853" width="0.0609%" height="15" fill="rgb(227,93,29)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="863.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="837" width="0.0609%" height="15" fill="rgb(226,189,53)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="847.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="821" width="0.0609%" height="15" fill="rgb(223,224,1)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="805" width="0.0609%" height="15" fill="rgb(221,84,32)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="815.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="789" width="0.0609%" height="15" fill="rgb(214,189,28)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="773" width="0.0609%" height="15" fill="rgb(234,7,52)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="757" width="0.0609%" height="15" fill="rgb(249,73,31)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="741" width="0.0609%" height="15" fill="rgb(253,153,41)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="751.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="725" width="0.0609%" height="15" fill="rgb(249,52,34)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="735.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="709" width="0.0609%" height="15" fill="rgb(236,177,47)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="719.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="693" width="0.0609%" height="15" fill="rgb(252,185,45)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="703.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (187,162,823 samples, 0.06%)</title><rect x="71.9690%" y="677" width="0.0609%" height="15" fill="rgb(251,15,30)" fg:x="221329035986" fg:w="187162823"/><text x="72.2190%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="661" width="0.0413%" height="15" fill="rgb(233,31,4)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="645" width="0.0413%" height="15" fill="rgb(254,44,24)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="655.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="629" width="0.0413%" height="15" fill="rgb(218,54,1)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="613" width="0.0413%" height="15" fill="rgb(243,209,39)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="597" width="0.0413%" height="15" fill="rgb(206,75,33)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="581" width="0.0413%" height="15" fill="rgb(223,108,18)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="565" width="0.0413%" height="15" fill="rgb(244,89,31)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="575.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="549" width="0.0413%" height="15" fill="rgb(222,167,27)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="533" width="0.0413%" height="15" fill="rgb(247,41,16)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="543.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="517" width="0.0413%" height="15" fill="rgb(233,168,40)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="501" width="0.0413%" height="15" fill="rgb(205,211,8)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="485" width="0.0413%" height="15" fill="rgb(238,105,11)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="469" width="0.0413%" height="15" fill="rgb(223,142,52)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="453" width="0.0413%" height="15" fill="rgb(238,51,33)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="463.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="437" width="0.0413%" height="15" fill="rgb(231,188,43)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="447.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="421" width="0.0413%" height="15" fill="rgb(216,92,17)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="431.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="405" width="0.0413%" height="15" fill="rgb(228,2,40)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="389" width="0.0413%" height="15" fill="rgb(226,73,15)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="399.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="373" width="0.0413%" height="15" fill="rgb(227,66,46)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="357" width="0.0413%" height="15" fill="rgb(209,71,6)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="341" width="0.0413%" height="15" fill="rgb(246,100,25)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="325" width="0.0413%" height="15" fill="rgb(248,185,27)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="335.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="309" width="0.0413%" height="15" fill="rgb(225,118,47)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="319.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="293" width="0.0413%" height="15" fill="rgb(220,185,44)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="303.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="277" width="0.0413%" height="15" fill="rgb(227,95,24)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="287.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="261" width="0.0413%" height="15" fill="rgb(252,84,24)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="271.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="245" width="0.0413%" height="15" fill="rgb(240,34,44)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="255.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (127,131,325 samples, 0.04%)</title><rect x="71.9885%" y="229" width="0.0413%" height="15" fill="rgb(209,72,54)" fg:x="221389067484" fg:w="127131325"/><text x="72.2385%" y="239.50"></text></g><g><title>__libc_start_call_main (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="2053" width="0.0905%" height="15" fill="rgb(226,19,45)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="2063.50"></text></g><g><title>main (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="2037" width="0.0905%" height="15" fill="rgb(246,7,45)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="2047.50"></text></g><g><title>std::rt::lang_start_internal (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="2021" width="0.0905%" height="15" fill="rgb(225,45,2)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="2031.50"></text></g><g><title>std::rt::lang_start::{{closure}} (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="2005" width="0.0905%" height="15" fill="rgb(221,80,29)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="2015.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="1989" width="0.0905%" height="15" fill="rgb(228,11,19)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="1999.50"></text></g><g><title>zed::main (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="1973" width="0.0905%" height="15" fill="rgb(243,17,21)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="1983.50"></text></g><g><title>gpui::app::Application::run (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="1957" width="0.0905%" height="15" fill="rgb(243,88,8)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="1967.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="1941" width="0.0905%" height="15" fill="rgb(214,17,9)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="1951.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="1925" width="0.0905%" height="15" fill="rgb(232,169,15)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="1935.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="1909" width="0.0905%" height="15" fill="rgb(232,86,53)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="1919.50"></text></g><g><title>wayland_client::event_queue::queue_callback (278,360,767 samples, 0.09%)</title><rect x="71.9397%" y="1893" width="0.0905%" height="15" fill="rgb(222,100,4)" fg:x="221238973836" fg:w="278360767"/><text x="72.1897%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (33,751,394 samples, 0.01%)</title><rect x="72.0331%" y="149" width="0.0110%" height="15" fill="rgb(253,151,38)" fg:x="221526416972" fg:w="33751394"/><text x="72.2831%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (33,751,394 samples, 0.01%)</title><rect x="72.0331%" y="133" width="0.0110%" height="15" fill="rgb(238,215,29)" fg:x="221526416972" fg:w="33751394"/><text x="72.2831%" y="143.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (33,751,394 samples, 0.01%)</title><rect x="72.0331%" y="117" width="0.0110%" height="15" fill="rgb(205,128,53)" fg:x="221526416972" fg:w="33751394"/><text x="72.2831%" y="127.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="933" width="0.0138%" height="15" fill="rgb(248,183,14)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="917" width="0.0138%" height="15" fill="rgb(244,172,35)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="927.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="901" width="0.0138%" height="15" fill="rgb(234,93,19)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="885" width="0.0138%" height="15" fill="rgb(227,109,7)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="869" width="0.0138%" height="15" fill="rgb(233,136,54)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="853" width="0.0138%" height="15" fill="rgb(233,19,40)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="863.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="837" width="0.0138%" height="15" fill="rgb(247,41,18)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="847.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="821" width="0.0138%" height="15" fill="rgb(220,34,34)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="805" width="0.0138%" height="15" fill="rgb(222,135,32)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="815.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="789" width="0.0138%" height="15" fill="rgb(214,80,19)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="773" width="0.0138%" height="15" fill="rgb(234,54,46)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="757" width="0.0138%" height="15" fill="rgb(251,48,23)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="741" width="0.0138%" height="15" fill="rgb(254,109,52)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="751.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="725" width="0.0138%" height="15" fill="rgb(240,186,19)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="735.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="709" width="0.0138%" height="15" fill="rgb(246,187,17)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="719.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="693" width="0.0138%" height="15" fill="rgb(212,21,5)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="703.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (42,389,503 samples, 0.01%)</title><rect x="72.0314%" y="677" width="0.0138%" height="15" fill="rgb(225,185,18)" fg:x="221520927423" fg:w="42389503"/><text x="72.2814%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="661" width="0.0124%" height="15" fill="rgb(245,114,17)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="645" width="0.0124%" height="15" fill="rgb(223,164,24)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="655.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="629" width="0.0124%" height="15" fill="rgb(211,228,3)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="613" width="0.0124%" height="15" fill="rgb(223,16,38)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="597" width="0.0124%" height="15" fill="rgb(207,31,54)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="581" width="0.0124%" height="15" fill="rgb(220,39,11)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="565" width="0.0124%" height="15" fill="rgb(235,185,0)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="575.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="549" width="0.0124%" height="15" fill="rgb(249,39,18)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="559.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="533" width="0.0124%" height="15" fill="rgb(240,110,33)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="543.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="517" width="0.0124%" height="15" fill="rgb(210,92,42)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="501" width="0.0124%" height="15" fill="rgb(218,215,28)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="511.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="485" width="0.0124%" height="15" fill="rgb(238,215,36)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="469" width="0.0124%" height="15" fill="rgb(220,31,10)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="453" width="0.0124%" height="15" fill="rgb(212,93,14)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="437" width="0.0124%" height="15" fill="rgb(254,207,2)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="421" width="0.0124%" height="15" fill="rgb(205,57,44)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="431.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="405" width="0.0124%" height="15" fill="rgb(226,151,19)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="389" width="0.0124%" height="15" fill="rgb(230,72,30)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="399.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="373" width="0.0124%" height="15" fill="rgb(244,0,8)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="357" width="0.0124%" height="15" fill="rgb(230,192,6)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="341" width="0.0124%" height="15" fill="rgb(233,207,13)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="325" width="0.0124%" height="15" fill="rgb(206,227,7)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="335.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="309" width="0.0124%" height="15" fill="rgb(213,217,25)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="319.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="293" width="0.0124%" height="15" fill="rgb(249,75,4)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="277" width="0.0124%" height="15" fill="rgb(225,114,18)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="287.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="261" width="0.0124%" height="15" fill="rgb(211,162,40)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="271.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="245" width="0.0124%" height="15" fill="rgb(206,49,29)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="255.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="229" width="0.0124%" height="15" fill="rgb(244,8,6)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="239.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="213" width="0.0124%" height="15" fill="rgb(231,194,28)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="223.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="197" width="0.0124%" height="15" fill="rgb(210,69,5)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="207.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (38,170,495 samples, 0.01%)</title><rect x="72.0327%" y="181" width="0.0124%" height="15" fill="rgb(216,186,12)" fg:x="221525146431" fg:w="38170495"/><text x="72.2827%" y="191.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (36,899,954 samples, 0.01%)</title><rect x="72.0331%" y="165" width="0.0120%" height="15" fill="rgb(238,61,15)" fg:x="221526416972" fg:w="36899954"/><text x="72.2831%" y="175.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="629" width="0.0161%" height="15" fill="rgb(226,104,1)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="613" width="0.0161%" height="15" fill="rgb(229,128,15)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="623.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="597" width="0.0161%" height="15" fill="rgb(247,110,15)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="581" width="0.0161%" height="15" fill="rgb(210,74,48)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="565" width="0.0161%" height="15" fill="rgb(246,121,10)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="549" width="0.0161%" height="15" fill="rgb(214,156,37)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="559.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="533" width="0.0161%" height="15" fill="rgb(214,210,34)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="517" width="0.0161%" height="15" fill="rgb(237,93,35)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="527.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="501" width="0.0161%" height="15" fill="rgb(206,36,8)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="485" width="0.0161%" height="15" fill="rgb(208,151,12)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="469" width="0.0161%" height="15" fill="rgb(225,133,52)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="453" width="0.0161%" height="15" fill="rgb(231,71,53)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="463.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="437" width="0.0161%" height="15" fill="rgb(243,76,21)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="447.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="421" width="0.0161%" height="15" fill="rgb(252,144,3)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="405" width="0.0161%" height="15" fill="rgb(231,199,10)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="415.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="389" width="0.0161%" height="15" fill="rgb(215,18,11)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="373" width="0.0161%" height="15" fill="rgb(241,65,24)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="357" width="0.0161%" height="15" fill="rgb(251,192,38)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="341" width="0.0161%" height="15" fill="rgb(205,9,35)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="351.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="325" width="0.0161%" height="15" fill="rgb(229,225,49)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="335.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="309" width="0.0161%" height="15" fill="rgb(207,125,39)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="319.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="293" width="0.0161%" height="15" fill="rgb(222,78,19)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="277" width="0.0161%" height="15" fill="rgb(248,207,20)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="261" width="0.0161%" height="15" fill="rgb(205,103,49)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="245" width="0.0161%" height="15" fill="rgb(216,42,28)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="255.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="229" width="0.0161%" height="15" fill="rgb(213,205,53)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="213" width="0.0161%" height="15" fill="rgb(239,140,53)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="223.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="197" width="0.0161%" height="15" fill="rgb(248,95,9)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="207.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="181" width="0.0161%" height="15" fill="rgb(254,58,47)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="165" width="0.0161%" height="15" fill="rgb(234,227,14)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="175.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="149" width="0.0161%" height="15" fill="rgb(205,192,45)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="159.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="133" width="0.0161%" height="15" fill="rgb(253,187,31)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="143.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::request_layout (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="117" width="0.0161%" height="15" fill="rgb(222,6,32)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="127.50"></text></g><g><title>gpui::view::any_view::render (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="101" width="0.0161%" height="15" fill="rgb(249,190,19)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="111.50"></text></g><g><title>gpui::app::App::update (49,535,045 samples, 0.02%)</title><rect x="72.0451%" y="85" width="0.0161%" height="15" fill="rgb(251,28,20)" fg:x="221563316926" fg:w="49535045"/><text x="72.2951%" y="95.50"></text></g><g><title>&lt;git_ui::project_diff::ProjectDiffToolbar as gpui::element::Render&gt;::render (36,833,113 samples, 0.01%)</title><rect x="72.0493%" y="69" width="0.0120%" height="15" fill="rgb(210,223,40)" fg:x="221576018858" fg:w="36833113"/><text x="72.2993%" y="79.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (50,835,476 samples, 0.02%)</title><rect x="72.0451%" y="645" width="0.0165%" height="15" fill="rgb(216,137,22)" fg:x="221563316926" fg:w="50835476"/><text x="72.2951%" y="655.50"></text></g><g><title>editor::element::LineWithInvisibles::from_chunks (37,758,966 samples, 0.01%)</title><rect x="72.0757%" y="197" width="0.0123%" height="15" fill="rgb(247,39,34)" fg:x="221657377803" fg:w="37758966"/><text x="72.3257%" y="207.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (205,210,313 samples, 0.07%)</title><rect x="72.0302%" y="1861" width="0.0667%" height="15" fill="rgb(239,43,50)" fg:x="221517334603" fg:w="205210313"/><text x="72.2802%" y="1871.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (205,210,313 samples, 0.07%)</title><rect x="72.0302%" y="1845" width="0.0667%" height="15" fill="rgb(241,212,9)" fg:x="221517334603" fg:w="205210313"/><text x="72.2802%" y="1855.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (205,210,313 samples, 0.07%)</title><rect x="72.0302%" y="1829" width="0.0667%" height="15" fill="rgb(205,8,2)" fg:x="221517334603" fg:w="205210313"/><text x="72.2802%" y="1839.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (205,210,313 samples, 0.07%)</title><rect x="72.0302%" y="1813" width="0.0667%" height="15" fill="rgb(217,173,54)" fg:x="221517334603" fg:w="205210313"/><text x="72.2802%" y="1823.50"></text></g><g><title>gpui::window::Window::draw (205,210,313 samples, 0.07%)</title><rect x="72.0302%" y="1797" width="0.0667%" height="15" fill="rgb(208,149,52)" fg:x="221517334603" fg:w="205210313"/><text x="72.2802%" y="1807.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1781" width="0.0656%" height="15" fill="rgb(239,99,40)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1791.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1765" width="0.0656%" height="15" fill="rgb(233,214,26)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1775.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1749" width="0.0656%" height="15" fill="rgb(231,225,37)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1759.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1733" width="0.0656%" height="15" fill="rgb(252,55,35)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1717" width="0.0656%" height="15" fill="rgb(239,43,18)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1727.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1701" width="0.0656%" height="15" fill="rgb(251,125,49)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1685" width="0.0656%" height="15" fill="rgb(212,83,54)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1669" width="0.0656%" height="15" fill="rgb(250,75,6)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1653" width="0.0656%" height="15" fill="rgb(252,36,40)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1637" width="0.0656%" height="15" fill="rgb(230,91,51)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1647.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1621" width="0.0656%" height="15" fill="rgb(212,92,28)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1605" width="0.0656%" height="15" fill="rgb(227,13,22)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1615.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1589" width="0.0656%" height="15" fill="rgb(239,204,32)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1573" width="0.0656%" height="15" fill="rgb(228,49,41)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1557" width="0.0656%" height="15" fill="rgb(206,95,6)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1541" width="0.0656%" height="15" fill="rgb(251,20,14)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1525" width="0.0656%" height="15" fill="rgb(214,99,28)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1535.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1509" width="0.0656%" height="15" fill="rgb(239,122,54)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1493" width="0.0656%" height="15" fill="rgb(218,217,46)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1503.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1477" width="0.0656%" height="15" fill="rgb(249,106,28)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1461" width="0.0656%" height="15" fill="rgb(250,158,18)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1445" width="0.0656%" height="15" fill="rgb(226,137,29)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1429" width="0.0656%" height="15" fill="rgb(210,188,1)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1413" width="0.0656%" height="15" fill="rgb(227,84,42)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1423.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1397" width="0.0656%" height="15" fill="rgb(222,147,48)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1407.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1381" width="0.0656%" height="15" fill="rgb(241,150,43)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1391.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1365" width="0.0656%" height="15" fill="rgb(206,139,52)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1349" width="0.0656%" height="15" fill="rgb(230,63,14)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1333" width="0.0656%" height="15" fill="rgb(247,8,20)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1317" width="0.0656%" height="15" fill="rgb(213,115,4)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1301" width="0.0656%" height="15" fill="rgb(241,79,49)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1311.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1285" width="0.0656%" height="15" fill="rgb(222,42,35)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1269" width="0.0656%" height="15" fill="rgb(247,59,23)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1279.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1253" width="0.0656%" height="15" fill="rgb(247,93,18)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1237" width="0.0656%" height="15" fill="rgb(249,107,47)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1221" width="0.0656%" height="15" fill="rgb(219,27,1)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1205" width="0.0656%" height="15" fill="rgb(217,82,32)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1189" width="0.0656%" height="15" fill="rgb(250,129,47)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1199.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1173" width="0.0656%" height="15" fill="rgb(253,88,35)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1157" width="0.0656%" height="15" fill="rgb(245,221,14)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1167.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1141" width="0.0656%" height="15" fill="rgb(217,119,54)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1125" width="0.0656%" height="15" fill="rgb(247,128,31)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1109" width="0.0656%" height="15" fill="rgb(211,99,22)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1093" width="0.0656%" height="15" fill="rgb(212,20,17)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1103.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1077" width="0.0656%" height="15" fill="rgb(209,159,29)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1087.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1061" width="0.0656%" height="15" fill="rgb(222,177,53)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1071.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1045" width="0.0656%" height="15" fill="rgb(234,46,43)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1055.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1029" width="0.0656%" height="15" fill="rgb(208,108,14)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="1013" width="0.0656%" height="15" fill="rgb(226,78,53)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="997" width="0.0656%" height="15" fill="rgb(230,20,41)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="981" width="0.0656%" height="15" fill="rgb(213,195,35)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="965" width="0.0656%" height="15" fill="rgb(242,62,36)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="975.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (201,617,493 samples, 0.07%)</title><rect x="72.0314%" y="949" width="0.0656%" height="15" fill="rgb(222,210,37)" fg:x="221520927423" fg:w="201617493"/><text x="72.2814%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="933" width="0.0518%" height="15" fill="rgb(232,107,19)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="943.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="917" width="0.0518%" height="15" fill="rgb(235,85,17)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="901" width="0.0518%" height="15" fill="rgb(219,195,31)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="885" width="0.0518%" height="15" fill="rgb(231,183,30)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="869" width="0.0518%" height="15" fill="rgb(212,0,11)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="879.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="853" width="0.0518%" height="15" fill="rgb(249,53,54)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="863.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="837" width="0.0518%" height="15" fill="rgb(211,118,13)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="847.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="821" width="0.0518%" height="15" fill="rgb(237,42,9)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="831.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="805" width="0.0518%" height="15" fill="rgb(227,68,32)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="815.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="789" width="0.0518%" height="15" fill="rgb(238,10,7)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="799.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="773" width="0.0518%" height="15" fill="rgb(224,42,12)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="757" width="0.0518%" height="15" fill="rgb(252,190,5)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="741" width="0.0518%" height="15" fill="rgb(220,214,39)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="725" width="0.0518%" height="15" fill="rgb(247,98,4)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="735.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="709" width="0.0518%" height="15" fill="rgb(211,60,12)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="719.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="693" width="0.0518%" height="15" fill="rgb(224,42,10)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="703.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="677" width="0.0518%" height="15" fill="rgb(217,167,4)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="687.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (159,227,990 samples, 0.05%)</title><rect x="72.0451%" y="661" width="0.0518%" height="15" fill="rgb(253,18,17)" fg:x="221563316926" fg:w="159227990"/><text x="72.2951%" y="671.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="645" width="0.0352%" height="15" fill="rgb(249,186,44)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="655.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="629" width="0.0352%" height="15" fill="rgb(254,124,54)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="639.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="613" width="0.0352%" height="15" fill="rgb(220,124,39)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="597" width="0.0352%" height="15" fill="rgb(225,96,46)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="581" width="0.0352%" height="15" fill="rgb(221,106,12)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="565" width="0.0352%" height="15" fill="rgb(227,133,23)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="549" width="0.0352%" height="15" fill="rgb(216,44,52)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="559.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="533" width="0.0352%" height="15" fill="rgb(239,149,7)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="517" width="0.0352%" height="15" fill="rgb(211,157,31)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="527.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="501" width="0.0352%" height="15" fill="rgb(206,215,22)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="485" width="0.0352%" height="15" fill="rgb(208,113,15)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="469" width="0.0352%" height="15" fill="rgb(207,189,15)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="453" width="0.0352%" height="15" fill="rgb(231,115,4)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="437" width="0.0352%" height="15" fill="rgb(253,117,2)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="447.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="421" width="0.0352%" height="15" fill="rgb(248,48,24)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="431.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="405" width="0.0352%" height="15" fill="rgb(241,28,46)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="415.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="389" width="0.0352%" height="15" fill="rgb(216,165,52)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="373" width="0.0352%" height="15" fill="rgb(220,222,34)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="383.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="357" width="0.0352%" height="15" fill="rgb(247,222,49)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="341" width="0.0352%" height="15" fill="rgb(240,10,31)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="325" width="0.0352%" height="15" fill="rgb(221,199,35)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="309" width="0.0352%" height="15" fill="rgb(230,223,11)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="319.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="293" width="0.0352%" height="15" fill="rgb(218,82,45)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="303.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="277" width="0.0352%" height="15" fill="rgb(233,213,33)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="287.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="261" width="0.0352%" height="15" fill="rgb(210,143,52)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="271.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="245" width="0.0352%" height="15" fill="rgb(206,95,4)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="255.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="229" width="0.0352%" height="15" fill="rgb(246,164,46)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="239.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (108,392,514 samples, 0.04%)</title><rect x="72.0617%" y="213" width="0.0352%" height="15" fill="rgb(213,210,47)" fg:x="221614152402" fg:w="108392514"/><text x="72.3117%" y="223.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="2053" width="0.0671%" height="15" fill="rgb(210,12,38)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="2063.50"></text></g><g><title>__libc_start_call_main (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="2037" width="0.0671%" height="15" fill="rgb(252,192,54)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="2047.50"></text></g><g><title>main (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="2021" width="0.0671%" height="15" fill="rgb(242,92,6)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="2031.50"></text></g><g><title>std::rt::lang_start_internal (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="2005" width="0.0671%" height="15" fill="rgb(253,154,15)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="2015.50"></text></g><g><title>std::rt::lang_start::{{closure}} (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="1989" width="0.0671%" height="15" fill="rgb(209,20,43)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="1999.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="1973" width="0.0671%" height="15" fill="rgb(232,28,49)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="1983.50"></text></g><g><title>zed::main (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="1957" width="0.0671%" height="15" fill="rgb(248,131,53)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="1967.50"></text></g><g><title>gpui::app::Application::run (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="1941" width="0.0671%" height="15" fill="rgb(214,16,30)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="1951.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="1925" width="0.0671%" height="15" fill="rgb(245,16,0)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="1935.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="1909" width="0.0671%" height="15" fill="rgb(245,17,35)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="1919.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="1893" width="0.0671%" height="15" fill="rgb(249,27,53)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="1903.50"></text></g><g><title>wayland_client::event_queue::queue_callback (206,265,093 samples, 0.07%)</title><rect x="72.0302%" y="1877" width="0.0671%" height="15" fill="rgb(214,73,24)" fg:x="221517334603" fg:w="206265093"/><text x="72.2802%" y="1887.50"></text></g><g><title>[unknown] (34,506,110 samples, 0.01%)</title><rect x="72.1034%" y="1957" width="0.0112%" height="15" fill="rgb(223,84,37)" fg:x="221742500668" fg:w="34506110"/><text x="72.3534%" y="1967.50"></text></g><g><title>[unknown] (34,506,110 samples, 0.01%)</title><rect x="72.1034%" y="1941" width="0.0112%" height="15" fill="rgb(210,109,28)" fg:x="221742500668" fg:w="34506110"/><text x="72.3534%" y="1951.50"></text></g><g><title>[unknown] (34,506,110 samples, 0.01%)</title><rect x="72.1034%" y="1925" width="0.0112%" height="15" fill="rgb(208,186,6)" fg:x="221742500668" fg:w="34506110"/><text x="72.3534%" y="1935.50"></text></g><g><title>[unknown] (34,506,110 samples, 0.01%)</title><rect x="72.1034%" y="1909" width="0.0112%" height="15" fill="rgb(235,201,30)" fg:x="221742500668" fg:w="34506110"/><text x="72.3534%" y="1919.50"></text></g><g><title>[unknown] (34,506,110 samples, 0.01%)</title><rect x="72.1034%" y="1893" width="0.0112%" height="15" fill="rgb(216,198,48)" fg:x="221742500668" fg:w="34506110"/><text x="72.3534%" y="1903.50"></text></g><g><title>[unknown] (34,506,110 samples, 0.01%)</title><rect x="72.1034%" y="1877" width="0.0112%" height="15" fill="rgb(254,186,25)" fg:x="221742500668" fg:w="34506110"/><text x="72.3534%" y="1887.50"></text></g><g><title>[unknown] (34,506,110 samples, 0.01%)</title><rect x="72.1034%" y="1861" width="0.0112%" height="15" fill="rgb(227,87,5)" fg:x="221742500668" fg:w="34506110"/><text x="72.3534%" y="1871.50"></text></g><g><title>[unknown] (34,506,110 samples, 0.01%)</title><rect x="72.1034%" y="1845" width="0.0112%" height="15" fill="rgb(236,205,25)" fg:x="221742500668" fg:w="34506110"/><text x="72.3534%" y="1855.50"></text></g><g><title>_dl_relocate_object (56,263,955 samples, 0.02%)</title><rect x="72.1001%" y="1989" width="0.0183%" height="15" fill="rgb(229,99,32)" fg:x="221732387604" fg:w="56263955"/><text x="72.3501%" y="1999.50"></text></g><g><title>_dl_relocate_object_no_relro (56,263,955 samples, 0.02%)</title><rect x="72.1001%" y="1973" width="0.0183%" height="15" fill="rgb(231,177,31)" fg:x="221732387604" fg:w="56263955"/><text x="72.3501%" y="1983.50"></text></g><g><title>_dl_start_user (67,605,807 samples, 0.02%)</title><rect x="72.0973%" y="2053" width="0.0220%" height="15" fill="rgb(246,15,2)" fg:x="221723599696" fg:w="67605807"/><text x="72.3473%" y="2063.50"></text></g><g><title>_dl_start (65,943,271 samples, 0.02%)</title><rect x="72.0978%" y="2037" width="0.0214%" height="15" fill="rgb(207,39,15)" fg:x="221725262232" fg:w="65943271"/><text x="72.3478%" y="2047.50"></text></g><g><title>_dl_sysdep_start (65,943,271 samples, 0.02%)</title><rect x="72.0978%" y="2021" width="0.0214%" height="15" fill="rgb(207,44,9)" fg:x="221725262232" fg:w="65943271"/><text x="72.3478%" y="2031.50"></text></g><g><title>dl_main (65,943,271 samples, 0.02%)</title><rect x="72.0978%" y="2005" width="0.0214%" height="15" fill="rgb(225,224,33)" fg:x="221725262232" fg:w="65943271"/><text x="72.3478%" y="2015.50"></text></g><g><title>[libvulkan.so.1.4.304] (69,316,915 samples, 0.02%)</title><rect x="72.1357%" y="1813" width="0.0225%" height="15" fill="rgb(252,151,3)" fg:x="221841877681" fg:w="69316915"/><text x="72.3857%" y="1823.50"></text></g><g><title>dlopen@GLIBC_2.2.5 (59,096,241 samples, 0.02%)</title><rect x="72.1390%" y="1797" width="0.0192%" height="15" fill="rgb(211,140,13)" fg:x="221852098355" fg:w="59096241"/><text x="72.3890%" y="1807.50"></text></g><g><title>_dlerror_run (59,096,241 samples, 0.02%)</title><rect x="72.1390%" y="1781" width="0.0192%" height="15" fill="rgb(239,225,17)" fg:x="221852098355" fg:w="59096241"/><text x="72.3890%" y="1791.50"></text></g><g><title>_dl_catch_error (59,096,241 samples, 0.02%)</title><rect x="72.1390%" y="1765" width="0.0192%" height="15" fill="rgb(223,170,52)" fg:x="221852098355" fg:w="59096241"/><text x="72.3890%" y="1775.50"></text></g><g><title>_dl_catch_exception (59,096,241 samples, 0.02%)</title><rect x="72.1390%" y="1749" width="0.0192%" height="15" fill="rgb(212,64,21)" fg:x="221852098355" fg:w="59096241"/><text x="72.3890%" y="1759.50"></text></g><g><title>dlopen_doit (59,096,241 samples, 0.02%)</title><rect x="72.1390%" y="1733" width="0.0192%" height="15" fill="rgb(236,126,48)" fg:x="221852098355" fg:w="59096241"/><text x="72.3890%" y="1743.50"></text></g><g><title>_dl_open (59,096,241 samples, 0.02%)</title><rect x="72.1390%" y="1717" width="0.0192%" height="15" fill="rgb(209,135,11)" fg:x="221852098355" fg:w="59096241"/><text x="72.3890%" y="1727.50"></text></g><g><title>_dl_catch_exception (59,096,241 samples, 0.02%)</title><rect x="72.1390%" y="1701" width="0.0192%" height="15" fill="rgb(228,126,40)" fg:x="221852098355" fg:w="59096241"/><text x="72.3890%" y="1711.50"></text></g><g><title>dl_open_worker (59,096,241 samples, 0.02%)</title><rect x="72.1390%" y="1685" width="0.0192%" height="15" fill="rgb(205,196,36)" fg:x="221852098355" fg:w="59096241"/><text x="72.3890%" y="1695.50"></text></g><g><title>_dl_catch_exception (59,096,241 samples, 0.02%)</title><rect x="72.1390%" y="1669" width="0.0192%" height="15" fill="rgb(243,160,33)" fg:x="221852098355" fg:w="59096241"/><text x="72.3890%" y="1679.50"></text></g><g><title>dl_open_worker_begin (46,716,300 samples, 0.02%)</title><rect x="72.1431%" y="1653" width="0.0152%" height="15" fill="rgb(210,84,20)" fg:x="221864478296" fg:w="46716300"/><text x="72.3931%" y="1663.50"></text></g><g><title>vkEnumerateInstanceExtensionProperties (71,289,730 samples, 0.02%)</title><rect x="72.1357%" y="1845" width="0.0232%" height="15" fill="rgb(228,213,30)" fg:x="221841877681" fg:w="71289730"/><text x="72.3857%" y="1855.50"></text></g><g><title>[libvulkan.so.1.4.304] (71,289,730 samples, 0.02%)</title><rect x="72.1357%" y="1829" width="0.0232%" height="15" fill="rgb(252,33,45)" fg:x="221841877681" fg:w="71289730"/><text x="72.3857%" y="1839.50"></text></g><g><title>gpui::platform::blade::blade_context::BladeContext::new (114,019,461 samples, 0.04%)</title><rect x="72.1225%" y="1877" width="0.0371%" height="15" fill="rgb(254,227,20)" fg:x="221801305844" fg:w="114019461"/><text x="72.3725%" y="1887.50"></text></g><g><title>blade_graphics::hal::init::&lt;impl blade_graphics::hal::Context&gt;::init (114,019,461 samples, 0.04%)</title><rect x="72.1225%" y="1861" width="0.0371%" height="15" fill="rgb(228,192,2)" fg:x="221801305844" fg:w="114019461"/><text x="72.3725%" y="1871.50"></text></g><g><title>[unknown] (307,673,182 samples, 0.10%)</title><rect x="72.1729%" y="1765" width="0.1000%" height="15" fill="rgb(233,32,8)" fg:x="221956158701" fg:w="307673182"/><text x="72.4229%" y="1775.50"></text></g><g><title>[unknown] (305,189,950 samples, 0.10%)</title><rect x="72.1737%" y="1749" width="0.0992%" height="15" fill="rgb(220,146,47)" fg:x="221958641933" fg:w="305189950"/><text x="72.4237%" y="1759.50"></text></g><g><title>[unknown] (305,189,950 samples, 0.10%)</title><rect x="72.1737%" y="1733" width="0.0992%" height="15" fill="rgb(246,194,1)" fg:x="221958641933" fg:w="305189950"/><text x="72.4237%" y="1743.50"></text></g><g><title>[unknown] (304,815,824 samples, 0.10%)</title><rect x="72.1738%" y="1717" width="0.0991%" height="15" fill="rgb(218,203,9)" fg:x="221959016059" fg:w="304815824"/><text x="72.4238%" y="1727.50"></text></g><g><title>[unknown] (304,489,661 samples, 0.10%)</title><rect x="72.1739%" y="1701" width="0.0990%" height="15" fill="rgb(237,97,14)" fg:x="221959342222" fg:w="304489661"/><text x="72.4239%" y="1711.50"></text></g><g><title>[unknown] (304,064,464 samples, 0.10%)</title><rect x="72.1741%" y="1685" width="0.0989%" height="15" fill="rgb(239,76,15)" fg:x="221959767419" fg:w="304064464"/><text x="72.4241%" y="1695.50"></text></g><g><title>[unknown] (303,142,687 samples, 0.10%)</title><rect x="72.1744%" y="1669" width="0.0986%" height="15" fill="rgb(222,53,45)" fg:x="221960689196" fg:w="303142687"/><text x="72.4244%" y="1679.50"></text></g><g><title>[unknown] (303,142,687 samples, 0.10%)</title><rect x="72.1744%" y="1653" width="0.0986%" height="15" fill="rgb(237,88,5)" fg:x="221960689196" fg:w="303142687"/><text x="72.4244%" y="1663.50"></text></g><g><title>[unknown] (302,437,749 samples, 0.10%)</title><rect x="72.1746%" y="1637" width="0.0983%" height="15" fill="rgb(218,223,35)" fg:x="221961394134" fg:w="302437749"/><text x="72.4246%" y="1647.50"></text></g><g><title>[unknown] (297,383,562 samples, 0.10%)</title><rect x="72.1762%" y="1621" width="0.0967%" height="15" fill="rgb(243,229,38)" fg:x="221966448321" fg:w="297383562"/><text x="72.4262%" y="1631.50"></text></g><g><title>[unknown] (291,767,123 samples, 0.09%)</title><rect x="72.1781%" y="1605" width="0.0949%" height="15" fill="rgb(240,75,41)" fg:x="221972064760" fg:w="291767123"/><text x="72.4281%" y="1615.50"></text></g><g><title>[unknown] (285,960,906 samples, 0.09%)</title><rect x="72.1799%" y="1589" width="0.0930%" height="15" fill="rgb(209,110,37)" fg:x="221977870977" fg:w="285960906"/><text x="72.4299%" y="1599.50"></text></g><g><title>[unknown] (285,597,205 samples, 0.09%)</title><rect x="72.1801%" y="1573" width="0.0929%" height="15" fill="rgb(221,130,46)" fg:x="221978234678" fg:w="285597205"/><text x="72.4301%" y="1583.50"></text></g><g><title>[unknown] (284,293,361 samples, 0.09%)</title><rect x="72.1805%" y="1557" width="0.0924%" height="15" fill="rgb(237,160,20)" fg:x="221979538522" fg:w="284293361"/><text x="72.4305%" y="1567.50"></text></g><g><title>[unknown] (278,411,332 samples, 0.09%)</title><rect x="72.1824%" y="1541" width="0.0905%" height="15" fill="rgb(234,126,24)" fg:x="221985420551" fg:w="278411332"/><text x="72.4324%" y="1551.50"></text></g><g><title>[unknown] (253,125,670 samples, 0.08%)</title><rect x="72.1906%" y="1525" width="0.0823%" height="15" fill="rgb(207,177,9)" fg:x="222010706213" fg:w="253125670"/><text x="72.4406%" y="1535.50"></text></g><g><title>[unknown] (146,099,791 samples, 0.05%)</title><rect x="72.2254%" y="1509" width="0.0475%" height="15" fill="rgb(231,191,33)" fg:x="222117732092" fg:w="146099791"/><text x="72.4754%" y="1519.50"></text></g><g><title>[unknown] (129,768,360 samples, 0.04%)</title><rect x="72.2307%" y="1493" width="0.0422%" height="15" fill="rgb(207,42,1)" fg:x="222134063523" fg:w="129768360"/><text x="72.4807%" y="1503.50"></text></g><g><title>[unknown] (122,204,668 samples, 0.04%)</title><rect x="72.2332%" y="1477" width="0.0397%" height="15" fill="rgb(218,34,50)" fg:x="222141627215" fg:w="122204668"/><text x="72.4832%" y="1487.50"></text></g><g><title>[unknown] (108,075,685 samples, 0.04%)</title><rect x="72.2378%" y="1461" width="0.0351%" height="15" fill="rgb(254,126,39)" fg:x="222155756198" fg:w="108075685"/><text x="72.4878%" y="1471.50"></text></g><g><title>[unknown] (93,427,357 samples, 0.03%)</title><rect x="72.2425%" y="1445" width="0.0304%" height="15" fill="rgb(251,17,26)" fg:x="222170404526" fg:w="93427357"/><text x="72.4925%" y="1455.50"></text></g><g><title>[unknown] (86,847,043 samples, 0.03%)</title><rect x="72.2447%" y="1429" width="0.0282%" height="15" fill="rgb(252,215,34)" fg:x="222176984840" fg:w="86847043"/><text x="72.4947%" y="1439.50"></text></g><g><title>[unknown] (79,089,736 samples, 0.03%)</title><rect x="72.2472%" y="1413" width="0.0257%" height="15" fill="rgb(217,120,44)" fg:x="222184742147" fg:w="79089736"/><text x="72.4972%" y="1423.50"></text></g><g><title>fontdb::Database::load_font_file_impl (351,424,107 samples, 0.11%)</title><rect x="72.1729%" y="1781" width="0.1143%" height="15" fill="rgb(211,31,11)" fg:x="221956158701" fg:w="351424107"/><text x="72.4229%" y="1791.50"></text></g><g><title>fontdb::Database::load_fonts_dir_impl (402,624,535 samples, 0.13%)</title><rect x="72.1642%" y="1797" width="0.1309%" height="15" fill="rgb(222,69,51)" fg:x="221929349984" fg:w="402624535"/><text x="72.4142%" y="1807.50"></text></g><g><title>cosmic_text::font::system::FontSystem::new (417,094,585 samples, 0.14%)</title><rect x="72.1596%" y="1861" width="0.1356%" height="15" fill="rgb(215,229,42)" fg:x="221915327235" fg:w="417094585"/><text x="72.4096%" y="1871.50"></text></g><g><title>fontdb::Database::load_fontconfig (417,094,585 samples, 0.14%)</title><rect x="72.1596%" y="1845" width="0.1356%" height="15" fill="rgb(212,102,15)" fg:x="221915327235" fg:w="417094585"/><text x="72.4096%" y="1855.50"></text></g><g><title>fontdb::Database::load_fonts_dir_impl (411,097,250 samples, 0.13%)</title><rect x="72.1616%" y="1829" width="0.1337%" height="15" fill="rgb(205,179,41)" fg:x="221921324570" fg:w="411097250"/><text x="72.4116%" y="1839.50"></text></g><g><title>fontdb::Database::load_fonts_dir_impl (403,636,376 samples, 0.13%)</title><rect x="72.1640%" y="1813" width="0.1312%" height="15" fill="rgb(219,148,46)" fg:x="221928785444" fg:w="403636376"/><text x="72.4140%" y="1823.50"></text></g><g><title>gpui::app::Application::new (536,730,824 samples, 0.17%)</title><rect x="72.1220%" y="1925" width="0.1745%" height="15" fill="rgb(243,40,19)" fg:x="221799761679" fg:w="536730824"/><text x="72.3720%" y="1935.50"></text></g><g><title>gpui::platform::current_platform (536,730,824 samples, 0.17%)</title><rect x="72.1220%" y="1909" width="0.1745%" height="15" fill="rgb(208,206,34)" fg:x="221799761679" fg:w="536730824"/><text x="72.3720%" y="1919.50"></text></g><g><title>gpui::platform::linux::wayland::client::WaylandClient::new (536,730,824 samples, 0.17%)</title><rect x="72.1220%" y="1893" width="0.1745%" height="15" fill="rgb(244,184,38)" fg:x="221799761679" fg:w="536730824"/><text x="72.3720%" y="1903.50"></text></g><g><title>gpui::platform::linux::platform::LinuxCommon::new (421,167,198 samples, 0.14%)</title><rect x="72.1596%" y="1877" width="0.1369%" height="15" fill="rgb(244,151,47)" fg:x="221915325305" fg:w="421167198"/><text x="72.4096%" y="1887.50"></text></g><g><title>wayland_backend::sys::client_impl::InnerReadEventsGuard::read (49,677,689 samples, 0.02%)</title><rect x="72.3057%" y="1861" width="0.0162%" height="15" fill="rgb(236,134,42)" fg:x="222364644988" fg:w="49677689"/><text x="72.5557%" y="1871.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::before_handle_events (57,424,162 samples, 0.02%)</title><rect x="72.3040%" y="1877" width="0.0187%" height="15" fill="rgb(233,93,22)" fg:x="222359486653" fg:w="57424162"/><text x="72.5540%" y="1887.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::window::WaylandWindow as gpui::platform::PlatformWindow&gt;::draw (35,838,286 samples, 0.01%)</title><rect x="72.3612%" y="1797" width="0.0117%" height="15" fill="rgb(211,202,10)" fg:x="222535266140" fg:w="35838286"/><text x="72.6112%" y="1807.50"></text></g><g><title>gpui::platform::blade::blade_renderer::BladeRenderer::draw (33,630,034 samples, 0.01%)</title><rect x="72.3619%" y="1781" width="0.0109%" height="15" fill="rgb(240,63,8)" fg:x="222537474392" fg:w="33630034"/><text x="72.6119%" y="1791.50"></text></g><g><title>__memmove_avx512_unaligned_erms (32,106,717 samples, 0.01%)</title><rect x="72.3802%" y="1765" width="0.0104%" height="15" fill="rgb(214,9,4)" fg:x="222593827102" fg:w="32106717"/><text x="72.6302%" y="1775.50"></text></g><g><title>[libvulkan_radeon.so] (30,989,344 samples, 0.01%)</title><rect x="72.4058%" y="1685" width="0.0101%" height="15" fill="rgb(243,66,45)" fg:x="222672361485" fg:w="30989344"/><text x="72.6558%" y="1695.50"></text></g><g><title>[libvulkan_radeon.so] (34,154,917 samples, 0.01%)</title><rect x="72.4051%" y="1701" width="0.0111%" height="15" fill="rgb(220,50,42)" fg:x="222670205597" fg:w="34154917"/><text x="72.6551%" y="1711.50"></text></g><g><title>&lt;blade_graphics::hal::Context as blade_graphics::traits::CommandDevice&gt;::submit (44,158,250 samples, 0.01%)</title><rect x="72.4045%" y="1749" width="0.0144%" height="15" fill="rgb(220,134,27)" fg:x="222668427040" fg:w="44158250"/><text x="72.6545%" y="1759.50"></text></g><g><title>[libvulkan_radeon.so] (44,158,250 samples, 0.01%)</title><rect x="72.4045%" y="1733" width="0.0144%" height="15" fill="rgb(246,151,50)" fg:x="222668427040" fg:w="44158250"/><text x="72.6545%" y="1743.50"></text></g><g><title>[libvulkan_radeon.so] (43,395,312 samples, 0.01%)</title><rect x="72.4047%" y="1717" width="0.0141%" height="15" fill="rgb(238,216,27)" fg:x="222669189978" fg:w="43395312"/><text x="72.6547%" y="1727.50"></text></g><g><title>[libvulkan_radeon.so] (98,929,304 samples, 0.03%)</title><rect x="72.5226%" y="1717" width="0.0322%" height="15" fill="rgb(250,92,11)" fg:x="223031799792" fg:w="98929304"/><text x="72.7726%" y="1727.50"></text></g><g><title>[libvulkan_radeon.so] (240,081,139 samples, 0.08%)</title><rect x="72.4776%" y="1733" width="0.0781%" height="15" fill="rgb(248,183,6)" fg:x="222893154130" fg:w="240081139"/><text x="72.7276%" y="1743.50"></text></g><g><title>[libvulkan_radeon.so] (403,285,882 samples, 0.13%)</title><rect x="72.4249%" y="1749" width="0.1311%" height="15" fill="rgb(211,204,50)" fg:x="222731311489" fg:w="403285882"/><text x="72.6749%" y="1759.50"></text></g><g><title>[libvulkan_radeon.so] (40,891,297 samples, 0.01%)</title><rect x="72.5741%" y="1669" width="0.0133%" height="15" fill="rgb(252,55,47)" fg:x="223190079521" fg:w="40891297"/><text x="72.8241%" y="1679.50"></text></g><g><title>[libvulkan_radeon.so] (56,447,855 samples, 0.02%)</title><rect x="72.5694%" y="1685" width="0.0184%" height="15" fill="rgb(240,198,32)" fg:x="223175698341" fg:w="56447855"/><text x="72.8194%" y="1695.50"></text></g><g><title>[libvulkan_radeon.so] (83,484,563 samples, 0.03%)</title><rect x="72.5609%" y="1733" width="0.0271%" height="15" fill="rgb(224,203,19)" fg:x="223149360258" fg:w="83484563"/><text x="72.8109%" y="1743.50"></text></g><g><title>[libvulkan_radeon.so] (75,285,441 samples, 0.02%)</title><rect x="72.5635%" y="1717" width="0.0245%" height="15" fill="rgb(205,27,16)" fg:x="223157559380" fg:w="75285441"/><text x="72.8135%" y="1727.50"></text></g><g><title>[libvulkan_radeon.so] (63,510,530 samples, 0.02%)</title><rect x="72.5674%" y="1701" width="0.0207%" height="15" fill="rgb(224,226,17)" fg:x="223169334291" fg:w="63510530"/><text x="72.8174%" y="1711.50"></text></g><g><title>blade_graphics::hal::command::&lt;impl blade_graphics::hal::CommandEncoder&gt;::render (87,140,671 samples, 0.03%)</title><rect x="72.5601%" y="1749" width="0.0283%" height="15" fill="rgb(205,216,54)" fg:x="223146888845" fg:w="87140671"/><text x="72.8101%" y="1759.50"></text></g><g><title>[libvulkan_radeon.so] (45,610,619 samples, 0.01%)</title><rect x="72.5977%" y="1733" width="0.0148%" height="15" fill="rgb(248,168,46)" fg:x="223262738698" fg:w="45610619"/><text x="72.8477%" y="1743.50"></text></g><g><title>[libvulkan_radeon.so] (45,610,619 samples, 0.01%)</title><rect x="72.5977%" y="1717" width="0.0148%" height="15" fill="rgb(226,111,45)" fg:x="223262738698" fg:w="45610619"/><text x="72.8477%" y="1727.50"></text></g><g><title>[libvulkan_radeon.so] (45,610,619 samples, 0.01%)</title><rect x="72.5977%" y="1701" width="0.0148%" height="15" fill="rgb(231,15,9)" fg:x="223262738698" fg:w="45610619"/><text x="72.8477%" y="1711.50"></text></g><g><title>[libvulkan_radeon.so] (44,448,493 samples, 0.01%)</title><rect x="72.5981%" y="1685" width="0.0145%" height="15" fill="rgb(243,168,3)" fg:x="223263900824" fg:w="44448493"/><text x="72.8481%" y="1695.50"></text></g><g><title>blade_graphics::hal::command::&lt;impl blade_graphics::traits::TransferEncoder for blade_graphics::hal::TransferCommandEncoder&gt;::copy_buffer_to_texture (46,798,299 samples, 0.02%)</title><rect x="72.5977%" y="1749" width="0.0152%" height="15" fill="rgb(221,220,54)" fg:x="223262738698" fg:w="46798299"/><text x="72.8477%" y="1759.50"></text></g><g><title>blade_graphics::hal::descriptor::&lt;impl blade_graphics::hal::Device&gt;::allocate_descriptor_set (55,086,290 samples, 0.02%)</title><rect x="72.6130%" y="1749" width="0.0179%" height="15" fill="rgb(232,174,38)" fg:x="223309536997" fg:w="55086290"/><text x="72.8630%" y="1759.50"></text></g><g><title>[libvulkan_radeon.so] (36,346,343 samples, 0.01%)</title><rect x="72.6334%" y="1685" width="0.0118%" height="15" fill="rgb(205,14,38)" fg:x="223372278636" fg:w="36346343"/><text x="72.8834%" y="1695.50"></text></g><g><title>blade_graphics::hal::surface::&lt;impl blade_graphics::hal::Surface&gt;::acquire_frame (58,705,275 samples, 0.02%)</title><rect x="72.6309%" y="1749" width="0.0191%" height="15" fill="rgb(234,89,19)" fg:x="223364623287" fg:w="58705275"/><text x="72.8809%" y="1759.50"></text></g><g><title>[libvulkan_radeon.so] (58,705,275 samples, 0.02%)</title><rect x="72.6309%" y="1733" width="0.0191%" height="15" fill="rgb(216,68,51)" fg:x="223364623287" fg:w="58705275"/><text x="72.8809%" y="1743.50"></text></g><g><title>[libvulkan_radeon.so] (58,705,275 samples, 0.02%)</title><rect x="72.6309%" y="1717" width="0.0191%" height="15" fill="rgb(213,49,2)" fg:x="223364623287" fg:w="58705275"/><text x="72.8809%" y="1727.50"></text></g><g><title>[libvulkan_radeon.so] (57,487,378 samples, 0.02%)</title><rect x="72.6313%" y="1701" width="0.0187%" height="15" fill="rgb(242,146,30)" fg:x="223365841184" fg:w="57487378"/><text x="72.8813%" y="1711.50"></text></g><g><title>[libvulkan_radeon.so] (86,836,066 samples, 0.03%)</title><rect x="72.6513%" y="1685" width="0.0282%" height="15" fill="rgb(224,188,11)" fg:x="223427602530" fg:w="86836066"/><text x="72.9013%" y="1695.50"></text></g><g><title>drmSyncobjTimelineWait (85,717,910 samples, 0.03%)</title><rect x="72.6517%" y="1669" width="0.0279%" height="15" fill="rgb(213,159,11)" fg:x="223428720686" fg:w="85717910"/><text x="72.9017%" y="1679.50"></text></g><g><title>drmIoctl (84,515,209 samples, 0.03%)</title><rect x="72.6521%" y="1653" width="0.0275%" height="15" fill="rgb(229,13,31)" fg:x="223429923387" fg:w="84515209"/><text x="72.9021%" y="1663.50"></text></g><g><title>__GI___ioctl (84,515,209 samples, 0.03%)</title><rect x="72.6521%" y="1637" width="0.0275%" height="15" fill="rgb(209,103,11)" fg:x="223429923387" fg:w="84515209"/><text x="72.9021%" y="1647.50"></text></g><g><title>[unknown] (84,515,209 samples, 0.03%)</title><rect x="72.6521%" y="1621" width="0.0275%" height="15" fill="rgb(206,3,4)" fg:x="223429923387" fg:w="84515209"/><text x="72.9021%" y="1631.50"></text></g><g><title>blade_util::belt::BufferBelt::alloc (93,244,472 samples, 0.03%)</title><rect x="72.6500%" y="1749" width="0.0303%" height="15" fill="rgb(252,10,49)" fg:x="223423328562" fg:w="93244472"/><text x="72.9000%" y="1759.50"></text></g><g><title>&lt;blade_graphics::hal::Context as blade_graphics::traits::CommandDevice&gt;::wait_for (92,057,990 samples, 0.03%)</title><rect x="72.6503%" y="1733" width="0.0299%" height="15" fill="rgb(217,160,32)" fg:x="223424515044" fg:w="92057990"/><text x="72.9003%" y="1743.50"></text></g><g><title>[libvulkan_radeon.so] (92,057,990 samples, 0.03%)</title><rect x="72.6503%" y="1717" width="0.0299%" height="15" fill="rgb(249,196,0)" fg:x="223424515044" fg:w="92057990"/><text x="72.9003%" y="1727.50"></text></g><g><title>[libvulkan_radeon.so] (88,970,504 samples, 0.03%)</title><rect x="72.6513%" y="1701" width="0.0289%" height="15" fill="rgb(213,17,48)" fg:x="223427602530" fg:w="88970504"/><text x="72.9013%" y="1711.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::window::WaylandWindow as gpui::platform::PlatformWindow&gt;::draw (951,489,765 samples, 0.31%)</title><rect x="72.3732%" y="1781" width="0.3094%" height="15" fill="rgb(206,42,46)" fg:x="222572339098" fg:w="951489765"/><text x="72.6232%" y="1791.50"></text></g><g><title>gpui::platform::blade::blade_renderer::BladeRenderer::draw (887,144,744 samples, 0.29%)</title><rect x="72.3942%" y="1765" width="0.2885%" height="15" fill="rgb(212,105,24)" fg:x="222636684119" fg:w="887144744"/><text x="72.6442%" y="1775.50"></text></g><g><title>__memmove_avx512_unaligned_erms (32,932,756 samples, 0.01%)</title><rect x="72.6826%" y="1781" width="0.0107%" height="15" fill="rgb(243,216,30)" fg:x="223523828863" fg:w="32932756"/><text x="72.9326%" y="1791.50"></text></g><g><title>core::ptr::drop_in_place&lt;gpui::elements::div::Interactivity&gt; (50,810,565 samples, 0.02%)</title><rect x="72.7188%" y="1733" width="0.0165%" height="15" fill="rgb(207,121,3)" fg:x="223635073961" fg:w="50810565"/><text x="72.9688%" y="1743.50"></text></g><g><title>core::ptr::drop_in_place&lt;gpui::elements::div::Div&gt; (79,198,748 samples, 0.03%)</title><rect x="72.7142%" y="1749" width="0.0258%" height="15" fill="rgb(249,78,0)" fg:x="223620819171" fg:w="79198748"/><text x="72.9642%" y="1759.50"></text></g><g><title>gpui::arena::Arena::clear (129,229,735 samples, 0.04%)</title><rect x="72.7000%" y="1781" width="0.0420%" height="15" fill="rgb(244,151,32)" fg:x="223577311650" fg:w="129229735"/><text x="72.9500%" y="1791.50"></text></g><g><title>gpui::arena::Arena::alloc::drop (98,765,167 samples, 0.03%)</title><rect x="72.7099%" y="1765" width="0.0321%" height="15" fill="rgb(228,63,25)" fg:x="223607776218" fg:w="98765167"/><text x="72.9599%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (33,789,077 samples, 0.01%)</title><rect x="72.8739%" y="629" width="0.0110%" height="15" fill="rgb(231,158,23)" fg:x="224112142662" fg:w="33789077"/><text x="73.1239%" y="639.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,789,077 samples, 0.01%)</title><rect x="72.8739%" y="613" width="0.0110%" height="15" fill="rgb(248,107,23)" fg:x="224112142662" fg:w="33789077"/><text x="73.1239%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (33,789,077 samples, 0.01%)</title><rect x="72.8739%" y="597" width="0.0110%" height="15" fill="rgb(215,168,21)" fg:x="224112142662" fg:w="33789077"/><text x="73.1239%" y="607.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,690,622 samples, 0.02%)</title><rect x="72.8705%" y="645" width="0.0152%" height="15" fill="rgb(227,83,22)" fg:x="224101562152" fg:w="46690622"/><text x="73.1205%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (30,977,717 samples, 0.01%)</title><rect x="72.8864%" y="597" width="0.0101%" height="15" fill="rgb(217,118,43)" fg:x="224150550703" fg:w="30977717"/><text x="73.1364%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (30,977,717 samples, 0.01%)</title><rect x="72.8864%" y="581" width="0.0101%" height="15" fill="rgb(229,220,41)" fg:x="224150550703" fg:w="30977717"/><text x="73.1364%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (33,138,677 samples, 0.01%)</title><rect x="72.8861%" y="645" width="0.0108%" height="15" fill="rgb(254,146,46)" fg:x="224149423286" fg:w="33138677"/><text x="73.1361%" y="655.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,138,677 samples, 0.01%)</title><rect x="72.8861%" y="629" width="0.0108%" height="15" fill="rgb(233,208,31)" fg:x="224149423286" fg:w="33138677"/><text x="73.1361%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (33,138,677 samples, 0.01%)</title><rect x="72.8861%" y="613" width="0.0108%" height="15" fill="rgb(222,162,7)" fg:x="224149423286" fg:w="33138677"/><text x="73.1361%" y="623.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (87,447,584 samples, 0.03%)</title><rect x="72.8695%" y="661" width="0.0284%" height="15" fill="rgb(230,117,45)" fg:x="224098423601" fg:w="87447584"/><text x="73.1195%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,197,158 samples, 0.01%)</title><rect x="72.9085%" y="485" width="0.0147%" height="15" fill="rgb(239,163,6)" fg:x="224218429736" fg:w="45197158"/><text x="73.1585%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (53,101,004 samples, 0.02%)</title><rect x="72.9063%" y="517" width="0.0173%" height="15" fill="rgb(246,130,17)" fg:x="224211695309" fg:w="53101004"/><text x="73.1563%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (53,101,004 samples, 0.02%)</title><rect x="72.9063%" y="501" width="0.0173%" height="15" fill="rgb(216,84,5)" fg:x="224211695309" fg:w="53101004"/><text x="73.1563%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (68,233,999 samples, 0.02%)</title><rect x="72.9046%" y="549" width="0.0222%" height="15" fill="rgb(230,200,21)" fg:x="224206512822" fg:w="68233999"/><text x="73.1546%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (64,201,485 samples, 0.02%)</title><rect x="72.9059%" y="533" width="0.0209%" height="15" fill="rgb(224,2,8)" fg:x="224210545336" fg:w="64201485"/><text x="73.1559%" y="543.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (74,479,049 samples, 0.02%)</title><rect x="72.9043%" y="613" width="0.0242%" height="15" fill="rgb(238,178,10)" fg:x="224205503606" fg:w="74479049"/><text x="73.1543%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (73,469,833 samples, 0.02%)</title><rect x="72.9046%" y="597" width="0.0239%" height="15" fill="rgb(242,153,24)" fg:x="224206512822" fg:w="73469833"/><text x="73.1546%" y="607.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (73,469,833 samples, 0.02%)</title><rect x="72.9046%" y="581" width="0.0239%" height="15" fill="rgb(242,32,48)" fg:x="224206512822" fg:w="73469833"/><text x="73.1546%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (73,469,833 samples, 0.02%)</title><rect x="72.9046%" y="565" width="0.0239%" height="15" fill="rgb(227,36,0)" fg:x="224206512822" fg:w="73469833"/><text x="73.1546%" y="575.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (75,671,949 samples, 0.02%)</title><rect x="72.9043%" y="629" width="0.0246%" height="15" fill="rgb(251,33,35)" fg:x="224205503606" fg:w="75671949"/><text x="73.1543%" y="639.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (77,886,084 samples, 0.03%)</title><rect x="72.9043%" y="645" width="0.0253%" height="15" fill="rgb(232,168,51)" fg:x="224205503606" fg:w="77886084"/><text x="73.1543%" y="655.50"></text></g><g><title>gpui::window::Window::with_optional_element_state::_{{closure}} (80,150,235 samples, 0.03%)</title><rect x="72.9043%" y="661" width="0.0261%" height="15" fill="rgb(228,56,10)" fg:x="224205503606" fg:w="80150235"/><text x="73.1543%" y="671.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (195,369,814 samples, 0.06%)</title><rect x="72.8691%" y="677" width="0.0635%" height="15" fill="rgb(231,10,26)" fg:x="224097241879" fg:w="195369814"/><text x="73.1191%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (202,885,715 samples, 0.07%)</title><rect x="72.8680%" y="757" width="0.0660%" height="15" fill="rgb(226,202,12)" fg:x="224093766605" fg:w="202885715"/><text x="73.1180%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (201,714,553 samples, 0.07%)</title><rect x="72.8683%" y="741" width="0.0656%" height="15" fill="rgb(251,49,21)" fg:x="224094937767" fg:w="201714553"/><text x="73.1183%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (200,657,492 samples, 0.07%)</title><rect x="72.8687%" y="725" width="0.0652%" height="15" fill="rgb(206,228,28)" fg:x="224095994828" fg:w="200657492"/><text x="73.1187%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (200,657,492 samples, 0.07%)</title><rect x="72.8687%" y="709" width="0.0652%" height="15" fill="rgb(205,198,31)" fg:x="224095994828" fg:w="200657492"/><text x="73.1187%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (199,410,441 samples, 0.06%)</title><rect x="72.8691%" y="693" width="0.0648%" height="15" fill="rgb(213,69,1)" fg:x="224097241879" fg:w="199410441"/><text x="73.1191%" y="703.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (205,031,910 samples, 0.07%)</title><rect x="72.8676%" y="821" width="0.0667%" height="15" fill="rgb(209,177,9)" fg:x="224092583260" fg:w="205031910"/><text x="73.1176%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (205,031,910 samples, 0.07%)</title><rect x="72.8676%" y="805" width="0.0667%" height="15" fill="rgb(227,119,30)" fg:x="224092583260" fg:w="205031910"/><text x="73.1176%" y="815.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (205,031,910 samples, 0.07%)</title><rect x="72.8676%" y="789" width="0.0667%" height="15" fill="rgb(234,106,41)" fg:x="224092583260" fg:w="205031910"/><text x="73.1176%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (203,848,565 samples, 0.07%)</title><rect x="72.8680%" y="773" width="0.0663%" height="15" fill="rgb(244,103,47)" fg:x="224093766605" fg:w="203848565"/><text x="73.1180%" y="783.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (206,249,344 samples, 0.07%)</title><rect x="72.8676%" y="837" width="0.0671%" height="15" fill="rgb(212,211,25)" fg:x="224092583260" fg:w="206249344"/><text x="73.1176%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (213,783,367 samples, 0.07%)</title><rect x="72.8669%" y="981" width="0.0695%" height="15" fill="rgb(208,63,53)" fg:x="224090512987" fg:w="213783367"/><text x="73.1169%" y="991.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (213,783,367 samples, 0.07%)</title><rect x="72.8669%" y="965" width="0.0695%" height="15" fill="rgb(213,176,21)" fg:x="224090512987" fg:w="213783367"/><text x="73.1169%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (213,783,367 samples, 0.07%)</title><rect x="72.8669%" y="949" width="0.0695%" height="15" fill="rgb(243,124,12)" fg:x="224090512987" fg:w="213783367"/><text x="73.1169%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (213,783,367 samples, 0.07%)</title><rect x="72.8669%" y="933" width="0.0695%" height="15" fill="rgb(239,2,35)" fg:x="224090512987" fg:w="213783367"/><text x="73.1169%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (213,783,367 samples, 0.07%)</title><rect x="72.8669%" y="917" width="0.0695%" height="15" fill="rgb(253,169,22)" fg:x="224090512987" fg:w="213783367"/><text x="73.1169%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (213,783,367 samples, 0.07%)</title><rect x="72.8669%" y="901" width="0.0695%" height="15" fill="rgb(254,51,12)" fg:x="224090512987" fg:w="213783367"/><text x="73.1169%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (213,783,367 samples, 0.07%)</title><rect x="72.8669%" y="885" width="0.0695%" height="15" fill="rgb(244,17,47)" fg:x="224090512987" fg:w="213783367"/><text x="73.1169%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (213,783,367 samples, 0.07%)</title><rect x="72.8669%" y="869" width="0.0695%" height="15" fill="rgb(251,45,46)" fg:x="224090512987" fg:w="213783367"/><text x="73.1169%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (213,783,367 samples, 0.07%)</title><rect x="72.8669%" y="853" width="0.0695%" height="15" fill="rgb(223,87,43)" fg:x="224090512987" fg:w="213783367"/><text x="73.1169%" y="863.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (216,103,450 samples, 0.07%)</title><rect x="72.8665%" y="1141" width="0.0703%" height="15" fill="rgb(230,132,31)" fg:x="224089407626" fg:w="216103450"/><text x="73.1165%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (216,103,450 samples, 0.07%)</title><rect x="72.8665%" y="1125" width="0.0703%" height="15" fill="rgb(206,99,1)" fg:x="224089407626" fg:w="216103450"/><text x="73.1165%" y="1135.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (216,103,450 samples, 0.07%)</title><rect x="72.8665%" y="1109" width="0.0703%" height="15" fill="rgb(227,110,25)" fg:x="224089407626" fg:w="216103450"/><text x="73.1165%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (216,103,450 samples, 0.07%)</title><rect x="72.8665%" y="1093" width="0.0703%" height="15" fill="rgb(217,182,7)" fg:x="224089407626" fg:w="216103450"/><text x="73.1165%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (216,103,450 samples, 0.07%)</title><rect x="72.8665%" y="1077" width="0.0703%" height="15" fill="rgb(250,176,4)" fg:x="224089407626" fg:w="216103450"/><text x="73.1165%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (214,998,089 samples, 0.07%)</title><rect x="72.8669%" y="1061" width="0.0699%" height="15" fill="rgb(244,98,30)" fg:x="224090512987" fg:w="214998089"/><text x="73.1169%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,998,089 samples, 0.07%)</title><rect x="72.8669%" y="1045" width="0.0699%" height="15" fill="rgb(228,150,42)" fg:x="224090512987" fg:w="214998089"/><text x="73.1169%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,998,089 samples, 0.07%)</title><rect x="72.8669%" y="1029" width="0.0699%" height="15" fill="rgb(231,91,46)" fg:x="224090512987" fg:w="214998089"/><text x="73.1169%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,998,089 samples, 0.07%)</title><rect x="72.8669%" y="1013" width="0.0699%" height="15" fill="rgb(252,161,32)" fg:x="224090512987" fg:w="214998089"/><text x="73.1169%" y="1023.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (214,998,089 samples, 0.07%)</title><rect x="72.8669%" y="997" width="0.0699%" height="15" fill="rgb(236,69,41)" fg:x="224090512987" fg:w="214998089"/><text x="73.1169%" y="1007.50"></text></g><g><title>__memmove_avx512_unaligned_erms (34,257,080 samples, 0.01%)</title><rect x="72.9438%" y="373" width="0.0111%" height="15" fill="rgb(212,160,3)" fg:x="224327027252" fg:w="34257080"/><text x="73.1938%" y="383.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::insert (253,763,115 samples, 0.08%)</title><rect x="72.9882%" y="357" width="0.0825%" height="15" fill="rgb(216,5,50)" fg:x="224463635588" fg:w="253763115"/><text x="73.2382%" y="367.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (149,751,675 samples, 0.05%)</title><rect x="73.0221%" y="341" width="0.0487%" height="15" fill="rgb(241,138,25)" fg:x="224567647028" fg:w="149751675"/><text x="73.2721%" y="351.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (106,496,168 samples, 0.03%)</title><rect x="73.0361%" y="325" width="0.0346%" height="15" fill="rgb(239,42,18)" fg:x="224610902535" fg:w="106496168"/><text x="73.2861%" y="335.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (80,901,343 samples, 0.03%)</title><rect x="73.0444%" y="309" width="0.0263%" height="15" fill="rgb(239,40,7)" fg:x="224636497360" fg:w="80901343"/><text x="73.2944%" y="319.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (68,814,396 samples, 0.02%)</title><rect x="73.0484%" y="293" width="0.0224%" height="15" fill="rgb(239,11,31)" fg:x="224648584307" fg:w="68814396"/><text x="73.2984%" y="303.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (60,853,972 samples, 0.02%)</title><rect x="73.0510%" y="277" width="0.0198%" height="15" fill="rgb(224,77,40)" fg:x="224656544731" fg:w="60853972"/><text x="73.3010%" y="287.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (58,472,075 samples, 0.02%)</title><rect x="73.0517%" y="261" width="0.0190%" height="15" fill="rgb(226,15,5)" fg:x="224658926628" fg:w="58472075"/><text x="73.3017%" y="271.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (54,378,500 samples, 0.02%)</title><rect x="73.0531%" y="245" width="0.0177%" height="15" fill="rgb(254,188,5)" fg:x="224663020203" fg:w="54378500"/><text x="73.3031%" y="255.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (49,699,205 samples, 0.02%)</title><rect x="73.0546%" y="229" width="0.0162%" height="15" fill="rgb(241,148,52)" fg:x="224667699498" fg:w="49699205"/><text x="73.3046%" y="239.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (46,317,572 samples, 0.02%)</title><rect x="73.0557%" y="213" width="0.0151%" height="15" fill="rgb(251,48,36)" fg:x="224671081131" fg:w="46317572"/><text x="73.3057%" y="223.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (42,924,943 samples, 0.01%)</title><rect x="73.0568%" y="197" width="0.0140%" height="15" fill="rgb(243,83,13)" fg:x="224674473760" fg:w="42924943"/><text x="73.3068%" y="207.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (39,800,635 samples, 0.01%)</title><rect x="73.0578%" y="181" width="0.0129%" height="15" fill="rgb(210,105,0)" fg:x="224677598068" fg:w="39800635"/><text x="73.3078%" y="191.50"></text></g><g><title>gpui::bounds_tree::BoundsTree&lt;U&gt;::find_max_ordering (30,880,875 samples, 0.01%)</title><rect x="73.0607%" y="165" width="0.0100%" height="15" fill="rgb(239,60,36)" fg:x="224686517828" fg:w="30880875"/><text x="73.3107%" y="175.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (401,437,953 samples, 0.13%)</title><rect x="72.9417%" y="421" width="0.1305%" height="15" fill="rgb(210,20,0)" fg:x="224320567789" fg:w="401437953"/><text x="73.1917%" y="431.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (401,437,953 samples, 0.13%)</title><rect x="72.9417%" y="405" width="0.1305%" height="15" fill="rgb(244,26,53)" fg:x="224320567789" fg:w="401437953"/><text x="73.1917%" y="415.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (401,437,953 samples, 0.13%)</title><rect x="72.9417%" y="389" width="0.1305%" height="15" fill="rgb(240,100,49)" fg:x="224320567789" fg:w="401437953"/><text x="73.1917%" y="399.50"></text></g><g><title>gpui::window::Window::reuse_paint (360,721,410 samples, 0.12%)</title><rect x="72.9550%" y="373" width="0.1173%" height="15" fill="rgb(250,46,45)" fg:x="224361284332" fg:w="360721410"/><text x="73.2050%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (402,683,494 samples, 0.13%)</title><rect x="72.9417%" y="437" width="0.1309%" height="15" fill="rgb(220,181,29)" fg:x="224320567789" fg:w="402683494"/><text x="73.1917%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (405,442,210 samples, 0.13%)</title><rect x="72.9411%" y="549" width="0.1318%" height="15" fill="rgb(213,137,33)" fg:x="224318679106" fg:w="405442210"/><text x="73.1911%" y="559.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (405,442,210 samples, 0.13%)</title><rect x="72.9411%" y="533" width="0.1318%" height="15" fill="rgb(213,27,48)" fg:x="224318679106" fg:w="405442210"/><text x="73.1911%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (405,442,210 samples, 0.13%)</title><rect x="72.9411%" y="517" width="0.1318%" height="15" fill="rgb(245,180,39)" fg:x="224318679106" fg:w="405442210"/><text x="73.1911%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (404,384,701 samples, 0.13%)</title><rect x="72.9414%" y="501" width="0.1315%" height="15" fill="rgb(212,158,42)" fg:x="224319736615" fg:w="404384701"/><text x="73.1914%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (403,553,527 samples, 0.13%)</title><rect x="72.9417%" y="485" width="0.1312%" height="15" fill="rgb(228,193,18)" fg:x="224320567789" fg:w="403553527"/><text x="73.1917%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (403,553,527 samples, 0.13%)</title><rect x="72.9417%" y="469" width="0.1312%" height="15" fill="rgb(245,172,29)" fg:x="224320567789" fg:w="403553527"/><text x="73.1917%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (403,553,527 samples, 0.13%)</title><rect x="72.9417%" y="453" width="0.1312%" height="15" fill="rgb(207,98,24)" fg:x="224320567789" fg:w="403553527"/><text x="73.1917%" y="463.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (407,681,509 samples, 0.13%)</title><rect x="72.9408%" y="565" width="0.1326%" height="15" fill="rgb(249,92,26)" fg:x="224317672695" fg:w="407681509"/><text x="73.1908%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (411,234,020 samples, 0.13%)</title><rect x="72.9403%" y="613" width="0.1337%" height="15" fill="rgb(217,176,26)" fg:x="224316347418" fg:w="411234020"/><text x="73.1903%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (411,234,020 samples, 0.13%)</title><rect x="72.9403%" y="597" width="0.1337%" height="15" fill="rgb(221,8,39)" fg:x="224316347418" fg:w="411234020"/><text x="73.1903%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (411,234,020 samples, 0.13%)</title><rect x="72.9403%" y="581" width="0.1337%" height="15" fill="rgb(208,90,18)" fg:x="224316347418" fg:w="411234020"/><text x="73.1903%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (418,814,890 samples, 0.14%)</title><rect x="72.9400%" y="629" width="0.1362%" height="15" fill="rgb(207,202,30)" fg:x="224315315076" fg:w="418814890"/><text x="73.1900%" y="639.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (436,761,870 samples, 0.14%)</title><rect x="72.9400%" y="709" width="0.1420%" height="15" fill="rgb(231,124,22)" fg:x="224315315076" fg:w="436761870"/><text x="73.1900%" y="719.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (436,761,870 samples, 0.14%)</title><rect x="72.9400%" y="693" width="0.1420%" height="15" fill="rgb(206,15,5)" fg:x="224315315076" fg:w="436761870"/><text x="73.1900%" y="703.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (436,761,870 samples, 0.14%)</title><rect x="72.9400%" y="677" width="0.1420%" height="15" fill="rgb(239,16,52)" fg:x="224315315076" fg:w="436761870"/><text x="73.1900%" y="687.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (436,761,870 samples, 0.14%)</title><rect x="72.9400%" y="661" width="0.1420%" height="15" fill="rgb(245,213,29)" fg:x="224315315076" fg:w="436761870"/><text x="73.1900%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (436,761,870 samples, 0.14%)</title><rect x="72.9400%" y="645" width="0.1420%" height="15" fill="rgb(213,203,36)" fg:x="224315315076" fg:w="436761870"/><text x="73.1900%" y="655.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (33,549,407 samples, 0.01%)</title><rect x="73.0826%" y="421" width="0.0109%" height="15" fill="rgb(209,55,18)" fg:x="224753805243" fg:w="33549407"/><text x="73.3326%" y="431.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (33,549,407 samples, 0.01%)</title><rect x="73.0826%" y="405" width="0.0109%" height="15" fill="rgb(207,133,49)" fg:x="224753805243" fg:w="33549407"/><text x="73.3326%" y="415.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (33,549,407 samples, 0.01%)</title><rect x="73.0826%" y="389" width="0.0109%" height="15" fill="rgb(240,33,46)" fg:x="224753805243" fg:w="33549407"/><text x="73.3326%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (34,651,852 samples, 0.01%)</title><rect x="73.0826%" y="485" width="0.0113%" height="15" fill="rgb(212,35,2)" fg:x="224753805243" fg:w="34651852"/><text x="73.3326%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,651,852 samples, 0.01%)</title><rect x="73.0826%" y="469" width="0.0113%" height="15" fill="rgb(231,119,28)" fg:x="224753805243" fg:w="34651852"/><text x="73.3326%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,651,852 samples, 0.01%)</title><rect x="73.0826%" y="453" width="0.0113%" height="15" fill="rgb(252,178,7)" fg:x="224753805243" fg:w="34651852"/><text x="73.3326%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,651,852 samples, 0.01%)</title><rect x="73.0826%" y="437" width="0.0113%" height="15" fill="rgb(251,91,4)" fg:x="224753805243" fg:w="34651852"/><text x="73.3326%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (480,268,095 samples, 0.16%)</title><rect x="72.9393%" y="853" width="0.1562%" height="15" fill="rgb(233,122,19)" fg:x="224313026283" fg:w="480268095"/><text x="73.1893%" y="863.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (480,268,095 samples, 0.16%)</title><rect x="72.9393%" y="837" width="0.1562%" height="15" fill="rgb(231,208,46)" fg:x="224313026283" fg:w="480268095"/><text x="73.1893%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (480,268,095 samples, 0.16%)</title><rect x="72.9393%" y="821" width="0.1562%" height="15" fill="rgb(243,15,41)" fg:x="224313026283" fg:w="480268095"/><text x="73.1893%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (480,268,095 samples, 0.16%)</title><rect x="72.9393%" y="805" width="0.1562%" height="15" fill="rgb(210,32,43)" fg:x="224313026283" fg:w="480268095"/><text x="73.1893%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (479,027,580 samples, 0.16%)</title><rect x="72.9397%" y="789" width="0.1558%" height="15" fill="rgb(222,177,15)" fg:x="224314266798" fg:w="479027580"/><text x="73.1897%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (479,027,580 samples, 0.16%)</title><rect x="72.9397%" y="773" width="0.1558%" height="15" fill="rgb(244,121,34)" fg:x="224314266798" fg:w="479027580"/><text x="73.1897%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (479,027,580 samples, 0.16%)</title><rect x="72.9397%" y="757" width="0.1558%" height="15" fill="rgb(234,138,4)" fg:x="224314266798" fg:w="479027580"/><text x="73.1897%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (479,027,580 samples, 0.16%)</title><rect x="72.9397%" y="741" width="0.1558%" height="15" fill="rgb(240,97,48)" fg:x="224314266798" fg:w="479027580"/><text x="73.1897%" y="751.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (479,027,580 samples, 0.16%)</title><rect x="72.9397%" y="725" width="0.1558%" height="15" fill="rgb(237,65,54)" fg:x="224314266798" fg:w="479027580"/><text x="73.1897%" y="735.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (41,217,432 samples, 0.01%)</title><rect x="73.0820%" y="709" width="0.0134%" height="15" fill="rgb(214,25,24)" fg:x="224752076946" fg:w="41217432"/><text x="73.3320%" y="719.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (41,217,432 samples, 0.01%)</title><rect x="73.0820%" y="693" width="0.0134%" height="15" fill="rgb(213,5,3)" fg:x="224752076946" fg:w="41217432"/><text x="73.3320%" y="703.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (41,217,432 samples, 0.01%)</title><rect x="73.0820%" y="677" width="0.0134%" height="15" fill="rgb(219,81,29)" fg:x="224752076946" fg:w="41217432"/><text x="73.3320%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (41,217,432 samples, 0.01%)</title><rect x="73.0820%" y="661" width="0.0134%" height="15" fill="rgb(220,43,48)" fg:x="224752076946" fg:w="41217432"/><text x="73.3320%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (41,217,432 samples, 0.01%)</title><rect x="73.0820%" y="645" width="0.0134%" height="15" fill="rgb(239,157,2)" fg:x="224752076946" fg:w="41217432"/><text x="73.3320%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (41,217,432 samples, 0.01%)</title><rect x="73.0820%" y="629" width="0.0134%" height="15" fill="rgb(213,104,43)" fg:x="224752076946" fg:w="41217432"/><text x="73.3320%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (41,217,432 samples, 0.01%)</title><rect x="73.0820%" y="613" width="0.0134%" height="15" fill="rgb(237,84,9)" fg:x="224752076946" fg:w="41217432"/><text x="73.3320%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (41,217,432 samples, 0.01%)</title><rect x="73.0820%" y="597" width="0.0134%" height="15" fill="rgb(252,6,33)" fg:x="224752076946" fg:w="41217432"/><text x="73.3320%" y="607.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (41,217,432 samples, 0.01%)</title><rect x="73.0820%" y="581" width="0.0134%" height="15" fill="rgb(251,172,22)" fg:x="224752076946" fg:w="41217432"/><text x="73.3320%" y="591.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (40,219,835 samples, 0.01%)</title><rect x="73.0823%" y="565" width="0.0131%" height="15" fill="rgb(244,91,53)" fg:x="224753074543" fg:w="40219835"/><text x="73.3323%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (40,219,835 samples, 0.01%)</title><rect x="73.0823%" y="549" width="0.0131%" height="15" fill="rgb(219,29,30)" fg:x="224753074543" fg:w="40219835"/><text x="73.3323%" y="559.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (40,219,835 samples, 0.01%)</title><rect x="73.0823%" y="533" width="0.0131%" height="15" fill="rgb(213,3,15)" fg:x="224753074543" fg:w="40219835"/><text x="73.3323%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (39,489,135 samples, 0.01%)</title><rect x="73.0826%" y="517" width="0.0128%" height="15" fill="rgb(208,25,28)" fg:x="224753805243" fg:w="39489135"/><text x="73.3326%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (39,489,135 samples, 0.01%)</title><rect x="73.0826%" y="501" width="0.0128%" height="15" fill="rgb(252,144,25)" fg:x="224753805243" fg:w="39489135"/><text x="73.3326%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (483,936,892 samples, 0.16%)</title><rect x="72.9385%" y="997" width="0.1574%" height="15" fill="rgb(226,220,25)" fg:x="224310590453" fg:w="483936892"/><text x="73.1885%" y="1007.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (483,936,892 samples, 0.16%)</title><rect x="72.9385%" y="981" width="0.1574%" height="15" fill="rgb(212,131,28)" fg:x="224310590453" fg:w="483936892"/><text x="73.1885%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (483,936,892 samples, 0.16%)</title><rect x="72.9385%" y="965" width="0.1574%" height="15" fill="rgb(219,143,52)" fg:x="224310590453" fg:w="483936892"/><text x="73.1885%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (483,936,892 samples, 0.16%)</title><rect x="72.9385%" y="949" width="0.1574%" height="15" fill="rgb(215,56,7)" fg:x="224310590453" fg:w="483936892"/><text x="73.1885%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (483,936,892 samples, 0.16%)</title><rect x="72.9385%" y="933" width="0.1574%" height="15" fill="rgb(239,59,51)" fg:x="224310590453" fg:w="483936892"/><text x="73.1885%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (483,936,892 samples, 0.16%)</title><rect x="72.9385%" y="917" width="0.1574%" height="15" fill="rgb(209,215,4)" fg:x="224310590453" fg:w="483936892"/><text x="73.1885%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (483,936,892 samples, 0.16%)</title><rect x="72.9385%" y="901" width="0.1574%" height="15" fill="rgb(221,118,39)" fg:x="224310590453" fg:w="483936892"/><text x="73.1885%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (482,683,389 samples, 0.16%)</title><rect x="72.9389%" y="885" width="0.1570%" height="15" fill="rgb(236,6,44)" fg:x="224311843956" fg:w="482683389"/><text x="73.1889%" y="895.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (481,501,062 samples, 0.16%)</title><rect x="72.9393%" y="869" width="0.1566%" height="15" fill="rgb(216,122,9)" fg:x="224313026283" fg:w="481501062"/><text x="73.1893%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (486,844,766 samples, 0.16%)</title><rect x="72.9379%" y="1013" width="0.1583%" height="15" fill="rgb(244,134,42)" fg:x="224308769910" fg:w="486844766"/><text x="73.1879%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (490,205,598 samples, 0.16%)</title><rect x="72.9375%" y="1061" width="0.1594%" height="15" fill="rgb(209,189,35)" fg:x="224307641371" fg:w="490205598"/><text x="73.1875%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (490,205,598 samples, 0.16%)</title><rect x="72.9375%" y="1045" width="0.1594%" height="15" fill="rgb(250,47,36)" fg:x="224307641371" fg:w="490205598"/><text x="73.1875%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (489,077,059 samples, 0.16%)</title><rect x="72.9379%" y="1029" width="0.1590%" height="15" fill="rgb(252,112,4)" fg:x="224308769910" fg:w="489077059"/><text x="73.1879%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (497,872,571 samples, 0.16%)</title><rect x="72.9368%" y="1141" width="0.1619%" height="15" fill="rgb(221,79,51)" fg:x="224305511076" fg:w="497872571"/><text x="73.1868%" y="1151.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (497,872,571 samples, 0.16%)</title><rect x="72.9368%" y="1125" width="0.1619%" height="15" fill="rgb(232,65,53)" fg:x="224305511076" fg:w="497872571"/><text x="73.1868%" y="1135.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (496,996,179 samples, 0.16%)</title><rect x="72.9371%" y="1109" width="0.1616%" height="15" fill="rgb(211,37,7)" fg:x="224306387468" fg:w="496996179"/><text x="73.1871%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (495,742,276 samples, 0.16%)</title><rect x="72.9375%" y="1093" width="0.1612%" height="15" fill="rgb(234,221,18)" fg:x="224307641371" fg:w="495742276"/><text x="73.1875%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (495,742,276 samples, 0.16%)</title><rect x="72.9375%" y="1077" width="0.1612%" height="15" fill="rgb(220,158,26)" fg:x="224307641371" fg:w="495742276"/><text x="73.1875%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (715,923,358 samples, 0.23%)</title><rect x="72.8663%" y="1285" width="0.2328%" height="15" fill="rgb(220,70,6)" fg:x="224088673728" fg:w="715923358"/><text x="73.1163%" y="1295.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (715,923,358 samples, 0.23%)</title><rect x="72.8663%" y="1269" width="0.2328%" height="15" fill="rgb(250,39,48)" fg:x="224088673728" fg:w="715923358"/><text x="73.1163%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (715,923,358 samples, 0.23%)</title><rect x="72.8663%" y="1253" width="0.2328%" height="15" fill="rgb(206,40,27)" fg:x="224088673728" fg:w="715923358"/><text x="73.1163%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (715,923,358 samples, 0.23%)</title><rect x="72.8663%" y="1237" width="0.2328%" height="15" fill="rgb(247,80,36)" fg:x="224088673728" fg:w="715923358"/><text x="73.1163%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (715,189,460 samples, 0.23%)</title><rect x="72.8665%" y="1221" width="0.2326%" height="15" fill="rgb(222,9,20)" fg:x="224089407626" fg:w="715189460"/><text x="73.1165%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (715,189,460 samples, 0.23%)</title><rect x="72.8665%" y="1205" width="0.2326%" height="15" fill="rgb(217,26,45)" fg:x="224089407626" fg:w="715189460"/><text x="73.1165%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (715,189,460 samples, 0.23%)</title><rect x="72.8665%" y="1189" width="0.2326%" height="15" fill="rgb(221,67,14)" fg:x="224089407626" fg:w="715189460"/><text x="73.1165%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (715,189,460 samples, 0.23%)</title><rect x="72.8665%" y="1173" width="0.2326%" height="15" fill="rgb(248,100,24)" fg:x="224089407626" fg:w="715189460"/><text x="73.1165%" y="1183.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (715,189,460 samples, 0.23%)</title><rect x="72.8665%" y="1157" width="0.2326%" height="15" fill="rgb(230,187,16)" fg:x="224089407626" fg:w="715189460"/><text x="73.1165%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (39,177,271 samples, 0.01%)</title><rect x="73.1042%" y="517" width="0.0127%" height="15" fill="rgb(205,108,13)" fg:x="224820261383" fg:w="39177271"/><text x="73.3542%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (46,861,225 samples, 0.02%)</title><rect x="73.1021%" y="581" width="0.0152%" height="15" fill="rgb(235,71,51)" fg:x="224813805718" fg:w="46861225"/><text x="73.3521%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (46,861,225 samples, 0.02%)</title><rect x="73.1021%" y="565" width="0.0152%" height="15" fill="rgb(251,172,48)" fg:x="224813805718" fg:w="46861225"/><text x="73.3521%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,783,501 samples, 0.01%)</title><rect x="73.1028%" y="549" width="0.0146%" height="15" fill="rgb(240,96,49)" fg:x="224815883442" fg:w="44783501"/><text x="73.3528%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,783,501 samples, 0.01%)</title><rect x="73.1028%" y="533" width="0.0146%" height="15" fill="rgb(235,46,36)" fg:x="224815883442" fg:w="44783501"/><text x="73.3528%" y="543.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (51,082,016 samples, 0.02%)</title><rect x="73.1017%" y="645" width="0.0166%" height="15" fill="rgb(244,3,49)" fg:x="224812621231" fg:w="51082016"/><text x="73.3517%" y="655.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (51,082,016 samples, 0.02%)</title><rect x="73.1017%" y="629" width="0.0166%" height="15" fill="rgb(206,78,54)" fg:x="224812621231" fg:w="51082016"/><text x="73.3517%" y="639.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (51,082,016 samples, 0.02%)</title><rect x="73.1017%" y="613" width="0.0166%" height="15" fill="rgb(208,85,42)" fg:x="224812621231" fg:w="51082016"/><text x="73.3517%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (51,082,016 samples, 0.02%)</title><rect x="73.1017%" y="597" width="0.0166%" height="15" fill="rgb(219,196,21)" fg:x="224812621231" fg:w="51082016"/><text x="73.3517%" y="607.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (79,103,237 samples, 0.03%)</title><rect x="73.1014%" y="661" width="0.0257%" height="15" fill="rgb(238,19,9)" fg:x="224811646492" fg:w="79103237"/><text x="73.3514%" y="671.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (82,708,466 samples, 0.03%)</title><rect x="73.1014%" y="677" width="0.0269%" height="15" fill="rgb(206,86,13)" fg:x="224811646492" fg:w="82708466"/><text x="73.3514%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (88,582,910 samples, 0.03%)</title><rect x="73.1002%" y="821" width="0.0288%" height="15" fill="rgb(214,123,40)" fg:x="224808124547" fg:w="88582910"/><text x="73.3502%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (86,264,012 samples, 0.03%)</title><rect x="73.1010%" y="805" width="0.0281%" height="15" fill="rgb(243,53,5)" fg:x="224810443445" fg:w="86264012"/><text x="73.3510%" y="815.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (86,264,012 samples, 0.03%)</title><rect x="73.1010%" y="789" width="0.0281%" height="15" fill="rgb(254,186,31)" fg:x="224810443445" fg:w="86264012"/><text x="73.3510%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (86,264,012 samples, 0.03%)</title><rect x="73.1010%" y="773" width="0.0281%" height="15" fill="rgb(221,216,25)" fg:x="224810443445" fg:w="86264012"/><text x="73.3510%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (86,264,012 samples, 0.03%)</title><rect x="73.1010%" y="757" width="0.0281%" height="15" fill="rgb(248,107,42)" fg:x="224810443445" fg:w="86264012"/><text x="73.3510%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (86,264,012 samples, 0.03%)</title><rect x="73.1010%" y="741" width="0.0281%" height="15" fill="rgb(221,85,43)" fg:x="224810443445" fg:w="86264012"/><text x="73.3510%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (86,264,012 samples, 0.03%)</title><rect x="73.1010%" y="725" width="0.0281%" height="15" fill="rgb(225,34,24)" fg:x="224810443445" fg:w="86264012"/><text x="73.3510%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (86,264,012 samples, 0.03%)</title><rect x="73.1010%" y="709" width="0.0281%" height="15" fill="rgb(211,119,1)" fg:x="224810443445" fg:w="86264012"/><text x="73.3510%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (85,060,965 samples, 0.03%)</title><rect x="73.1014%" y="693" width="0.0277%" height="15" fill="rgb(254,216,46)" fg:x="224811646492" fg:w="85060965"/><text x="73.3514%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (90,812,930 samples, 0.03%)</title><rect x="73.0999%" y="901" width="0.0295%" height="15" fill="rgb(238,11,38)" fg:x="224807032712" fg:w="90812930"/><text x="73.3499%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (89,721,095 samples, 0.03%)</title><rect x="73.1002%" y="885" width="0.0292%" height="15" fill="rgb(233,50,15)" fg:x="224808124547" fg:w="89721095"/><text x="73.3502%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (89,721,095 samples, 0.03%)</title><rect x="73.1002%" y="869" width="0.0292%" height="15" fill="rgb(217,181,29)" fg:x="224808124547" fg:w="89721095"/><text x="73.3502%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (89,721,095 samples, 0.03%)</title><rect x="73.1002%" y="853" width="0.0292%" height="15" fill="rgb(214,56,3)" fg:x="224808124547" fg:w="89721095"/><text x="73.3502%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (89,721,095 samples, 0.03%)</title><rect x="73.1002%" y="837" width="0.0292%" height="15" fill="rgb(230,69,45)" fg:x="224808124547" fg:w="89721095"/><text x="73.3502%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (91,837,319 samples, 0.03%)</title><rect x="73.0999%" y="949" width="0.0299%" height="15" fill="rgb(224,201,50)" fg:x="224807032712" fg:w="91837319"/><text x="73.3499%" y="959.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (91,837,319 samples, 0.03%)</title><rect x="73.0999%" y="933" width="0.0299%" height="15" fill="rgb(217,228,18)" fg:x="224807032712" fg:w="91837319"/><text x="73.3499%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (91,837,319 samples, 0.03%)</title><rect x="73.0999%" y="917" width="0.0299%" height="15" fill="rgb(239,33,44)" fg:x="224807032712" fg:w="91837319"/><text x="73.3499%" y="927.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (92,920,126 samples, 0.03%)</title><rect x="73.0999%" y="965" width="0.0302%" height="15" fill="rgb(248,210,23)" fg:x="224807032712" fg:w="92920126"/><text x="73.3499%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (95,347,142 samples, 0.03%)</title><rect x="73.0995%" y="1093" width="0.0310%" height="15" fill="rgb(253,135,8)" fg:x="224805839478" fg:w="95347142"/><text x="73.3495%" y="1103.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (95,347,142 samples, 0.03%)</title><rect x="73.0995%" y="1077" width="0.0310%" height="15" fill="rgb(217,98,21)" fg:x="224805839478" fg:w="95347142"/><text x="73.3495%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (94,153,908 samples, 0.03%)</title><rect x="73.0999%" y="1061" width="0.0306%" height="15" fill="rgb(253,130,21)" fg:x="224807032712" fg:w="94153908"/><text x="73.3499%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (94,153,908 samples, 0.03%)</title><rect x="73.0999%" y="1045" width="0.0306%" height="15" fill="rgb(207,81,54)" fg:x="224807032712" fg:w="94153908"/><text x="73.3499%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (94,153,908 samples, 0.03%)</title><rect x="73.0999%" y="1029" width="0.0306%" height="15" fill="rgb(232,48,33)" fg:x="224807032712" fg:w="94153908"/><text x="73.3499%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,153,908 samples, 0.03%)</title><rect x="73.0999%" y="1013" width="0.0306%" height="15" fill="rgb(211,9,35)" fg:x="224807032712" fg:w="94153908"/><text x="73.3499%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,153,908 samples, 0.03%)</title><rect x="73.0999%" y="997" width="0.0306%" height="15" fill="rgb(205,152,21)" fg:x="224807032712" fg:w="94153908"/><text x="73.3499%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,153,908 samples, 0.03%)</title><rect x="73.0999%" y="981" width="0.0306%" height="15" fill="rgb(249,21,27)" fg:x="224807032712" fg:w="94153908"/><text x="73.3499%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (97,692,609 samples, 0.03%)</title><rect x="73.0991%" y="1237" width="0.0318%" height="15" fill="rgb(252,29,24)" fg:x="224804597086" fg:w="97692609"/><text x="73.3491%" y="1247.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (97,692,609 samples, 0.03%)</title><rect x="73.0991%" y="1221" width="0.0318%" height="15" fill="rgb(230,130,50)" fg:x="224804597086" fg:w="97692609"/><text x="73.3491%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (97,692,609 samples, 0.03%)</title><rect x="73.0991%" y="1205" width="0.0318%" height="15" fill="rgb(239,144,14)" fg:x="224804597086" fg:w="97692609"/><text x="73.3491%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (97,692,609 samples, 0.03%)</title><rect x="73.0991%" y="1189" width="0.0318%" height="15" fill="rgb(227,111,50)" fg:x="224804597086" fg:w="97692609"/><text x="73.3491%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (97,692,609 samples, 0.03%)</title><rect x="73.0991%" y="1173" width="0.0318%" height="15" fill="rgb(254,84,20)" fg:x="224804597086" fg:w="97692609"/><text x="73.3491%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (97,692,609 samples, 0.03%)</title><rect x="73.0991%" y="1157" width="0.0318%" height="15" fill="rgb(232,90,48)" fg:x="224804597086" fg:w="97692609"/><text x="73.3491%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (97,692,609 samples, 0.03%)</title><rect x="73.0991%" y="1141" width="0.0318%" height="15" fill="rgb(253,63,47)" fg:x="224804597086" fg:w="97692609"/><text x="73.3491%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (97,692,609 samples, 0.03%)</title><rect x="73.0991%" y="1125" width="0.0318%" height="15" fill="rgb(251,146,35)" fg:x="224804597086" fg:w="97692609"/><text x="73.3491%" y="1135.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (97,692,609 samples, 0.03%)</title><rect x="73.0991%" y="1109" width="0.0318%" height="15" fill="rgb(229,192,35)" fg:x="224804597086" fg:w="97692609"/><text x="73.3491%" y="1119.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (98,756,156 samples, 0.03%)</title><rect x="73.0991%" y="1285" width="0.0321%" height="15" fill="rgb(225,68,9)" fg:x="224804597086" fg:w="98756156"/><text x="73.3491%" y="1295.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (98,756,156 samples, 0.03%)</title><rect x="73.0991%" y="1269" width="0.0321%" height="15" fill="rgb(214,97,34)" fg:x="224804597086" fg:w="98756156"/><text x="73.3491%" y="1279.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (98,756,156 samples, 0.03%)</title><rect x="73.0991%" y="1253" width="0.0321%" height="15" fill="rgb(253,31,26)" fg:x="224804597086" fg:w="98756156"/><text x="73.3491%" y="1263.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (818,876,359 samples, 0.27%)</title><rect x="72.8663%" y="1301" width="0.2663%" height="15" fill="rgb(225,151,47)" fg:x="224088673728" fg:w="818876359"/><text x="73.1163%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::paint_keyboard_listeners (66,239,725 samples, 0.02%)</title><rect x="73.1332%" y="1301" width="0.0215%" height="15" fill="rgb(206,185,9)" fg:x="224909610290" fg:w="66239725"/><text x="73.3832%" y="1311.50"></text></g><g><title>malloc (58,504,389 samples, 0.02%)</title><rect x="73.1358%" y="1285" width="0.0190%" height="15" fill="rgb(249,65,17)" fg:x="224917345626" fg:w="58504389"/><text x="73.3858%" y="1295.50"></text></g><g><title>_int_malloc (41,607,288 samples, 0.01%)</title><rect x="73.1413%" y="1269" width="0.0135%" height="15" fill="rgb(220,110,10)" fg:x="224934242727" fg:w="41607288"/><text x="73.3913%" y="1279.50"></text></g><g><title>unlink_chunk.isra.0 (33,868,259 samples, 0.01%)</title><rect x="73.1438%" y="1253" width="0.0110%" height="15" fill="rgb(222,198,49)" fg:x="224941981756" fg:w="33868259"/><text x="73.3938%" y="1263.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (890,653,939 samples, 0.29%)</title><rect x="72.8656%" y="1445" width="0.2896%" height="15" fill="rgb(239,81,13)" fg:x="224086361496" fg:w="890653939"/><text x="73.1156%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (890,653,939 samples, 0.29%)</title><rect x="72.8656%" y="1429" width="0.2896%" height="15" fill="rgb(216,128,11)" fg:x="224086361496" fg:w="890653939"/><text x="73.1156%" y="1439.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (890,653,939 samples, 0.29%)</title><rect x="72.8656%" y="1413" width="0.2896%" height="15" fill="rgb(247,156,8)" fg:x="224086361496" fg:w="890653939"/><text x="73.1156%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (890,653,939 samples, 0.29%)</title><rect x="72.8656%" y="1397" width="0.2896%" height="15" fill="rgb(219,173,1)" fg:x="224086361496" fg:w="890653939"/><text x="73.1156%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (890,653,939 samples, 0.29%)</title><rect x="72.8656%" y="1381" width="0.2896%" height="15" fill="rgb(227,42,24)" fg:x="224086361496" fg:w="890653939"/><text x="73.1156%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (889,514,640 samples, 0.29%)</title><rect x="72.8659%" y="1365" width="0.2892%" height="15" fill="rgb(253,219,50)" fg:x="224087500795" fg:w="889514640"/><text x="73.1159%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (889,514,640 samples, 0.29%)</title><rect x="72.8659%" y="1349" width="0.2892%" height="15" fill="rgb(215,191,54)" fg:x="224087500795" fg:w="889514640"/><text x="73.1159%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (889,514,640 samples, 0.29%)</title><rect x="72.8659%" y="1333" width="0.2892%" height="15" fill="rgb(238,83,12)" fg:x="224087500795" fg:w="889514640"/><text x="73.1159%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (888,341,707 samples, 0.29%)</title><rect x="72.8663%" y="1317" width="0.2889%" height="15" fill="rgb(205,124,9)" fg:x="224088673728" fg:w="888341707"/><text x="73.1163%" y="1327.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (901,261,133 samples, 0.29%)</title><rect x="72.8640%" y="1749" width="0.2931%" height="15" fill="rgb(253,174,7)" fg:x="224081731693" fg:w="901261133"/><text x="73.1140%" y="1759.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (901,261,133 samples, 0.29%)</title><rect x="72.8640%" y="1733" width="0.2931%" height="15" fill="rgb(206,134,49)" fg:x="224081731693" fg:w="901261133"/><text x="73.1140%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (900,267,240 samples, 0.29%)</title><rect x="72.8644%" y="1717" width="0.2927%" height="15" fill="rgb(221,89,20)" fg:x="224082725586" fg:w="900267240"/><text x="73.1144%" y="1727.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (900,267,240 samples, 0.29%)</title><rect x="72.8644%" y="1701" width="0.2927%" height="15" fill="rgb(240,205,13)" fg:x="224082725586" fg:w="900267240"/><text x="73.1144%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (899,066,707 samples, 0.29%)</title><rect x="72.8648%" y="1685" width="0.2923%" height="15" fill="rgb(237,174,32)" fg:x="224083926119" fg:w="899066707"/><text x="73.1148%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1669" width="0.2916%" height="15" fill="rgb(226,12,15)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1653" width="0.2916%" height="15" fill="rgb(245,160,52)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1637" width="0.2916%" height="15" fill="rgb(253,80,21)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1621" width="0.2916%" height="15" fill="rgb(231,225,22)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1605" width="0.2916%" height="15" fill="rgb(253,185,12)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1615.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1589" width="0.2916%" height="15" fill="rgb(234,197,21)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1573" width="0.2916%" height="15" fill="rgb(210,47,30)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1583.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1557" width="0.2916%" height="15" fill="rgb(246,139,27)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1541" width="0.2916%" height="15" fill="rgb(226,130,16)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1525" width="0.2916%" height="15" fill="rgb(237,208,20)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1509" width="0.2916%" height="15" fill="rgb(245,186,28)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1493" width="0.2916%" height="15" fill="rgb(238,105,39)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1477" width="0.2916%" height="15" fill="rgb(253,228,11)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (896,631,330 samples, 0.29%)</title><rect x="72.8656%" y="1461" width="0.2916%" height="15" fill="rgb(224,136,38)" fg:x="224086361496" fg:w="896631330"/><text x="73.1156%" y="1471.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (906,789,712 samples, 0.29%)</title><rect x="72.8630%" y="1765" width="0.2949%" height="15" fill="rgb(211,3,25)" fg:x="224078448140" fg:w="906789712"/><text x="73.1130%" y="1775.50"></text></g><g><title>&lt;gpui::tab_stop::TabStopMap as core::default::Default&gt;::default (110,625,923 samples, 0.04%)</title><rect x="73.1587%" y="1765" width="0.0360%" height="15" fill="rgb(238,66,34)" fg:x="224987788014" fg:w="110625923"/><text x="73.4087%" y="1775.50"></text></g><g><title>malloc (109,555,798 samples, 0.04%)</title><rect x="73.1590%" y="1749" width="0.0356%" height="15" fill="rgb(223,188,11)" fg:x="224988858139" fg:w="109555798"/><text x="73.4090%" y="1759.50"></text></g><g><title>_int_malloc (109,555,798 samples, 0.04%)</title><rect x="73.1590%" y="1733" width="0.0356%" height="15" fill="rgb(221,10,35)" fg:x="224988858139" fg:w="109555798"/><text x="73.4090%" y="1743.50"></text></g><g><title>cfree@GLIBC_2.2.5 (32,854,120 samples, 0.01%)</title><rect x="73.2082%" y="1765" width="0.0107%" height="15" fill="rgb(223,18,44)" fg:x="225139973566" fg:w="32854120"/><text x="73.4582%" y="1775.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (33,229,925 samples, 0.01%)</title><rect x="73.2210%" y="1749" width="0.0108%" height="15" fill="rgb(220,97,41)" fg:x="225179501948" fg:w="33229925"/><text x="73.4710%" y="1759.50"></text></g><g><title>cfree@GLIBC_2.2.5 (52,510,015 samples, 0.02%)</title><rect x="73.2318%" y="1749" width="0.0171%" height="15" fill="rgb(206,95,45)" fg:x="225212731873" fg:w="52510015"/><text x="73.4818%" y="1759.50"></text></g><g><title>_int_free_chunk (44,357,842 samples, 0.01%)</title><rect x="73.2345%" y="1733" width="0.0144%" height="15" fill="rgb(209,96,13)" fg:x="225220884046" fg:w="44357842"/><text x="73.4845%" y="1743.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;alloc::rc::Rc&lt;dyn core::ops::function::Fn&lt;(&amp;dyn core::any::Any,gpui::window::DispatchPhase,&amp;mut gpui::window::Window,&amp;mut gpui::app::App)&gt;+Output = ()&gt;&gt;&gt; (42,625,339 samples, 0.01%)</title><rect x="73.2489%" y="1749" width="0.0139%" height="15" fill="rgb(237,39,34)" fg:x="225265241888" fg:w="42625339"/><text x="73.4989%" y="1759.50"></text></g><g><title>core::ptr::drop_in_place&lt;gpui::window::Window::on_mouse_event&lt;gpui::interactive::MouseMoveEvent,gpui::elements::div::register_tooltip_mouse_handlers::{{closure}}&gt;::{{closure}}&gt; (43,157,761 samples, 0.01%)</title><rect x="73.2680%" y="1749" width="0.0140%" height="15" fill="rgb(213,49,47)" fg:x="225324078697" fg:w="43157761"/><text x="73.5180%" y="1759.50"></text></g><g><title>core::ptr::drop_in_place&lt;[core::option::Option&lt;alloc::boxed::Box&lt;dyn core::ops::function::FnMut&lt;(&amp;dyn core::any::Any,gpui::window::DispatchPhase,&amp;mut gpui::window::Window,&amp;mut gpui::app::App)&gt;+Output = ()&gt;&gt;]&gt; (203,494,330 samples, 0.07%)</title><rect x="73.2188%" y="1765" width="0.0662%" height="15" fill="rgb(205,107,27)" fg:x="225172827686" fg:w="203494330"/><text x="73.4688%" y="1775.50"></text></g><g><title>core::slice::sort::stable::drift::sort (326,828,018 samples, 0.11%)</title><rect x="73.2942%" y="1749" width="0.1063%" height="15" fill="rgb(212,142,9)" fg:x="225404616605" fg:w="326828018"/><text x="73.5442%" y="1759.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (302,360,782 samples, 0.10%)</title><rect x="73.3022%" y="1733" width="0.0983%" height="15" fill="rgb(226,182,0)" fg:x="225429083841" fg:w="302360782"/><text x="73.5522%" y="1743.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (201,942,618 samples, 0.07%)</title><rect x="73.3348%" y="1717" width="0.0657%" height="15" fill="rgb(231,3,53)" fg:x="225529502005" fg:w="201942618"/><text x="73.5848%" y="1727.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (155,051,793 samples, 0.05%)</title><rect x="73.3501%" y="1701" width="0.0504%" height="15" fill="rgb(246,111,28)" fg:x="225576392830" fg:w="155051793"/><text x="73.6001%" y="1711.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (111,444,324 samples, 0.04%)</title><rect x="73.3642%" y="1685" width="0.0362%" height="15" fill="rgb(254,183,7)" fg:x="225620000299" fg:w="111444324"/><text x="73.6142%" y="1695.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (80,453,380 samples, 0.03%)</title><rect x="73.3743%" y="1669" width="0.0262%" height="15" fill="rgb(247,177,28)" fg:x="225650991243" fg:w="80453380"/><text x="73.6243%" y="1679.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (42,926,823 samples, 0.01%)</title><rect x="73.3865%" y="1653" width="0.0140%" height="15" fill="rgb(244,43,1)" fg:x="225688517800" fg:w="42926823"/><text x="73.6365%" y="1663.50"></text></g><g><title>core::slice::sort::stable::driftsort_main (345,142,280 samples, 0.11%)</title><rect x="73.2938%" y="1765" width="0.1122%" height="15" fill="rgb(207,2,35)" fg:x="225403310178" fg:w="345142280"/><text x="73.5438%" y="1775.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (32,096,281 samples, 0.01%)</title><rect x="73.4170%" y="1029" width="0.0104%" height="15" fill="rgb(213,83,22)" fg:x="225782157162" fg:w="32096281"/><text x="73.6670%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,642,979 samples, 0.01%)</title><rect x="73.4166%" y="1045" width="0.0113%" height="15" fill="rgb(246,212,13)" fg:x="225781005577" fg:w="34642979"/><text x="73.6666%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (37,967,264 samples, 0.01%)</title><rect x="73.4159%" y="1205" width="0.0123%" height="15" fill="rgb(213,127,46)" fg:x="225778806860" fg:w="37967264"/><text x="73.6659%" y="1215.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (37,967,264 samples, 0.01%)</title><rect x="73.4159%" y="1189" width="0.0123%" height="15" fill="rgb(219,215,39)" fg:x="225778806860" fg:w="37967264"/><text x="73.6659%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (37,967,264 samples, 0.01%)</title><rect x="73.4159%" y="1173" width="0.0123%" height="15" fill="rgb(227,99,17)" fg:x="225778806860" fg:w="37967264"/><text x="73.6659%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (37,967,264 samples, 0.01%)</title><rect x="73.4159%" y="1157" width="0.0123%" height="15" fill="rgb(208,155,18)" fg:x="225778806860" fg:w="37967264"/><text x="73.6659%" y="1167.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (37,967,264 samples, 0.01%)</title><rect x="73.4159%" y="1141" width="0.0123%" height="15" fill="rgb(223,204,38)" fg:x="225778806860" fg:w="37967264"/><text x="73.6659%" y="1151.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (37,967,264 samples, 0.01%)</title><rect x="73.4159%" y="1125" width="0.0123%" height="15" fill="rgb(212,114,21)" fg:x="225778806860" fg:w="37967264"/><text x="73.6659%" y="1135.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (37,967,264 samples, 0.01%)</title><rect x="73.4159%" y="1109" width="0.0123%" height="15" fill="rgb(250,74,13)" fg:x="225778806860" fg:w="37967264"/><text x="73.6659%" y="1119.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (37,967,264 samples, 0.01%)</title><rect x="73.4159%" y="1093" width="0.0123%" height="15" fill="rgb(234,7,1)" fg:x="225778806860" fg:w="37967264"/><text x="73.6659%" y="1103.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (35,768,547 samples, 0.01%)</title><rect x="73.4166%" y="1077" width="0.0116%" height="15" fill="rgb(207,138,31)" fg:x="225781005577" fg:w="35768547"/><text x="73.6666%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (35,768,547 samples, 0.01%)</title><rect x="73.4166%" y="1061" width="0.0116%" height="15" fill="rgb(215,186,42)" fg:x="225781005577" fg:w="35768547"/><text x="73.6666%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (42,641,672 samples, 0.01%)</title><rect x="73.4147%" y="1253" width="0.0139%" height="15" fill="rgb(229,205,49)" fg:x="225775273076" fg:w="42641672"/><text x="73.6647%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (42,641,672 samples, 0.01%)</title><rect x="73.4147%" y="1237" width="0.0139%" height="15" fill="rgb(216,156,32)" fg:x="225775273076" fg:w="42641672"/><text x="73.6647%" y="1247.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (39,107,888 samples, 0.01%)</title><rect x="73.4159%" y="1221" width="0.0127%" height="15" fill="rgb(238,7,21)" fg:x="225778806860" fg:w="39107888"/><text x="73.6659%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (43,839,220 samples, 0.01%)</title><rect x="73.4147%" y="1301" width="0.0143%" height="15" fill="rgb(249,190,22)" fg:x="225775273076" fg:w="43839220"/><text x="73.6647%" y="1311.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (43,839,220 samples, 0.01%)</title><rect x="73.4147%" y="1285" width="0.0143%" height="15" fill="rgb(253,51,31)" fg:x="225775273076" fg:w="43839220"/><text x="73.6647%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (43,839,220 samples, 0.01%)</title><rect x="73.4147%" y="1269" width="0.0143%" height="15" fill="rgb(237,90,54)" fg:x="225775273076" fg:w="43839220"/><text x="73.6647%" y="1279.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (65,200,492 samples, 0.02%)</title><rect x="73.4671%" y="965" width="0.0212%" height="15" fill="rgb(250,214,33)" fg:x="225936223537" fg:w="65200492"/><text x="73.7171%" y="975.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (33,739,446 samples, 0.01%)</title><rect x="73.5168%" y="821" width="0.0110%" height="15" fill="rgb(237,10,49)" fg:x="226089140383" fg:w="33739446"/><text x="73.7668%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (40,406,401 samples, 0.01%)</title><rect x="73.5157%" y="837" width="0.0131%" height="15" fill="rgb(241,56,36)" fg:x="226085729279" fg:w="40406401"/><text x="73.7657%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (44,719,594 samples, 0.01%)</title><rect x="73.5154%" y="853" width="0.0145%" height="15" fill="rgb(227,164,12)" fg:x="226084745661" fg:w="44719594"/><text x="73.7654%" y="863.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (58,955,884 samples, 0.02%)</title><rect x="73.5136%" y="901" width="0.0192%" height="15" fill="rgb(249,149,35)" fg:x="226079409113" fg:w="58955884"/><text x="73.7636%" y="911.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (58,955,884 samples, 0.02%)</title><rect x="73.5136%" y="885" width="0.0192%" height="15" fill="rgb(238,227,50)" fg:x="226079409113" fg:w="58955884"/><text x="73.7636%" y="895.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (58,955,884 samples, 0.02%)</title><rect x="73.5136%" y="869" width="0.0192%" height="15" fill="rgb(235,102,45)" fg:x="226079409113" fg:w="58955884"/><text x="73.7636%" y="879.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (98,284,572 samples, 0.03%)</title><rect x="73.5012%" y="933" width="0.0320%" height="15" fill="rgb(211,10,38)" fg:x="226041120523" fg:w="98284572"/><text x="73.7512%" y="943.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (59,995,982 samples, 0.02%)</title><rect x="73.5136%" y="917" width="0.0195%" height="15" fill="rgb(219,77,48)" fg:x="226079409113" fg:w="59995982"/><text x="73.7636%" y="927.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (111,547,178 samples, 0.04%)</title><rect x="73.4972%" y="949" width="0.0363%" height="15" fill="rgb(246,6,15)" fg:x="226028932932" fg:w="111547178"/><text x="73.7472%" y="959.50"></text></g><g><title>gpui::window::Window::with_optional_element_state::_{{closure}} (141,177,289 samples, 0.05%)</title><rect x="73.4886%" y="965" width="0.0459%" height="15" fill="rgb(207,220,2)" fg:x="226002416197" fg:w="141177289"/><text x="73.7386%" y="975.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (287,804,544 samples, 0.09%)</title><rect x="73.4444%" y="981" width="0.0936%" height="15" fill="rgb(242,48,14)" fg:x="225866566872" fg:w="287804544"/><text x="73.6944%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (303,522,659 samples, 0.10%)</title><rect x="73.4402%" y="997" width="0.0987%" height="15" fill="rgb(218,19,27)" fg:x="225853676718" fg:w="303522659"/><text x="73.6902%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (313,131,501 samples, 0.10%)</title><rect x="73.4387%" y="1013" width="0.1018%" height="15" fill="rgb(228,0,35)" fg:x="225849119445" fg:w="313131501"/><text x="73.6887%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (317,425,872 samples, 0.10%)</title><rect x="73.4378%" y="1061" width="0.1032%" height="15" fill="rgb(244,142,54)" fg:x="225846094025" fg:w="317425872"/><text x="73.6878%" y="1071.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (317,425,872 samples, 0.10%)</title><rect x="73.4378%" y="1045" width="0.1032%" height="15" fill="rgb(243,217,40)" fg:x="225846094025" fg:w="317425872"/><text x="73.6878%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (316,700,763 samples, 0.10%)</title><rect x="73.4380%" y="1029" width="0.1030%" height="15" fill="rgb(207,114,16)" fg:x="225846819134" fg:w="316700763"/><text x="73.6880%" y="1039.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (320,426,793 samples, 0.10%)</title><rect x="73.4378%" y="1077" width="0.1042%" height="15" fill="rgb(224,33,25)" fg:x="225846094025" fg:w="320426793"/><text x="73.6878%" y="1087.50"></text></g><g><title>&lt;core::iter::adapters::filter_map::FilterMap&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (41,047,026 samples, 0.01%)</title><rect x="73.5448%" y="1045" width="0.0133%" height="15" fill="rgb(230,93,54)" fg:x="226175229798" fg:w="41047026"/><text x="73.7948%" y="1055.50"></text></g><g><title>&lt;workspace::dock::PanelButtons as gpui::element::Render&gt;::render (50,835,963 samples, 0.02%)</title><rect x="73.5448%" y="1061" width="0.0165%" height="15" fill="rgb(224,56,24)" fg:x="226175229798" fg:w="50835963"/><text x="73.7948%" y="1071.50"></text></g><g><title>gpui::app::App::update (124,579,065 samples, 0.04%)</title><rect x="73.5626%" y="1061" width="0.0405%" height="15" fill="rgb(235,189,50)" fg:x="226230040234" fg:w="124579065"/><text x="73.8126%" y="1071.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::request_layout (514,217,128 samples, 0.17%)</title><rect x="73.4362%" y="1093" width="0.1672%" height="15" fill="rgb(242,173,8)" fg:x="225841371385" fg:w="514217128"/><text x="73.6862%" y="1103.50"></text></g><g><title>gpui::view::any_view::render (189,067,695 samples, 0.06%)</title><rect x="73.5420%" y="1077" width="0.0615%" height="15" fill="rgb(209,206,10)" fg:x="226166520818" fg:w="189067695"/><text x="73.7920%" y="1087.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (527,937,425 samples, 0.17%)</title><rect x="73.4360%" y="1109" width="0.1717%" height="15" fill="rgb(213,182,44)" fg:x="225840646417" fg:w="527937425"/><text x="73.6860%" y="1119.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (533,296,231 samples, 0.17%)</title><rect x="73.4346%" y="1205" width="0.1734%" height="15" fill="rgb(243,51,15)" fg:x="225836370012" fg:w="533296231"/><text x="73.6846%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (532,205,279 samples, 0.17%)</title><rect x="73.4350%" y="1189" width="0.1731%" height="15" fill="rgb(241,13,14)" fg:x="225837460964" fg:w="532205279"/><text x="73.6850%" y="1199.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (532,205,279 samples, 0.17%)</title><rect x="73.4350%" y="1173" width="0.1731%" height="15" fill="rgb(239,147,24)" fg:x="225837460964" fg:w="532205279"/><text x="73.6850%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (531,155,378 samples, 0.17%)</title><rect x="73.4353%" y="1157" width="0.1727%" height="15" fill="rgb(223,129,16)" fg:x="225838510865" fg:w="531155378"/><text x="73.6853%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (530,033,915 samples, 0.17%)</title><rect x="73.4357%" y="1141" width="0.1723%" height="15" fill="rgb(209,169,13)" fg:x="225839632328" fg:w="530033915"/><text x="73.6857%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (529,019,826 samples, 0.17%)</title><rect x="73.4360%" y="1125" width="0.1720%" height="15" fill="rgb(235,159,41)" fg:x="225840646417" fg:w="529019826"/><text x="73.6860%" y="1135.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (535,098,822 samples, 0.17%)</title><rect x="73.4346%" y="1221" width="0.1740%" height="15" fill="rgb(223,219,48)" fg:x="225836370012" fg:w="535098822"/><text x="73.6846%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (601,904,023 samples, 0.20%)</title><rect x="73.4132%" y="1397" width="0.1957%" height="15" fill="rgb(236,80,13)" fg:x="225770527816" fg:w="601904023"/><text x="73.6632%" y="1407.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (601,904,023 samples, 0.20%)</title><rect x="73.4132%" y="1381" width="0.1957%" height="15" fill="rgb(213,5,6)" fg:x="225770527816" fg:w="601904023"/><text x="73.6632%" y="1391.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (601,904,023 samples, 0.20%)</title><rect x="73.4132%" y="1365" width="0.1957%" height="15" fill="rgb(205,59,21)" fg:x="225770527816" fg:w="601904023"/><text x="73.6632%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (601,904,023 samples, 0.20%)</title><rect x="73.4132%" y="1349" width="0.1957%" height="15" fill="rgb(247,137,35)" fg:x="225770527816" fg:w="601904023"/><text x="73.6632%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (601,904,023 samples, 0.20%)</title><rect x="73.4132%" y="1333" width="0.1957%" height="15" fill="rgb(242,208,28)" fg:x="225770527816" fg:w="601904023"/><text x="73.6632%" y="1343.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (601,904,023 samples, 0.20%)</title><rect x="73.4132%" y="1317" width="0.1957%" height="15" fill="rgb(245,62,25)" fg:x="225770527816" fg:w="601904023"/><text x="73.6632%" y="1327.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (536,061,827 samples, 0.17%)</title><rect x="73.4346%" y="1301" width="0.1743%" height="15" fill="rgb(233,99,54)" fg:x="225836370012" fg:w="536061827"/><text x="73.6846%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (536,061,827 samples, 0.17%)</title><rect x="73.4346%" y="1285" width="0.1743%" height="15" fill="rgb(213,10,37)" fg:x="225836370012" fg:w="536061827"/><text x="73.6846%" y="1295.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (536,061,827 samples, 0.17%)</title><rect x="73.4346%" y="1269" width="0.1743%" height="15" fill="rgb(235,143,30)" fg:x="225836370012" fg:w="536061827"/><text x="73.6846%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (536,061,827 samples, 0.17%)</title><rect x="73.4346%" y="1253" width="0.1743%" height="15" fill="rgb(250,146,33)" fg:x="225836370012" fg:w="536061827"/><text x="73.6846%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (536,061,827 samples, 0.17%)</title><rect x="73.4346%" y="1237" width="0.1743%" height="15" fill="rgb(226,198,42)" fg:x="225836370012" fg:w="536061827"/><text x="73.6846%" y="1247.50"></text></g><g><title>&lt;title_bar::application_menu::ApplicationMenu as gpui::element::Render&gt;::render (39,580,016 samples, 0.01%)</title><rect x="73.6142%" y="965" width="0.0129%" height="15" fill="rgb(222,55,6)" fg:x="226388834442" fg:w="39580016"/><text x="73.8642%" y="975.50"></text></g><g><title>&lt;ui::components::popover_menu::PopoverMenu&lt;M&gt; as gpui::element::Element&gt;::request_layout::_{{closure}} (38,146,075 samples, 0.01%)</title><rect x="73.6284%" y="965" width="0.0124%" height="15" fill="rgb(213,224,31)" fg:x="226432307889" fg:w="38146075"/><text x="73.8784%" y="975.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (35,119,249 samples, 0.01%)</title><rect x="73.6294%" y="949" width="0.0114%" height="15" fill="rgb(226,103,35)" fg:x="226435334715" fg:w="35119249"/><text x="73.8794%" y="959.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (56,822,541 samples, 0.02%)</title><rect x="73.6481%" y="741" width="0.0185%" height="15" fill="rgb(205,66,45)" fg:x="226493049408" fg:w="56822541"/><text x="73.8981%" y="751.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (45,373,104 samples, 0.01%)</title><rect x="73.6519%" y="725" width="0.0148%" height="15" fill="rgb(226,51,42)" fg:x="226504498845" fg:w="45373104"/><text x="73.9019%" y="735.50"></text></g><g><title>&lt;ui::components::popover_menu::PopoverMenu&lt;M&gt; as gpui::element::Element&gt;::request_layout::_{{closure}} (62,962,037 samples, 0.02%)</title><rect x="73.6465%" y="757" width="0.0205%" height="15" fill="rgb(206,69,1)" fg:x="226488142587" fg:w="62962037"/><text x="73.8965%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (74,387,991 samples, 0.02%)</title><rect x="73.6446%" y="805" width="0.0242%" height="15" fill="rgb(213,228,47)" fg:x="226482059225" fg:w="74387991"/><text x="73.8946%" y="815.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (73,258,672 samples, 0.02%)</title><rect x="73.6449%" y="789" width="0.0238%" height="15" fill="rgb(224,204,18)" fg:x="226483188544" fg:w="73258672"/><text x="73.8949%" y="799.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (72,270,277 samples, 0.02%)</title><rect x="73.6452%" y="773" width="0.0235%" height="15" fill="rgb(253,187,47)" fg:x="226484176939" fg:w="72270277"/><text x="73.8952%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (77,248,976 samples, 0.03%)</title><rect x="73.6439%" y="853" width="0.0251%" height="15" fill="rgb(232,61,2)" fg:x="226480039467" fg:w="77248976"/><text x="73.8939%" y="863.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (77,248,976 samples, 0.03%)</title><rect x="73.6439%" y="837" width="0.0251%" height="15" fill="rgb(213,132,35)" fg:x="226480039467" fg:w="77248976"/><text x="73.8939%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (77,248,976 samples, 0.03%)</title><rect x="73.6439%" y="821" width="0.0251%" height="15" fill="rgb(247,33,21)" fg:x="226480039467" fg:w="77248976"/><text x="73.8939%" y="831.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (79,443,270 samples, 0.03%)</title><rect x="73.6435%" y="869" width="0.0258%" height="15" fill="rgb(233,71,46)" fg:x="226478785991" fg:w="79443270"/><text x="73.8935%" y="879.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (80,490,701 samples, 0.03%)</title><rect x="73.6435%" y="885" width="0.0262%" height="15" fill="rgb(222,173,43)" fg:x="226478785991" fg:w="80490701"/><text x="73.8935%" y="895.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (81,660,612 samples, 0.03%)</title><rect x="73.6435%" y="949" width="0.0266%" height="15" fill="rgb(249,218,47)" fg:x="226478785991" fg:w="81660612"/><text x="73.8935%" y="959.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (81,660,612 samples, 0.03%)</title><rect x="73.6435%" y="933" width="0.0266%" height="15" fill="rgb(254,185,48)" fg:x="226478785991" fg:w="81660612"/><text x="73.8935%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (81,660,612 samples, 0.03%)</title><rect x="73.6435%" y="917" width="0.0266%" height="15" fill="rgb(252,165,50)" fg:x="226478785991" fg:w="81660612"/><text x="73.8935%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (81,660,612 samples, 0.03%)</title><rect x="73.6435%" y="901" width="0.0266%" height="15" fill="rgb(206,219,6)" fg:x="226478785991" fg:w="81660612"/><text x="73.8935%" y="911.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (33,232,208 samples, 0.01%)</title><rect x="73.6740%" y="949" width="0.0108%" height="15" fill="rgb(212,212,45)" fg:x="226572561558" fg:w="33232208"/><text x="73.9240%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (33,232,208 samples, 0.01%)</title><rect x="73.6740%" y="933" width="0.0108%" height="15" fill="rgb(221,31,9)" fg:x="226572561558" fg:w="33232208"/><text x="73.9240%" y="943.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,232,208 samples, 0.01%)</title><rect x="73.6740%" y="917" width="0.0108%" height="15" fill="rgb(234,198,39)" fg:x="226572561558" fg:w="33232208"/><text x="73.9240%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (33,232,208 samples, 0.01%)</title><rect x="73.6740%" y="901" width="0.0108%" height="15" fill="rgb(252,145,46)" fg:x="226572561558" fg:w="33232208"/><text x="73.9240%" y="911.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (127,942,213 samples, 0.04%)</title><rect x="73.6435%" y="965" width="0.0416%" height="15" fill="rgb(237,149,0)" fg:x="226478785991" fg:w="127942213"/><text x="73.8935%" y="975.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (222,326,402 samples, 0.07%)</title><rect x="73.6135%" y="981" width="0.0723%" height="15" fill="rgb(229,65,5)" fg:x="226386560215" fg:w="222326402"/><text x="73.8635%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (227,274,571 samples, 0.07%)</title><rect x="73.6125%" y="1061" width="0.0739%" height="15" fill="rgb(235,60,36)" fg:x="226383573136" fg:w="227274571"/><text x="73.8625%" y="1071.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (227,274,571 samples, 0.07%)</title><rect x="73.6125%" y="1045" width="0.0739%" height="15" fill="rgb(222,47,18)" fg:x="226383573136" fg:w="227274571"/><text x="73.8625%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (227,274,571 samples, 0.07%)</title><rect x="73.6125%" y="1029" width="0.0739%" height="15" fill="rgb(235,114,22)" fg:x="226383573136" fg:w="227274571"/><text x="73.8625%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (226,198,391 samples, 0.07%)</title><rect x="73.6129%" y="1013" width="0.0736%" height="15" fill="rgb(209,167,11)" fg:x="226384649316" fg:w="226198391"/><text x="73.8629%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (224,287,492 samples, 0.07%)</title><rect x="73.6135%" y="997" width="0.0729%" height="15" fill="rgb(251,73,18)" fg:x="226386560215" fg:w="224287492"/><text x="73.8635%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (231,307,979 samples, 0.08%)</title><rect x="73.6125%" y="1093" width="0.0752%" height="15" fill="rgb(217,60,17)" fg:x="226383573136" fg:w="231307979"/><text x="73.8625%" y="1103.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (231,307,979 samples, 0.08%)</title><rect x="73.6125%" y="1077" width="0.0752%" height="15" fill="rgb(224,36,37)" fg:x="226383573136" fg:w="231307979"/><text x="73.8625%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (234,736,041 samples, 0.08%)</title><rect x="73.6118%" y="1253" width="0.0763%" height="15" fill="rgb(211,21,32)" fg:x="226381316378" fg:w="234736041"/><text x="73.8618%" y="1263.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (234,736,041 samples, 0.08%)</title><rect x="73.6118%" y="1237" width="0.0763%" height="15" fill="rgb(231,55,48)" fg:x="226381316378" fg:w="234736041"/><text x="73.8618%" y="1247.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (234,736,041 samples, 0.08%)</title><rect x="73.6118%" y="1221" width="0.0763%" height="15" fill="rgb(227,42,18)" fg:x="226381316378" fg:w="234736041"/><text x="73.8618%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (234,736,041 samples, 0.08%)</title><rect x="73.6118%" y="1205" width="0.0763%" height="15" fill="rgb(217,2,27)" fg:x="226381316378" fg:w="234736041"/><text x="73.8618%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (234,736,041 samples, 0.08%)</title><rect x="73.6118%" y="1189" width="0.0763%" height="15" fill="rgb(251,138,23)" fg:x="226381316378" fg:w="234736041"/><text x="73.8618%" y="1199.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (234,736,041 samples, 0.08%)</title><rect x="73.6118%" y="1173" width="0.0763%" height="15" fill="rgb(226,184,11)" fg:x="226381316378" fg:w="234736041"/><text x="73.8618%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (234,736,041 samples, 0.08%)</title><rect x="73.6118%" y="1157" width="0.0763%" height="15" fill="rgb(242,142,12)" fg:x="226381316378" fg:w="234736041"/><text x="73.8618%" y="1167.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (234,736,041 samples, 0.08%)</title><rect x="73.6118%" y="1141" width="0.0763%" height="15" fill="rgb(234,187,18)" fg:x="226381316378" fg:w="234736041"/><text x="73.8618%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (234,736,041 samples, 0.08%)</title><rect x="73.6118%" y="1125" width="0.0763%" height="15" fill="rgb(237,44,42)" fg:x="226381316378" fg:w="234736041"/><text x="73.8618%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (233,747,235 samples, 0.08%)</title><rect x="73.6121%" y="1109" width="0.0760%" height="15" fill="rgb(211,90,23)" fg:x="226382305184" fg:w="233747235"/><text x="73.8621%" y="1119.50"></text></g><g><title>&lt;title_bar::system_window_tabs::SystemWindowTabs as gpui::element::Render&gt;::render (35,865,673 samples, 0.01%)</title><rect x="73.6881%" y="1237" width="0.0117%" height="15" fill="rgb(207,81,18)" fg:x="226616052419" fg:w="35865673"/><text x="73.9381%" y="1247.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (283,795,564 samples, 0.09%)</title><rect x="73.6118%" y="1269" width="0.0923%" height="15" fill="rgb(222,107,28)" fg:x="226381316378" fg:w="283795564"/><text x="73.8618%" y="1279.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,059,523 samples, 0.02%)</title><rect x="73.6881%" y="1253" width="0.0160%" height="15" fill="rgb(237,83,52)" fg:x="226616052419" fg:w="49059523"/><text x="73.9381%" y="1263.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (286,981,774 samples, 0.09%)</title><rect x="73.6111%" y="1365" width="0.0933%" height="15" fill="rgb(208,67,11)" fg:x="226379191290" fg:w="286981774"/><text x="73.8611%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (286,981,774 samples, 0.09%)</title><rect x="73.6111%" y="1349" width="0.0933%" height="15" fill="rgb(249,157,49)" fg:x="226379191290" fg:w="286981774"/><text x="73.8611%" y="1359.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (286,981,774 samples, 0.09%)</title><rect x="73.6111%" y="1333" width="0.0933%" height="15" fill="rgb(243,200,1)" fg:x="226379191290" fg:w="286981774"/><text x="73.8611%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (286,981,774 samples, 0.09%)</title><rect x="73.6111%" y="1317" width="0.0933%" height="15" fill="rgb(225,162,37)" fg:x="226379191290" fg:w="286981774"/><text x="73.8611%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (286,036,727 samples, 0.09%)</title><rect x="73.6114%" y="1301" width="0.0930%" height="15" fill="rgb(242,92,13)" fg:x="226380136337" fg:w="286036727"/><text x="73.8614%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (286,036,727 samples, 0.09%)</title><rect x="73.6114%" y="1285" width="0.0930%" height="15" fill="rgb(220,43,36)" fg:x="226380136337" fg:w="286036727"/><text x="73.8614%" y="1295.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (294,879,299 samples, 0.10%)</title><rect x="73.6089%" y="1381" width="0.0959%" height="15" fill="rgb(213,165,48)" fg:x="226372431839" fg:w="294879299"/><text x="73.8589%" y="1391.50"></text></g><g><title>&lt;title_bar::TitleBar as gpui::element::Render&gt;::render (45,252,433 samples, 0.01%)</title><rect x="73.7048%" y="1365" width="0.0147%" height="15" fill="rgb(227,200,9)" fg:x="226667311138" fg:w="45252433"/><text x="73.9548%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (958,361,214 samples, 0.31%)</title><rect x="73.4114%" y="1429" width="0.3116%" height="15" fill="rgb(221,222,28)" fg:x="225764979302" fg:w="958361214"/><text x="73.6614%" y="1439.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (955,257,830 samples, 0.31%)</title><rect x="73.4124%" y="1413" width="0.3106%" height="15" fill="rgb(223,142,26)" fg:x="225768082686" fg:w="955257830"/><text x="73.6624%" y="1423.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::request_layout (350,908,677 samples, 0.11%)</title><rect x="73.6089%" y="1397" width="0.1141%" height="15" fill="rgb(243,46,9)" fg:x="226372431839" fg:w="350908677"/><text x="73.8589%" y="1407.50"></text></g><g><title>gpui::view::any_view::render (56,029,378 samples, 0.02%)</title><rect x="73.7048%" y="1381" width="0.0182%" height="15" fill="rgb(250,56,11)" fg:x="226667311138" fg:w="56029378"/><text x="73.9548%" y="1391.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (963,168,957 samples, 0.31%)</title><rect x="73.4110%" y="1509" width="0.3132%" height="15" fill="rgb(229,113,5)" fg:x="225763722463" fg:w="963168957"/><text x="73.6610%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (963,168,957 samples, 0.31%)</title><rect x="73.4110%" y="1493" width="0.3132%" height="15" fill="rgb(244,108,28)" fg:x="225763722463" fg:w="963168957"/><text x="73.6610%" y="1503.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (961,912,118 samples, 0.31%)</title><rect x="73.4114%" y="1477" width="0.3128%" height="15" fill="rgb(242,119,50)" fg:x="225764979302" fg:w="961912118"/><text x="73.6614%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (961,912,118 samples, 0.31%)</title><rect x="73.4114%" y="1461" width="0.3128%" height="15" fill="rgb(224,164,23)" fg:x="225764979302" fg:w="961912118"/><text x="73.6614%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (961,912,118 samples, 0.31%)</title><rect x="73.4114%" y="1445" width="0.3128%" height="15" fill="rgb(214,227,44)" fg:x="225764979302" fg:w="961912118"/><text x="73.6614%" y="1455.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (964,161,262 samples, 0.31%)</title><rect x="73.4110%" y="1605" width="0.3135%" height="15" fill="rgb(238,202,4)" fg:x="225763722463" fg:w="964161262"/><text x="73.6610%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (964,161,262 samples, 0.31%)</title><rect x="73.4110%" y="1589" width="0.3135%" height="15" fill="rgb(213,190,30)" fg:x="225763722463" fg:w="964161262"/><text x="73.6610%" y="1599.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (964,161,262 samples, 0.31%)</title><rect x="73.4110%" y="1573" width="0.3135%" height="15" fill="rgb(239,15,2)" fg:x="225763722463" fg:w="964161262"/><text x="73.6610%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (964,161,262 samples, 0.31%)</title><rect x="73.4110%" y="1557" width="0.3135%" height="15" fill="rgb(249,229,4)" fg:x="225763722463" fg:w="964161262"/><text x="73.6610%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (964,161,262 samples, 0.31%)</title><rect x="73.4110%" y="1541" width="0.3135%" height="15" fill="rgb(239,75,44)" fg:x="225763722463" fg:w="964161262"/><text x="73.6610%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (964,161,262 samples, 0.31%)</title><rect x="73.4110%" y="1525" width="0.3135%" height="15" fill="rgb(251,206,23)" fg:x="225763722463" fg:w="964161262"/><text x="73.6610%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (966,504,344 samples, 0.31%)</title><rect x="73.4105%" y="1621" width="0.3143%" height="15" fill="rgb(215,208,0)" fg:x="225762402183" fg:w="966504344"/><text x="73.6605%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (970,238,571 samples, 0.32%)</title><rect x="73.4105%" y="1637" width="0.3155%" height="15" fill="rgb(230,75,50)" fg:x="225762402183" fg:w="970238571"/><text x="73.6605%" y="1647.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (976,494,572 samples, 0.32%)</title><rect x="73.4095%" y="1701" width="0.3175%" height="15" fill="rgb(246,180,39)" fg:x="225759324550" fg:w="976494572"/><text x="73.6595%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (976,494,572 samples, 0.32%)</title><rect x="73.4095%" y="1685" width="0.3175%" height="15" fill="rgb(249,175,24)" fg:x="225759324550" fg:w="976494572"/><text x="73.6595%" y="1695.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (975,608,782 samples, 0.32%)</title><rect x="73.4098%" y="1669" width="0.3172%" height="15" fill="rgb(247,176,22)" fg:x="225760210340" fg:w="975608782"/><text x="73.6598%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (974,404,306 samples, 0.32%)</title><rect x="73.4102%" y="1653" width="0.3168%" height="15" fill="rgb(241,100,24)" fg:x="225761414816" fg:w="974404306"/><text x="73.6602%" y="1663.50"></text></g><g><title>__memmove_avx512_unaligned_erms (100,072,711 samples, 0.03%)</title><rect x="73.7323%" y="1669" width="0.0325%" height="15" fill="rgb(233,4,35)" fg:x="226751847526" fg:w="100072711"/><text x="73.9823%" y="1679.50"></text></g><g><title>gpui::app::context::Context&lt;T&gt;::entity (31,524,662 samples, 0.01%)</title><rect x="73.7864%" y="1653" width="0.0103%" height="15" fill="rgb(211,164,46)" fg:x="226918409870" fg:w="31524662"/><text x="74.0364%" y="1663.50"></text></g><g><title>&lt;gpui::app::entity_map::AnyEntity as core::ops::drop::Drop&gt;::drop (44,300,450 samples, 0.01%)</title><rect x="73.8029%" y="1637" width="0.0144%" height="15" fill="rgb(242,99,53)" fg:x="226969135607" fg:w="44300450"/><text x="74.0529%" y="1647.50"></text></g><g><title>gpui::app::context::Context&lt;T&gt;::entity (103,767,773 samples, 0.03%)</title><rect x="73.8215%" y="1637" width="0.0337%" height="15" fill="rgb(243,45,33)" fg:x="227026071124" fg:w="103767773"/><text x="74.0715%" y="1647.50"></text></g><g><title>gpui::app::entity_map::AnyWeakEntity::upgrade (33,236,025 samples, 0.01%)</title><rect x="73.8444%" y="1621" width="0.0108%" height="15" fill="rgb(217,55,21)" fg:x="227096602872" fg:w="33236025"/><text x="74.0944%" y="1631.50"></text></g><g><title>workspace::Workspace::register_action::_{{closure}} (180,671,266 samples, 0.06%)</title><rect x="73.7981%" y="1653" width="0.0587%" height="15" fill="rgb(245,145,46)" fg:x="226954145417" fg:w="180671266"/><text x="74.0481%" y="1663.50"></text></g><g><title>workspace::Workspace::actions (284,540,717 samples, 0.09%)</title><rect x="73.7695%" y="1669" width="0.0925%" height="15" fill="rgb(215,112,45)" fg:x="226866337964" fg:w="284540717"/><text x="74.0195%" y="1679.50"></text></g><g><title>&lt;workspace::Workspace as gpui::element::Render&gt;::render (418,581,194 samples, 0.14%)</title><rect x="73.7285%" y="1685" width="0.1361%" height="15" fill="rgb(228,104,16)" fg:x="226740169161" fg:w="418581194"/><text x="73.9785%" y="1695.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::request_layout (1,411,771,351 samples, 0.46%)</title><rect x="73.4089%" y="1717" width="0.4591%" height="15" fill="rgb(239,186,38)" fg:x="225757245673" fg:w="1411771351"/><text x="73.6589%" y="1727.50"></text></g><g><title>gpui::view::any_view::render (433,197,902 samples, 0.14%)</title><rect x="73.7271%" y="1701" width="0.1409%" height="15" fill="rgb(228,38,35)" fg:x="226735819122" fg:w="433197902"/><text x="73.9771%" y="1711.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (1,414,033,396 samples, 0.46%)</title><rect x="73.4085%" y="1733" width="0.4598%" height="15" fill="rgb(251,42,40)" fg:x="225756127935" fg:w="1414033396"/><text x="73.6585%" y="1743.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (38,796,842 samples, 0.01%)</title><rect x="73.9281%" y="1493" width="0.0126%" height="15" fill="rgb(210,51,19)" fg:x="227354183929" fg:w="38796842"/><text x="74.1781%" y="1503.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (34,369,709 samples, 0.01%)</title><rect x="73.9296%" y="1477" width="0.0112%" height="15" fill="rgb(236,94,42)" fg:x="227358611062" fg:w="34369709"/><text x="74.1796%" y="1487.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (101,253,162 samples, 0.03%)</title><rect x="73.9544%" y="1477" width="0.0329%" height="15" fill="rgb(239,167,16)" fg:x="227434807403" fg:w="101253162"/><text x="74.2044%" y="1487.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (58,593,441 samples, 0.02%)</title><rect x="73.9682%" y="1461" width="0.0191%" height="15" fill="rgb(252,175,31)" fg:x="227477467124" fg:w="58593441"/><text x="74.2182%" y="1471.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (50,182,223 samples, 0.02%)</title><rect x="73.9710%" y="1445" width="0.0163%" height="15" fill="rgb(206,166,30)" fg:x="227485878342" fg:w="50182223"/><text x="74.2210%" y="1455.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (33,979,529 samples, 0.01%)</title><rect x="73.9762%" y="1429" width="0.0110%" height="15" fill="rgb(206,209,37)" fg:x="227502081036" fg:w="33979529"/><text x="74.2262%" y="1439.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (198,380,481 samples, 0.06%)</title><rect x="73.9234%" y="1509" width="0.0645%" height="15" fill="rgb(226,91,4)" fg:x="227339676757" fg:w="198380481"/><text x="74.1734%" y="1519.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (141,584,733 samples, 0.05%)</title><rect x="73.9419%" y="1493" width="0.0460%" height="15" fill="rgb(222,167,0)" fg:x="227396472505" fg:w="141584733"/><text x="74.1919%" y="1503.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (282,919,175 samples, 0.09%)</title><rect x="73.8973%" y="1541" width="0.0920%" height="15" fill="rgb(211,70,14)" fg:x="227259297686" fg:w="282919175"/><text x="74.1473%" y="1551.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (246,842,924 samples, 0.08%)</title><rect x="73.9090%" y="1525" width="0.0803%" height="15" fill="rgb(214,84,42)" fg:x="227295373937" fg:w="246842924"/><text x="74.1590%" y="1535.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (316,643,200 samples, 0.10%)</title><rect x="73.8870%" y="1573" width="0.1030%" height="15" fill="rgb(235,157,37)" fg:x="227227770704" fg:w="316643200"/><text x="74.1370%" y="1583.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (315,529,291 samples, 0.10%)</title><rect x="73.8874%" y="1557" width="0.1026%" height="15" fill="rgb(225,13,6)" fg:x="227228884613" fg:w="315529291"/><text x="74.1374%" y="1567.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (324,326,719 samples, 0.11%)</title><rect x="73.8849%" y="1605" width="0.1055%" height="15" fill="rgb(205,202,1)" fg:x="227221107052" fg:w="324326719"/><text x="74.1349%" y="1615.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (322,600,007 samples, 0.10%)</title><rect x="73.8854%" y="1589" width="0.1049%" height="15" fill="rgb(232,195,26)" fg:x="227222833764" fg:w="322600007"/><text x="74.1354%" y="1599.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (345,208,267 samples, 0.11%)</title><rect x="73.8784%" y="1637" width="0.1123%" height="15" fill="rgb(208,102,26)" fg:x="227201128416" fg:w="345208267"/><text x="74.1284%" y="1647.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (345,208,267 samples, 0.11%)</title><rect x="73.8784%" y="1621" width="0.1123%" height="15" fill="rgb(215,41,39)" fg:x="227201128416" fg:w="345208267"/><text x="74.1284%" y="1631.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (31,516,083 samples, 0.01%)</title><rect x="74.0052%" y="1493" width="0.0102%" height="15" fill="rgb(247,139,11)" fg:x="227591006889" fg:w="31516083"/><text x="74.2552%" y="1503.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (72,354,264 samples, 0.02%)</title><rect x="73.9929%" y="1557" width="0.0235%" height="15" fill="rgb(243,99,6)" fg:x="227553348623" fg:w="72354264"/><text x="74.2429%" y="1567.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (72,354,264 samples, 0.02%)</title><rect x="73.9929%" y="1541" width="0.0235%" height="15" fill="rgb(230,168,48)" fg:x="227553348623" fg:w="72354264"/><text x="74.2429%" y="1551.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (67,304,665 samples, 0.02%)</title><rect x="73.9945%" y="1525" width="0.0219%" height="15" fill="rgb(238,227,13)" fg:x="227558398222" fg:w="67304665"/><text x="74.2445%" y="1535.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (57,136,820 samples, 0.02%)</title><rect x="73.9979%" y="1509" width="0.0186%" height="15" fill="rgb(209,109,13)" fg:x="227568566067" fg:w="57136820"/><text x="74.2479%" y="1519.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (78,381,220 samples, 0.03%)</title><rect x="73.9915%" y="1589" width="0.0255%" height="15" fill="rgb(228,195,1)" fg:x="227548897623" fg:w="78381220"/><text x="74.2415%" y="1599.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (78,381,220 samples, 0.03%)</title><rect x="73.9915%" y="1573" width="0.0255%" height="15" fill="rgb(230,218,0)" fg:x="227548897623" fg:w="78381220"/><text x="74.2415%" y="1583.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (48,610,360 samples, 0.02%)</title><rect x="74.0420%" y="1477" width="0.0158%" height="15" fill="rgb(206,1,45)" fg:x="227704440283" fg:w="48610360"/><text x="74.2920%" y="1487.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (126,520,979 samples, 0.04%)</title><rect x="74.0189%" y="1541" width="0.0411%" height="15" fill="rgb(209,124,26)" fg:x="227633437796" fg:w="126520979"/><text x="74.2689%" y="1551.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (125,527,431 samples, 0.04%)</title><rect x="74.0193%" y="1525" width="0.0408%" height="15" fill="rgb(220,59,8)" fg:x="227634431344" fg:w="125527431"/><text x="74.2693%" y="1535.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (108,776,930 samples, 0.04%)</title><rect x="74.0247%" y="1509" width="0.0354%" height="15" fill="rgb(251,41,37)" fg:x="227651181845" fg:w="108776930"/><text x="74.2747%" y="1519.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (84,159,340 samples, 0.03%)</title><rect x="74.0327%" y="1493" width="0.0274%" height="15" fill="rgb(239,152,21)" fg:x="227675799435" fg:w="84159340"/><text x="74.2827%" y="1503.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (57,680,960 samples, 0.02%)</title><rect x="74.0783%" y="1429" width="0.0188%" height="15" fill="rgb(226,32,1)" fg:x="227815975220" fg:w="57680960"/><text x="74.3283%" y="1439.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (42,601,287 samples, 0.01%)</title><rect x="74.0832%" y="1413" width="0.0139%" height="15" fill="rgb(230,154,36)" fg:x="227831054893" fg:w="42601287"/><text x="74.3332%" y="1423.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (688,617,511 samples, 0.22%)</title><rect x="73.8735%" y="1685" width="0.2239%" height="15" fill="rgb(208,228,43)" fg:x="227186130878" fg:w="688617511"/><text x="74.1235%" y="1695.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (686,195,567 samples, 0.22%)</title><rect x="73.8743%" y="1669" width="0.2231%" height="15" fill="rgb(214,203,3)" fg:x="227188552822" fg:w="686195567"/><text x="74.1243%" y="1679.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (684,208,676 samples, 0.22%)</title><rect x="73.8749%" y="1653" width="0.2225%" height="15" fill="rgb(207,149,29)" fg:x="227190539713" fg:w="684208676"/><text x="74.1249%" y="1663.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (327,454,452 samples, 0.11%)</title><rect x="73.9909%" y="1637" width="0.1065%" height="15" fill="rgb(250,105,7)" fg:x="227547293937" fg:w="327454452"/><text x="74.2409%" y="1647.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (327,454,452 samples, 0.11%)</title><rect x="73.9909%" y="1621" width="0.1065%" height="15" fill="rgb(232,222,16)" fg:x="227547293937" fg:w="327454452"/><text x="74.2409%" y="1631.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (327,454,452 samples, 0.11%)</title><rect x="73.9909%" y="1605" width="0.1065%" height="15" fill="rgb(209,32,24)" fg:x="227547293937" fg:w="327454452"/><text x="74.2409%" y="1615.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (247,469,546 samples, 0.08%)</title><rect x="74.0169%" y="1589" width="0.0805%" height="15" fill="rgb(225,13,6)" fg:x="227627278843" fg:w="247469546"/><text x="74.2669%" y="1599.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (246,299,382 samples, 0.08%)</title><rect x="74.0173%" y="1573" width="0.0801%" height="15" fill="rgb(245,226,26)" fg:x="227628449007" fg:w="246299382"/><text x="74.2673%" y="1583.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (246,299,382 samples, 0.08%)</title><rect x="74.0173%" y="1557" width="0.0801%" height="15" fill="rgb(229,178,27)" fg:x="227628449007" fg:w="246299382"/><text x="74.2673%" y="1567.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (114,789,614 samples, 0.04%)</title><rect x="74.0601%" y="1541" width="0.0373%" height="15" fill="rgb(205,227,28)" fg:x="227759958775" fg:w="114789614"/><text x="74.3101%" y="1551.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (114,789,614 samples, 0.04%)</title><rect x="74.0601%" y="1525" width="0.0373%" height="15" fill="rgb(210,191,45)" fg:x="227759958775" fg:w="114789614"/><text x="74.3101%" y="1535.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (113,896,864 samples, 0.04%)</title><rect x="74.0604%" y="1509" width="0.0370%" height="15" fill="rgb(206,124,16)" fg:x="227760851525" fg:w="113896864"/><text x="74.3104%" y="1519.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (78,278,688 samples, 0.03%)</title><rect x="74.0720%" y="1493" width="0.0255%" height="15" fill="rgb(210,162,0)" fg:x="227796469701" fg:w="78278688"/><text x="74.3220%" y="1503.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (78,278,688 samples, 0.03%)</title><rect x="74.0720%" y="1477" width="0.0255%" height="15" fill="rgb(211,54,38)" fg:x="227796469701" fg:w="78278688"/><text x="74.3220%" y="1487.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (75,302,878 samples, 0.02%)</title><rect x="74.0729%" y="1461" width="0.0245%" height="15" fill="rgb(248,192,3)" fg:x="227799445511" fg:w="75302878"/><text x="74.3229%" y="1471.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (60,870,952 samples, 0.02%)</title><rect x="74.0776%" y="1445" width="0.0198%" height="15" fill="rgb(233,187,18)" fg:x="227813877437" fg:w="60870952"/><text x="74.3276%" y="1455.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (697,772,844 samples, 0.23%)</title><rect x="73.8709%" y="1701" width="0.2269%" height="15" fill="rgb(237,208,14)" fg:x="227178214532" fg:w="697772844"/><text x="74.1209%" y="1711.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (2,140,175,045 samples, 0.70%)</title><rect x="73.4075%" y="1749" width="0.6959%" height="15" fill="rgb(212,77,1)" fg:x="225752934965" fg:w="2140175045"/><text x="73.6575%" y="1759.50"></text></g><g><title>gpui::window::Window::compute_layout (720,709,309 samples, 0.23%)</title><rect x="73.8690%" y="1733" width="0.2344%" height="15" fill="rgb(210,163,22)" fg:x="227172400701" fg:w="720709309"/><text x="74.1190%" y="1743.50"></text></g><g><title>stacksafe::internal::with_protected::_{{closure}} (718,550,729 samples, 0.23%)</title><rect x="73.8697%" y="1717" width="0.2336%" height="15" fill="rgb(250,58,28)" fg:x="227174559281" fg:w="718550729"/><text x="74.1197%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,220,221 samples, 0.01%)</title><rect x="74.1199%" y="773" width="0.0102%" height="15" fill="rgb(254,28,41)" fg:x="227943835392" fg:w="31220221"/><text x="74.3699%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,220,221 samples, 0.01%)</title><rect x="74.1199%" y="757" width="0.0102%" height="15" fill="rgb(237,162,36)" fg:x="227943835392" fg:w="31220221"/><text x="74.3699%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (35,959,929 samples, 0.01%)</title><rect x="74.1187%" y="789" width="0.0117%" height="15" fill="rgb(232,56,6)" fg:x="227940252414" fg:w="35959929"/><text x="74.3687%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (46,367,895 samples, 0.02%)</title><rect x="74.1183%" y="821" width="0.0151%" height="15" fill="rgb(216,127,42)" fg:x="227939022321" fg:w="46367895"/><text x="74.3683%" y="831.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,367,895 samples, 0.02%)</title><rect x="74.1183%" y="805" width="0.0151%" height="15" fill="rgb(241,69,15)" fg:x="227939022321" fg:w="46367895"/><text x="74.3683%" y="815.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (51,838,776 samples, 0.02%)</title><rect x="74.1172%" y="837" width="0.0169%" height="15" fill="rgb(227,180,19)" fg:x="227935631937" fg:w="51838776"/><text x="74.3672%" y="847.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (84,828,868 samples, 0.03%)</title><rect x="74.1162%" y="853" width="0.0276%" height="15" fill="rgb(231,188,29)" fg:x="227932605439" fg:w="84828868"/><text x="74.3662%" y="863.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (120,425,342 samples, 0.04%)</title><rect x="74.1162%" y="869" width="0.0392%" height="15" fill="rgb(224,176,27)" fg:x="227932605439" fg:w="120425342"/><text x="74.3662%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (142,360,047 samples, 0.05%)</title><rect x="74.1148%" y="885" width="0.0463%" height="15" fill="rgb(249,214,19)" fg:x="227928118826" fg:w="142360047"/><text x="74.3648%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (156,629,770 samples, 0.05%)</title><rect x="74.1112%" y="949" width="0.0509%" height="15" fill="rgb(240,0,4)" fg:x="227917105286" fg:w="156629770"/><text x="74.3612%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (153,630,387 samples, 0.05%)</title><rect x="74.1122%" y="933" width="0.0500%" height="15" fill="rgb(233,28,41)" fg:x="227920104669" fg:w="153630387"/><text x="74.3622%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (153,630,387 samples, 0.05%)</title><rect x="74.1122%" y="917" width="0.0500%" height="15" fill="rgb(220,90,51)" fg:x="227920104669" fg:w="153630387"/><text x="74.3622%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (146,865,344 samples, 0.05%)</title><rect x="74.1144%" y="901" width="0.0478%" height="15" fill="rgb(250,52,22)" fg:x="227926869712" fg:w="146865344"/><text x="74.3644%" y="911.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (161,035,849 samples, 0.05%)</title><rect x="74.1112%" y="981" width="0.0524%" height="15" fill="rgb(231,152,36)" fg:x="227917105286" fg:w="161035849"/><text x="74.3612%" y="991.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (161,035,849 samples, 0.05%)</title><rect x="74.1112%" y="965" width="0.0524%" height="15" fill="rgb(250,218,4)" fg:x="227917105286" fg:w="161035849"/><text x="74.3612%" y="975.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (163,184,173 samples, 0.05%)</title><rect x="74.1108%" y="1013" width="0.0531%" height="15" fill="rgb(210,38,21)" fg:x="227915941221" fg:w="163184173"/><text x="74.3608%" y="1023.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (163,184,173 samples, 0.05%)</title><rect x="74.1108%" y="997" width="0.0531%" height="15" fill="rgb(230,75,13)" fg:x="227915941221" fg:w="163184173"/><text x="74.3608%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (167,326,281 samples, 0.05%)</title><rect x="74.1098%" y="1093" width="0.0544%" height="15" fill="rgb(250,68,53)" fg:x="227912860219" fg:w="167326281"/><text x="74.3598%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (167,326,281 samples, 0.05%)</title><rect x="74.1098%" y="1077" width="0.0544%" height="15" fill="rgb(250,210,16)" fg:x="227912860219" fg:w="167326281"/><text x="74.3598%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (167,326,281 samples, 0.05%)</title><rect x="74.1098%" y="1061" width="0.0544%" height="15" fill="rgb(240,132,5)" fg:x="227912860219" fg:w="167326281"/><text x="74.3598%" y="1071.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (166,383,356 samples, 0.05%)</title><rect x="74.1101%" y="1045" width="0.0541%" height="15" fill="rgb(222,148,48)" fg:x="227913803144" fg:w="166383356"/><text x="74.3601%" y="1055.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (166,383,356 samples, 0.05%)</title><rect x="74.1101%" y="1029" width="0.0541%" height="15" fill="rgb(247,181,24)" fg:x="227913803144" fg:w="166383356"/><text x="74.3601%" y="1039.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (176,858,871 samples, 0.06%)</title><rect x="74.1072%" y="1253" width="0.0575%" height="15" fill="rgb(239,5,31)" fg:x="227904823553" fg:w="176858871"/><text x="74.3572%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (176,858,871 samples, 0.06%)</title><rect x="74.1072%" y="1237" width="0.0575%" height="15" fill="rgb(241,152,38)" fg:x="227904823553" fg:w="176858871"/><text x="74.3572%" y="1247.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (176,858,871 samples, 0.06%)</title><rect x="74.1072%" y="1221" width="0.0575%" height="15" fill="rgb(246,200,37)" fg:x="227904823553" fg:w="176858871"/><text x="74.3572%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (175,671,200 samples, 0.06%)</title><rect x="74.1076%" y="1205" width="0.0571%" height="15" fill="rgb(243,210,26)" fg:x="227906011224" fg:w="175671200"/><text x="74.3576%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (172,246,391 samples, 0.06%)</title><rect x="74.1087%" y="1189" width="0.0560%" height="15" fill="rgb(222,22,22)" fg:x="227909436033" fg:w="172246391"/><text x="74.3587%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (172,246,391 samples, 0.06%)</title><rect x="74.1087%" y="1173" width="0.0560%" height="15" fill="rgb(208,129,28)" fg:x="227909436033" fg:w="172246391"/><text x="74.3587%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (172,246,391 samples, 0.06%)</title><rect x="74.1087%" y="1157" width="0.0560%" height="15" fill="rgb(254,169,28)" fg:x="227909436033" fg:w="172246391"/><text x="74.3587%" y="1167.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (171,037,740 samples, 0.06%)</title><rect x="74.1091%" y="1141" width="0.0556%" height="15" fill="rgb(225,45,17)" fg:x="227910644684" fg:w="171037740"/><text x="74.3591%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (169,794,176 samples, 0.06%)</title><rect x="74.1095%" y="1125" width="0.0552%" height="15" fill="rgb(232,199,2)" fg:x="227911888248" fg:w="169794176"/><text x="74.3595%" y="1135.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (169,794,176 samples, 0.06%)</title><rect x="74.1095%" y="1109" width="0.0552%" height="15" fill="rgb(235,33,40)" fg:x="227911888248" fg:w="169794176"/><text x="74.3595%" y="1119.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::request_layout (36,584,620 samples, 0.01%)</title><rect x="74.1823%" y="213" width="0.0119%" height="15" fill="rgb(237,89,50)" fg:x="228135868214" fg:w="36584620"/><text x="74.4323%" y="223.50"></text></g><g><title>gpui::elements::uniform_list::UniformList::measure_item (32,874,920 samples, 0.01%)</title><rect x="74.1835%" y="197" width="0.0107%" height="15" fill="rgb(238,126,5)" fg:x="228139577914" fg:w="32874920"/><text x="74.4335%" y="207.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (81,022,313 samples, 0.03%)</title><rect x="74.1729%" y="229" width="0.0263%" height="15" fill="rgb(247,214,42)" fg:x="228107026687" fg:w="81022313"/><text x="74.4229%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (83,077,578 samples, 0.03%)</title><rect x="74.1726%" y="309" width="0.0270%" height="15" fill="rgb(238,60,45)" fg:x="228105994538" fg:w="83077578"/><text x="74.4226%" y="319.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (83,077,578 samples, 0.03%)</title><rect x="74.1726%" y="293" width="0.0270%" height="15" fill="rgb(225,69,44)" fg:x="228105994538" fg:w="83077578"/><text x="74.4226%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (83,077,578 samples, 0.03%)</title><rect x="74.1726%" y="277" width="0.0270%" height="15" fill="rgb(241,13,44)" fg:x="228105994538" fg:w="83077578"/><text x="74.4226%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (83,077,578 samples, 0.03%)</title><rect x="74.1726%" y="261" width="0.0270%" height="15" fill="rgb(227,121,22)" fg:x="228105994538" fg:w="83077578"/><text x="74.4226%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (83,077,578 samples, 0.03%)</title><rect x="74.1726%" y="245" width="0.0270%" height="15" fill="rgb(231,160,23)" fg:x="228105994538" fg:w="83077578"/><text x="74.4226%" y="255.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (123,309,520 samples, 0.04%)</title><rect x="74.1679%" y="629" width="0.0401%" height="15" fill="rgb(250,179,43)" fg:x="228091550182" fg:w="123309520"/><text x="74.4179%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="613" width="0.0394%" height="15" fill="rgb(233,54,46)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="623.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="597" width="0.0394%" height="15" fill="rgb(247,120,42)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="581" width="0.0394%" height="15" fill="rgb(221,219,12)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="565" width="0.0394%" height="15" fill="rgb(211,126,8)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="549" width="0.0394%" height="15" fill="rgb(218,154,33)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="559.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="533" width="0.0394%" height="15" fill="rgb(212,199,16)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="543.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="517" width="0.0394%" height="15" fill="rgb(236,215,46)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="501" width="0.0394%" height="15" fill="rgb(232,32,22)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="511.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="485" width="0.0394%" height="15" fill="rgb(234,79,15)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="469" width="0.0394%" height="15" fill="rgb(235,187,47)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="453" width="0.0394%" height="15" fill="rgb(244,69,37)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="437" width="0.0394%" height="15" fill="rgb(249,140,25)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="447.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="421" width="0.0394%" height="15" fill="rgb(213,69,8)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="405" width="0.0394%" height="15" fill="rgb(220,136,2)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="415.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (121,295,992 samples, 0.04%)</title><rect x="74.1686%" y="389" width="0.0394%" height="15" fill="rgb(237,50,36)" fg:x="228093563710" fg:w="121295992"/><text x="74.4186%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (119,137,027 samples, 0.04%)</title><rect x="74.1693%" y="373" width="0.0387%" height="15" fill="rgb(226,18,11)" fg:x="228095722675" fg:w="119137027"/><text x="74.4193%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (118,154,137 samples, 0.04%)</title><rect x="74.1696%" y="357" width="0.0384%" height="15" fill="rgb(243,156,2)" fg:x="228096705565" fg:w="118154137"/><text x="74.4196%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (118,154,137 samples, 0.04%)</title><rect x="74.1696%" y="341" width="0.0384%" height="15" fill="rgb(218,8,34)" fg:x="228096705565" fg:w="118154137"/><text x="74.4196%" y="351.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (116,959,411 samples, 0.04%)</title><rect x="74.1700%" y="325" width="0.0380%" height="15" fill="rgb(250,94,35)" fg:x="228097900291" fg:w="116959411"/><text x="74.4200%" y="335.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (60,931,052 samples, 0.02%)</title><rect x="74.2087%" y="565" width="0.0198%" height="15" fill="rgb(229,127,21)" fg:x="228217070864" fg:w="60931052"/><text x="74.4587%" y="575.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (60,931,052 samples, 0.02%)</title><rect x="74.2087%" y="549" width="0.0198%" height="15" fill="rgb(234,49,5)" fg:x="228217070864" fg:w="60931052"/><text x="74.4587%" y="559.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (60,931,052 samples, 0.02%)</title><rect x="74.2087%" y="533" width="0.0198%" height="15" fill="rgb(248,12,16)" fg:x="228217070864" fg:w="60931052"/><text x="74.4587%" y="543.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (60,931,052 samples, 0.02%)</title><rect x="74.2087%" y="517" width="0.0198%" height="15" fill="rgb(208,220,31)" fg:x="228217070864" fg:w="60931052"/><text x="74.4587%" y="527.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (56,851,772 samples, 0.02%)</title><rect x="74.2101%" y="501" width="0.0185%" height="15" fill="rgb(243,184,0)" fg:x="228221150144" fg:w="56851772"/><text x="74.4601%" y="511.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (54,742,869 samples, 0.02%)</title><rect x="74.2107%" y="485" width="0.0178%" height="15" fill="rgb(217,38,21)" fg:x="228223259047" fg:w="54742869"/><text x="74.4607%" y="495.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (50,439,105 samples, 0.02%)</title><rect x="74.2121%" y="469" width="0.0164%" height="15" fill="rgb(239,120,45)" fg:x="228227562811" fg:w="50439105"/><text x="74.4621%" y="479.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (38,046,361 samples, 0.01%)</title><rect x="74.2162%" y="453" width="0.0124%" height="15" fill="rgb(235,33,2)" fg:x="228239955555" fg:w="38046361"/><text x="74.4662%" y="463.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (32,759,388 samples, 0.01%)</title><rect x="74.2179%" y="437" width="0.0107%" height="15" fill="rgb(249,161,5)" fg:x="228245242528" fg:w="32759388"/><text x="74.4679%" y="447.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (104,389,867 samples, 0.03%)</title><rect x="74.2084%" y="597" width="0.0339%" height="15" fill="rgb(250,165,48)" fg:x="228216004969" fg:w="104389867"/><text x="74.4584%" y="607.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (104,389,867 samples, 0.03%)</title><rect x="74.2084%" y="581" width="0.0339%" height="15" fill="rgb(221,23,45)" fg:x="228216004969" fg:w="104389867"/><text x="74.4584%" y="591.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (42,392,920 samples, 0.01%)</title><rect x="74.2285%" y="565" width="0.0138%" height="15" fill="rgb(217,108,46)" fg:x="228278001916" fg:w="42392920"/><text x="74.4785%" y="575.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (42,392,920 samples, 0.01%)</title><rect x="74.2285%" y="549" width="0.0138%" height="15" fill="rgb(254,26,35)" fg:x="228278001916" fg:w="42392920"/><text x="74.4785%" y="559.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (42,392,920 samples, 0.01%)</title><rect x="74.2285%" y="533" width="0.0138%" height="15" fill="rgb(218,223,28)" fg:x="228278001916" fg:w="42392920"/><text x="74.4785%" y="543.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (41,309,530 samples, 0.01%)</title><rect x="74.2289%" y="517" width="0.0134%" height="15" fill="rgb(242,27,47)" fg:x="228279085306" fg:w="41309530"/><text x="74.4789%" y="527.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (41,309,530 samples, 0.01%)</title><rect x="74.2289%" y="501" width="0.0134%" height="15" fill="rgb(218,39,35)" fg:x="228279085306" fg:w="41309530"/><text x="74.4789%" y="511.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (41,309,530 samples, 0.01%)</title><rect x="74.2289%" y="485" width="0.0134%" height="15" fill="rgb(232,127,16)" fg:x="228279085306" fg:w="41309530"/><text x="74.4789%" y="495.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (34,692,126 samples, 0.01%)</title><rect x="74.2310%" y="469" width="0.0113%" height="15" fill="rgb(231,219,51)" fg:x="228285702710" fg:w="34692126"/><text x="74.4810%" y="479.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (34,692,126 samples, 0.01%)</title><rect x="74.2310%" y="453" width="0.0113%" height="15" fill="rgb(217,220,46)" fg:x="228285702710" fg:w="34692126"/><text x="74.4810%" y="463.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (34,692,126 samples, 0.01%)</title><rect x="74.2310%" y="437" width="0.0113%" height="15" fill="rgb(230,75,1)" fg:x="228285702710" fg:w="34692126"/><text x="74.4810%" y="447.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (233,434,701 samples, 0.08%)</title><rect x="74.1679%" y="645" width="0.0759%" height="15" fill="rgb(218,2,8)" fg:x="228091550182" fg:w="233434701"/><text x="74.4179%" y="655.50"></text></g><g><title>gpui::window::Window::compute_layout (108,979,914 samples, 0.04%)</title><rect x="74.2084%" y="629" width="0.0354%" height="15" fill="rgb(206,111,30)" fg:x="228216004969" fg:w="108979914"/><text x="74.4584%" y="639.50"></text></g><g><title>stacksafe::internal::with_protected::_{{closure}} (108,979,914 samples, 0.04%)</title><rect x="74.2084%" y="613" width="0.0354%" height="15" fill="rgb(209,135,6)" fg:x="228216004969" fg:w="108979914"/><text x="74.4584%" y="623.50"></text></g><g><title>gpui::elements::uniform_list::uniform_list::_{{closure}} (76,153,978 samples, 0.02%)</title><rect x="74.2680%" y="85" width="0.0248%" height="15" fill="rgb(205,169,10)" fg:x="228399266508" fg:w="76153978"/><text x="74.5180%" y="95.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (129,557,058 samples, 0.04%)</title><rect x="74.2509%" y="133" width="0.0421%" height="15" fill="rgb(212,204,38)" fg:x="228346817875" fg:w="129557058"/><text x="74.5009%" y="143.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (129,557,058 samples, 0.04%)</title><rect x="74.2509%" y="117" width="0.0421%" height="15" fill="rgb(205,199,14)" fg:x="228346817875" fg:w="129557058"/><text x="74.5009%" y="127.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (129,557,058 samples, 0.04%)</title><rect x="74.2509%" y="101" width="0.0421%" height="15" fill="rgb(212,4,6)" fg:x="228346817875" fg:w="129557058"/><text x="74.5009%" y="111.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (135,668,936 samples, 0.04%)</title><rect x="74.2506%" y="149" width="0.0441%" height="15" fill="rgb(250,15,10)" fg:x="228345793876" fg:w="135668936"/><text x="74.5006%" y="159.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (147,874,003 samples, 0.05%)</title><rect x="74.2473%" y="165" width="0.0481%" height="15" fill="rgb(212,49,51)" fg:x="228335586062" fg:w="147874003"/><text x="74.4973%" y="175.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (148,949,300 samples, 0.05%)</title><rect x="74.2473%" y="261" width="0.0484%" height="15" fill="rgb(235,21,9)" fg:x="228335586062" fg:w="148949300"/><text x="74.4973%" y="271.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (148,949,300 samples, 0.05%)</title><rect x="74.2473%" y="245" width="0.0484%" height="15" fill="rgb(251,31,32)" fg:x="228335586062" fg:w="148949300"/><text x="74.4973%" y="255.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (148,949,300 samples, 0.05%)</title><rect x="74.2473%" y="229" width="0.0484%" height="15" fill="rgb(246,23,9)" fg:x="228335586062" fg:w="148949300"/><text x="74.4973%" y="239.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (148,949,300 samples, 0.05%)</title><rect x="74.2473%" y="213" width="0.0484%" height="15" fill="rgb(225,216,14)" fg:x="228335586062" fg:w="148949300"/><text x="74.4973%" y="223.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (148,949,300 samples, 0.05%)</title><rect x="74.2473%" y="197" width="0.0484%" height="15" fill="rgb(215,200,26)" fg:x="228335586062" fg:w="148949300"/><text x="74.4973%" y="207.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (148,949,300 samples, 0.05%)</title><rect x="74.2473%" y="181" width="0.0484%" height="15" fill="rgb(237,130,47)" fg:x="228335586062" fg:w="148949300"/><text x="74.4973%" y="191.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (152,230,422 samples, 0.05%)</title><rect x="74.2465%" y="277" width="0.0495%" height="15" fill="rgb(247,74,14)" fg:x="228333256970" fg:w="152230422"/><text x="74.4965%" y="287.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (157,105,388 samples, 0.05%)</title><rect x="74.2453%" y="373" width="0.0511%" height="15" fill="rgb(254,97,46)" fg:x="228329591337" fg:w="157105388"/><text x="74.4953%" y="383.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (157,105,388 samples, 0.05%)</title><rect x="74.2453%" y="357" width="0.0511%" height="15" fill="rgb(234,191,1)" fg:x="228329591337" fg:w="157105388"/><text x="74.4953%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (157,105,388 samples, 0.05%)</title><rect x="74.2453%" y="341" width="0.0511%" height="15" fill="rgb(215,165,14)" fg:x="228329591337" fg:w="157105388"/><text x="74.4953%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (154,688,723 samples, 0.05%)</title><rect x="74.2461%" y="325" width="0.0503%" height="15" fill="rgb(230,182,6)" fg:x="228332008002" fg:w="154688723"/><text x="74.4961%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (154,688,723 samples, 0.05%)</title><rect x="74.2461%" y="309" width="0.0503%" height="15" fill="rgb(210,127,39)" fg:x="228332008002" fg:w="154688723"/><text x="74.4961%" y="319.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (153,439,755 samples, 0.05%)</title><rect x="74.2465%" y="293" width="0.0499%" height="15" fill="rgb(223,212,51)" fg:x="228333256970" fg:w="153439755"/><text x="74.4965%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (159,332,388 samples, 0.05%)</title><rect x="74.2450%" y="453" width="0.0518%" height="15" fill="rgb(226,176,43)" fg:x="228328492638" fg:w="159332388"/><text x="74.4950%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (159,332,388 samples, 0.05%)</title><rect x="74.2450%" y="437" width="0.0518%" height="15" fill="rgb(222,155,4)" fg:x="228328492638" fg:w="159332388"/><text x="74.4950%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (159,332,388 samples, 0.05%)</title><rect x="74.2450%" y="421" width="0.0518%" height="15" fill="rgb(215,149,7)" fg:x="228328492638" fg:w="159332388"/><text x="74.4950%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (159,332,388 samples, 0.05%)</title><rect x="74.2450%" y="405" width="0.0518%" height="15" fill="rgb(252,199,23)" fg:x="228328492638" fg:w="159332388"/><text x="74.4950%" y="415.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (158,233,689 samples, 0.05%)</title><rect x="74.2453%" y="389" width="0.0515%" height="15" fill="rgb(245,52,29)" fg:x="228329591337" fg:w="158233689"/><text x="74.4953%" y="399.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (163,836,654 samples, 0.05%)</title><rect x="74.2438%" y="645" width="0.0533%" height="15" fill="rgb(221,228,19)" fg:x="228324984883" fg:w="163836654"/><text x="74.4938%" y="655.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (162,479,156 samples, 0.05%)</title><rect x="74.2443%" y="629" width="0.0528%" height="15" fill="rgb(253,101,6)" fg:x="228326342381" fg:w="162479156"/><text x="74.4943%" y="639.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (162,479,156 samples, 0.05%)</title><rect x="74.2443%" y="613" width="0.0528%" height="15" fill="rgb(211,130,8)" fg:x="228326342381" fg:w="162479156"/><text x="74.4943%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (161,402,910 samples, 0.05%)</title><rect x="74.2446%" y="597" width="0.0525%" height="15" fill="rgb(238,37,53)" fg:x="228327418627" fg:w="161402910"/><text x="74.4946%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (161,402,910 samples, 0.05%)</title><rect x="74.2446%" y="581" width="0.0525%" height="15" fill="rgb(235,145,5)" fg:x="228327418627" fg:w="161402910"/><text x="74.4946%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (161,402,910 samples, 0.05%)</title><rect x="74.2446%" y="565" width="0.0525%" height="15" fill="rgb(244,12,43)" fg:x="228327418627" fg:w="161402910"/><text x="74.4946%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (161,402,910 samples, 0.05%)</title><rect x="74.2446%" y="549" width="0.0525%" height="15" fill="rgb(246,195,24)" fg:x="228327418627" fg:w="161402910"/><text x="74.4946%" y="559.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (161,402,910 samples, 0.05%)</title><rect x="74.2446%" y="533" width="0.0525%" height="15" fill="rgb(235,163,6)" fg:x="228327418627" fg:w="161402910"/><text x="74.4946%" y="543.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (160,328,899 samples, 0.05%)</title><rect x="74.2450%" y="517" width="0.0521%" height="15" fill="rgb(236,218,17)" fg:x="228328492638" fg:w="160328899"/><text x="74.4950%" y="527.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (160,328,899 samples, 0.05%)</title><rect x="74.2450%" y="501" width="0.0521%" height="15" fill="rgb(235,12,38)" fg:x="228328492638" fg:w="160328899"/><text x="74.4950%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (160,328,899 samples, 0.05%)</title><rect x="74.2450%" y="485" width="0.0521%" height="15" fill="rgb(225,195,33)" fg:x="228328492638" fg:w="160328899"/><text x="74.4950%" y="495.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (160,328,899 samples, 0.05%)</title><rect x="74.2450%" y="469" width="0.0521%" height="15" fill="rgb(238,54,35)" fg:x="228328492638" fg:w="160328899"/><text x="74.4950%" y="479.50"></text></g><g><title>theme::default_colors::blue (32,094,924 samples, 0.01%)</title><rect x="74.3124%" y="533" width="0.0104%" height="15" fill="rgb(238,33,7)" fg:x="228535915577" fg:w="32094924"/><text x="74.5624%" y="543.50"></text></g><g><title>theme::default_colors::&lt;impl core::convert::TryFrom&lt;theme::default_colors::StaticColorScaleSet&gt; for theme::scale::ColorScaleSet&gt;::try_from (32,094,924 samples, 0.01%)</title><rect x="74.3124%" y="517" width="0.0104%" height="15" fill="rgb(245,5,14)" fg:x="228535915577" fg:w="32094924"/><text x="74.5624%" y="527.50"></text></g><g><title>theme::default_colors::&lt;impl core::convert::TryFrom&lt;theme::default_colors::StaticColorScaleSet&gt; for theme::scale::ColorScaleSet&gt;::try_from::to_color_scale (32,094,924 samples, 0.01%)</title><rect x="74.3124%" y="501" width="0.0104%" height="15" fill="rgb(251,95,31)" fg:x="228535915577" fg:w="32094924"/><text x="74.5624%" y="511.50"></text></g><g><title>theme::default_colors::red (32,447,984 samples, 0.01%)</title><rect x="74.3323%" y="533" width="0.0106%" height="15" fill="rgb(222,15,46)" fg:x="228597035308" fg:w="32447984"/><text x="74.5823%" y="543.50"></text></g><g><title>theme::default_colors::&lt;impl core::convert::TryFrom&lt;theme::default_colors::StaticColorScaleSet&gt; for theme::scale::ColorScaleSet&gt;::try_from (31,374,460 samples, 0.01%)</title><rect x="74.3326%" y="517" width="0.0102%" height="15" fill="rgb(226,182,24)" fg:x="228598108832" fg:w="31374460"/><text x="74.5826%" y="527.50"></text></g><g><title>panel::panel_editor_style (143,938,013 samples, 0.05%)</title><rect x="74.3112%" y="581" width="0.0468%" height="15" fill="rgb(229,105,41)" fg:x="228532324656" fg:w="143938013"/><text x="74.5612%" y="591.50"></text></g><g><title>&lt;editor::EditorStyle as core::default::Default&gt;::default (143,938,013 samples, 0.05%)</title><rect x="74.3112%" y="565" width="0.0468%" height="15" fill="rgb(216,99,53)" fg:x="228532324656" fg:w="143938013"/><text x="74.5612%" y="575.50"></text></g><g><title>theme::styles::status::StatusColors::dark (143,067,836 samples, 0.05%)</title><rect x="74.3115%" y="549" width="0.0465%" height="15" fill="rgb(253,26,20)" fg:x="228533194833" fg:w="143067836"/><text x="74.5615%" y="559.50"></text></g><g><title>git_ui::git_panel::GitPanel::render_footer (168,153,512 samples, 0.05%)</title><rect x="74.3038%" y="597" width="0.0547%" height="15" fill="rgb(249,155,28)" fg:x="228509353099" fg:w="168153512"/><text x="74.5538%" y="607.50"></text></g><g><title>&lt;git_ui::git_panel::GitPanel as gpui::element::Render&gt;::render (204,302,873 samples, 0.07%)</title><rect x="74.2978%" y="613" width="0.0664%" height="15" fill="rgb(241,221,2)" fg:x="228491092291" fg:w="204302873"/><text x="74.5478%" y="623.50"></text></g><g><title>gpui::view::any_view::render (208,210,383 samples, 0.07%)</title><rect x="74.2978%" y="645" width="0.0677%" height="15" fill="rgb(219,124,6)" fg:x="228491092291" fg:w="208210383"/><text x="74.5478%" y="655.50"></text></g><g><title>gpui::app::App::update (208,210,383 samples, 0.07%)</title><rect x="74.2978%" y="629" width="0.0677%" height="15" fill="rgb(233,37,6)" fg:x="228491092291" fg:w="208210383"/><text x="74.5478%" y="639.50"></text></g><g><title>gpui::key_dispatch::DispatchTree::reuse_subtree (39,627,578 samples, 0.01%)</title><rect x="74.3686%" y="629" width="0.0129%" height="15" fill="rgb(238,20,14)" fg:x="228708855979" fg:w="39627578"/><text x="74.6186%" y="639.50"></text></g><g><title>gpui::window::Window::reuse_prepaint (67,633,483 samples, 0.02%)</title><rect x="74.3655%" y="645" width="0.0220%" height="15" fill="rgb(232,106,27)" fg:x="228699302674" fg:w="67633483"/><text x="74.6155%" y="655.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (678,811,538 samples, 0.22%)</title><rect x="74.1676%" y="661" width="0.2207%" height="15" fill="rgb(246,157,24)" fg:x="228090528530" fg:w="678811538"/><text x="74.4176%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (683,414,058 samples, 0.22%)</title><rect x="74.1672%" y="789" width="0.2222%" height="15" fill="rgb(214,153,10)" fg:x="228089373190" fg:w="683414058"/><text x="74.4172%" y="799.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (683,414,058 samples, 0.22%)</title><rect x="74.1672%" y="773" width="0.2222%" height="15" fill="rgb(212,94,6)" fg:x="228089373190" fg:w="683414058"/><text x="74.4172%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (683,414,058 samples, 0.22%)</title><rect x="74.1672%" y="757" width="0.2222%" height="15" fill="rgb(254,25,27)" fg:x="228089373190" fg:w="683414058"/><text x="74.4172%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (683,414,058 samples, 0.22%)</title><rect x="74.1672%" y="741" width="0.2222%" height="15" fill="rgb(250,43,52)" fg:x="228089373190" fg:w="683414058"/><text x="74.4172%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (683,414,058 samples, 0.22%)</title><rect x="74.1672%" y="725" width="0.2222%" height="15" fill="rgb(221,226,40)" fg:x="228089373190" fg:w="683414058"/><text x="74.4172%" y="735.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (682,258,718 samples, 0.22%)</title><rect x="74.1676%" y="709" width="0.2218%" height="15" fill="rgb(235,162,34)" fg:x="228090528530" fg:w="682258718"/><text x="74.4176%" y="719.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (682,258,718 samples, 0.22%)</title><rect x="74.1676%" y="693" width="0.2218%" height="15" fill="rgb(239,24,26)" fg:x="228090528530" fg:w="682258718"/><text x="74.4176%" y="703.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (682,258,718 samples, 0.22%)</title><rect x="74.1676%" y="677" width="0.2218%" height="15" fill="rgb(244,226,11)" fg:x="228090528530" fg:w="682258718"/><text x="74.4176%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (689,852,971 samples, 0.22%)</title><rect x="74.1665%" y="917" width="0.2243%" height="15" fill="rgb(225,23,10)" fg:x="228087342174" fg:w="689852971"/><text x="74.4165%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (689,852,971 samples, 0.22%)</title><rect x="74.1665%" y="901" width="0.2243%" height="15" fill="rgb(249,125,6)" fg:x="228087342174" fg:w="689852971"/><text x="74.4165%" y="911.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (689,852,971 samples, 0.22%)</title><rect x="74.1665%" y="885" width="0.2243%" height="15" fill="rgb(246,212,12)" fg:x="228087342174" fg:w="689852971"/><text x="74.4165%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (689,852,971 samples, 0.22%)</title><rect x="74.1665%" y="869" width="0.2243%" height="15" fill="rgb(230,43,32)" fg:x="228087342174" fg:w="689852971"/><text x="74.4165%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (688,935,498 samples, 0.22%)</title><rect x="74.1668%" y="853" width="0.2240%" height="15" fill="rgb(210,95,23)" fg:x="228088259647" fg:w="688935498"/><text x="74.4168%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (688,935,498 samples, 0.22%)</title><rect x="74.1668%" y="837" width="0.2240%" height="15" fill="rgb(229,103,33)" fg:x="228088259647" fg:w="688935498"/><text x="74.4168%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (688,935,498 samples, 0.22%)</title><rect x="74.1668%" y="821" width="0.2240%" height="15" fill="rgb(222,104,27)" fg:x="228088259647" fg:w="688935498"/><text x="74.4168%" y="831.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (688,935,498 samples, 0.22%)</title><rect x="74.1668%" y="805" width="0.2240%" height="15" fill="rgb(239,221,23)" fg:x="228088259647" fg:w="688935498"/><text x="74.4168%" y="815.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (65,949,293 samples, 0.02%)</title><rect x="74.4093%" y="405" width="0.0214%" height="15" fill="rgb(222,98,21)" fg:x="228833837742" fg:w="65949293"/><text x="74.6593%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (65,949,293 samples, 0.02%)</title><rect x="74.4093%" y="389" width="0.0214%" height="15" fill="rgb(231,101,20)" fg:x="228833837742" fg:w="65949293"/><text x="74.6593%" y="399.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (65,949,293 samples, 0.02%)</title><rect x="74.4093%" y="373" width="0.0214%" height="15" fill="rgb(215,150,22)" fg:x="228833837742" fg:w="65949293"/><text x="74.6593%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (65,949,293 samples, 0.02%)</title><rect x="74.4093%" y="357" width="0.0214%" height="15" fill="rgb(248,3,34)" fg:x="228833837742" fg:w="65949293"/><text x="74.6593%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (65,949,293 samples, 0.02%)</title><rect x="74.4093%" y="341" width="0.0214%" height="15" fill="rgb(220,141,21)" fg:x="228833837742" fg:w="65949293"/><text x="74.6593%" y="351.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (64,810,814 samples, 0.02%)</title><rect x="74.4096%" y="325" width="0.0211%" height="15" fill="rgb(223,41,48)" fg:x="228834976221" fg:w="64810814"/><text x="74.6596%" y="335.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (64,810,814 samples, 0.02%)</title><rect x="74.4096%" y="309" width="0.0211%" height="15" fill="rgb(247,12,5)" fg:x="228834976221" fg:w="64810814"/><text x="74.6596%" y="319.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (64,810,814 samples, 0.02%)</title><rect x="74.4096%" y="293" width="0.0211%" height="15" fill="rgb(206,173,10)" fg:x="228834976221" fg:w="64810814"/><text x="74.6596%" y="303.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (64,810,814 samples, 0.02%)</title><rect x="74.4096%" y="277" width="0.0211%" height="15" fill="rgb(233,214,37)" fg:x="228834976221" fg:w="64810814"/><text x="74.6596%" y="287.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (64,810,814 samples, 0.02%)</title><rect x="74.4096%" y="261" width="0.0211%" height="15" fill="rgb(238,86,43)" fg:x="228834976221" fg:w="64810814"/><text x="74.6596%" y="271.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (64,810,814 samples, 0.02%)</title><rect x="74.4096%" y="245" width="0.0211%" height="15" fill="rgb(212,182,8)" fg:x="228834976221" fg:w="64810814"/><text x="74.6596%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (64,810,814 samples, 0.02%)</title><rect x="74.4096%" y="229" width="0.0211%" height="15" fill="rgb(240,91,47)" fg:x="228834976221" fg:w="64810814"/><text x="74.6596%" y="239.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (63,909,489 samples, 0.02%)</title><rect x="74.4099%" y="213" width="0.0208%" height="15" fill="rgb(209,138,26)" fg:x="228835877546" fg:w="63909489"/><text x="74.6599%" y="223.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (63,909,489 samples, 0.02%)</title><rect x="74.4099%" y="197" width="0.0208%" height="15" fill="rgb(231,163,20)" fg:x="228835877546" fg:w="63909489"/><text x="74.6599%" y="207.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (63,909,489 samples, 0.02%)</title><rect x="74.4099%" y="181" width="0.0208%" height="15" fill="rgb(214,91,54)" fg:x="228835877546" fg:w="63909489"/><text x="74.6599%" y="191.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (63,909,489 samples, 0.02%)</title><rect x="74.4099%" y="165" width="0.0208%" height="15" fill="rgb(230,32,17)" fg:x="228835877546" fg:w="63909489"/><text x="74.6599%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (62,901,773 samples, 0.02%)</title><rect x="74.4103%" y="149" width="0.0205%" height="15" fill="rgb(231,34,34)" fg:x="228836885262" fg:w="62901773"/><text x="74.6603%" y="159.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (61,655,820 samples, 0.02%)</title><rect x="74.4107%" y="133" width="0.0200%" height="15" fill="rgb(224,228,27)" fg:x="228838131215" fg:w="61655820"/><text x="74.6607%" y="143.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (61,655,820 samples, 0.02%)</title><rect x="74.4107%" y="117" width="0.0200%" height="15" fill="rgb(219,35,40)" fg:x="228838131215" fg:w="61655820"/><text x="74.6607%" y="127.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::request_layout (61,655,820 samples, 0.02%)</title><rect x="74.4107%" y="101" width="0.0200%" height="15" fill="rgb(234,42,8)" fg:x="228838131215" fg:w="61655820"/><text x="74.6607%" y="111.50"></text></g><g><title>gpui::view::any_view::render (56,046,917 samples, 0.02%)</title><rect x="74.4125%" y="85" width="0.0182%" height="15" fill="rgb(226,75,22)" fg:x="228843740118" fg:w="56046917"/><text x="74.6625%" y="95.50"></text></g><g><title>gpui::app::App::update (54,025,357 samples, 0.02%)</title><rect x="74.4132%" y="69" width="0.0176%" height="15" fill="rgb(242,203,28)" fg:x="228845761678" fg:w="54025357"/><text x="74.6632%" y="79.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (105,696,268 samples, 0.03%)</title><rect x="74.3966%" y="437" width="0.0344%" height="15" fill="rgb(221,3,9)" fg:x="228794950971" fg:w="105696268"/><text x="74.6466%" y="447.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (104,777,070 samples, 0.03%)</title><rect x="74.3969%" y="421" width="0.0341%" height="15" fill="rgb(214,34,31)" fg:x="228795870169" fg:w="104777070"/><text x="74.6469%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (108,095,484 samples, 0.04%)</title><rect x="74.3963%" y="453" width="0.0351%" height="15" fill="rgb(252,119,15)" fg:x="228793797623" fg:w="108095484"/><text x="74.6463%" y="463.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (112,795,687 samples, 0.04%)</title><rect x="74.3954%" y="613" width="0.0367%" height="15" fill="rgb(244,224,31)" fg:x="228791145119" fg:w="112795687"/><text x="74.6454%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (112,305,838 samples, 0.04%)</title><rect x="74.3956%" y="597" width="0.0365%" height="15" fill="rgb(215,8,51)" fg:x="228791634968" fg:w="112305838"/><text x="74.6456%" y="607.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (112,305,838 samples, 0.04%)</title><rect x="74.3956%" y="581" width="0.0365%" height="15" fill="rgb(207,24,1)" fg:x="228791634968" fg:w="112305838"/><text x="74.6456%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (112,305,838 samples, 0.04%)</title><rect x="74.3956%" y="565" width="0.0365%" height="15" fill="rgb(245,90,0)" fg:x="228791634968" fg:w="112305838"/><text x="74.6456%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (112,305,838 samples, 0.04%)</title><rect x="74.3956%" y="549" width="0.0365%" height="15" fill="rgb(246,43,48)" fg:x="228791634968" fg:w="112305838"/><text x="74.6456%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (112,305,838 samples, 0.04%)</title><rect x="74.3956%" y="533" width="0.0365%" height="15" fill="rgb(252,218,10)" fg:x="228791634968" fg:w="112305838"/><text x="74.6456%" y="543.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (111,085,610 samples, 0.04%)</title><rect x="74.3960%" y="517" width="0.0361%" height="15" fill="rgb(231,24,35)" fg:x="228792855196" fg:w="111085610"/><text x="74.6460%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (110,143,183 samples, 0.04%)</title><rect x="74.3963%" y="501" width="0.0358%" height="15" fill="rgb(225,66,19)" fg:x="228793797623" fg:w="110143183"/><text x="74.6463%" y="511.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (110,143,183 samples, 0.04%)</title><rect x="74.3963%" y="485" width="0.0358%" height="15" fill="rgb(214,96,51)" fg:x="228793797623" fg:w="110143183"/><text x="74.6463%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (110,143,183 samples, 0.04%)</title><rect x="74.3963%" y="469" width="0.0358%" height="15" fill="rgb(251,151,47)" fg:x="228793797623" fg:w="110143183"/><text x="74.6463%" y="479.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (110,201,151 samples, 0.04%)</title><rect x="74.4495%" y="389" width="0.0358%" height="15" fill="rgb(236,79,14)" fg:x="228957557096" fg:w="110201151"/><text x="74.6995%" y="399.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (105,174,290 samples, 0.03%)</title><rect x="74.4511%" y="373" width="0.0342%" height="15" fill="rgb(210,205,11)" fg:x="228962583957" fg:w="105174290"/><text x="74.7011%" y="383.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (77,021,704 samples, 0.03%)</title><rect x="74.4603%" y="357" width="0.0250%" height="15" fill="rgb(233,142,53)" fg:x="228990736543" fg:w="77021704"/><text x="74.7103%" y="367.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (31,550,812 samples, 0.01%)</title><rect x="74.4751%" y="341" width="0.0103%" height="15" fill="rgb(212,116,48)" fg:x="229036207435" fg:w="31550812"/><text x="74.7251%" y="351.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (134,618,774 samples, 0.04%)</title><rect x="74.4422%" y="421" width="0.0438%" height="15" fill="rgb(234,55,33)" fg:x="228935079929" fg:w="134618774"/><text x="74.6922%" y="431.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (133,303,115 samples, 0.04%)</title><rect x="74.4426%" y="405" width="0.0433%" height="15" fill="rgb(253,92,27)" fg:x="228936395588" fg:w="133303115"/><text x="74.6926%" y="415.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (148,526,635 samples, 0.05%)</title><rect x="74.4385%" y="453" width="0.0483%" height="15" fill="rgb(220,7,35)" fg:x="228923613037" fg:w="148526635"/><text x="74.6885%" y="463.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (147,536,725 samples, 0.05%)</title><rect x="74.4388%" y="437" width="0.0480%" height="15" fill="rgb(246,124,6)" fg:x="228924602947" fg:w="147536725"/><text x="74.6888%" y="447.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (154,740,701 samples, 0.05%)</title><rect x="74.4368%" y="485" width="0.0503%" height="15" fill="rgb(212,111,51)" fg:x="228918490614" fg:w="154740701"/><text x="74.6868%" y="495.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (154,740,701 samples, 0.05%)</title><rect x="74.4368%" y="469" width="0.0503%" height="15" fill="rgb(253,116,7)" fg:x="228918490614" fg:w="154740701"/><text x="74.6868%" y="479.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (162,907,859 samples, 0.05%)</title><rect x="74.4345%" y="517" width="0.0530%" height="15" fill="rgb(213,145,18)" fg:x="228911351728" fg:w="162907859"/><text x="74.6845%" y="527.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (162,907,859 samples, 0.05%)</title><rect x="74.4345%" y="501" width="0.0530%" height="15" fill="rgb(219,149,7)" fg:x="228911351728" fg:w="162907859"/><text x="74.6845%" y="511.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (166,259,156 samples, 0.05%)</title><rect x="74.4338%" y="549" width="0.0541%" height="15" fill="rgb(225,156,20)" fg:x="228909269396" fg:w="166259156"/><text x="74.6838%" y="559.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (166,259,156 samples, 0.05%)</title><rect x="74.4338%" y="533" width="0.0541%" height="15" fill="rgb(211,98,19)" fg:x="228909269396" fg:w="166259156"/><text x="74.6838%" y="543.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (275,095,043 samples, 0.09%)</title><rect x="74.4321%" y="581" width="0.0895%" height="15" fill="rgb(231,192,31)" fg:x="228903940806" fg:w="275095043"/><text x="74.6821%" y="591.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (271,978,188 samples, 0.09%)</title><rect x="74.4331%" y="565" width="0.0884%" height="15" fill="rgb(249,95,19)" fg:x="228907057661" fg:w="271978188"/><text x="74.6831%" y="575.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (103,507,297 samples, 0.03%)</title><rect x="74.4879%" y="549" width="0.0337%" height="15" fill="rgb(247,101,36)" fg:x="229075528552" fg:w="103507297"/><text x="74.7379%" y="559.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (103,507,297 samples, 0.03%)</title><rect x="74.4879%" y="533" width="0.0337%" height="15" fill="rgb(221,45,43)" fg:x="229075528552" fg:w="103507297"/><text x="74.7379%" y="543.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (103,507,297 samples, 0.03%)</title><rect x="74.4879%" y="517" width="0.0337%" height="15" fill="rgb(220,42,1)" fg:x="229075528552" fg:w="103507297"/><text x="74.7379%" y="527.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (95,618,321 samples, 0.03%)</title><rect x="74.4904%" y="501" width="0.0311%" height="15" fill="rgb(236,19,24)" fg:x="229083417528" fg:w="95618321"/><text x="74.7404%" y="511.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (95,618,321 samples, 0.03%)</title><rect x="74.4904%" y="485" width="0.0311%" height="15" fill="rgb(225,192,6)" fg:x="229083417528" fg:w="95618321"/><text x="74.7404%" y="495.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (95,618,321 samples, 0.03%)</title><rect x="74.4904%" y="469" width="0.0311%" height="15" fill="rgb(242,30,19)" fg:x="229083417528" fg:w="95618321"/><text x="74.7404%" y="479.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (88,983,498 samples, 0.03%)</title><rect x="74.4926%" y="453" width="0.0289%" height="15" fill="rgb(240,36,6)" fg:x="229090052351" fg:w="88983498"/><text x="74.7426%" y="463.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (88,983,498 samples, 0.03%)</title><rect x="74.4926%" y="437" width="0.0289%" height="15" fill="rgb(246,40,28)" fg:x="229090052351" fg:w="88983498"/><text x="74.7426%" y="447.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (87,922,843 samples, 0.03%)</title><rect x="74.4929%" y="421" width="0.0286%" height="15" fill="rgb(225,155,33)" fg:x="229091113006" fg:w="87922843"/><text x="74.7429%" y="431.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (81,351,832 samples, 0.03%)</title><rect x="74.4951%" y="405" width="0.0265%" height="15" fill="rgb(240,65,18)" fg:x="229097684017" fg:w="81351832"/><text x="74.7451%" y="415.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (81,351,832 samples, 0.03%)</title><rect x="74.4951%" y="389" width="0.0265%" height="15" fill="rgb(217,0,48)" fg:x="229097684017" fg:w="81351832"/><text x="74.7451%" y="399.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (81,351,832 samples, 0.03%)</title><rect x="74.4951%" y="373" width="0.0265%" height="15" fill="rgb(217,80,15)" fg:x="229097684017" fg:w="81351832"/><text x="74.7451%" y="383.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (71,152,635 samples, 0.02%)</title><rect x="74.4984%" y="357" width="0.0231%" height="15" fill="rgb(253,43,51)" fg:x="229107883214" fg:w="71152635"/><text x="74.7484%" y="367.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (71,152,635 samples, 0.02%)</title><rect x="74.4984%" y="341" width="0.0231%" height="15" fill="rgb(246,60,4)" fg:x="229107883214" fg:w="71152635"/><text x="74.7484%" y="351.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (69,891,380 samples, 0.02%)</title><rect x="74.4988%" y="325" width="0.0227%" height="15" fill="rgb(230,40,54)" fg:x="229109144469" fg:w="69891380"/><text x="74.7488%" y="335.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (51,646,851 samples, 0.02%)</title><rect x="74.5047%" y="309" width="0.0168%" height="15" fill="rgb(208,20,44)" fg:x="229127388998" fg:w="51646851"/><text x="74.7547%" y="319.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (51,646,851 samples, 0.02%)</title><rect x="74.5047%" y="293" width="0.0168%" height="15" fill="rgb(230,22,22)" fg:x="229127388998" fg:w="51646851"/><text x="74.7547%" y="303.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (49,609,685 samples, 0.02%)</title><rect x="74.5054%" y="277" width="0.0161%" height="15" fill="rgb(207,57,4)" fg:x="229129426164" fg:w="49609685"/><text x="74.7554%" y="287.50"></text></g><g><title>taffy::compute::flexbox::calculate_flex_item (41,898,266 samples, 0.01%)</title><rect x="74.5079%" y="261" width="0.0136%" height="15" fill="rgb(242,130,33)" fg:x="229137137583" fg:w="41898266"/><text x="74.7579%" y="271.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (39,673,588 samples, 0.01%)</title><rect x="74.5086%" y="245" width="0.0129%" height="15" fill="rgb(218,66,43)" fg:x="229139362261" fg:w="39673588"/><text x="74.7586%" y="255.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (33,976,527 samples, 0.01%)</title><rect x="74.5105%" y="229" width="0.0110%" height="15" fill="rgb(236,105,16)" fg:x="229145059322" fg:w="33976527"/><text x="74.7605%" y="239.50"></text></g><g><title>gpui::window::Window::compute_layout (282,458,385 samples, 0.09%)</title><rect x="74.4321%" y="613" width="0.0918%" height="15" fill="rgb(230,46,15)" fg:x="228903940806" fg:w="282458385"/><text x="74.6821%" y="623.50"></text></g><g><title>stacksafe::internal::with_protected::_{{closure}} (282,458,385 samples, 0.09%)</title><rect x="74.4321%" y="597" width="0.0918%" height="15" fill="rgb(251,172,40)" fg:x="228903940806" fg:w="282458385"/><text x="74.6821%" y="607.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (397,493,002 samples, 0.13%)</title><rect x="74.3950%" y="629" width="0.1293%" height="15" fill="rgb(225,217,32)" fg:x="228790011747" fg:w="397493002"/><text x="74.6450%" y="639.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_tab_point (48,876,725 samples, 0.02%)</title><rect x="74.5505%" y="165" width="0.0159%" height="15" fill="rgb(243,10,29)" fg:x="229268053808" fg:w="48876725"/><text x="74.8005%" y="175.50"></text></g><g><title>&lt;core::iter::adapters::filter_map::FilterMap&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (62,806,276 samples, 0.02%)</title><rect x="74.5490%" y="181" width="0.0204%" height="15" fill="rgb(207,102,10)" fg:x="229263544631" fg:w="62806276"/><text x="74.7990%" y="191.50"></text></g><g><title>&lt;core::iter::sources::from_fn::FromFn&lt;F&gt; as core::iter::traits::iterator::Iterator&gt;::next (38,204,627 samples, 0.01%)</title><rect x="74.5705%" y="165" width="0.0124%" height="15" fill="rgb(241,125,5)" fg:x="229329623005" fg:w="38204627"/><text x="74.8205%" y="175.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (71,378,275 samples, 0.02%)</title><rect x="74.5702%" y="181" width="0.0232%" height="15" fill="rgb(230,125,29)" fg:x="229328604668" fg:w="71378275"/><text x="74.8202%" y="191.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (43,549,546 samples, 0.01%)</title><rect x="74.5949%" y="165" width="0.0142%" height="15" fill="rgb(223,65,44)" fg:x="229404574747" fg:w="43549546"/><text x="74.8449%" y="175.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (57,992,796 samples, 0.02%)</title><rect x="74.5941%" y="181" width="0.0189%" height="15" fill="rgb(224,188,28)" fg:x="229402352159" fg:w="57992796"/><text x="74.8441%" y="191.50"></text></g><g><title>__memmove_avx512_unaligned_erms (43,413,012 samples, 0.01%)</title><rect x="74.6218%" y="181" width="0.0141%" height="15" fill="rgb(254,197,27)" fg:x="229487540552" fg:w="43413012"/><text x="74.8718%" y="191.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold::flatten::_{{closure}} (216,673,684 samples, 0.07%)</title><rect x="74.6819%" y="165" width="0.0705%" height="15" fill="rgb(220,200,25)" fg:x="229672104112" fg:w="216673684"/><text x="74.9319%" y="175.50"></text></g><g><title>&lt;sum_tree::cursor::Cursor&lt;T,D&gt; as core::iter::traits::iterator::Iterator&gt;::next (771,756,552 samples, 0.25%)</title><rect x="74.7523%" y="165" width="0.2509%" height="15" fill="rgb(239,225,54)" fg:x="229888777796" fg:w="771756552"/><text x="75.0023%" y="175.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_forward (713,119,129 samples, 0.23%)</title><rect x="74.7714%" y="149" width="0.2319%" height="15" fill="rgb(211,59,40)" fg:x="229947415219" fg:w="713119129"/><text x="75.0214%" y="159.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (586,731,440 samples, 0.19%)</title><rect x="74.8125%" y="133" width="0.1908%" height="15" fill="rgb(213,176,46)" fg:x="230073802908" fg:w="586731440"/><text x="75.0625%" y="143.50"></text></g><g><title>core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt;::iter_try_fold (1,106,292,931 samples, 0.36%)</title><rect x="74.6439%" y="181" width="0.3597%" height="15" fill="rgb(226,99,4)" fg:x="229555305093" fg:w="1106292931"/><text x="74.8939%" y="191.50"></text></g><g><title>editor::display_map::block_map::BlockSnapshot::chunks (33,613,535 samples, 0.01%)</title><rect x="75.0252%" y="149" width="0.0109%" height="15" fill="rgb(239,203,43)" fg:x="230727947910" fg:w="33613535"/><text x="75.2752%" y="159.50"></text></g><g><title>editor::display_map::DisplaySnapshot::layout_row (55,303,209 samples, 0.02%)</title><rect x="75.0200%" y="165" width="0.0180%" height="15" fill="rgb(246,1,45)" fg:x="230712049179" fg:w="55303209"/><text x="75.2700%" y="175.50"></text></g><g><title>editor::Editor::display_to_pixel_point (70,790,189 samples, 0.02%)</title><rect x="75.0194%" y="181" width="0.0230%" height="15" fill="rgb(231,42,52)" fg:x="230710143506" fg:w="70790189"/><text x="75.2694%" y="191.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::text_summary_for_range (35,768,228 samples, 0.01%)</title><rect x="75.0558%" y="101" width="0.0116%" height="15" fill="rgb(240,13,50)" fg:x="230822244585" fg:w="35768228"/><text x="75.3058%" y="111.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::text_summary_for_range (39,242,208 samples, 0.01%)</title><rect x="75.0551%" y="117" width="0.0128%" height="15" fill="rgb(225,81,14)" fg:x="230819973396" fg:w="39242208"/><text x="75.3051%" y="127.50"></text></g><g><title>editor::display_map::block_map::BlockMap::read (55,340,817 samples, 0.02%)</title><rect x="75.0529%" y="149" width="0.0180%" height="15" fill="rgb(216,182,23)" fg:x="230813094717" fg:w="55340817"/><text x="75.3029%" y="159.50"></text></g><g><title>editor::display_map::block_map::BlockMap::sync (53,160,064 samples, 0.02%)</title><rect x="75.0536%" y="133" width="0.0173%" height="15" fill="rgb(233,137,19)" fg:x="230815275470" fg:w="53160064"/><text x="75.3036%" y="143.50"></text></g><g><title>editor::display_map::DisplayMap::snapshot (61,930,275 samples, 0.02%)</title><rect x="75.0522%" y="165" width="0.0201%" height="15" fill="rgb(242,61,46)" fg:x="230810930685" fg:w="61930275"/><text x="75.3022%" y="175.50"></text></g><g><title>editor::Editor::snapshot (63,710,125 samples, 0.02%)</title><rect x="75.0519%" y="181" width="0.0207%" height="15" fill="rgb(221,168,51)" fg:x="230810080718" fg:w="63710125"/><text x="75.3019%" y="191.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (51,140,052 samples, 0.02%)</title><rect x="75.0954%" y="117" width="0.0166%" height="15" fill="rgb(238,48,15)" fg:x="230943906550" fg:w="51140052"/><text x="75.3454%" y="127.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (59,628,713 samples, 0.02%)</title><rect x="75.0928%" y="149" width="0.0194%" height="15" fill="rgb(216,13,16)" fg:x="230936021319" fg:w="59628713"/><text x="75.3428%" y="159.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (52,695,548 samples, 0.02%)</title><rect x="75.0951%" y="133" width="0.0171%" height="15" fill="rgb(223,185,34)" fg:x="230942954484" fg:w="52695548"/><text x="75.3451%" y="143.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_fold_point (95,463,789 samples, 0.03%)</title><rect x="75.0892%" y="165" width="0.0310%" height="15" fill="rgb(228,94,42)" fg:x="230924852367" fg:w="95463789"/><text x="75.3392%" y="175.50"></text></g><g><title>editor::display_map::DisplaySnapshot::display_point_to_inlay_point (99,712,887 samples, 0.03%)</title><rect x="75.0886%" y="181" width="0.0324%" height="15" fill="rgb(218,166,43)" fg:x="230922925928" fg:w="99712887"/><text x="75.3386%" y="191.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (36,607,944 samples, 0.01%)</title><rect x="75.1261%" y="117" width="0.0119%" height="15" fill="rgb(232,30,50)" fg:x="231038431776" fg:w="36607944"/><text x="75.3761%" y="127.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (46,063,302 samples, 0.01%)</title><rect x="75.1234%" y="149" width="0.0150%" height="15" fill="rgb(245,206,45)" fg:x="231029869770" fg:w="46063302"/><text x="75.3734%" y="159.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (38,677,028 samples, 0.01%)</title><rect x="75.1258%" y="133" width="0.0126%" height="15" fill="rgb(220,56,22)" fg:x="231037256044" fg:w="38677028"/><text x="75.3758%" y="143.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_tab_point (73,347,984 samples, 0.02%)</title><rect x="75.1217%" y="165" width="0.0239%" height="15" fill="rgb(239,129,38)" fg:x="231024687799" fg:w="73347984"/><text x="75.3717%" y="175.50"></text></g><g><title>editor::display_map::DisplaySnapshot::is_line_folded (81,958,690 samples, 0.03%)</title><rect x="75.1210%" y="181" width="0.0267%" height="15" fill="rgb(207,68,41)" fg:x="231022638815" fg:w="81958690"/><text x="75.3710%" y="191.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::anchor_at (50,528,179 samples, 0.02%)</title><rect x="75.1643%" y="165" width="0.0164%" height="15" fill="rgb(221,21,7)" fg:x="231155677842" fg:w="50528179"/><text x="75.4143%" y="175.50"></text></g><g><title>editor::display_map::crease_map::CreaseSnapshot::query_row (63,039,367 samples, 0.02%)</title><rect x="75.1639%" y="181" width="0.0205%" height="15" fill="rgb(240,33,25)" fg:x="231154452890" fg:w="63039367"/><text x="75.4139%" y="191.50"></text></g><g><title>editor::element::EditorElement::render_buffer_header (44,197,241 samples, 0.01%)</title><rect x="75.2134%" y="165" width="0.0144%" height="15" fill="rgb(242,119,10)" fg:x="231306694124" fg:w="44197241"/><text x="75.4634%" y="175.50"></text></g><g><title>editor::element::EditorElement::render_block (94,642,523 samples, 0.03%)</title><rect x="75.2025%" y="181" width="0.0308%" height="15" fill="rgb(214,149,40)" fg:x="231273122283" fg:w="94642523"/><text x="75.4525%" y="191.50"></text></g><g><title>editor::element::EditorElement::render_buffer_header (64,561,083 samples, 0.02%)</title><rect x="75.2332%" y="181" width="0.0210%" height="15" fill="rgb(228,25,36)" fg:x="231367764806" fg:w="64561083"/><text x="75.4832%" y="191.50"></text></g><g><title>&lt;editor::display_map::custom_highlights::CustomHighlightsChunks as core::iter::traits::iterator::Iterator&gt;::next (35,521,443 samples, 0.01%)</title><rect x="75.2831%" y="69" width="0.0116%" height="15" fill="rgb(222,59,15)" fg:x="231521004307" fg:w="35521443"/><text x="75.5331%" y="79.50"></text></g><g><title>&lt;editor::display_map::inlay_map::InlayChunks as core::iter::traits::iterator::Iterator&gt;::next (41,060,071 samples, 0.01%)</title><rect x="75.2817%" y="85" width="0.0134%" height="15" fill="rgb(218,170,0)" fg:x="231516707922" fg:w="41060071"/><text x="75.5317%" y="95.50"></text></g><g><title>&lt;editor::display_map::fold_map::FoldChunks as core::iter::traits::iterator::Iterator&gt;::next (54,705,533 samples, 0.02%)</title><rect x="75.2787%" y="101" width="0.0178%" height="15" fill="rgb(232,173,23)" fg:x="231507518854" fg:w="54705533"/><text x="75.5287%" y="111.50"></text></g><g><title>&lt;editor::display_map::tab_map::TabChunks as core::iter::traits::iterator::Iterator&gt;::next (69,660,650 samples, 0.02%)</title><rect x="75.2759%" y="117" width="0.0227%" height="15" fill="rgb(218,116,1)" fg:x="231498987195" fg:w="69660650"/><text x="75.5259%" y="127.50"></text></g><g><title>&lt;editor::display_map::wrap_map::WrapChunks as core::iter::traits::iterator::Iterator&gt;::next (88,639,180 samples, 0.03%)</title><rect x="75.2716%" y="133" width="0.0288%" height="15" fill="rgb(207,34,4)" fg:x="231485659340" fg:w="88639180"/><text x="75.5216%" y="143.50"></text></g><g><title>&lt;editor::display_map::block_map::BlockChunks as core::iter::traits::iterator::Iterator&gt;::next (133,314,482 samples, 0.04%)</title><rect x="75.2676%" y="149" width="0.0433%" height="15" fill="rgb(229,54,52)" fg:x="231473547364" fg:w="133314482"/><text x="75.5176%" y="159.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt; as core::iter::traits::iterator::Iterator&gt;::next (191,780,889 samples, 0.06%)</title><rect x="75.2655%" y="165" width="0.0624%" height="15" fill="rgb(211,86,23)" fg:x="231466893529" fg:w="191780889"/><text x="75.5155%" y="175.50"></text></g><g><title>&lt;gpui::platform::linux::text_system::CosmicTextSystem as gpui::platform::PlatformTextSystem&gt;::layout_line (30,899,074 samples, 0.01%)</title><rect x="75.3572%" y="117" width="0.0100%" height="15" fill="rgb(254,153,34)" fg:x="231749112737" fg:w="30899074"/><text x="75.6072%" y="127.50"></text></g><g><title>gpui::text_system::line_layout::LineLayoutCache::layout_line (60,391,035 samples, 0.02%)</title><rect x="75.3500%" y="133" width="0.0196%" height="15" fill="rgb(219,220,14)" fg:x="231726732312" fg:w="60391035"/><text x="75.6000%" y="143.50"></text></g><g><title>gpui::text_system::WindowTextSystem::shape_line (90,272,718 samples, 0.03%)</title><rect x="75.3420%" y="165" width="0.0294%" height="15" fill="rgb(247,8,26)" fg:x="231702302919" fg:w="90272718"/><text x="75.5920%" y="175.50"></text></g><g><title>gpui::text_system::WindowTextSystem::layout_line (83,455,512 samples, 0.03%)</title><rect x="75.3442%" y="149" width="0.0271%" height="15" fill="rgb(213,129,42)" fg:x="231709120125" fg:w="83455512"/><text x="75.5942%" y="159.50"></text></g><g><title>editor::element::LineWithInvisibles::from_chunks (362,090,441 samples, 0.12%)</title><rect x="75.2550%" y="181" width="0.1177%" height="15" fill="rgb(225,95,41)" fg:x="231434620779" fg:w="362090441"/><text x="75.5050%" y="191.50"></text></g><g><title>editor::element::SelectionLayout::new (35,386,716 samples, 0.01%)</title><rect x="75.3727%" y="181" width="0.0115%" height="15" fill="rgb(215,134,24)" fg:x="231796711220" fg:w="35386716"/><text x="75.6227%" y="191.50"></text></g><g><title>editor::element::layout_line (46,655,535 samples, 0.02%)</title><rect x="75.3842%" y="181" width="0.0152%" height="15" fill="rgb(235,23,54)" fg:x="231832097936" fg:w="46655535"/><text x="75.6342%" y="191.50"></text></g><g><title>editor::selections_collection::SelectionsCollection::newest (39,784,110 samples, 0.01%)</title><rect x="75.4027%" y="165" width="0.0129%" height="15" fill="rgb(229,96,31)" fg:x="231889025020" fg:w="39784110"/><text x="75.6527%" y="175.50"></text></g><g><title>editor::indent_guides::&lt;impl editor::Editor&gt;::find_active_indent_guide_indices (54,674,560 samples, 0.02%)</title><rect x="75.3998%" y="181" width="0.0178%" height="15" fill="rgb(206,111,12)" fg:x="231879895927" fg:w="54674560"/><text x="75.6498%" y="191.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt; as core::iter::traits::iterator::Iterator&gt;::next (36,852,429 samples, 0.01%)</title><rect x="75.4175%" y="165" width="0.0120%" height="15" fill="rgb(222,177,8)" fg:x="231934570487" fg:w="36852429"/><text x="75.6675%" y="175.50"></text></g><g><title>editor::indent_guides::&lt;impl editor::Editor&gt;::indent_guides (65,712,621 samples, 0.02%)</title><rect x="75.4175%" y="181" width="0.0214%" height="15" fill="rgb(251,36,52)" fg:x="231934570487" fg:w="65712621"/><text x="75.6675%" y="191.50"></text></g><g><title>editor::scroll::ScrollAnchor::scroll_position (34,885,241 samples, 0.01%)</title><rect x="75.4396%" y="181" width="0.0113%" height="15" fill="rgb(216,182,29)" fg:x="232002404911" fg:w="34885241"/><text x="75.6896%" y="191.50"></text></g><g><title>editor::selections_collection::SelectionsCollection::all (48,254,454 samples, 0.02%)</title><rect x="75.4509%" y="181" width="0.0157%" height="15" fill="rgb(241,145,50)" fg:x="232037290152" fg:w="48254454"/><text x="75.7009%" y="191.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (35,570,403 samples, 0.01%)</title><rect x="75.4851%" y="165" width="0.0116%" height="15" fill="rgb(231,71,35)" fg:x="232142232009" fg:w="35570403"/><text x="75.7351%" y="175.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (46,626,462 samples, 0.02%)</title><rect x="75.4851%" y="181" width="0.0152%" height="15" fill="rgb(218,22,17)" fg:x="232142232009" fg:w="46626462"/><text x="75.7351%" y="191.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,115,649,358 samples, 1.01%)</title><rect x="74.5303%" y="197" width="1.0131%" height="15" fill="rgb(225,227,6)" fg:x="229206023792" fg:w="3115649358"/><text x="74.7803%" y="207.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (3,140,033,299 samples, 1.02%)</title><rect x="74.5292%" y="213" width="1.0210%" height="15" fill="rgb(224,204,17)" fg:x="229202574906" fg:w="3140033299"/><text x="74.7792%" y="223.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (3,142,339,155 samples, 1.02%)</title><rect x="74.5292%" y="229" width="1.0218%" height="15" fill="rgb(227,61,28)" fg:x="229202574906" fg:w="3142339155"/><text x="74.7792%" y="239.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (3,143,516,982 samples, 1.02%)</title><rect x="74.5292%" y="245" width="1.0222%" height="15" fill="rgb(242,148,23)" fg:x="229202574906" fg:w="3143516982"/><text x="74.7792%" y="255.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (3,155,243,480 samples, 1.03%)</title><rect x="74.5257%" y="405" width="1.0260%" height="15" fill="rgb(237,105,33)" fg:x="229192001166" fg:w="3155243480"/><text x="74.7757%" y="415.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (3,146,609,294 samples, 1.02%)</title><rect x="74.5285%" y="389" width="1.0232%" height="15" fill="rgb(238,218,40)" fg:x="229200635352" fg:w="3146609294"/><text x="74.7785%" y="399.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (3,146,609,294 samples, 1.02%)</title><rect x="74.5285%" y="373" width="1.0232%" height="15" fill="rgb(209,126,11)" fg:x="229200635352" fg:w="3146609294"/><text x="74.7785%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (3,145,784,233 samples, 1.02%)</title><rect x="74.5288%" y="357" width="1.0229%" height="15" fill="rgb(245,90,11)" fg:x="229201460413" fg:w="3145784233"/><text x="74.7788%" y="367.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (3,145,784,233 samples, 1.02%)</title><rect x="74.5288%" y="341" width="1.0229%" height="15" fill="rgb(211,195,10)" fg:x="229201460413" fg:w="3145784233"/><text x="74.7788%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (3,145,784,233 samples, 1.02%)</title><rect x="74.5288%" y="325" width="1.0229%" height="15" fill="rgb(231,45,45)" fg:x="229201460413" fg:w="3145784233"/><text x="74.7788%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (3,145,784,233 samples, 1.02%)</title><rect x="74.5288%" y="309" width="1.0229%" height="15" fill="rgb(246,100,43)" fg:x="229201460413" fg:w="3145784233"/><text x="74.7788%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,145,784,233 samples, 1.02%)</title><rect x="74.5288%" y="293" width="1.0229%" height="15" fill="rgb(241,193,8)" fg:x="229201460413" fg:w="3145784233"/><text x="74.7788%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,145,784,233 samples, 1.02%)</title><rect x="74.5288%" y="277" width="1.0229%" height="15" fill="rgb(208,76,19)" fg:x="229201460413" fg:w="3145784233"/><text x="74.7788%" y="287.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (3,145,784,233 samples, 1.02%)</title><rect x="74.5288%" y="261" width="1.0229%" height="15" fill="rgb(223,69,40)" fg:x="229201460413" fg:w="3145784233"/><text x="74.7788%" y="271.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (3,159,867,078 samples, 1.03%)</title><rect x="74.5250%" y="469" width="1.0275%" height="15" fill="rgb(207,120,39)" fg:x="229189667009" fg:w="3159867078"/><text x="74.7750%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (3,157,532,921 samples, 1.03%)</title><rect x="74.5257%" y="453" width="1.0267%" height="15" fill="rgb(212,209,28)" fg:x="229192001166" fg:w="3157532921"/><text x="74.7757%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,157,532,921 samples, 1.03%)</title><rect x="74.5257%" y="437" width="1.0267%" height="15" fill="rgb(246,82,29)" fg:x="229192001166" fg:w="3157532921"/><text x="74.7757%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,157,532,921 samples, 1.03%)</title><rect x="74.5257%" y="421" width="1.0267%" height="15" fill="rgb(239,6,40)" fg:x="229192001166" fg:w="3157532921"/><text x="74.7757%" y="431.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (3,162,981,764 samples, 1.03%)</title><rect x="74.5243%" y="629" width="1.0285%" height="15" fill="rgb(228,181,35)" fg:x="229187504749" fg:w="3162981764"/><text x="74.7743%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (3,161,948,741 samples, 1.03%)</title><rect x="74.5246%" y="613" width="1.0282%" height="15" fill="rgb(238,151,2)" fg:x="229188537772" fg:w="3161948741"/><text x="74.7746%" y="623.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (3,161,948,741 samples, 1.03%)</title><rect x="74.5246%" y="597" width="1.0282%" height="15" fill="rgb(236,94,18)" fg:x="229188537772" fg:w="3161948741"/><text x="74.7746%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (3,160,819,504 samples, 1.03%)</title><rect x="74.5250%" y="581" width="1.0278%" height="15" fill="rgb(208,38,14)" fg:x="229189667009" fg:w="3160819504"/><text x="74.7750%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (3,160,819,504 samples, 1.03%)</title><rect x="74.5250%" y="565" width="1.0278%" height="15" fill="rgb(234,215,27)" fg:x="229189667009" fg:w="3160819504"/><text x="74.7750%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,160,819,504 samples, 1.03%)</title><rect x="74.5250%" y="549" width="1.0278%" height="15" fill="rgb(254,211,53)" fg:x="229189667009" fg:w="3160819504"/><text x="74.7750%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,160,819,504 samples, 1.03%)</title><rect x="74.5250%" y="533" width="1.0278%" height="15" fill="rgb(216,175,11)" fg:x="229189667009" fg:w="3160819504"/><text x="74.7750%" y="543.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (3,160,819,504 samples, 1.03%)</title><rect x="74.5250%" y="517" width="1.0278%" height="15" fill="rgb(246,179,26)" fg:x="229189667009" fg:w="3160819504"/><text x="74.7750%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (3,160,819,504 samples, 1.03%)</title><rect x="74.5250%" y="501" width="1.0278%" height="15" fill="rgb(249,19,52)" fg:x="229189667009" fg:w="3160819504"/><text x="74.7750%" y="511.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (3,160,819,504 samples, 1.03%)</title><rect x="74.5250%" y="485" width="1.0278%" height="15" fill="rgb(230,42,52)" fg:x="229189667009" fg:w="3160819504"/><text x="74.7750%" y="495.50"></text></g><g><title>&lt;workspace::pane::Pane as gpui::element::Render&gt;::render (42,128,593 samples, 0.01%)</title><rect x="75.5542%" y="613" width="0.0137%" height="15" fill="rgb(221,171,0)" fg:x="232354924113" fg:w="42128593"/><text x="75.8042%" y="623.50"></text></g><g><title>gpui::view::any_view::render (52,390,223 samples, 0.02%)</title><rect x="75.5528%" y="629" width="0.0170%" height="15" fill="rgb(222,177,40)" fg:x="232350486513" fg:w="52390223"/><text x="75.8028%" y="639.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (3,620,388,707 samples, 1.18%)</title><rect x="74.3940%" y="645" width="1.1772%" height="15" fill="rgb(247,34,16)" fg:x="228786884920" fg:w="3620388707"/><text x="74.6440%" y="655.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (3,635,374,276 samples, 1.18%)</title><rect x="74.3940%" y="661" width="1.1821%" height="15" fill="rgb(213,217,37)" fg:x="228786884920" fg:w="3635374276"/><text x="74.6440%" y="671.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (3,639,516,175 samples, 1.18%)</title><rect x="74.3931%" y="805" width="1.1835%" height="15" fill="rgb(231,189,24)" fg:x="228783992687" fg:w="3639516175"/><text x="74.6431%" y="815.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (3,638,553,130 samples, 1.18%)</title><rect x="74.3934%" y="789" width="1.1831%" height="15" fill="rgb(214,22,9)" fg:x="228784955732" fg:w="3638553130"/><text x="74.6434%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (3,638,553,130 samples, 1.18%)</title><rect x="74.3934%" y="773" width="1.1831%" height="15" fill="rgb(212,70,22)" fg:x="228784955732" fg:w="3638553130"/><text x="74.6434%" y="783.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (3,638,553,130 samples, 1.18%)</title><rect x="74.3934%" y="757" width="1.1831%" height="15" fill="rgb(249,64,51)" fg:x="228784955732" fg:w="3638553130"/><text x="74.6434%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (3,638,553,130 samples, 1.18%)</title><rect x="74.3934%" y="741" width="1.1831%" height="15" fill="rgb(249,148,20)" fg:x="228784955732" fg:w="3638553130"/><text x="74.6434%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (3,638,553,130 samples, 1.18%)</title><rect x="74.3934%" y="725" width="1.1831%" height="15" fill="rgb(246,46,48)" fg:x="228784955732" fg:w="3638553130"/><text x="74.6434%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,638,553,130 samples, 1.18%)</title><rect x="74.3934%" y="709" width="1.1831%" height="15" fill="rgb(217,34,48)" fg:x="228784955732" fg:w="3638553130"/><text x="74.6434%" y="719.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,636,623,942 samples, 1.18%)</title><rect x="74.3940%" y="693" width="1.1825%" height="15" fill="rgb(222,45,26)" fg:x="228786884920" fg:w="3636623942"/><text x="74.6440%" y="703.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (3,636,623,942 samples, 1.18%)</title><rect x="74.3940%" y="677" width="1.1825%" height="15" fill="rgb(230,201,36)" fg:x="228786884920" fg:w="3636623942"/><text x="74.6440%" y="687.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (3,650,944,124 samples, 1.19%)</title><rect x="74.3909%" y="917" width="1.1872%" height="15" fill="rgb(217,30,43)" fg:x="228777195145" fg:w="3650944124"/><text x="74.6409%" y="927.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (3,650,944,124 samples, 1.19%)</title><rect x="74.3909%" y="901" width="1.1872%" height="15" fill="rgb(230,197,40)" fg:x="228777195145" fg:w="3650944124"/><text x="74.6409%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (3,650,944,124 samples, 1.19%)</title><rect x="74.3909%" y="885" width="1.1872%" height="15" fill="rgb(239,181,18)" fg:x="228777195145" fg:w="3650944124"/><text x="74.6409%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (3,648,768,895 samples, 1.19%)</title><rect x="74.3916%" y="869" width="1.1865%" height="15" fill="rgb(222,60,39)" fg:x="228779370374" fg:w="3648768895"/><text x="74.6416%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,648,768,895 samples, 1.19%)</title><rect x="74.3916%" y="853" width="1.1865%" height="15" fill="rgb(210,60,22)" fg:x="228779370374" fg:w="3648768895"/><text x="74.6416%" y="863.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (3,647,567,214 samples, 1.19%)</title><rect x="74.3920%" y="837" width="1.1861%" height="15" fill="rgb(239,213,48)" fg:x="228780572055" fg:w="3647567214"/><text x="74.6420%" y="847.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (3,645,378,227 samples, 1.19%)</title><rect x="74.3927%" y="821" width="1.1854%" height="15" fill="rgb(253,214,23)" fg:x="228782761042" fg:w="3645378227"/><text x="74.6427%" y="831.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (4,342,873,835 samples, 1.41%)</title><rect x="74.1665%" y="933" width="1.4122%" height="15" fill="rgb(211,98,45)" fg:x="228087342174" fg:w="4342873835"/><text x="74.4165%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (4,347,424,766 samples, 1.41%)</title><rect x="74.1658%" y="1029" width="1.4136%" height="15" fill="rgb(239,130,44)" fg:x="228085081226" fg:w="4347424766"/><text x="74.4158%" y="1039.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (4,347,424,766 samples, 1.41%)</title><rect x="74.1658%" y="1013" width="1.4136%" height="15" fill="rgb(222,181,35)" fg:x="228085081226" fg:w="4347424766"/><text x="74.4158%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (4,346,422,057 samples, 1.41%)</title><rect x="74.1661%" y="997" width="1.4133%" height="15" fill="rgb(219,219,49)" fg:x="228086083935" fg:w="4346422057"/><text x="74.4161%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (4,346,422,057 samples, 1.41%)</title><rect x="74.1661%" y="981" width="1.4133%" height="15" fill="rgb(227,161,51)" fg:x="228086083935" fg:w="4346422057"/><text x="74.4161%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,346,422,057 samples, 1.41%)</title><rect x="74.1661%" y="965" width="1.4133%" height="15" fill="rgb(239,112,27)" fg:x="228086083935" fg:w="4346422057"/><text x="74.4161%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,345,163,818 samples, 1.41%)</title><rect x="74.1665%" y="949" width="1.4129%" height="15" fill="rgb(248,122,18)" fg:x="228087342174" fg:w="4345163818"/><text x="74.4165%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (4,349,605,642 samples, 1.41%)</title><rect x="74.1658%" y="1141" width="1.4143%" height="15" fill="rgb(245,130,23)" fg:x="228085081226" fg:w="4349605642"/><text x="74.4158%" y="1151.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (4,349,605,642 samples, 1.41%)</title><rect x="74.1658%" y="1125" width="1.4143%" height="15" fill="rgb(211,225,28)" fg:x="228085081226" fg:w="4349605642"/><text x="74.4158%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (4,349,605,642 samples, 1.41%)</title><rect x="74.1658%" y="1109" width="1.4143%" height="15" fill="rgb(242,105,44)" fg:x="228085081226" fg:w="4349605642"/><text x="74.4158%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (4,349,605,642 samples, 1.41%)</title><rect x="74.1658%" y="1093" width="1.4143%" height="15" fill="rgb(216,183,46)" fg:x="228085081226" fg:w="4349605642"/><text x="74.4158%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,349,605,642 samples, 1.41%)</title><rect x="74.1658%" y="1077" width="1.4143%" height="15" fill="rgb(227,112,9)" fg:x="228085081226" fg:w="4349605642"/><text x="74.4158%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,349,605,642 samples, 1.41%)</title><rect x="74.1658%" y="1061" width="1.4143%" height="15" fill="rgb(244,21,0)" fg:x="228085081226" fg:w="4349605642"/><text x="74.4158%" y="1071.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (4,349,605,642 samples, 1.41%)</title><rect x="74.1658%" y="1045" width="1.4143%" height="15" fill="rgb(236,185,14)" fg:x="228085081226" fg:w="4349605642"/><text x="74.4158%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (4,531,974,493 samples, 1.47%)</title><rect x="74.1068%" y="1365" width="1.4736%" height="15" fill="rgb(236,170,30)" fg:x="227903573194" fg:w="4531974493"/><text x="74.3568%" y="1375.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (4,531,974,493 samples, 1.47%)</title><rect x="74.1068%" y="1349" width="1.4736%" height="15" fill="rgb(209,198,51)" fg:x="227903573194" fg:w="4531974493"/><text x="74.3568%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (4,531,974,493 samples, 1.47%)</title><rect x="74.1068%" y="1333" width="1.4736%" height="15" fill="rgb(205,171,26)" fg:x="227903573194" fg:w="4531974493"/><text x="74.3568%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (4,531,974,493 samples, 1.47%)</title><rect x="74.1068%" y="1317" width="1.4736%" height="15" fill="rgb(246,41,49)" fg:x="227903573194" fg:w="4531974493"/><text x="74.3568%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,531,974,493 samples, 1.47%)</title><rect x="74.1068%" y="1301" width="1.4736%" height="15" fill="rgb(240,229,12)" fg:x="227903573194" fg:w="4531974493"/><text x="74.3568%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,531,974,493 samples, 1.47%)</title><rect x="74.1068%" y="1285" width="1.4736%" height="15" fill="rgb(212,8,54)" fg:x="227903573194" fg:w="4531974493"/><text x="74.3568%" y="1295.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (4,530,724,134 samples, 1.47%)</title><rect x="74.1072%" y="1269" width="1.4732%" height="15" fill="rgb(230,114,13)" fg:x="227904823553" fg:w="4530724134"/><text x="74.3572%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (4,353,865,263 samples, 1.42%)</title><rect x="74.1647%" y="1253" width="1.4157%" height="15" fill="rgb(229,130,28)" fg:x="228081682424" fg:w="4353865263"/><text x="74.4147%" y="1263.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (4,353,865,263 samples, 1.42%)</title><rect x="74.1647%" y="1237" width="1.4157%" height="15" fill="rgb(206,139,15)" fg:x="228081682424" fg:w="4353865263"/><text x="74.4147%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (4,353,865,263 samples, 1.42%)</title><rect x="74.1647%" y="1221" width="1.4157%" height="15" fill="rgb(241,188,35)" fg:x="228081682424" fg:w="4353865263"/><text x="74.4147%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (4,352,926,314 samples, 1.42%)</title><rect x="74.1650%" y="1205" width="1.4154%" height="15" fill="rgb(208,224,26)" fg:x="228082621373" fg:w="4352926314"/><text x="74.4150%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,352,926,314 samples, 1.42%)</title><rect x="74.1650%" y="1189" width="1.4154%" height="15" fill="rgb(251,131,28)" fg:x="228082621373" fg:w="4352926314"/><text x="74.4150%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,352,926,314 samples, 1.42%)</title><rect x="74.1650%" y="1173" width="1.4154%" height="15" fill="rgb(208,153,1)" fg:x="228082621373" fg:w="4352926314"/><text x="74.4150%" y="1183.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (4,352,926,314 samples, 1.42%)</title><rect x="74.1650%" y="1157" width="1.4154%" height="15" fill="rgb(234,33,36)" fg:x="228082621373" fg:w="4352926314"/><text x="74.4150%" y="1167.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (39,043,010 samples, 0.01%)</title><rect x="75.5826%" y="869" width="0.0127%" height="15" fill="rgb(246,42,29)" fg:x="232442070749" fg:w="39043010"/><text x="75.8326%" y="879.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (42,943,556 samples, 0.01%)</title><rect x="75.5819%" y="981" width="0.0140%" height="15" fill="rgb(251,114,16)" fg:x="232440128672" fg:w="42943556"/><text x="75.8319%" y="991.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (42,943,556 samples, 0.01%)</title><rect x="75.5819%" y="965" width="0.0140%" height="15" fill="rgb(233,13,38)" fg:x="232440128672" fg:w="42943556"/><text x="75.8319%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (42,943,556 samples, 0.01%)</title><rect x="75.5819%" y="949" width="0.0140%" height="15" fill="rgb(247,120,19)" fg:x="232440128672" fg:w="42943556"/><text x="75.8319%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (42,943,556 samples, 0.01%)</title><rect x="75.5819%" y="933" width="0.0140%" height="15" fill="rgb(205,11,16)" fg:x="232440128672" fg:w="42943556"/><text x="75.8319%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (41,899,271 samples, 0.01%)</title><rect x="75.5823%" y="917" width="0.0136%" height="15" fill="rgb(228,185,19)" fg:x="232441172957" fg:w="41899271"/><text x="75.8323%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (41,001,479 samples, 0.01%)</title><rect x="75.5826%" y="901" width="0.0133%" height="15" fill="rgb(239,88,52)" fg:x="232442070749" fg:w="41001479"/><text x="75.8326%" y="911.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (41,001,479 samples, 0.01%)</title><rect x="75.5826%" y="885" width="0.0133%" height="15" fill="rgb(219,23,1)" fg:x="232442070749" fg:w="41001479"/><text x="75.8326%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,874,442 samples, 0.01%)</title><rect x="75.5816%" y="1061" width="0.0146%" height="15" fill="rgb(253,177,16)" fg:x="232439103956" fg:w="44874442"/><text x="75.8316%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (43,849,726 samples, 0.01%)</title><rect x="75.5819%" y="1045" width="0.0143%" height="15" fill="rgb(225,150,40)" fg:x="232440128672" fg:w="43849726"/><text x="75.8319%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (43,849,726 samples, 0.01%)</title><rect x="75.5819%" y="1029" width="0.0143%" height="15" fill="rgb(208,108,30)" fg:x="232440128672" fg:w="43849726"/><text x="75.8319%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (43,849,726 samples, 0.01%)</title><rect x="75.5819%" y="1013" width="0.0143%" height="15" fill="rgb(214,122,4)" fg:x="232440128672" fg:w="43849726"/><text x="75.8319%" y="1023.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (43,849,726 samples, 0.01%)</title><rect x="75.5819%" y="997" width="0.0143%" height="15" fill="rgb(229,74,37)" fg:x="232440128672" fg:w="43849726"/><text x="75.8319%" y="1007.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (49,715,517 samples, 0.02%)</title><rect x="75.5804%" y="1365" width="0.0162%" height="15" fill="rgb(233,61,41)" fg:x="232435547687" fg:w="49715517"/><text x="75.8304%" y="1375.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (49,715,517 samples, 0.02%)</title><rect x="75.5804%" y="1349" width="0.0162%" height="15" fill="rgb(238,191,5)" fg:x="232435547687" fg:w="49715517"/><text x="75.8304%" y="1359.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (49,715,517 samples, 0.02%)</title><rect x="75.5804%" y="1333" width="0.0162%" height="15" fill="rgb(233,78,24)" fg:x="232435547687" fg:w="49715517"/><text x="75.8304%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (47,155,263 samples, 0.02%)</title><rect x="75.5813%" y="1317" width="0.0153%" height="15" fill="rgb(211,142,8)" fg:x="232438107941" fg:w="47155263"/><text x="75.8313%" y="1327.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (47,155,263 samples, 0.02%)</title><rect x="75.5813%" y="1301" width="0.0153%" height="15" fill="rgb(253,38,53)" fg:x="232438107941" fg:w="47155263"/><text x="75.8313%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (47,155,263 samples, 0.02%)</title><rect x="75.5813%" y="1285" width="0.0153%" height="15" fill="rgb(234,63,51)" fg:x="232438107941" fg:w="47155263"/><text x="75.8313%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1269" width="0.0150%" height="15" fill="rgb(205,23,31)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1253" width="0.0150%" height="15" fill="rgb(210,184,50)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1237" width="0.0150%" height="15" fill="rgb(222,112,26)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1247.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1221" width="0.0150%" height="15" fill="rgb(250,98,18)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1205" width="0.0150%" height="15" fill="rgb(250,34,12)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1215.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1189" width="0.0150%" height="15" fill="rgb(236,141,30)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1173" width="0.0150%" height="15" fill="rgb(246,134,38)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1157" width="0.0150%" height="15" fill="rgb(240,114,4)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1141" width="0.0150%" height="15" fill="rgb(243,113,39)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1125" width="0.0150%" height="15" fill="rgb(239,215,4)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1135.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1109" width="0.0150%" height="15" fill="rgb(236,229,45)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1093" width="0.0150%" height="15" fill="rgb(242,2,6)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1103.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,159,248 samples, 0.02%)</title><rect x="75.5816%" y="1077" width="0.0150%" height="15" fill="rgb(239,108,21)" fg:x="232439103956" fg:w="46159248"/><text x="75.8316%" y="1087.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (4,592,152,737 samples, 1.49%)</title><rect x="74.1037%" y="1717" width="1.4932%" height="15" fill="rgb(215,168,34)" fg:x="227894204848" fg:w="4592152737"/><text x="74.3537%" y="1727.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (4,592,152,737 samples, 1.49%)</title><rect x="74.1037%" y="1701" width="1.4932%" height="15" fill="rgb(238,31,17)" fg:x="227894204848" fg:w="4592152737"/><text x="74.3537%" y="1711.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (4,591,225,304 samples, 1.49%)</title><rect x="74.1040%" y="1685" width="1.4929%" height="15" fill="rgb(220,133,11)" fg:x="227895132281" fg:w="4591225304"/><text x="74.3540%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (4,590,414,659 samples, 1.49%)</title><rect x="74.1043%" y="1669" width="1.4927%" height="15" fill="rgb(212,158,23)" fg:x="227895942926" fg:w="4590414659"/><text x="74.3543%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1653" width="1.4923%" height="15" fill="rgb(223,172,7)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1637" width="1.4923%" height="15" fill="rgb(244,3,52)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1621" width="1.4923%" height="15" fill="rgb(207,69,27)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1631.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1605" width="1.4923%" height="15" fill="rgb(213,136,45)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1589" width="1.4923%" height="15" fill="rgb(218,79,17)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1599.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1573" width="1.4923%" height="15" fill="rgb(216,106,36)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1557" width="1.4923%" height="15" fill="rgb(251,27,45)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1541" width="1.4923%" height="15" fill="rgb(232,21,34)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1525" width="1.4923%" height="15" fill="rgb(249,191,16)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1509" width="1.4923%" height="15" fill="rgb(224,88,20)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1519.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (4,589,176,699 samples, 1.49%)</title><rect x="74.1047%" y="1493" width="1.4923%" height="15" fill="rgb(237,93,27)" fg:x="227897180886" fg:w="4589176699"/><text x="74.3547%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (4,588,261,310 samples, 1.49%)</title><rect x="74.1050%" y="1477" width="1.4920%" height="15" fill="rgb(226,198,48)" fg:x="227898096275" fg:w="4588261310"/><text x="74.3550%" y="1487.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (4,588,261,310 samples, 1.49%)</title><rect x="74.1050%" y="1461" width="1.4920%" height="15" fill="rgb(207,162,53)" fg:x="227898096275" fg:w="4588261310"/><text x="74.3550%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (4,588,261,310 samples, 1.49%)</title><rect x="74.1050%" y="1445" width="1.4920%" height="15" fill="rgb(207,169,9)" fg:x="227898096275" fg:w="4588261310"/><text x="74.3550%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (4,588,261,310 samples, 1.49%)</title><rect x="74.1050%" y="1429" width="1.4920%" height="15" fill="rgb(224,166,46)" fg:x="227898096275" fg:w="4588261310"/><text x="74.3550%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,588,261,310 samples, 1.49%)</title><rect x="74.1050%" y="1413" width="1.4920%" height="15" fill="rgb(233,26,6)" fg:x="227898096275" fg:w="4588261310"/><text x="74.3550%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (4,587,123,974 samples, 1.49%)</title><rect x="74.1054%" y="1397" width="1.4916%" height="15" fill="rgb(218,106,45)" fg:x="227899233611" fg:w="4587123974"/><text x="74.3554%" y="1407.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (4,585,938,227 samples, 1.49%)</title><rect x="74.1058%" y="1381" width="1.4912%" height="15" fill="rgb(240,217,4)" fg:x="227900419358" fg:w="4585938227"/><text x="74.3558%" y="1391.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (4,594,177,313 samples, 1.49%)</title><rect x="74.1034%" y="1749" width="1.4939%" height="15" fill="rgb(246,171,10)" fg:x="227893110010" fg:w="4594177313"/><text x="74.3534%" y="1759.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (4,593,082,475 samples, 1.49%)</title><rect x="74.1037%" y="1733" width="1.4935%" height="15" fill="rgb(223,197,30)" fg:x="227894204848" fg:w="4593082475"/><text x="74.3537%" y="1743.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (6,738,939,866 samples, 2.19%)</title><rect x="73.4075%" y="1765" width="2.1913%" height="15" fill="rgb(207,92,16)" fg:x="225752934965" fg:w="6738939866"/><text x="73.6575%" y="1775.50">g..</text></g><g><title>malloc_consolidate (57,260,254 samples, 0.02%)</title><rect x="75.6097%" y="1621" width="0.0186%" height="15" fill="rgb(211,6,44)" fg:x="232525622135" fg:w="57260254"/><text x="75.8597%" y="1631.50"></text></g><g><title>cfree@GLIBC_2.2.5 (59,591,747 samples, 0.02%)</title><rect x="75.6094%" y="1669" width="0.0194%" height="15" fill="rgb(219,139,2)" fg:x="232524518330" fg:w="59591747"/><text x="75.8594%" y="1679.50"></text></g><g><title>_int_free_chunk (59,591,747 samples, 0.02%)</title><rect x="75.6094%" y="1653" width="0.0194%" height="15" fill="rgb(224,103,21)" fg:x="232524518330" fg:w="59591747"/><text x="75.8594%" y="1663.50"></text></g><g><title>_int_free_maybe_consolidate (58,487,942 samples, 0.02%)</title><rect x="75.6097%" y="1637" width="0.0190%" height="15" fill="rgb(254,110,48)" fg:x="232525622135" fg:w="58487942"/><text x="75.8597%" y="1647.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (97,725,484 samples, 0.03%)</title><rect x="75.6364%" y="1573" width="0.0318%" height="15" fill="rgb(212,88,19)" fg:x="232607527487" fg:w="97725484"/><text x="75.8864%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;language::buffer::BufferSnapshot&gt; (89,740,353 samples, 0.03%)</title><rect x="75.6390%" y="1557" width="0.0292%" height="15" fill="rgb(248,103,6)" fg:x="232615512618" fg:w="89740353"/><text x="75.8890%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;text::BufferSnapshot&gt; (66,768,971 samples, 0.02%)</title><rect x="75.6464%" y="1541" width="0.0217%" height="15" fill="rgb(214,53,46)" fg:x="232638484000" fg:w="66768971"/><text x="75.8964%" y="1551.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (146,078,311 samples, 0.05%)</title><rect x="75.6348%" y="1589" width="0.0475%" height="15" fill="rgb(236,190,24)" fg:x="232602767530" fg:w="146078311"/><text x="75.8848%" y="1599.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (166,951,347 samples, 0.05%)</title><rect x="75.6336%" y="1605" width="0.0543%" height="15" fill="rgb(254,58,28)" fg:x="232598982227" fg:w="166951347"/><text x="75.8836%" y="1615.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (172,560,474 samples, 0.06%)</title><rect x="75.6336%" y="1621" width="0.0561%" height="15" fill="rgb(243,63,27)" fg:x="232598982227" fg:w="172560474"/><text x="75.8836%" y="1631.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (177,194,253 samples, 0.06%)</title><rect x="75.6336%" y="1637" width="0.0576%" height="15" fill="rgb(206,81,20)" fg:x="232598982227" fg:w="177194253"/><text x="75.8836%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;alloc::rc::Rc&lt;dyn core::ops::function::Fn&lt;(&amp;dyn core::any::Any,gpui::window::DispatchPhase,&amp;mut gpui::window::Window,&amp;mut gpui::app::App)&gt;+Output = ()&gt;&gt;&gt; (300,604,058 samples, 0.10%)</title><rect x="75.6053%" y="1733" width="0.0977%" height="15" fill="rgb(252,69,51)" fg:x="232511983389" fg:w="300604058"/><text x="75.8553%" y="1743.50"></text></g><g><title>alloc::rc::Rc&lt;T,A&gt;::drop_slow (288,069,117 samples, 0.09%)</title><rect x="75.6094%" y="1717" width="0.0937%" height="15" fill="rgb(222,213,4)" fg:x="232524518330" fg:w="288069117"/><text x="75.8594%" y="1727.50"></text></g><g><title>alloc::rc::Rc&lt;T,A&gt;::drop_slow (288,069,117 samples, 0.09%)</title><rect x="75.6094%" y="1701" width="0.0937%" height="15" fill="rgb(226,198,12)" fg:x="232524518330" fg:w="288069117"/><text x="75.8594%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;editor::element::PositionMap&gt; (288,069,117 samples, 0.09%)</title><rect x="75.6094%" y="1685" width="0.0937%" height="15" fill="rgb(248,115,11)" fg:x="232524518330" fg:w="288069117"/><text x="75.8594%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;editor::display_map::DisplaySnapshot&gt; (213,605,220 samples, 0.07%)</title><rect x="75.6336%" y="1669" width="0.0695%" height="15" fill="rgb(221,148,54)" fg:x="232598982227" fg:w="213605220"/><text x="75.8836%" y="1679.50"></text></g><g><title>core::ptr::drop_in_place&lt;editor::display_map::block_map::BlockSnapshot&gt; (213,605,220 samples, 0.07%)</title><rect x="75.6336%" y="1653" width="0.0695%" height="15" fill="rgb(214,209,51)" fg:x="232598982227" fg:w="213605220"/><text x="75.8836%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;editor::display_map::fold_map::FoldSnapshot&gt; (36,410,967 samples, 0.01%)</title><rect x="75.6912%" y="1637" width="0.0118%" height="15" fill="rgb(249,116,53)" fg:x="232776176480" fg:w="36410967"/><text x="75.9412%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;multi_buffer::MultiBufferSnapshot&gt; (35,338,315 samples, 0.01%)</title><rect x="75.6915%" y="1621" width="0.0115%" height="15" fill="rgb(248,170,1)" fg:x="232777249132" fg:w="35338315"/><text x="75.9415%" y="1631.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (35,338,315 samples, 0.01%)</title><rect x="75.6915%" y="1605" width="0.0115%" height="15" fill="rgb(244,105,10)" fg:x="232777249132" fg:w="35338315"/><text x="75.9415%" y="1615.50"></text></g><g><title>cfree@GLIBC_2.2.5 (33,867,234 samples, 0.01%)</title><rect x="75.7084%" y="1701" width="0.0110%" height="15" fill="rgb(229,100,5)" fg:x="232829186415" fg:w="33867234"/><text x="75.9584%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;dyn core::ops::function::Fn&lt;(&amp;dyn core::any::Any,gpui::window::DispatchPhase,&amp;mut gpui::window::Window,&amp;mut gpui::app::App)&gt;+Output = ()&gt;&gt; (52,362,132 samples, 0.02%)</title><rect x="75.7194%" y="1701" width="0.0170%" height="15" fill="rgb(233,221,39)" fg:x="232863053649" fg:w="52362132"/><text x="75.9694%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;editor::Editor::register_action&lt;vim::motion::Up,gpui::app::context::Context&lt;vim::Vim&gt;::listener&lt;vim::motion::Up,vim::motion::register::{{closure}}&gt;::{{closure}}&gt;::{{closure}}&gt; (32,962,159 samples, 0.01%)</title><rect x="75.7365%" y="1701" width="0.0107%" height="15" fill="rgb(233,88,21)" fg:x="232915415781" fg:w="32962159"/><text x="75.9865%" y="1711.50"></text></g><g><title>alloc::rc::Rc&lt;T,A&gt;::drop_slow (198,468,724 samples, 0.06%)</title><rect x="75.7073%" y="1717" width="0.0645%" height="15" fill="rgb(206,13,0)" fg:x="232825582353" fg:w="198468724"/><text x="75.9573%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;ui::components::scrollbar::ScrollbarStateWrapper&lt;gpui::elements::div::ScrollHandle&gt;&gt; (74,639,221 samples, 0.02%)</title><rect x="75.7475%" y="1701" width="0.0243%" height="15" fill="rgb(242,15,35)" fg:x="232949411856" fg:w="74639221"/><text x="75.9975%" y="1711.50"></text></g><g><title>&lt;gpui::app::entity_map::AnyEntity as core::ops::drop::Drop&gt;::drop (71,295,710 samples, 0.02%)</title><rect x="75.7486%" y="1685" width="0.0232%" height="15" fill="rgb(247,142,41)" fg:x="232952755367" fg:w="71295710"/><text x="75.9986%" y="1695.50"></text></g><g><title>gpui::key_dispatch::DispatchTree::clear (597,653,601 samples, 0.19%)</title><rect x="75.5988%" y="1765" width="0.1943%" height="15" fill="rgb(245,51,29)" fg:x="232491874831" fg:w="597653601"/><text x="75.8488%" y="1775.50"></text></g><g><title>core::ptr::drop_in_place&lt;gpui::key_dispatch::DispatchNode&gt; (588,506,932 samples, 0.19%)</title><rect x="75.6017%" y="1749" width="0.1914%" height="15" fill="rgb(228,209,43)" fg:x="232501021500" fg:w="588506932"/><text x="75.8517%" y="1759.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;gpui::key_dispatch::DispatchActionListener&gt;&gt; (276,940,985 samples, 0.09%)</title><rect x="75.7030%" y="1733" width="0.0901%" height="15" fill="rgb(233,185,9)" fg:x="232812587447" fg:w="276940985"/><text x="75.9530%" y="1743.50"></text></g><g><title>cfree@GLIBC_2.2.5 (65,477,355 samples, 0.02%)</title><rect x="75.7718%" y="1717" width="0.0213%" height="15" fill="rgb(226,93,0)" fg:x="233024051077" fg:w="65477355"/><text x="76.0218%" y="1727.50"></text></g><g><title>_int_free_chunk (57,462,836 samples, 0.02%)</title><rect x="75.7744%" y="1701" width="0.0187%" height="15" fill="rgb(245,194,43)" fg:x="233032065596" fg:w="57462836"/><text x="76.0244%" y="1711.50"></text></g><g><title>&lt;gpui::window::ElementId as core::hash::Hash&gt;::hash (52,893,609 samples, 0.02%)</title><rect x="75.8159%" y="1749" width="0.0172%" height="15" fill="rgb(211,145,34)" fg:x="233159811487" fg:w="52893609"/><text x="76.0659%" y="1759.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::remove_entry (131,578,635 samples, 0.04%)</title><rect x="75.8025%" y="1765" width="0.0428%" height="15" fill="rgb(231,228,28)" fg:x="233118314249" fg:w="131578635"/><text x="76.0525%" y="1775.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (10,733,360,376 samples, 3.49%)</title><rect x="72.3592%" y="1813" width="3.4901%" height="15" fill="rgb(236,149,4)" fg:x="222529098340" fg:w="10733360376"/><text x="72.6092%" y="1823.50">gpu..</text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (10,690,119,618 samples, 3.48%)</title><rect x="72.3732%" y="1797" width="3.4761%" height="15" fill="rgb(234,114,38)" fg:x="222572339098" fg:w="10690119618"/><text x="72.6232%" y="1807.50">gpu..</text></g><g><title>gpui::window::Window::draw (9,555,917,331 samples, 3.11%)</title><rect x="72.7421%" y="1781" width="3.1073%" height="15" fill="rgb(246,132,51)" fg:x="223706541385" fg:w="9555917331"/><text x="72.9921%" y="1791.50">gpu..</text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (10,746,967,468 samples, 3.49%)</title><rect x="72.3565%" y="1845" width="3.4946%" height="15" fill="rgb(251,137,22)" fg:x="222520696416" fg:w="10746967468"/><text x="72.6065%" y="1855.50">&lt;gp..</text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (10,746,967,468 samples, 3.49%)</title><rect x="72.3565%" y="1829" width="3.4946%" height="15" fill="rgb(243,59,52)" fg:x="222520696416" fg:w="10746967468"/><text x="72.6065%" y="1839.50">gpu..</text></g><g><title>gpui::app::App::flush_effects (41,901,616 samples, 0.01%)</title><rect x="75.8601%" y="1797" width="0.0136%" height="15" fill="rgb(239,56,28)" fg:x="233295728029" fg:w="41901616"/><text x="76.1101%" y="1807.50"></text></g><g><title>editor::display_map::block_map::BlockSnapshot::clip_point (31,067,118 samples, 0.01%)</title><rect x="75.9057%" y="1749" width="0.0101%" height="15" fill="rgb(218,168,27)" fg:x="233435940552" fg:w="31067118"/><text x="76.1557%" y="1759.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::clip_point (31,067,118 samples, 0.01%)</title><rect x="75.9057%" y="1733" width="0.0101%" height="15" fill="rgb(232,165,11)" fg:x="233435940552" fg:w="31067118"/><text x="76.1557%" y="1743.50"></text></g><g><title>editor::element::PositionMap::point_for_position (59,626,468 samples, 0.02%)</title><rect x="75.9057%" y="1765" width="0.0194%" height="15" fill="rgb(253,55,41)" fg:x="233435940552" fg:w="59626468"/><text x="76.1557%" y="1775.50"></text></g><g><title>editor::display_map::DisplayMap::snapshot (62,637,596 samples, 0.02%)</title><rect x="75.9324%" y="1637" width="0.0204%" height="15" fill="rgb(233,206,24)" fg:x="233518035530" fg:w="62637596"/><text x="76.1824%" y="1647.50"></text></g><g><title>multi_buffer::MultiBuffer::snapshot (60,559,039 samples, 0.02%)</title><rect x="75.9331%" y="1621" width="0.0197%" height="15" fill="rgb(220,199,8)" fg:x="233520114087" fg:w="60559039"/><text x="76.1831%" y="1631.50"></text></g><g><title>multi_buffer::MultiBuffer::sync_ (59,357,138 samples, 0.02%)</title><rect x="75.9335%" y="1605" width="0.0193%" height="15" fill="rgb(254,65,26)" fg:x="233521315988" fg:w="59357138"/><text x="76.1835%" y="1615.50"></text></g><g><title>git_ui::project_diff::ProjectDiff::move_to_entry (100,521,973 samples, 0.03%)</title><rect x="75.9263%" y="1701" width="0.0327%" height="15" fill="rgb(253,102,23)" fg:x="233499098054" fg:w="100521973"/><text x="76.1763%" y="1711.50"></text></g><g><title>git_ui::project_diff::ProjectDiff::move_to_path (100,521,973 samples, 0.03%)</title><rect x="75.9263%" y="1685" width="0.0327%" height="15" fill="rgb(231,103,35)" fg:x="233499098054" fg:w="100521973"/><text x="76.1763%" y="1695.50"></text></g><g><title>editor::Editor::apply_selection_effects (100,521,973 samples, 0.03%)</title><rect x="75.9263%" y="1669" width="0.0327%" height="15" fill="rgb(238,26,10)" fg:x="233499098054" fg:w="100521973"/><text x="76.1763%" y="1679.50"></text></g><g><title>editor::Editor::selections_did_change (100,521,973 samples, 0.03%)</title><rect x="75.9263%" y="1653" width="0.0327%" height="15" fill="rgb(234,191,34)" fg:x="233499098054" fg:w="100521973"/><text x="76.1763%" y="1663.50"></text></g><g><title>git_ui::git_panel::GitPanel::open_diff::_{{closure}}::_{{closure}} (105,537,038 samples, 0.03%)</title><rect x="75.9263%" y="1733" width="0.0343%" height="15" fill="rgb(206,210,9)" fg:x="233499098054" fg:w="105537038"/><text x="76.1763%" y="1743.50"></text></g><g><title>git_ui::project_diff::ProjectDiff::deploy_at (105,537,038 samples, 0.03%)</title><rect x="75.9263%" y="1717" width="0.0343%" height="15" fill="rgb(219,155,3)" fg:x="233499098054" fg:w="105537038"/><text x="76.1763%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::on_click::_{{closure}} (109,025,633 samples, 0.04%)</title><rect x="75.9259%" y="1765" width="0.0355%" height="15" fill="rgb(221,62,52)" fg:x="233498084192" fg:w="109025633"/><text x="76.1759%" y="1775.50"></text></g><g><title>git_ui::git_panel::GitPanel::open_diff (109,025,633 samples, 0.04%)</title><rect x="75.9259%" y="1749" width="0.0355%" height="15" fill="rgb(215,197,36)" fg:x="233498084192" fg:w="109025633"/><text x="76.1759%" y="1759.50"></text></g><g><title>gpui::window::Window::on_mouse_event::_{{closure}} (244,646,028 samples, 0.08%)</title><rect x="75.8856%" y="1781" width="0.0796%" height="15" fill="rgb(226,222,6)" fg:x="233373923319" fg:w="244646028"/><text x="76.1356%" y="1791.50"></text></g><g><title>gpui::window::Window::dispatch_event (285,779,626 samples, 0.09%)</title><rect x="75.8740%" y="1797" width="0.0929%" height="15" fill="rgb(215,58,28)" fg:x="233338332960" fg:w="285779626"/><text x="76.1240%" y="1807.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_pointer::WlPointer,()&gt;&gt;::event (343,656,529 samples, 0.11%)</title><rect x="75.8584%" y="1845" width="0.1117%" height="15" fill="rgb(212,148,2)" fg:x="233290323134" fg:w="343656529"/><text x="76.1084%" y="1855.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::handle_input (340,400,208 samples, 0.11%)</title><rect x="75.8594%" y="1829" width="0.1107%" height="15" fill="rgb(208,21,42)" fg:x="233293579455" fg:w="340400208"/><text x="76.1094%" y="1839.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (339,358,951 samples, 0.11%)</title><rect x="75.8598%" y="1813" width="0.1103%" height="15" fill="rgb(209,107,26)" fg:x="233294620712" fg:w="339358951"/><text x="76.1098%" y="1823.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (11,230,116,905 samples, 3.65%)</title><rect x="72.3292%" y="1877" width="3.6517%" height="15" fill="rgb(254,60,47)" fg:x="222436970332" fg:w="11230116905"/><text x="72.5792%" y="1887.50">&lt;cor..</text></g><g><title>wayland_client::event_queue::queue_callback (11,146,390,821 samples, 3.62%)</title><rect x="72.3565%" y="1861" width="3.6244%" height="15" fill="rgb(207,226,45)" fg:x="222520696416" fg:w="11146390821"/><text x="72.6065%" y="1871.50">wayl..</text></g><g><title>futures_task::waker::wake_arc_raw (38,004,647 samples, 0.01%)</title><rect x="76.0195%" y="1861" width="0.0124%" height="15" fill="rgb(223,124,22)" fg:x="233785865363" fg:w="38004647"/><text x="76.2695%" y="1871.50"></text></g><g><title>&lt;futures_util::future::future::shared::Notifier as futures_task::arc_wake::ArcWake&gt;::wake_by_ref (38,004,647 samples, 0.01%)</title><rect x="76.0195%" y="1845" width="0.0124%" height="15" fill="rgb(240,162,13)" fg:x="233785865363" fg:w="38004647"/><text x="76.2695%" y="1855.50"></text></g><g><title>&lt;core::str::pattern::CharSearcher as core::str::pattern::Searcher&gt;::next_match (32,893,850 samples, 0.01%)</title><rect x="76.0644%" y="1845" width="0.0107%" height="15" fill="rgb(244,199,31)" fg:x="233923843991" fg:w="32893850"/><text x="76.3144%" y="1855.50"></text></g><g><title>&lt;core::str::pattern::CharSearcher as core::str::pattern::Searcher&gt;::next_match (60,623,925 samples, 0.02%)</title><rect x="76.0960%" y="1829" width="0.0197%" height="15" fill="rgb(207,92,16)" fg:x="234020971961" fg:w="60623925"/><text x="76.3460%" y="1839.50"></text></g><g><title>&lt;util::rel_path::RelPathComponents as core::iter::traits::iterator::Iterator&gt;::next (205,998,668 samples, 0.07%)</title><rect x="76.0926%" y="1845" width="0.0670%" height="15" fill="rgb(215,31,19)" fg:x="234010753126" fg:w="205998668"/><text x="76.3426%" y="1855.50"></text></g><g><title>__memcmp_evex_movbe (134,052,587 samples, 0.04%)</title><rect x="76.1160%" y="1829" width="0.0436%" height="15" fill="rgb(245,118,14)" fg:x="234082699207" fg:w="134052587"/><text x="76.3660%" y="1839.50"></text></g><g><title>__memcmp_evex_movbe (100,114,374 samples, 0.03%)</title><rect x="76.1628%" y="1845" width="0.0326%" height="15" fill="rgb(248,12,46)" fg:x="234226458348" fg:w="100114374"/><text x="76.4128%" y="1855.50"></text></g><g><title>&lt;core::iter::adapters::fuse::Fuse&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (66,506,083 samples, 0.02%)</title><rect x="76.2255%" y="1781" width="0.0216%" height="15" fill="rgb(209,119,0)" fg:x="234419368256" fg:w="66506083"/><text x="76.4755%" y="1791.50"></text></g><g><title>&lt;rope::Rope as core::convert::From&lt;&amp;str&gt;&gt;::from (111,737,236 samples, 0.04%)</title><rect x="76.2213%" y="1813" width="0.0363%" height="15" fill="rgb(254,51,44)" fg:x="234406335551" fg:w="111737236"/><text x="76.4713%" y="1823.50"></text></g><g><title>rope::Rope::push (105,887,135 samples, 0.03%)</title><rect x="76.2232%" y="1797" width="0.0344%" height="15" fill="rgb(253,182,35)" fg:x="234412185652" fg:w="105887135"/><text x="76.4732%" y="1807.50"></text></g><g><title>buffer_diff::BufferDiffSnapshot::new_with_base_text (138,678,119 samples, 0.05%)</title><rect x="76.2146%" y="1829" width="0.0451%" height="15" fill="rgb(205,198,39)" fg:x="234385748827" fg:w="138678119"/><text x="76.4646%" y="1839.50"></text></g><g><title>buffer_diff::BufferDiff::update_diff::_{{closure}} (151,762,961 samples, 0.05%)</title><rect x="76.2133%" y="1845" width="0.0493%" height="15" fill="rgb(251,175,48)" fg:x="234381728279" fg:w="151762961"/><text x="76.4633%" y="1855.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (34,225,519 samples, 0.01%)</title><rect x="76.3048%" y="1781" width="0.0111%" height="15" fill="rgb(239,38,17)" fg:x="234663188610" fg:w="34225519"/><text x="76.5548%" y="1791.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (36,047,426 samples, 0.01%)</title><rect x="76.3246%" y="1765" width="0.0117%" height="15" fill="rgb(212,101,8)" fg:x="234724148609" fg:w="36047426"/><text x="76.5746%" y="1775.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (36,047,426 samples, 0.01%)</title><rect x="76.3246%" y="1749" width="0.0117%" height="15" fill="rgb(228,35,17)" fg:x="234724148609" fg:w="36047426"/><text x="76.5746%" y="1759.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (36,047,426 samples, 0.01%)</title><rect x="76.3246%" y="1733" width="0.0117%" height="15" fill="rgb(214,95,8)" fg:x="234724148609" fg:w="36047426"/><text x="76.5746%" y="1743.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::chunks (125,910,527 samples, 0.04%)</title><rect x="76.3048%" y="1797" width="0.0409%" height="15" fill="rgb(210,176,35)" fg:x="234663188610" fg:w="125910527"/><text x="76.5548%" y="1807.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_fold_point (72,773,934 samples, 0.02%)</title><rect x="76.3221%" y="1781" width="0.0237%" height="15" fill="rgb(226,4,3)" fg:x="234716325203" fg:w="72773934"/><text x="76.5721%" y="1791.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_fold_point (45,741,263 samples, 0.01%)</title><rect x="76.3457%" y="1797" width="0.0149%" height="15" fill="rgb(232,133,14)" fg:x="234789099137" fg:w="45741263"/><text x="76.5957%" y="1807.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::text_summary_for_range (222,800,890 samples, 0.07%)</title><rect x="76.2889%" y="1813" width="0.0724%" height="15" fill="rgb(250,191,8)" fg:x="234614202304" fg:w="222800890"/><text x="76.5389%" y="1823.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::interpolate (244,588,471 samples, 0.08%)</title><rect x="76.2875%" y="1829" width="0.0795%" height="15" fill="rgb(213,12,45)" fg:x="234609910778" fg:w="244588471"/><text x="76.5375%" y="1839.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits (248,110,346 samples, 0.08%)</title><rect x="76.2871%" y="1845" width="0.0807%" height="15" fill="rgb(233,78,26)" fg:x="234608820238" fg:w="248110346"/><text x="76.5371%" y="1855.50"></text></g><g><title>&lt;core::iter::sources::from_fn::FromFn&lt;F&gt; as core::iter::traits::iterator::Iterator&gt;::next (86,824,106 samples, 0.03%)</title><rect x="76.3919%" y="1797" width="0.0282%" height="15" fill="rgb(245,222,11)" fg:x="234930987363" fg:w="86824106"/><text x="76.6419%" y="1807.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (109,069,419 samples, 0.04%)</title><rect x="76.3905%" y="1813" width="0.0355%" height="15" fill="rgb(216,174,12)" fg:x="234926692007" fg:w="109069419"/><text x="76.6405%" y="1823.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::text_summary_for_range (39,047,615 samples, 0.01%)</title><rect x="76.4362%" y="1765" width="0.0127%" height="15" fill="rgb(213,15,9)" fg:x="235067452938" fg:w="39047615"/><text x="76.6862%" y="1775.50"></text></g><g><title>multi_buffer::MultiBufferCursor&lt;D&gt;::seek_to_start_of_current_excerpt (39,136,866 samples, 0.01%)</title><rect x="76.4585%" y="1749" width="0.0127%" height="15" fill="rgb(238,103,32)" fg:x="235135954696" fg:w="39136866"/><text x="76.7085%" y="1759.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (35,917,382 samples, 0.01%)</title><rect x="76.4596%" y="1733" width="0.0117%" height="15" fill="rgb(245,85,15)" fg:x="235139174180" fg:w="35917382"/><text x="76.7096%" y="1743.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::excerpt_boundaries_in_range::_{{closure}} (62,114,917 samples, 0.02%)</title><rect x="76.4514%" y="1765" width="0.0202%" height="15" fill="rgb(254,204,5)" fg:x="235114040670" fg:w="62114917"/><text x="76.7014%" y="1775.50"></text></g><g><title>editor::display_map::block_map::BlockMap::sync (139,765,952 samples, 0.05%)</title><rect x="76.4333%" y="1781" width="0.0454%" height="15" fill="rgb(231,178,15)" fg:x="235058531809" fg:w="139765952"/><text x="76.6833%" y="1791.50"></text></g><g><title>editor::display_map::block_map::BlockMap::write (147,794,163 samples, 0.05%)</title><rect x="76.4315%" y="1797" width="0.0481%" height="15" fill="rgb(248,151,3)" fg:x="235052705232" fg:w="147794163"/><text x="76.6815%" y="1807.50"></text></g><g><title>multi_buffer::MultiBufferCursor&lt;D&gt;::seek_to_start_of_current_excerpt (40,043,566 samples, 0.01%)</title><rect x="76.4982%" y="1749" width="0.0130%" height="15" fill="rgb(250,139,13)" fg:x="235258110773" fg:w="40043566"/><text x="76.7482%" y="1759.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (37,699,642 samples, 0.01%)</title><rect x="76.4990%" y="1733" width="0.0123%" height="15" fill="rgb(243,107,53)" fg:x="235260454697" fg:w="37699642"/><text x="76.7490%" y="1743.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::excerpt_boundaries_in_range::_{{closure}} (57,205,993 samples, 0.02%)</title><rect x="76.4930%" y="1765" width="0.0186%" height="15" fill="rgb(232,81,15)" fg:x="235241997275" fg:w="57205993"/><text x="76.7430%" y="1775.50"></text></g><g><title>editor::display_map::block_map::BlockMap::sync (119,229,971 samples, 0.04%)</title><rect x="76.4799%" y="1781" width="0.0388%" height="15" fill="rgb(225,187,48)" fg:x="235201640018" fg:w="119229971"/><text x="76.7299%" y="1791.50"></text></g><g><title>editor::display_map::block_map::BlockMapWriter::fold_or_unfold_buffers (127,257,386 samples, 0.04%)</title><rect x="76.4795%" y="1797" width="0.0414%" height="15" fill="rgb(205,116,12)" fg:x="235200499395" fg:w="127257386"/><text x="76.7295%" y="1807.50"></text></g><g><title>editor::Editor::fold_buffer (310,367,836 samples, 0.10%)</title><rect x="76.4311%" y="1813" width="0.1009%" height="15" fill="rgb(220,222,31)" fg:x="235051525515" fg:w="310367836"/><text x="76.6811%" y="1823.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (104,817,144 samples, 0.03%)</title><rect x="76.6138%" y="1717" width="0.0341%" height="15" fill="rgb(233,187,49)" fg:x="235613402687" fg:w="104817144"/><text x="76.8638%" y="1727.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (95,167,050 samples, 0.03%)</title><rect x="76.6169%" y="1701" width="0.0309%" height="15" fill="rgb(211,168,53)" fg:x="235623052781" fg:w="95167050"/><text x="76.8669%" y="1711.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (54,485,859 samples, 0.02%)</title><rect x="76.6301%" y="1685" width="0.0177%" height="15" fill="rgb(206,160,16)" fg:x="235663733972" fg:w="54485859"/><text x="76.8801%" y="1695.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (32,003,281 samples, 0.01%)</title><rect x="76.6374%" y="1669" width="0.0104%" height="15" fill="rgb(254,164,13)" fg:x="235686216550" fg:w="32003281"/><text x="76.8874%" y="1679.50"></text></g><g><title>multi_buffer::MultiBuffer::sync_diff_transforms (184,196,064 samples, 0.06%)</title><rect x="76.5883%" y="1749" width="0.0599%" height="15" fill="rgb(229,45,30)" fg:x="235535181976" fg:w="184196064"/><text x="76.8383%" y="1759.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (116,797,861 samples, 0.04%)</title><rect x="76.6103%" y="1733" width="0.0380%" height="15" fill="rgb(237,32,10)" fg:x="235602580179" fg:w="116797861"/><text x="76.8603%" y="1743.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::slice (130,993,055 samples, 0.04%)</title><rect x="76.6760%" y="1749" width="0.0426%" height="15" fill="rgb(251,20,47)" fg:x="235804623601" fg:w="130993055"/><text x="76.9260%" y="1759.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (116,241,311 samples, 0.04%)</title><rect x="76.6807%" y="1733" width="0.0378%" height="15" fill="rgb(251,116,12)" fg:x="235819375345" fg:w="116241311"/><text x="76.9307%" y="1743.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (96,361,107 samples, 0.03%)</title><rect x="76.6872%" y="1717" width="0.0313%" height="15" fill="rgb(214,227,27)" fg:x="235839255549" fg:w="96361107"/><text x="76.9372%" y="1727.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (71,353,910 samples, 0.02%)</title><rect x="76.6953%" y="1701" width="0.0232%" height="15" fill="rgb(248,10,53)" fg:x="235864262746" fg:w="71353910"/><text x="76.9453%" y="1711.50"></text></g><g><title>multi_buffer::MultiBuffer::insert_excerpts_with_ids_after (463,789,039 samples, 0.15%)</title><rect x="76.5703%" y="1765" width="0.1508%" height="15" fill="rgb(221,176,25)" fg:x="235479814757" fg:w="463789039"/><text x="76.8203%" y="1775.50"></text></g><g><title>&lt;worktree::File as language::buffer::File&gt;::disk_state (48,035,704 samples, 0.02%)</title><rect x="76.7698%" y="1733" width="0.0156%" height="15" fill="rgb(205,70,46)" fg:x="236093193502" fg:w="48035704"/><text x="77.0198%" y="1743.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (156,148,854 samples, 0.05%)</title><rect x="76.7921%" y="1733" width="0.0508%" height="15" fill="rgb(217,45,38)" fg:x="236161901731" fg:w="156148854"/><text x="77.0421%" y="1743.50"></text></g><g><title>gpui::app::entity_map::EntityMap::read (34,034,690 samples, 0.01%)</title><rect x="76.8429%" y="1733" width="0.0111%" height="15" fill="rgb(243,6,54)" fg:x="236318050585" fg:w="34034690"/><text x="77.0929%" y="1743.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find_recurse (153,168,663 samples, 0.05%)</title><rect x="76.8570%" y="1733" width="0.0498%" height="15" fill="rgb(242,76,23)" fg:x="236361356267" fg:w="153168663"/><text x="77.1070%" y="1743.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find_recurse (132,944,014 samples, 0.04%)</title><rect x="76.8636%" y="1717" width="0.0432%" height="15" fill="rgb(239,166,0)" fg:x="236381580916" fg:w="132944014"/><text x="77.1136%" y="1727.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find_recurse (94,843,405 samples, 0.03%)</title><rect x="76.8759%" y="1701" width="0.0308%" height="15" fill="rgb(238,174,32)" fg:x="236419681525" fg:w="94843405"/><text x="77.1259%" y="1711.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find_recurse (37,216,607 samples, 0.01%)</title><rect x="76.8947%" y="1685" width="0.0121%" height="15" fill="rgb(238,124,44)" fg:x="236477308323" fg:w="37216607"/><text x="77.1447%" y="1695.50"></text></g><g><title>multi_buffer::MultiBuffer::sync_ (566,765,177 samples, 0.18%)</title><rect x="76.7266%" y="1749" width="0.1843%" height="15" fill="rgb(206,185,9)" fg:x="235960276598" fg:w="566765177"/><text x="76.9766%" y="1759.50"></text></g><g><title>multi_buffer::MultiBuffer::remove_excerpts (588,797,955 samples, 0.19%)</title><rect x="76.7211%" y="1765" width="0.1915%" height="15" fill="rgb(215,157,17)" fg:x="235943603796" fg:w="588797955"/><text x="76.9711%" y="1775.50"></text></g><g><title>multi_buffer::path_key::&lt;impl multi_buffer::MultiBuffer&gt;::update_path_excerpts (1,128,586,620 samples, 0.37%)</title><rect x="76.5467%" y="1781" width="0.3670%" height="15" fill="rgb(251,17,29)" fg:x="235407114548" fg:w="1128586620"/><text x="76.7967%" y="1791.50"></text></g><g><title>multi_buffer::path_key::&lt;impl multi_buffer::MultiBuffer&gt;::set_merged_excerpt_ranges_for_path (1,138,605,143 samples, 0.37%)</title><rect x="76.5458%" y="1797" width="0.3702%" height="15" fill="rgb(227,113,27)" fg:x="235404400845" fg:w="1138605143"/><text x="76.7958%" y="1807.50"></text></g><g><title>multi_buffer::path_key::&lt;impl multi_buffer::MultiBuffer&gt;::set_excerpts_for_path (1,157,640,120 samples, 0.38%)</title><rect x="76.5416%" y="1813" width="0.3764%" height="15" fill="rgb(217,226,24)" fg:x="235391600974" fg:w="1157640120"/><text x="76.7916%" y="1823.50"></text></g><g><title>git_ui::project_diff::ProjectDiff::register_buffer (1,630,370,792 samples, 0.53%)</title><rect x="76.3883%" y="1829" width="0.5301%" height="15" fill="rgb(251,99,38)" fg:x="234920106818" fg:w="1630370792"/><text x="76.6383%" y="1839.50"></text></g><g><title>language::language_settings::EditPredictionSettings::enabled_for_file (31,269,786 samples, 0.01%)</title><rect x="76.9348%" y="1781" width="0.0102%" height="15" fill="rgb(231,147,19)" fg:x="236600541199" fg:w="31269786"/><text x="77.1848%" y="1791.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_buffer_offset (40,674,901 samples, 0.01%)</title><rect x="76.9449%" y="1781" width="0.0132%" height="15" fill="rgb(230,86,8)" fg:x="236631810985" fg:w="40674901"/><text x="77.1949%" y="1791.50"></text></g><g><title>edit_prediction_button::EditPredictionButton::update_enabled (90,876,395 samples, 0.03%)</title><rect x="76.9323%" y="1797" width="0.0296%" height="15" fill="rgb(237,159,39)" fg:x="236592853280" fg:w="90876395"/><text x="77.1823%" y="1807.50"></text></g><g><title>gpui::app::App::observe_internal::_{{closure}} (98,531,459 samples, 0.03%)</title><rect x="76.9319%" y="1813" width="0.0320%" height="15" fill="rgb(247,179,47)" fg:x="236591889480" fg:w="98531459"/><text x="77.1819%" y="1823.50"></text></g><g><title>project::git_store::GitStore::open_conflict_set (57,135,392 samples, 0.02%)</title><rect x="76.9787%" y="1781" width="0.0186%" height="15" fill="rgb(253,152,26)" fg:x="236735796956" fg:w="57135392"/><text x="77.2287%" y="1791.50"></text></g><g><title>git_ui::conflict_view::buffer_added (93,136,767 samples, 0.03%)</title><rect x="76.9673%" y="1797" width="0.0303%" height="15" fill="rgb(222,211,15)" fg:x="236700643819" fg:w="93136767"/><text x="77.2173%" y="1807.50"></text></g><g><title>gpui::app::App::subscribe_internal::_{{closure}} (113,023,090 samples, 0.04%)</title><rect x="76.9640%" y="1813" width="0.0368%" height="15" fill="rgb(236,193,6)" fg:x="236690420939" fg:w="113023090"/><text x="77.2140%" y="1823.50"></text></g><g><title>__memmove_avx512_unaligned_erms (346,914,707 samples, 0.11%)</title><rect x="77.0244%" y="1717" width="0.1128%" height="15" fill="rgb(226,206,10)" fg:x="236876356369" fg:w="346914707"/><text x="77.2744%" y="1727.50"></text></g><g><title>&lt;language::buffer::BufferSnapshot as core::clone::Clone&gt;::clone (38,506,570 samples, 0.01%)</title><rect x="77.2182%" y="1701" width="0.0125%" height="15" fill="rgb(213,125,22)" fg:x="237472093255" fg:w="38506570"/><text x="77.4682%" y="1711.50"></text></g><g><title>__memmove_avx512_unaligned_erms (34,140,840 samples, 0.01%)</title><rect x="77.2321%" y="1701" width="0.0111%" height="15" fill="rgb(221,66,28)" fg:x="237515011372" fg:w="34140840"/><text x="77.4821%" y="1711.50"></text></g><g><title>__memmove_avx512_unaligned_erms (41,337,712 samples, 0.01%)</title><rect x="77.2437%" y="1653" width="0.0134%" height="15" fill="rgb(222,84,53)" fg:x="237550515980" fg:w="41337712"/><text x="77.4937%" y="1663.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (48,053,062 samples, 0.02%)</title><rect x="77.2432%" y="1701" width="0.0156%" height="15" fill="rgb(243,50,15)" fg:x="237549152212" fg:w="48053062"/><text x="77.4932%" y="1711.50"></text></g><g><title>alloc::raw_vec::finish_grow (48,053,062 samples, 0.02%)</title><rect x="77.2432%" y="1685" width="0.0156%" height="15" fill="rgb(208,184,23)" fg:x="237549152212" fg:w="48053062"/><text x="77.4932%" y="1695.50"></text></g><g><title>realloc (46,689,294 samples, 0.02%)</title><rect x="77.2437%" y="1669" width="0.0152%" height="15" fill="rgb(221,83,2)" fg:x="237550515980" fg:w="46689294"/><text x="77.4937%" y="1679.50"></text></g><g><title>core::ptr::drop_in_place&lt;language::buffer::BufferSnapshot&gt; (143,160,372 samples, 0.05%)</title><rect x="77.2599%" y="1701" width="0.0466%" height="15" fill="rgb(236,53,24)" fg:x="237600514809" fg:w="143160372"/><text x="77.5099%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;text::BufferSnapshot&gt; (130,850,598 samples, 0.04%)</title><rect x="77.2639%" y="1685" width="0.0425%" height="15" fill="rgb(244,171,29)" fg:x="237612824583" fg:w="130850598"/><text x="77.5139%" y="1695.50"></text></g><g><title>__memmove_avx512_unaligned_erms (166,194,369 samples, 0.05%)</title><rect x="77.3232%" y="1685" width="0.0540%" height="15" fill="rgb(205,19,11)" fg:x="237795213980" fg:w="166194369"/><text x="77.5732%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;editor::display_map::fold_map::FoldChunks&gt; (47,738,257 samples, 0.02%)</title><rect x="77.3775%" y="1685" width="0.0155%" height="15" fill="rgb(207,108,29)" fg:x="237962251276" fg:w="47738257"/><text x="77.6275%" y="1695.50"></text></g><g><title>rope::Cursor::summary (293,346,043 samples, 0.10%)</title><rect x="77.6304%" y="1637" width="0.0954%" height="15" fill="rgb(236,215,43)" fg:x="238739971918" fg:w="293346043"/><text x="77.8804%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (141,836,151 samples, 0.05%)</title><rect x="77.6797%" y="1621" width="0.0461%" height="15" fill="rgb(213,58,35)" fg:x="238891481810" fg:w="141836151"/><text x="77.9297%" y="1631.50"></text></g><g><title>rope::Rope::point_to_offset (162,334,201 samples, 0.05%)</title><rect x="77.7262%" y="1637" width="0.0528%" height="15" fill="rgb(220,211,46)" fg:x="239034519883" fg:w="162334201"/><text x="77.9762%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::end (61,027,503 samples, 0.02%)</title><rect x="77.7793%" y="1637" width="0.0198%" height="15" fill="rgb(212,134,16)" fg:x="239197887429" fg:w="61027503"/><text x="78.0293%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (42,865,022 samples, 0.01%)</title><rect x="77.7992%" y="1637" width="0.0139%" height="15" fill="rgb(232,90,44)" fg:x="239258914932" fg:w="42865022"/><text x="78.0492%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (50,892,510 samples, 0.02%)</title><rect x="77.8282%" y="1621" width="0.0165%" height="15" fill="rgb(212,18,36)" fg:x="239348147075" fg:w="50892510"/><text x="78.0782%" y="1631.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (1,302,051,631 samples, 0.42%)</title><rect x="77.4359%" y="1653" width="0.4234%" height="15" fill="rgb(206,112,24)" fg:x="238141590399" fg:w="1302051631"/><text x="77.6859%" y="1663.50"></text></g><g><title>text::BufferSnapshot::offset_for_anchor (141,862,076 samples, 0.05%)</title><rect x="77.8131%" y="1637" width="0.0461%" height="15" fill="rgb(238,223,40)" fg:x="239301779954" fg:w="141862076"/><text x="78.0631%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (44,602,445 samples, 0.01%)</title><rect x="77.8447%" y="1621" width="0.0145%" height="15" fill="rgb(226,169,20)" fg:x="239399039585" fg:w="44602445"/><text x="78.0947%" y="1631.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (1,451,594,697 samples, 0.47%)</title><rect x="77.3937%" y="1685" width="0.4720%" height="15" fill="rgb(241,64,52)" fg:x="238012022322" fg:w="1451594697"/><text x="77.6437%" y="1695.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (1,358,419,995 samples, 0.44%)</title><rect x="77.4240%" y="1669" width="0.4417%" height="15" fill="rgb(228,120,25)" fg:x="238105197024" fg:w="1358419995"/><text x="77.6740%" y="1679.50"></text></g><g><title>__memmove_avx512_unaligned_erms (36,339,712 samples, 0.01%)</title><rect x="77.9230%" y="1621" width="0.0118%" height="15" fill="rgb(234,108,19)" fg:x="239639864165" fg:w="36339712"/><text x="78.1730%" y="1631.50"></text></g><g><title>rope::Chunks::new (109,878,114 samples, 0.04%)</title><rect x="77.9412%" y="1605" width="0.0357%" height="15" fill="rgb(236,133,29)" fg:x="239695663069" fg:w="109878114"/><text x="78.1912%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (63,192,634 samples, 0.02%)</title><rect x="77.9564%" y="1589" width="0.0205%" height="15" fill="rgb(246,174,53)" fg:x="239742348549" fg:w="63192634"/><text x="78.2064%" y="1599.50"></text></g><g><title>language::buffer::BufferChunks::new (133,803,977 samples, 0.04%)</title><rect x="77.9349%" y="1621" width="0.0435%" height="15" fill="rgb(210,105,35)" fg:x="239676203877" fg:w="133803977"/><text x="78.1849%" y="1631.50"></text></g><g><title>language::buffer::BufferSnapshot::chunks (173,258,108 samples, 0.06%)</title><rect x="77.9223%" y="1637" width="0.0563%" height="15" fill="rgb(225,27,26)" fg:x="239637670348" fg:w="173258108"/><text x="78.1723%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek (148,554,847 samples, 0.05%)</title><rect x="77.9790%" y="1637" width="0.0483%" height="15" fill="rgb(233,2,39)" fg:x="239812086981" fg:w="148554847"/><text x="78.2290%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (73,974,689 samples, 0.02%)</title><rect x="78.0274%" y="1637" width="0.0241%" height="15" fill="rgb(219,164,26)" fg:x="239960641828" fg:w="73974689"/><text x="78.2774%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (37,717,485 samples, 0.01%)</title><rect x="78.0559%" y="1621" width="0.0123%" height="15" fill="rgb(236,211,5)" fg:x="240048584795" fg:w="37717485"/><text x="78.3059%" y="1631.50"></text></g><g><title>text::BufferSnapshot::offset_for_anchor (72,916,152 samples, 0.02%)</title><rect x="78.0514%" y="1637" width="0.0237%" height="15" fill="rgb(244,227,23)" fg:x="240034616517" fg:w="72916152"/><text x="78.3014%" y="1647.50"></text></g><g><title>rope::Cursor::summary (212,730,205 samples, 0.07%)</title><rect x="78.0795%" y="1621" width="0.0692%" height="15" fill="rgb(230,184,8)" fg:x="240121055883" fg:w="212730205"/><text x="78.3295%" y="1631.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (125,461,053 samples, 0.04%)</title><rect x="78.1079%" y="1605" width="0.0408%" height="15" fill="rgb(217,125,48)" fg:x="240208325035" fg:w="125461053"/><text x="78.3579%" y="1615.50"></text></g><g><title>multi_buffer::MultiBufferChunks::seek (793,909,096 samples, 0.26%)</title><rect x="77.8987%" y="1653" width="0.2582%" height="15" fill="rgb(223,192,47)" fg:x="239565012802" fg:w="793909096"/><text x="78.1487%" y="1663.50"></text></g><g><title>text::BufferSnapshot::text_summary_for_range (251,389,229 samples, 0.08%)</title><rect x="78.0751%" y="1637" width="0.0817%" height="15" fill="rgb(226,119,10)" fg:x="240107532669" fg:w="251389229"/><text x="78.3251%" y="1647.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::chunks (825,850,036 samples, 0.27%)</title><rect x="77.8894%" y="1669" width="0.2685%" height="15" fill="rgb(221,49,29)" fg:x="239536258575" fg:w="825850036"/><text x="78.1394%" y="1679.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::chunks (920,111,428 samples, 0.30%)</title><rect x="77.8657%" y="1685" width="0.2992%" height="15" fill="rgb(217,205,19)" fg:x="239463617019" fg:w="920111428"/><text x="78.1157%" y="1695.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_tab_point (2,597,868,801 samples, 0.84%)</title><rect x="77.3219%" y="1701" width="0.8447%" height="15" fill="rgb(242,104,7)" fg:x="237791142734" fg:w="2597868801"/><text x="77.5719%" y="1711.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::prev_row_boundary (5,085,897,433 samples, 1.65%)</title><rect x="78.1666%" y="1701" width="1.6538%" height="15" fill="rgb(209,154,48)" fg:x="240389011535" fg:w="5085897433"/><text x="78.4166%" y="1711.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (3,655,058,131 samples, 1.19%)</title><rect x="78.6319%" y="1685" width="1.1885%" height="15" fill="rgb(219,213,46)" fg:x="241819850837" fg:w="3655058131"/><text x="78.8819%" y="1695.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (75,038,711 samples, 0.02%)</title><rect x="79.8457%" y="1685" width="0.0244%" height="15" fill="rgb(229,105,38)" fg:x="245552699233" fg:w="75038711"/><text x="80.0957%" y="1695.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (73,133,324 samples, 0.02%)</title><rect x="79.8821%" y="1685" width="0.0238%" height="15" fill="rgb(205,151,5)" fg:x="245664698762" fg:w="73133324"/><text x="80.1321%" y="1695.50"></text></g><g><title>__memmove_avx512_unaligned_erms (563,544,547 samples, 0.18%)</title><rect x="79.9059%" y="1685" width="0.1832%" height="15" fill="rgb(248,115,40)" fg:x="245737832086" fg:w="563544547"/><text x="80.1559%" y="1695.50"></text></g><g><title>&lt;rope::Chunks as core::iter::traits::iterator::Iterator&gt;::next (32,210,083 samples, 0.01%)</title><rect x="80.3688%" y="1557" width="0.0105%" height="15" fill="rgb(206,179,2)" fg:x="247161255087" fg:w="32210083"/><text x="80.6188%" y="1567.50"></text></g><g><title>&lt;language::buffer::BufferChunks as core::iter::traits::iterator::Iterator&gt;::next (158,084,424 samples, 0.05%)</title><rect x="80.3490%" y="1573" width="0.0514%" height="15" fill="rgb(230,103,24)" fg:x="247100400614" fg:w="158084424"/><text x="80.5990%" y="1583.50"></text></g><g><title>rope::Chunks::peek_with_bitmaps (56,770,057 samples, 0.02%)</title><rect x="80.3819%" y="1557" width="0.0185%" height="15" fill="rgb(218,152,4)" fg:x="247201714981" fg:w="56770057"/><text x="80.6319%" y="1567.50"></text></g><g><title>&lt;multi_buffer::MultiBufferChunks as core::iter::traits::iterator::Iterator&gt;::next (267,572,163 samples, 0.09%)</title><rect x="80.3158%" y="1589" width="0.0870%" height="15" fill="rgb(236,161,54)" fg:x="246998346355" fg:w="267572163"/><text x="80.5658%" y="1599.50"></text></g><g><title>&lt;editor::display_map::custom_highlights::CustomHighlightsChunks as core::iter::traits::iterator::Iterator&gt;::next (376,421,268 samples, 0.12%)</title><rect x="80.2865%" y="1605" width="0.1224%" height="15" fill="rgb(226,65,17)" fg:x="246908299360" fg:w="376421268"/><text x="80.5365%" y="1615.50"></text></g><g><title>&lt;editor::display_map::inlay_map::InlayChunks as core::iter::traits::iterator::Iterator&gt;::next (519,061,439 samples, 0.17%)</title><rect x="80.2555%" y="1621" width="0.1688%" height="15" fill="rgb(221,134,44)" fg:x="246812848979" fg:w="519061439"/><text x="80.5055%" y="1631.50"></text></g><g><title>__memmove_avx512_unaligned_erms (39,138,204 samples, 0.01%)</title><rect x="80.4115%" y="1605" width="0.0127%" height="15" fill="rgb(251,129,4)" fg:x="247292772214" fg:w="39138204"/><text x="80.6615%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (97,218,296 samples, 0.03%)</title><rect x="80.4246%" y="1621" width="0.0316%" height="15" fill="rgb(244,32,34)" fg:x="247333032561" fg:w="97218296"/><text x="80.6746%" y="1631.50"></text></g><g><title>&lt;editor::display_map::fold_map::FoldChunks as core::iter::traits::iterator::Iterator&gt;::next (707,082,998 samples, 0.23%)</title><rect x="80.2267%" y="1637" width="0.2299%" height="15" fill="rgb(251,224,37)" fg:x="246724407017" fg:w="707082998"/><text x="80.4767%" y="1647.50"></text></g><g><title>&lt;editor::display_map::tab_map::TabChunks as core::iter::traits::iterator::Iterator&gt;::next (1,090,511,223 samples, 0.35%)</title><rect x="80.1646%" y="1653" width="0.3546%" height="15" fill="rgb(248,117,31)" fg:x="246533452963" fg:w="1090511223"/><text x="80.4146%" y="1663.50"></text></g><g><title>__memmove_avx512_unaligned_erms (186,520,060 samples, 0.06%)</title><rect x="80.4586%" y="1637" width="0.0607%" height="15" fill="rgb(222,208,37)" fg:x="247437444126" fg:w="186520060"/><text x="80.7086%" y="1647.50"></text></g><g><title>__memmove_avx512_unaligned_erms (61,279,118 samples, 0.02%)</title><rect x="80.5192%" y="1653" width="0.0199%" height="15" fill="rgb(234,211,25)" fg:x="247623964186" fg:w="61279118"/><text x="80.7692%" y="1663.50"></text></g><g><title>&lt;core::iter::adapters::take_while::TakeWhile&lt;I,P&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1,235,354,661 samples, 0.40%)</title><rect x="80.1459%" y="1669" width="0.4017%" height="15" fill="rgb(211,72,6)" fg:x="246475985854" fg:w="1235354661"/><text x="80.3959%" y="1679.50"></text></g><g><title>&lt;multi_buffer::MultiBufferChunks as core::iter::traits::iterator::Iterator&gt;::next (60,303,086 samples, 0.02%)</title><rect x="80.5898%" y="1605" width="0.0196%" height="15" fill="rgb(249,198,38)" fg:x="247841139567" fg:w="60303086"/><text x="80.8398%" y="1615.50"></text></g><g><title>&lt;editor::display_map::custom_highlights::CustomHighlightsChunks as core::iter::traits::iterator::Iterator&gt;::next (73,366,311 samples, 0.02%)</title><rect x="80.5879%" y="1621" width="0.0239%" height="15" fill="rgb(221,86,51)" fg:x="247835092361" fg:w="73366311"/><text x="80.8379%" y="1631.50"></text></g><g><title>&lt;editor::display_map::inlay_map::InlayChunks as core::iter::traits::iterator::Iterator&gt;::next (102,072,109 samples, 0.03%)</title><rect x="80.5825%" y="1637" width="0.0332%" height="15" fill="rgb(226,178,43)" fg:x="247818470569" fg:w="102072109"/><text x="80.8325%" y="1647.50"></text></g><g><title>&lt;editor::display_map::fold_map::FoldChunks as core::iter::traits::iterator::Iterator&gt;::next (138,114,951 samples, 0.04%)</title><rect x="80.5751%" y="1653" width="0.0449%" height="15" fill="rgb(215,145,7)" fg:x="247795805405" fg:w="138114951"/><text x="80.8251%" y="1663.50"></text></g><g><title>&lt;editor::display_map::tab_map::TabChunks as core::iter::traits::iterator::Iterator&gt;::next (235,184,479 samples, 0.08%)</title><rect x="80.5522%" y="1669" width="0.0765%" height="15" fill="rgb(250,202,36)" fg:x="247725318387" fg:w="235184479"/><text x="80.8022%" y="1679.50"></text></g><g><title>__memmove_avx512_unaligned_erms (414,618,211 samples, 0.13%)</title><rect x="80.6290%" y="1669" width="0.1348%" height="15" fill="rgb(215,86,13)" fg:x="247961687208" fg:w="414618211"/><text x="80.8790%" y="1679.50"></text></g><g><title>__memmove_avx512_unaligned_erms (32,339,619 samples, 0.01%)</title><rect x="80.8413%" y="1621" width="0.0105%" height="15" fill="rgb(221,134,12)" fg:x="248614346400" fg:w="32339619"/><text x="81.0913%" y="1631.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (106,396,640 samples, 0.03%)</title><rect x="80.8973%" y="1605" width="0.0346%" height="15" fill="rgb(213,82,10)" fg:x="248786611097" fg:w="106396640"/><text x="81.1473%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (35,218,331 samples, 0.01%)</title><rect x="80.9464%" y="1605" width="0.0115%" height="15" fill="rgb(214,142,0)" fg:x="248937700782" fg:w="35218331"/><text x="81.1964%" y="1615.50"></text></g><g><title>&lt;rope::TextSummary as rope::TextDimension&gt;::from_chunk (171,739,270 samples, 0.06%)</title><rect x="80.9862%" y="1589" width="0.0558%" height="15" fill="rgb(205,145,9)" fg:x="249060253455" fg:w="171739270"/><text x="81.2362%" y="1599.50"></text></g><g><title>rope::Cursor::summary (276,497,313 samples, 0.09%)</title><rect x="80.9578%" y="1605" width="0.0899%" height="15" fill="rgb(244,214,8)" fg:x="248972919113" fg:w="276497313"/><text x="81.2078%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (377,718,623 samples, 0.12%)</title><rect x="81.0481%" y="1605" width="0.1228%" height="15" fill="rgb(224,72,51)" fg:x="249250544161" fg:w="377718623"/><text x="81.2981%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (46,820,094 samples, 0.02%)</title><rect x="81.1806%" y="1589" width="0.0152%" height="15" fill="rgb(233,137,37)" fg:x="249658050666" fg:w="46820094"/><text x="81.4306%" y="1599.50"></text></g><g><title>text::BufferSnapshot::offset_for_anchor (137,801,070 samples, 0.04%)</title><rect x="81.1709%" y="1605" width="0.0448%" height="15" fill="rgb(208,71,28)" fg:x="249628262784" fg:w="137801070"/><text x="81.4209%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (61,193,094 samples, 0.02%)</title><rect x="81.1959%" y="1589" width="0.0199%" height="15" fill="rgb(226,31,7)" fg:x="249704870760" fg:w="61193094"/><text x="81.4459%" y="1599.50"></text></g><g><title>rope::Cursor::summary (295,622,430 samples, 0.10%)</title><rect x="81.2185%" y="1589" width="0.0961%" height="15" fill="rgb(229,62,18)" fg:x="249774586975" fg:w="295622430"/><text x="81.4685%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (184,365,680 samples, 0.06%)</title><rect x="81.2547%" y="1573" width="0.0599%" height="15" fill="rgb(226,74,28)" fg:x="249885843725" fg:w="184365680"/><text x="81.5047%" y="1583.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::text_summary_for_excerpt_offset_range (1,460,911,218 samples, 0.48%)</title><rect x="80.8518%" y="1621" width="0.4750%" height="15" fill="rgb(214,170,18)" fg:x="248646686019" fg:w="1460911218"/><text x="81.1018%" y="1631.50"></text></g><g><title>text::BufferSnapshot::text_summary_for_range (341,533,383 samples, 0.11%)</title><rect x="81.2158%" y="1605" width="0.1111%" height="15" fill="rgb(227,229,35)" fg:x="249766063854" fg:w="341533383"/><text x="81.4658%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (33,717,242 samples, 0.01%)</title><rect x="81.3158%" y="1589" width="0.0110%" height="15" fill="rgb(225,181,39)" fg:x="250073879995" fg:w="33717242"/><text x="81.5658%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (235,702,748 samples, 0.08%)</title><rect x="81.3344%" y="1621" width="0.0766%" height="15" fill="rgb(253,124,44)" fg:x="250130982283" fg:w="235702748"/><text x="81.5844%" y="1631.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::text_summary_for_range (1,876,463,994 samples, 0.61%)</title><rect x="80.8021%" y="1637" width="0.6102%" height="15" fill="rgb(220,75,18)" fg:x="248493824652" fg:w="1876463994"/><text x="81.0521%" y="1647.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::text_summary_for_range (1,947,333,707 samples, 0.63%)</title><rect x="80.7872%" y="1653" width="0.6332%" height="15" fill="rgb(239,175,43)" fg:x="248448012308" fg:w="1947333707"/><text x="81.0372%" y="1663.50"></text></g><g><title>__memmove_avx512_unaligned_erms (130,320,679 samples, 0.04%)</title><rect x="81.4305%" y="1637" width="0.0424%" height="15" fill="rgb(228,112,50)" fg:x="250426459765" fg:w="130320679"/><text x="81.6805%" y="1647.50"></text></g><g><title>&lt;sum_tree::cursor::SliceSeekAggregate&lt;T&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::begin_leaf (33,433,991 samples, 0.01%)</title><rect x="82.2737%" y="1605" width="0.0109%" height="15" fill="rgb(232,105,36)" fg:x="253019549015" fg:w="33433991"/><text x="82.5237%" y="1615.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (98,282,513 samples, 0.03%)</title><rect x="82.2846%" y="1605" width="0.0320%" height="15" fill="rgb(227,137,47)" fg:x="253052983006" fg:w="98282513"/><text x="82.5346%" y="1615.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (65,150,836 samples, 0.02%)</title><rect x="82.3165%" y="1605" width="0.0212%" height="15" fill="rgb(217,51,9)" fg:x="253151265519" fg:w="65150836"/><text x="82.5665%" y="1615.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (79,055,326 samples, 0.03%)</title><rect x="82.4669%" y="1589" width="0.0257%" height="15" fill="rgb(245,117,0)" fg:x="253613875885" fg:w="79055326"/><text x="82.7169%" y="1599.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (34,076,178 samples, 0.01%)</title><rect x="82.4926%" y="1589" width="0.0111%" height="15" fill="rgb(252,52,30)" fg:x="253692931211" fg:w="34076178"/><text x="82.7426%" y="1599.50"></text></g><g><title>rope::Cursor::summary (1,057,628,918 samples, 0.34%)</title><rect x="82.1606%" y="1621" width="0.3439%" height="15" fill="rgb(227,85,33)" fg:x="252671821659" fg:w="1057628918"/><text x="82.4106%" y="1631.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (490,768,053 samples, 0.16%)</title><rect x="82.3449%" y="1605" width="0.1596%" height="15" fill="rgb(220,157,20)" fg:x="253238682524" fg:w="490768053"/><text x="82.5949%" y="1615.50"></text></g><g><title>rope::Rope::point_to_offset (499,057,128 samples, 0.16%)</title><rect x="82.5122%" y="1621" width="0.1623%" height="15" fill="rgb(254,14,34)" fg:x="253753171857" fg:w="499057128"/><text x="82.7622%" y="1631.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::end (250,280,779 samples, 0.08%)</title><rect x="82.6775%" y="1621" width="0.0814%" height="15" fill="rgb(216,103,41)" fg:x="254261354463" fg:w="250280779"/><text x="82.9275%" y="1631.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (131,414,598 samples, 0.04%)</title><rect x="82.7600%" y="1621" width="0.0427%" height="15" fill="rgb(245,221,9)" fg:x="254515243539" fg:w="131414598"/><text x="83.0100%" y="1631.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find (36,010,170 samples, 0.01%)</title><rect x="82.8523%" y="1605" width="0.0117%" height="15" fill="rgb(254,136,47)" fg:x="254799138290" fg:w="36010170"/><text x="83.1023%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (264,901,415 samples, 0.09%)</title><rect x="82.8641%" y="1605" width="0.0861%" height="15" fill="rgb(235,71,46)" fg:x="254835148460" fg:w="264901415"/><text x="83.1141%" y="1615.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (4,832,009,790 samples, 1.57%)</title><rect x="81.4729%" y="1637" width="1.5712%" height="15" fill="rgb(242,154,29)" fg:x="250556780444" fg:w="4832009790"/><text x="81.7229%" y="1647.50"></text></g><g><title>text::BufferSnapshot::offset_for_anchor (742,132,097 samples, 0.24%)</title><rect x="82.8028%" y="1621" width="0.2413%" height="15" fill="rgb(210,65,31)" fg:x="254646658137" fg:w="742132097"/><text x="83.0528%" y="1631.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (288,740,359 samples, 0.09%)</title><rect x="82.9502%" y="1605" width="0.0939%" height="15" fill="rgb(244,9,50)" fg:x="255100049875" fg:w="288740359"/><text x="83.2002%" y="1615.50"></text></g><g><title>&lt;D as sum_tree::SeekTarget&lt;S,D&gt;&gt;::cmp (59,936,412 samples, 0.02%)</title><rect x="83.0246%" y="1589" width="0.0195%" height="15" fill="rgb(215,141,38)" fg:x="255328853822" fg:w="59936412"/><text x="83.2746%" y="1599.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (5,036,172,075 samples, 1.64%)</title><rect x="81.4204%" y="1653" width="1.6376%" height="15" fill="rgb(241,129,6)" fg:x="250395346015" fg:w="5036172075"/><text x="81.6704%" y="1663.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::text_summary_for_range (7,047,269,622 samples, 2.29%)</title><rect x="80.7772%" y="1669" width="2.2915%" height="15" fill="rgb(253,169,4)" fg:x="248417374231" fg:w="7047269622"/><text x="81.0272%" y="1679.50">e..</text></g><g><title>__memmove_avx512_unaligned_erms (416,436,926 samples, 0.14%)</title><rect x="83.0853%" y="1653" width="0.1354%" height="15" fill="rgb(237,82,36)" fg:x="255515456788" fg:w="416436926"/><text x="83.3353%" y="1663.50"></text></g><g><title>&lt;editor::display_map::fold_map::TransformSummary as sum_tree::ContextLessSummary&gt;::add_summary (75,372,756 samples, 0.02%)</title><rect x="83.3369%" y="1637" width="0.0245%" height="15" fill="rgb(209,171,11)" fg:x="256289209784" fg:w="75372756"/><text x="83.5869%" y="1647.50"></text></g><g><title>__memmove_avx512_unaligned_erms (186,777,340 samples, 0.06%)</title><rect x="83.3680%" y="1621" width="0.0607%" height="15" fill="rgb(242,19,22)" fg:x="256384955829" fg:w="186777340"/><text x="83.6180%" y="1631.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::begin_leaf (30,825,892 samples, 0.01%)</title><rect x="84.2810%" y="1605" width="0.0100%" height="15" fill="rgb(251,122,24)" fg:x="259192781103" fg:w="30825892"/><text x="84.5310%" y="1615.50"></text></g><g><title>&lt;sum_tree::cursor::SliceSeekAggregate&lt;T&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::begin_leaf (53,418,572 samples, 0.02%)</title><rect x="84.4396%" y="1589" width="0.0174%" height="15" fill="rgb(226,166,42)" fg:x="259680483345" fg:w="53418572"/><text x="84.6896%" y="1599.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (127,042,671 samples, 0.04%)</title><rect x="84.4570%" y="1589" width="0.0413%" height="15" fill="rgb(244,101,48)" fg:x="259733901917" fg:w="127042671"/><text x="84.7070%" y="1599.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (72,703,881 samples, 0.02%)</title><rect x="84.4983%" y="1589" width="0.0236%" height="15" fill="rgb(227,125,1)" fg:x="259860944588" fg:w="72703881"/><text x="84.7483%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_forward (34,630,786 samples, 0.01%)</title><rect x="84.5227%" y="1589" width="0.0113%" height="15" fill="rgb(206,79,43)" fg:x="259935930804" fg:w="34630786"/><text x="84.7727%" y="1599.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (97,894,036 samples, 0.03%)</title><rect x="84.6733%" y="1573" width="0.0318%" height="15" fill="rgb(241,109,41)" fg:x="260399156821" fg:w="97894036"/><text x="84.9233%" y="1583.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (50,614,050 samples, 0.02%)</title><rect x="84.7051%" y="1573" width="0.0165%" height="15" fill="rgb(219,73,4)" fg:x="260497050857" fg:w="50614050"/><text x="84.9551%" y="1583.50"></text></g><g><title>rope::Cursor::summary (1,300,294,982 samples, 0.42%)</title><rect x="84.2995%" y="1605" width="0.4228%" height="15" fill="rgb(239,25,41)" fg:x="259249716045" fg:w="1300294982"/><text x="84.5495%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (579,449,437 samples, 0.19%)</title><rect x="84.5339%" y="1589" width="0.1884%" height="15" fill="rgb(208,88,46)" fg:x="259970561590" fg:w="579449437"/><text x="84.7839%" y="1599.50"></text></g><g><title>rope::Rope::point_to_offset (743,722,610 samples, 0.24%)</title><rect x="84.7318%" y="1605" width="0.2418%" height="15" fill="rgb(239,184,9)" fg:x="260579143560" fg:w="743722610"/><text x="84.9818%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::end (280,258,825 samples, 0.09%)</title><rect x="84.9772%" y="1605" width="0.0911%" height="15" fill="rgb(223,114,13)" fg:x="261333714175" fg:w="280258825"/><text x="85.2272%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (216,561,825 samples, 0.07%)</title><rect x="85.0706%" y="1605" width="0.0704%" height="15" fill="rgb(214,28,42)" fg:x="261621110271" fg:w="216561825"/><text x="85.3206%" y="1615.50"></text></g><g><title>&lt;D as sum_tree::SeekTarget&lt;S,D&gt;&gt;::cmp (38,077,616 samples, 0.01%)</title><rect x="85.1896%" y="1589" width="0.0124%" height="15" fill="rgb(252,32,44)" fg:x="261986971814" fg:w="38077616"/><text x="85.4396%" y="1599.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find (49,996,170 samples, 0.02%)</title><rect x="85.2020%" y="1589" width="0.0163%" height="15" fill="rgb(231,159,4)" fg:x="262025049430" fg:w="49996170"/><text x="85.4520%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (346,641,283 samples, 0.11%)</title><rect x="85.2182%" y="1589" width="0.1127%" height="15" fill="rgb(210,35,26)" fg:x="262075045600" fg:w="346641283"/><text x="85.4682%" y="1599.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (6,231,602,413 samples, 2.03%)</title><rect x="83.4287%" y="1621" width="2.0263%" height="15" fill="rgb(208,190,37)" fg:x="256571733169" fg:w="6231602413"/><text x="83.6787%" y="1631.50">m..</text></g><g><title>text::BufferSnapshot::offset_for_anchor (965,663,486 samples, 0.31%)</title><rect x="85.1410%" y="1605" width="0.3140%" height="15" fill="rgb(226,148,22)" fg:x="261837672096" fg:w="965663486"/><text x="85.3910%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (381,648,699 samples, 0.12%)</title><rect x="85.3309%" y="1589" width="0.1241%" height="15" fill="rgb(242,153,24)" fg:x="262421686883" fg:w="381648699"/><text x="85.5809%" y="1599.50"></text></g><g><title>&lt;D as sum_tree::SeekTarget&lt;S,D&gt;&gt;::cmp (72,415,087 samples, 0.02%)</title><rect x="85.4315%" y="1573" width="0.0235%" height="15" fill="rgb(213,133,7)" fg:x="262730920495" fg:w="72415087"/><text x="85.6815%" y="1583.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (6,931,705,017 samples, 2.25%)</title><rect x="83.2222%" y="1653" width="2.2540%" height="15" fill="rgb(248,206,18)" fg:x="255936537691" fg:w="6931705017"/><text x="83.4722%" y="1663.50">e..</text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (6,502,539,813 samples, 2.11%)</title><rect x="83.3617%" y="1637" width="2.1144%" height="15" fill="rgb(233,157,4)" fg:x="256365702895" fg:w="6502539813"/><text x="83.6117%" y="1647.50">e..</text></g><g><title>__memmove_avx512_unaligned_erms (205,896,648 samples, 0.07%)</title><rect x="85.5074%" y="1637" width="0.0670%" height="15" fill="rgb(249,179,32)" fg:x="262964338452" fg:w="205896648"/><text x="85.7574%" y="1647.50"></text></g><g><title>__memmove_avx512_unaligned_erms (59,982,257 samples, 0.02%)</title><rect x="85.5783%" y="1621" width="0.0195%" height="15" fill="rgb(248,69,35)" fg:x="263182512092" fg:w="59982257"/><text x="85.8283%" y="1631.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (62,516,134 samples, 0.02%)</title><rect x="85.6220%" y="1605" width="0.0203%" height="15" fill="rgb(249,158,38)" fg:x="263316615079" fg:w="62516134"/><text x="85.8720%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (45,602,885 samples, 0.01%)</title><rect x="85.6423%" y="1605" width="0.0148%" height="15" fill="rgb(223,18,43)" fg:x="263379131213" fg:w="45602885"/><text x="85.8923%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (62,010,729 samples, 0.02%)</title><rect x="85.6617%" y="1589" width="0.0202%" height="15" fill="rgb(238,42,45)" fg:x="263438982653" fg:w="62010729"/><text x="85.9117%" y="1599.50"></text></g><g><title>__memmove_avx512_unaligned_erms (85,167,390 samples, 0.03%)</title><rect x="85.6834%" y="1573" width="0.0277%" height="15" fill="rgb(219,65,47)" fg:x="263505742111" fg:w="85167390"/><text x="85.9334%" y="1583.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (36,705,095 samples, 0.01%)</title><rect x="85.7429%" y="1557" width="0.0119%" height="15" fill="rgb(248,153,12)" fg:x="263688517419" fg:w="36705095"/><text x="85.9929%" y="1567.50"></text></g><g><title>rope::Chunks::new (332,729,670 samples, 0.11%)</title><rect x="85.7111%" y="1573" width="0.1082%" height="15" fill="rgb(240,118,4)" fg:x="263590909501" fg:w="332729670"/><text x="85.9611%" y="1583.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (198,416,657 samples, 0.06%)</title><rect x="85.7548%" y="1557" width="0.0645%" height="15" fill="rgb(250,96,34)" fg:x="263725222514" fg:w="198416657"/><text x="86.0048%" y="1567.50"></text></g><g><title>language::buffer::BufferChunks::new (433,438,549 samples, 0.14%)</title><rect x="85.6819%" y="1589" width="0.1409%" height="15" fill="rgb(221,15,4)" fg:x="263500993382" fg:w="433438549"/><text x="85.9319%" y="1599.50"></text></g><g><title>language::buffer::BufferSnapshot::chunks (512,591,272 samples, 0.17%)</title><rect x="85.6579%" y="1605" width="0.1667%" height="15" fill="rgb(217,149,33)" fg:x="263427128200" fg:w="512591272"/><text x="85.9079%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek (481,820,820 samples, 0.16%)</title><rect x="85.8246%" y="1605" width="0.1567%" height="15" fill="rgb(213,58,29)" fg:x="263939719472" fg:w="481820820"/><text x="86.0746%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (172,189,187 samples, 0.06%)</title><rect x="85.9812%" y="1605" width="0.0560%" height="15" fill="rgb(236,218,9)" fg:x="264421540292" fg:w="172189187"/><text x="86.2312%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (103,165,775 samples, 0.03%)</title><rect x="86.0528%" y="1589" width="0.0335%" height="15" fill="rgb(248,40,19)" fg:x="264641539459" fg:w="103165775"/><text x="86.3028%" y="1599.50"></text></g><g><title>text::BufferSnapshot::offset_for_anchor (273,373,628 samples, 0.09%)</title><rect x="86.0372%" y="1605" width="0.0889%" height="15" fill="rgb(212,17,6)" fg:x="264593729479" fg:w="273373628"/><text x="86.2872%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (122,397,873 samples, 0.04%)</title><rect x="86.0863%" y="1589" width="0.0398%" height="15" fill="rgb(206,212,20)" fg:x="264744705234" fg:w="122397873"/><text x="86.3363%" y="1599.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (63,776,410 samples, 0.02%)</title><rect x="86.1634%" y="1573" width="0.0207%" height="15" fill="rgb(229,80,37)" fg:x="264981663322" fg:w="63776410"/><text x="86.4134%" y="1583.50"></text></g><g><title>rope::Cursor::summary (483,710,163 samples, 0.16%)</title><rect x="86.1330%" y="1589" width="0.1573%" height="15" fill="rgb(253,8,37)" fg:x="264888132086" fg:w="483710163"/><text x="86.3830%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (290,493,431 samples, 0.09%)</title><rect x="86.1958%" y="1573" width="0.0945%" height="15" fill="rgb(215,16,43)" fg:x="265081348818" fg:w="290493431"/><text x="86.4458%" y="1583.50"></text></g><g><title>multi_buffer::MultiBufferChunks::seek (2,192,467,907 samples, 0.71%)</title><rect x="85.5983%" y="1621" width="0.7129%" height="15" fill="rgb(236,219,16)" fg:x="263243737825" fg:w="2192467907"/><text x="85.8483%" y="1631.50"></text></g><g><title>text::BufferSnapshot::text_summary_for_range (569,102,625 samples, 0.19%)</title><rect x="86.1261%" y="1605" width="0.1851%" height="15" fill="rgb(251,0,3)" fg:x="264867103107" fg:w="569102625"/><text x="86.3761%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (60,654,339 samples, 0.02%)</title><rect x="86.2914%" y="1589" width="0.0197%" height="15" fill="rgb(207,133,37)" fg:x="265375551393" fg:w="60654339"/><text x="86.5414%" y="1599.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::chunks (2,272,978,395 samples, 0.74%)</title><rect x="85.5760%" y="1637" width="0.7391%" height="15" fill="rgb(250,143,20)" fg:x="263175213772" fg:w="2272978395"/><text x="85.8260%" y="1647.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::chunks (2,635,687,367 samples, 0.86%)</title><rect x="85.4762%" y="1653" width="0.8570%" height="15" fill="rgb(242,19,50)" fg:x="262868242708" fg:w="2635687367"/><text x="85.7262%" y="1663.50"></text></g><g><title>__memmove_avx512_unaligned_erms (1,087,034,628 samples, 0.35%)</title><rect x="86.3573%" y="1637" width="0.3535%" height="15" fill="rgb(206,124,43)" fg:x="265578094685" fg:w="1087034628"/><text x="86.6073%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;editor::display_map::fold_map::FoldChunks&gt; (152,340,412 samples, 0.05%)</title><rect x="86.7112%" y="1637" width="0.0495%" height="15" fill="rgb(229,4,38)" fg:x="266666300123" fg:w="152340412"/><text x="86.9612%" y="1647.50"></text></g><g><title>&lt;editor::display_map::fold_map::TransformSummary as sum_tree::ContextLessSummary&gt;::add_summary (50,006,072 samples, 0.02%)</title><rect x="86.8523%" y="1621" width="0.0163%" height="15" fill="rgb(247,220,45)" fg:x="267100454436" fg:w="50006072"/><text x="87.1023%" y="1631.50"></text></g><g><title>__memmove_avx512_unaligned_erms (152,060,433 samples, 0.05%)</title><rect x="86.8759%" y="1605" width="0.0494%" height="15" fill="rgb(247,195,0)" fg:x="267173017512" fg:w="152060433"/><text x="87.1259%" y="1615.50"></text></g><g><title>&lt;sum_tree::cursor::SliceSeekAggregate&lt;T&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::begin_leaf (61,114,423 samples, 0.02%)</title><rect x="87.9732%" y="1573" width="0.0199%" height="15" fill="rgb(252,12,19)" fg:x="270547661073" fg:w="61114423"/><text x="88.2232%" y="1583.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (148,373,202 samples, 0.05%)</title><rect x="87.9931%" y="1573" width="0.0482%" height="15" fill="rgb(222,49,50)" fg:x="270608775496" fg:w="148373202"/><text x="88.2431%" y="1583.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (80,937,757 samples, 0.03%)</title><rect x="88.0414%" y="1573" width="0.0263%" height="15" fill="rgb(209,157,28)" fg:x="270757148698" fg:w="80937757"/><text x="88.2914%" y="1583.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_forward (38,480,337 samples, 0.01%)</title><rect x="88.0677%" y="1573" width="0.0125%" height="15" fill="rgb(238,174,24)" fg:x="270838086455" fg:w="38480337"/><text x="88.3177%" y="1583.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (104,567,751 samples, 0.03%)</title><rect x="88.2413%" y="1557" width="0.0340%" height="15" fill="rgb(224,17,28)" fg:x="271372124477" fg:w="104567751"/><text x="88.4913%" y="1567.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (43,749,760 samples, 0.01%)</title><rect x="88.2753%" y="1557" width="0.0142%" height="15" fill="rgb(249,7,29)" fg:x="271476692228" fg:w="43749760"/><text x="88.5253%" y="1567.50"></text></g><g><title>rope::Cursor::summary (1,458,614,347 samples, 0.47%)</title><rect x="87.8157%" y="1589" width="0.4743%" height="15" fill="rgb(243,178,4)" fg:x="270063036589" fg:w="1458614347"/><text x="88.0657%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (645,084,144 samples, 0.21%)</title><rect x="88.0802%" y="1573" width="0.2098%" height="15" fill="rgb(246,138,35)" fg:x="270876566792" fg:w="645084144"/><text x="88.3302%" y="1583.50"></text></g><g><title>rope::Rope::cursor (32,330,368 samples, 0.01%)</title><rect x="88.2900%" y="1589" width="0.0105%" height="15" fill="rgb(251,85,18)" fg:x="271521650936" fg:w="32330368"/><text x="88.5400%" y="1599.50"></text></g><g><title>rope::Rope::point_to_offset (710,632,523 samples, 0.23%)</title><rect x="88.3005%" y="1589" width="0.2311%" height="15" fill="rgb(254,55,9)" fg:x="271553981304" fg:w="710632523"/><text x="88.5505%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::end (275,080,275 samples, 0.09%)</title><rect x="88.5339%" y="1589" width="0.0894%" height="15" fill="rgb(248,4,50)" fg:x="272271894368" fg:w="275080275"/><text x="88.7839%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (191,164,035 samples, 0.06%)</title><rect x="88.6241%" y="1589" width="0.0622%" height="15" fill="rgb(215,208,14)" fg:x="272549396046" fg:w="191164035"/><text x="88.8741%" y="1599.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::begin_leaf (42,064,631 samples, 0.01%)</title><rect x="88.7376%" y="1573" width="0.0137%" height="15" fill="rgb(218,37,18)" fg:x="272898286978" fg:w="42064631"/><text x="88.9876%" y="1583.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find (69,328,355 samples, 0.02%)</title><rect x="88.7615%" y="1573" width="0.0225%" height="15" fill="rgb(206,104,13)" fg:x="272971925954" fg:w="69328355"/><text x="89.0115%" y="1583.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (372,178,705 samples, 0.12%)</title><rect x="88.7841%" y="1573" width="0.1210%" height="15" fill="rgb(248,94,22)" fg:x="273041254309" fg:w="372178705"/><text x="89.0341%" y="1583.50"></text></g><g><title>&lt;D as sum_tree::SeekTarget&lt;S,D&gt;&gt;::cmp (62,754,200 samples, 0.02%)</title><rect x="89.0112%" y="1557" width="0.0204%" height="15" fill="rgb(235,42,46)" fg:x="273739705189" fg:w="62754200"/><text x="89.2612%" y="1567.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (6,478,617,136 samples, 2.11%)</title><rect x="86.9254%" y="1605" width="2.1066%" height="15" fill="rgb(220,228,48)" fg:x="267325077945" fg:w="6478617136"/><text x="87.1754%" y="1615.50">m..</text></g><g><title>text::BufferSnapshot::offset_for_anchor (1,063,135,000 samples, 0.35%)</title><rect x="88.6863%" y="1589" width="0.3457%" height="15" fill="rgb(216,58,12)" fg:x="272740560081" fg:w="1063135000"/><text x="88.9363%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (390,262,067 samples, 0.13%)</title><rect x="88.9051%" y="1573" width="0.1269%" height="15" fill="rgb(223,97,52)" fg:x="273413433014" fg:w="390262067"/><text x="89.1551%" y="1583.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (6,708,685,562 samples, 2.18%)</title><rect x="86.8690%" y="1621" width="2.1814%" height="15" fill="rgb(208,159,17)" fg:x="267151600992" fg:w="6708685562"/><text x="87.1190%" y="1631.50">e..</text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (7,038,319,300 samples, 2.29%)</title><rect x="86.7629%" y="1637" width="2.2886%" height="15" fill="rgb(215,172,9)" fg:x="266825512460" fg:w="7038319300"/><text x="87.0129%" y="1647.50">e..</text></g><g><title>__memmove_avx512_unaligned_erms (147,664,279 samples, 0.05%)</title><rect x="89.1679%" y="1621" width="0.0480%" height="15" fill="rgb(252,175,30)" fg:x="274221554973" fg:w="147664279"/><text x="89.4179%" y="1631.50"></text></g><g><title>editor::display_map::custom_highlights::create_highlight_endpoints (36,668,551 samples, 0.01%)</title><rect x="89.2159%" y="1621" width="0.0119%" height="15" fill="rgb(209,159,10)" fg:x="274369219252" fg:w="36668551"/><text x="89.4659%" y="1631.50"></text></g><g><title>__memmove_avx512_unaligned_erms (112,381,868 samples, 0.04%)</title><rect x="89.2373%" y="1605" width="0.0365%" height="15" fill="rgb(229,73,51)" fg:x="274435169695" fg:w="112381868"/><text x="89.4873%" y="1615.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (124,369,381 samples, 0.04%)</title><rect x="89.3202%" y="1589" width="0.0404%" height="15" fill="rgb(208,212,43)" fg:x="274690065061" fg:w="124369381"/><text x="89.5702%" y="1599.50"></text></g><g><title>__memmove_avx512_unaligned_erms (74,714,985 samples, 0.02%)</title><rect x="89.3607%" y="1589" width="0.0243%" height="15" fill="rgb(254,123,53)" fg:x="274814434442" fg:w="74714985"/><text x="89.6107%" y="1599.50"></text></g><g><title>__memmove_avx512_unaligned_erms (164,917,422 samples, 0.05%)</title><rect x="89.3952%" y="1573" width="0.0536%" height="15" fill="rgb(254,128,49)" fg:x="274920763038" fg:w="164917422"/><text x="89.6452%" y="1583.50"></text></g><g><title>__memmove_avx512_unaligned_erms (70,607,756 samples, 0.02%)</title><rect x="89.4518%" y="1557" width="0.0230%" height="15" fill="rgb(246,16,16)" fg:x="275094827795" fg:w="70607756"/><text x="89.7018%" y="1567.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (31,126,590 samples, 0.01%)</title><rect x="89.5071%" y="1541" width="0.0101%" height="15" fill="rgb(209,200,1)" fg:x="275264714960" fg:w="31126590"/><text x="89.7571%" y="1551.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (35,619,906 samples, 0.01%)</title><rect x="89.5172%" y="1541" width="0.0116%" height="15" fill="rgb(235,9,3)" fg:x="275295841550" fg:w="35619906"/><text x="89.7672%" y="1551.50"></text></g><g><title>rope::Chunks::new (496,023,737 samples, 0.16%)</title><rect x="89.4748%" y="1557" width="0.1613%" height="15" fill="rgb(233,121,54)" fg:x="275165435551" fg:w="496023737"/><text x="89.7248%" y="1567.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (329,997,832 samples, 0.11%)</title><rect x="89.5288%" y="1541" width="0.1073%" height="15" fill="rgb(236,80,25)" fg:x="275331461456" fg:w="329997832"/><text x="89.7788%" y="1551.50"></text></g><g><title>language::buffer::BufferChunks::new (593,982,931 samples, 0.19%)</title><rect x="89.4489%" y="1573" width="0.1931%" height="15" fill="rgb(220,44,24)" fg:x="275085680460" fg:w="593982931"/><text x="89.6989%" y="1583.50"></text></g><g><title>language::buffer::BufferSnapshot::chunks (783,149,128 samples, 0.25%)</title><rect x="89.3908%" y="1589" width="0.2547%" height="15" fill="rgb(236,225,16)" fg:x="274907094408" fg:w="783149128"/><text x="89.6408%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek (746,135,171 samples, 0.24%)</title><rect x="89.6470%" y="1589" width="0.2426%" height="15" fill="rgb(237,140,0)" fg:x="275695040433" fg:w="746135171"/><text x="89.8970%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (365,685,515 samples, 0.12%)</title><rect x="89.8896%" y="1589" width="0.1189%" height="15" fill="rgb(243,225,53)" fg:x="276441175604" fg:w="365685515"/><text x="90.1396%" y="1599.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find (38,172,821 samples, 0.01%)</title><rect x="90.0264%" y="1573" width="0.0124%" height="15" fill="rgb(240,140,30)" fg:x="276861660074" fg:w="38172821"/><text x="90.2764%" y="1583.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (143,801,266 samples, 0.05%)</title><rect x="90.0388%" y="1573" width="0.0468%" height="15" fill="rgb(217,51,16)" fg:x="276899832895" fg:w="143801266"/><text x="90.2888%" y="1583.50"></text></g><g><title>text::BufferSnapshot::offset_for_anchor (404,314,894 samples, 0.13%)</title><rect x="90.0085%" y="1589" width="0.1315%" height="15" fill="rgb(245,75,50)" fg:x="276806861119" fg:w="404314894"/><text x="90.2585%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (167,541,852 samples, 0.05%)</title><rect x="90.0855%" y="1573" width="0.0545%" height="15" fill="rgb(208,174,22)" fg:x="277043634161" fg:w="167541852"/><text x="90.3355%" y="1583.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (87,604,508 samples, 0.03%)</title><rect x="90.2009%" y="1557" width="0.0285%" height="15" fill="rgb(219,98,50)" fg:x="277398488612" fg:w="87604508"/><text x="90.4509%" y="1567.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (63,999,833 samples, 0.02%)</title><rect x="90.2294%" y="1557" width="0.0208%" height="15" fill="rgb(243,138,3)" fg:x="277486093120" fg:w="63999833"/><text x="90.4794%" y="1567.50"></text></g><g><title>rope::Cursor::summary (766,864,551 samples, 0.25%)</title><rect x="90.1504%" y="1573" width="0.2494%" height="15" fill="rgb(243,132,26)" fg:x="277243195845" fg:w="766864551"/><text x="90.4004%" y="1583.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (452,734,954 samples, 0.15%)</title><rect x="90.2526%" y="1557" width="0.1472%" height="15" fill="rgb(250,201,8)" fg:x="277557325442" fg:w="452734954"/><text x="90.5026%" y="1567.50"></text></g><g><title>multi_buffer::MultiBufferChunks::seek (3,560,113,095 samples, 1.16%)</title><rect x="89.2739%" y="1605" width="1.1576%" height="15" fill="rgb(213,91,26)" fg:x="274547551563" fg:w="3560113095"/><text x="89.5239%" y="1615.50"></text></g><g><title>text::BufferSnapshot::text_summary_for_range (896,488,645 samples, 0.29%)</title><rect x="90.1400%" y="1589" width="0.2915%" height="15" fill="rgb(229,117,1)" fg:x="277211176013" fg:w="896488645"/><text x="90.3900%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (93,909,300 samples, 0.03%)</title><rect x="90.4010%" y="1573" width="0.0305%" height="15" fill="rgb(229,24,6)" fg:x="278013755358" fg:w="93909300"/><text x="90.6510%" y="1583.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::chunks (3,695,110,470 samples, 1.20%)</title><rect x="89.2324%" y="1621" width="1.2015%" height="15" fill="rgb(206,69,11)" fg:x="274419952072" fg:w="3695110470"/><text x="89.4824%" y="1631.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::end (33,803,316 samples, 0.01%)</title><rect x="90.4339%" y="1621" width="0.0110%" height="15" fill="rgb(234,111,34)" fg:x="278115062542" fg:w="33803316"/><text x="90.6839%" y="1631.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek (39,480,516 samples, 0.01%)</title><rect x="90.4449%" y="1621" width="0.0128%" height="15" fill="rgb(213,187,51)" fg:x="278148865858" fg:w="39480516"/><text x="90.6949%" y="1631.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::chunks (4,358,602,308 samples, 1.42%)</title><rect x="89.0516%" y="1637" width="1.4173%" height="15" fill="rgb(207,45,11)" fg:x="273863831760" fg:w="4358602308"/><text x="89.3016%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (34,087,694 samples, 0.01%)</title><rect x="90.4578%" y="1621" width="0.0111%" height="15" fill="rgb(225,151,47)" fg:x="278188346374" fg:w="34087694"/><text x="90.7078%" y="1631.50"></text></g><g><title>&lt;rope::Chunks as core::iter::traits::iterator::Iterator&gt;::next (40,203,583 samples, 0.01%)</title><rect x="90.6145%" y="1541" width="0.0131%" height="15" fill="rgb(211,226,5)" fg:x="278670420431" fg:w="40203583"/><text x="90.8645%" y="1551.50"></text></g><g><title>&lt;language::buffer::BufferChunks as core::iter::traits::iterator::Iterator&gt;::next (175,851,249 samples, 0.06%)</title><rect x="90.5903%" y="1557" width="0.0572%" height="15" fill="rgb(214,83,52)" fg:x="278595840878" fg:w="175851249"/><text x="90.8403%" y="1567.50"></text></g><g><title>rope::Chunks::peek_with_bitmaps (54,052,668 samples, 0.02%)</title><rect x="90.6299%" y="1541" width="0.0176%" height="15" fill="rgb(229,49,53)" fg:x="278717639459" fg:w="54052668"/><text x="90.8799%" y="1551.50"></text></g><g><title>&lt;multi_buffer::MultiBufferChunks as core::iter::traits::iterator::Iterator&gt;::next (298,359,584 samples, 0.10%)</title><rect x="90.5599%" y="1573" width="0.0970%" height="15" fill="rgb(246,8,28)" fg:x="278502402480" fg:w="298359584"/><text x="90.8099%" y="1583.50"></text></g><g><title>&lt;editor::display_map::custom_highlights::CustomHighlightsChunks as core::iter::traits::iterator::Iterator&gt;::next (360,760,116 samples, 0.12%)</title><rect x="90.5451%" y="1589" width="0.1173%" height="15" fill="rgb(207,28,41)" fg:x="278456899307" fg:w="360760116"/><text x="90.7951%" y="1599.50"></text></g><g><title>&lt;editor::display_map::inlay_map::InlayChunks as core::iter::traits::iterator::Iterator&gt;::next (442,889,777 samples, 0.14%)</title><rect x="90.5374%" y="1605" width="0.1440%" height="15" fill="rgb(254,22,25)" fg:x="278433403121" fg:w="442889777"/><text x="90.7874%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (47,615,104 samples, 0.02%)</title><rect x="90.6660%" y="1589" width="0.0155%" height="15" fill="rgb(209,120,42)" fg:x="278828677794" fg:w="47615104"/><text x="90.9160%" y="1599.50"></text></g><g><title>&lt;editor::display_map::fold_map::FoldChunks as core::iter::traits::iterator::Iterator&gt;::next (650,340,805 samples, 0.21%)</title><rect x="90.5084%" y="1621" width="0.2115%" height="15" fill="rgb(216,194,18)" fg:x="278344237456" fg:w="650340805"/><text x="90.7584%" y="1631.50"></text></g><g><title>__memmove_avx512_unaligned_erms (118,285,363 samples, 0.04%)</title><rect x="90.6814%" y="1605" width="0.0385%" height="15" fill="rgb(213,70,17)" fg:x="278876292898" fg:w="118285363"/><text x="90.9314%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (125,398,378 samples, 0.04%)</title><rect x="90.7207%" y="1621" width="0.0408%" height="15" fill="rgb(228,66,19)" fg:x="278996905142" fg:w="125398378"/><text x="90.9707%" y="1631.50"></text></g><g><title>editor::display_map::tab_map::TabStopCursor&lt;I&gt;::seek (898,672,010 samples, 0.29%)</title><rect x="90.4696%" y="1637" width="0.2922%" height="15" fill="rgb(236,221,54)" fg:x="278224804530" fg:w="898672010"/><text x="90.7196%" y="1647.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_fold_point (13,621,999,305 samples, 4.43%)</title><rect x="86.3336%" y="1653" width="4.4294%" height="15" fill="rgb(207,175,15)" fg:x="265505181196" fg:w="13621999305"/><text x="86.5836%" y="1663.50">edito..</text></g><g><title>editor::display_map::tab_map::TabSnapshot::chunks (23,651,549,466 samples, 7.69%)</title><rect x="83.0739%" y="1669" width="7.6907%" height="15" fill="rgb(234,76,8)" fg:x="255480522714" fg:w="23651549466"/><text x="83.3239%" y="1679.50">editor::dis..</text></g><g><title>__memmove_avx512_unaligned_erms (912,167,419 samples, 0.30%)</title><rect x="90.7907%" y="1653" width="0.2966%" height="15" fill="rgb(243,106,0)" fg:x="279212239465" fg:w="912167419"/><text x="91.0407%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;editor::display_map::fold_map::FoldChunks&gt; (63,043,654 samples, 0.02%)</title><rect x="91.0877%" y="1653" width="0.0205%" height="15" fill="rgb(208,48,19)" fg:x="280125657651" fg:w="63043654"/><text x="91.3377%" y="1663.50"></text></g><g><title>&lt;editor::display_map::fold_map::TransformSummary as sum_tree::ContextLessSummary&gt;::add_summary (37,030,289 samples, 0.01%)</title><rect x="91.1824%" y="1637" width="0.0120%" height="15" fill="rgb(251,50,29)" fg:x="280416774489" fg:w="37030289"/><text x="91.4324%" y="1647.50"></text></g><g><title>__memmove_avx512_unaligned_erms (121,193,964 samples, 0.04%)</title><rect x="91.2103%" y="1621" width="0.0394%" height="15" fill="rgb(222,31,49)" fg:x="280502809170" fg:w="121193964"/><text x="91.4603%" y="1631.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::begin_leaf (32,578,455 samples, 0.01%)</title><rect x="92.0161%" y="1605" width="0.0106%" height="15" fill="rgb(232,33,18)" fg:x="282980920340" fg:w="32578455"/><text x="92.2661%" y="1615.50"></text></g><g><title>&lt;sum_tree::cursor::SliceSeekAggregate&lt;T&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::begin_leaf (48,930,455 samples, 0.02%)</title><rect x="92.1847%" y="1589" width="0.0159%" height="15" fill="rgb(209,1,44)" fg:x="283499397500" fg:w="48930455"/><text x="92.4347%" y="1599.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (118,133,907 samples, 0.04%)</title><rect x="92.2006%" y="1589" width="0.0384%" height="15" fill="rgb(211,7,1)" fg:x="283548327955" fg:w="118133907"/><text x="92.4506%" y="1599.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (57,619,884 samples, 0.02%)</title><rect x="92.2391%" y="1589" width="0.0187%" height="15" fill="rgb(224,111,27)" fg:x="283666461862" fg:w="57619884"/><text x="92.4891%" y="1599.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (108,550,518 samples, 0.04%)</title><rect x="92.4421%" y="1573" width="0.0353%" height="15" fill="rgb(252,195,39)" fg:x="284290872837" fg:w="108550518"/><text x="92.6921%" y="1583.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (46,451,129 samples, 0.02%)</title><rect x="92.4774%" y="1573" width="0.0151%" height="15" fill="rgb(237,198,5)" fg:x="284399423355" fg:w="46451129"/><text x="92.7274%" y="1583.50"></text></g><g><title>rope::Cursor::summary (1,417,462,682 samples, 0.46%)</title><rect x="92.0336%" y="1605" width="0.4609%" height="15" fill="rgb(232,148,1)" fg:x="283034633474" fg:w="1417462682"/><text x="92.2836%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (707,774,983 samples, 0.23%)</title><rect x="92.2644%" y="1589" width="0.2301%" height="15" fill="rgb(249,41,3)" fg:x="283744321173" fg:w="707774983"/><text x="92.5144%" y="1599.50"></text></g><g><title>rope::Rope::point_to_offset (770,988,386 samples, 0.25%)</title><rect x="92.5029%" y="1605" width="0.2507%" height="15" fill="rgb(215,14,33)" fg:x="284477924526" fg:w="770988386"/><text x="92.7529%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::end (260,023,293 samples, 0.08%)</title><rect x="92.7588%" y="1605" width="0.0846%" height="15" fill="rgb(209,146,24)" fg:x="285264710060" fg:w="260023293"/><text x="93.0088%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (224,889,902 samples, 0.07%)</title><rect x="92.8452%" y="1605" width="0.0731%" height="15" fill="rgb(219,51,47)" fg:x="285530678624" fg:w="224889902"/><text x="93.0952%" y="1615.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find (117,659,377 samples, 0.04%)</title><rect x="92.9970%" y="1589" width="0.0383%" height="15" fill="rgb(234,217,40)" fg:x="285997446446" fg:w="117659377"/><text x="93.2470%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (277,133,232 samples, 0.09%)</title><rect x="93.0353%" y="1589" width="0.0901%" height="15" fill="rgb(228,34,26)" fg:x="286115105823" fg:w="277133232"/><text x="93.2853%" y="1599.50"></text></g><g><title>&lt;D as sum_tree::SeekTarget&lt;S,D&gt;&gt;::cmp (53,047,049 samples, 0.02%)</title><rect x="93.1940%" y="1573" width="0.0172%" height="15" fill="rgb(224,50,29)" fg:x="286603289509" fg:w="53047049"/><text x="93.4440%" y="1583.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (6,033,555,321 samples, 1.96%)</title><rect x="91.2497%" y="1621" width="1.9619%" height="15" fill="rgb(205,79,51)" fg:x="280624003134" fg:w="6033555321"/><text x="91.4997%" y="1631.50">m..</text></g><g><title>text::BufferSnapshot::offset_for_anchor (901,989,929 samples, 0.29%)</title><rect x="92.9184%" y="1605" width="0.2933%" height="15" fill="rgb(218,136,28)" fg:x="285755568526" fg:w="901989929"/><text x="93.1684%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (265,319,400 samples, 0.09%)</title><rect x="93.1254%" y="1589" width="0.0863%" height="15" fill="rgb(220,150,10)" fg:x="286392239055" fg:w="265319400"/><text x="93.3754%" y="1599.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (6,255,717,431 samples, 2.03%)</title><rect x="91.1948%" y="1637" width="2.0342%" height="15" fill="rgb(242,158,47)" fg:x="280454982759" fg:w="6255717431"/><text x="91.4448%" y="1647.50">e..</text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (6,517,226,889 samples, 2.12%)</title><rect x="91.1102%" y="1653" width="2.1192%" height="15" fill="rgb(209,68,0)" fg:x="280194727173" fg:w="6517226889"/><text x="91.3602%" y="1663.50">e..</text></g><g><title>__memmove_avx512_unaligned_erms (82,659,610 samples, 0.03%)</title><rect x="93.2658%" y="1637" width="0.0269%" height="15" fill="rgb(208,13,41)" fg:x="286823947119" fg:w="82659610"/><text x="93.5158%" y="1647.50"></text></g><g><title>__memmove_avx512_unaligned_erms (81,659,490 samples, 0.03%)</title><rect x="93.3099%" y="1621" width="0.0266%" height="15" fill="rgb(226,201,7)" fg:x="286959548173" fg:w="81659490"/><text x="93.5599%" y="1631.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (88,689,244 samples, 0.03%)</title><rect x="93.3656%" y="1605" width="0.0288%" height="15" fill="rgb(236,103,26)" fg:x="287131033623" fg:w="88689244"/><text x="93.6156%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (166,908,216 samples, 0.05%)</title><rect x="93.3949%" y="1605" width="0.0543%" height="15" fill="rgb(243,162,8)" fg:x="287220939461" fg:w="166908216"/><text x="93.6449%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (155,289,805 samples, 0.05%)</title><rect x="93.4538%" y="1589" width="0.0505%" height="15" fill="rgb(237,225,11)" fg:x="287402101221" fg:w="155289805"/><text x="93.7038%" y="1599.50"></text></g><g><title>__memmove_avx512_unaligned_erms (38,244,242 samples, 0.01%)</title><rect x="93.5069%" y="1573" width="0.0124%" height="15" fill="rgb(247,186,32)" fg:x="287565577610" fg:w="38244242"/><text x="93.7569%" y="1583.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (37,623,211 samples, 0.01%)</title><rect x="93.5531%" y="1557" width="0.0122%" height="15" fill="rgb(215,26,28)" fg:x="287707622907" fg:w="37623211"/><text x="93.8031%" y="1567.50"></text></g><g><title>rope::Chunks::new (416,507,766 samples, 0.14%)</title><rect x="93.5194%" y="1573" width="0.1354%" height="15" fill="rgb(208,121,6)" fg:x="287603821852" fg:w="416507766"/><text x="93.7694%" y="1583.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (273,984,950 samples, 0.09%)</title><rect x="93.5657%" y="1557" width="0.0891%" height="15" fill="rgb(225,91,3)" fg:x="287746344668" fg:w="273984950"/><text x="93.8157%" y="1567.50"></text></g><g><title>language::buffer::BufferChunks::new (477,270,057 samples, 0.16%)</title><rect x="93.5043%" y="1589" width="0.1552%" height="15" fill="rgb(246,119,36)" fg:x="287557391026" fg:w="477270057"/><text x="93.7543%" y="1599.50"></text></g><g><title>language::buffer::BufferSnapshot::chunks (650,036,942 samples, 0.21%)</title><rect x="93.4514%" y="1605" width="0.2114%" height="15" fill="rgb(254,173,2)" fg:x="287394805043" fg:w="650036942"/><text x="93.7014%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek (504,987,203 samples, 0.16%)</title><rect x="93.6639%" y="1605" width="0.1642%" height="15" fill="rgb(209,87,54)" fg:x="288048318202" fg:w="504987203"/><text x="93.9139%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (247,459,583 samples, 0.08%)</title><rect x="93.8281%" y="1605" width="0.0805%" height="15" fill="rgb(223,216,20)" fg:x="288553305405" fg:w="247459583"/><text x="94.0781%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (86,497,648 samples, 0.03%)</title><rect x="93.9265%" y="1589" width="0.0281%" height="15" fill="rgb(220,31,8)" fg:x="288855819871" fg:w="86497648"/><text x="94.1765%" y="1599.50"></text></g><g><title>text::BufferSnapshot::offset_for_anchor (274,923,474 samples, 0.09%)</title><rect x="93.9086%" y="1605" width="0.0894%" height="15" fill="rgb(220,185,15)" fg:x="288800764988" fg:w="274923474"/><text x="94.1586%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (133,370,943 samples, 0.04%)</title><rect x="93.9546%" y="1589" width="0.0434%" height="15" fill="rgb(247,190,50)" fg:x="288942317519" fg:w="133370943"/><text x="94.2046%" y="1599.50"></text></g><g><title>&lt;sum_tree::cursor::SliceSeekAggregate&lt;T&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::begin_leaf (33,151,820 samples, 0.01%)</title><rect x="94.0210%" y="1573" width="0.0108%" height="15" fill="rgb(239,173,47)" fg:x="289146675213" fg:w="33151820"/><text x="94.2710%" y="1583.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (52,697,879 samples, 0.02%)</title><rect x="94.0318%" y="1573" width="0.0171%" height="15" fill="rgb(218,190,42)" fg:x="289179827033" fg:w="52697879"/><text x="94.2818%" y="1583.50"></text></g><g><title>&lt;sum_tree::cursor::SummarySeekAggregate&lt;D&gt; as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_tree (44,298,760 samples, 0.01%)</title><rect x="94.0490%" y="1573" width="0.0144%" height="15" fill="rgb(251,207,16)" fg:x="289232524912" fg:w="44298760"/><text x="94.2990%" y="1583.50"></text></g><g><title>rope::Cursor::summary (495,819,540 samples, 0.16%)</title><rect x="94.0078%" y="1589" width="0.1612%" height="15" fill="rgb(222,199,47)" fg:x="289105872850" fg:w="495819540"/><text x="94.2578%" y="1599.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (314,186,527 samples, 0.10%)</title><rect x="94.0668%" y="1573" width="0.1022%" height="15" fill="rgb(245,190,7)" fg:x="289287505863" fg:w="314186527"/><text x="94.3168%" y="1583.50"></text></g><g><title>multi_buffer::MultiBufferChunks::seek (2,649,677,373 samples, 0.86%)</title><rect x="93.3364%" y="1621" width="0.8616%" height="15" fill="rgb(239,85,38)" fg:x="287041207663" fg:w="2649677373"/><text x="93.5864%" y="1631.50"></text></g><g><title>text::BufferSnapshot::text_summary_for_range (615,196,574 samples, 0.20%)</title><rect x="93.9980%" y="1605" width="0.2000%" height="15" fill="rgb(229,69,51)" fg:x="289075688462" fg:w="615196574"/><text x="94.2480%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (86,867,513 samples, 0.03%)</title><rect x="94.1698%" y="1589" width="0.0282%" height="15" fill="rgb(231,104,51)" fg:x="289604017523" fg:w="86867513"/><text x="94.4198%" y="1599.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::chunks (2,755,227,544 samples, 0.90%)</title><rect x="93.3067%" y="1637" width="0.8959%" height="15" fill="rgb(235,49,4)" fg:x="286949925624" fg:w="2755227544"/><text x="93.5567%" y="1647.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek (47,099,056 samples, 0.02%)</title><rect x="94.2122%" y="1637" width="0.0153%" height="15" fill="rgb(246,166,20)" fg:x="289734547676" fg:w="47099056"/><text x="94.4622%" y="1647.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::chunks (3,103,498,336 samples, 1.01%)</title><rect x="93.2293%" y="1653" width="1.0092%" height="15" fill="rgb(230,119,37)" fg:x="286711954062" fg:w="3103498336"/><text x="93.4793%" y="1663.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (33,805,666 samples, 0.01%)</title><rect x="94.2275%" y="1637" width="0.0110%" height="15" fill="rgb(234,77,34)" fg:x="289781646732" fg:w="33805666"/><text x="94.4775%" y="1647.50"></text></g><g><title>&lt;rope::Chunks as core::iter::traits::iterator::Iterator&gt;::next (32,746,645 samples, 0.01%)</title><rect x="94.3592%" y="1557" width="0.0106%" height="15" fill="rgb(211,222,33)" fg:x="290186494706" fg:w="32746645"/><text x="94.6092%" y="1567.50"></text></g><g><title>&lt;language::buffer::BufferChunks as core::iter::traits::iterator::Iterator&gt;::next (139,847,141 samples, 0.05%)</title><rect x="94.3387%" y="1573" width="0.0455%" height="15" fill="rgb(226,45,42)" fg:x="290123476560" fg:w="139847141"/><text x="94.5887%" y="1583.50"></text></g><g><title>rope::Chunks::peek_with_bitmaps (38,191,832 samples, 0.01%)</title><rect x="94.3717%" y="1557" width="0.0124%" height="15" fill="rgb(215,174,28)" fg:x="290225131869" fg:w="38191832"/><text x="94.6217%" y="1567.50"></text></g><g><title>&lt;multi_buffer::MultiBufferChunks as core::iter::traits::iterator::Iterator&gt;::next (297,032,720 samples, 0.10%)</title><rect x="94.3034%" y="1589" width="0.0966%" height="15" fill="rgb(254,173,49)" fg:x="290015047786" fg:w="297032720"/><text x="94.5534%" y="1599.50"></text></g><g><title>&lt;editor::display_map::custom_highlights::CustomHighlightsChunks as core::iter::traits::iterator::Iterator&gt;::next (341,902,413 samples, 0.11%)</title><rect x="94.2973%" y="1605" width="0.1112%" height="15" fill="rgb(229,191,6)" fg:x="289996366777" fg:w="341902413"/><text x="94.5473%" y="1615.50"></text></g><g><title>&lt;editor::display_map::inlay_map::InlayChunks as core::iter::traits::iterator::Iterator&gt;::next (485,950,830 samples, 0.16%)</title><rect x="94.2827%" y="1621" width="0.1580%" height="15" fill="rgb(212,145,22)" fg:x="289951328597" fg:w="485950830"/><text x="94.5327%" y="1631.50"></text></g><g><title>__memmove_avx512_unaligned_erms (90,586,880 samples, 0.03%)</title><rect x="94.4112%" y="1605" width="0.0295%" height="15" fill="rgb(226,6,51)" fg:x="290346692547" fg:w="90586880"/><text x="94.6612%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (119,727,228 samples, 0.04%)</title><rect x="94.4407%" y="1621" width="0.0389%" height="15" fill="rgb(227,128,8)" fg:x="290437279427" fg:w="119727228"/><text x="94.6907%" y="1631.50"></text></g><g><title>&lt;editor::display_map::fold_map::FoldChunks as core::iter::traits::iterator::Iterator&gt;::next (656,431,011 samples, 0.21%)</title><rect x="94.2666%" y="1637" width="0.2134%" height="15" fill="rgb(205,24,10)" fg:x="289901739613" fg:w="656431011"/><text x="94.5166%" y="1647.50"></text></g><g><title>__memmove_avx512_unaligned_erms (177,048,124 samples, 0.06%)</title><rect x="94.4800%" y="1637" width="0.0576%" height="15" fill="rgb(217,147,27)" fg:x="290558170624" fg:w="177048124"/><text x="94.7300%" y="1647.50"></text></g><g><title>editor::display_map::tab_map::TabStopCursor&lt;I&gt;::seek (918,858,252 samples, 0.30%)</title><rect x="94.2392%" y="1653" width="0.2988%" height="15" fill="rgb(250,82,42)" fg:x="289817581147" fg:w="918858252"/><text x="94.4892%" y="1663.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_fold_point (11,611,292,210 samples, 3.78%)</title><rect x="90.7646%" y="1669" width="3.7756%" height="15" fill="rgb(248,93,17)" fg:x="279132072180" fg:w="11611292210"/><text x="91.0146%" y="1679.50">edit..</text></g><g><title>__memmove_avx512_unaligned_erms (117,539,649 samples, 0.04%)</title><rect x="94.5430%" y="1653" width="0.0382%" height="15" fill="rgb(254,212,40)" fg:x="290751907738" fg:w="117539649"/><text x="94.7930%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;editor::display_map::fold_map::FoldChunks&gt; (44,866,106 samples, 0.01%)</title><rect x="94.5812%" y="1653" width="0.0146%" height="15" fill="rgb(229,209,2)" fg:x="290869447387" fg:w="44866106"/><text x="94.8312%" y="1663.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (113,497,077 samples, 0.04%)</title><rect x="94.5962%" y="1653" width="0.0369%" height="15" fill="rgb(211,50,43)" fg:x="290915456117" fg:w="113497077"/><text x="94.8462%" y="1663.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (59,687,689 samples, 0.02%)</title><rect x="94.6137%" y="1637" width="0.0194%" height="15" fill="rgb(245,196,29)" fg:x="290969265505" fg:w="59687689"/><text x="94.8637%" y="1647.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (59,687,689 samples, 0.02%)</title><rect x="94.6137%" y="1621" width="0.0194%" height="15" fill="rgb(216,132,13)" fg:x="290969265505" fg:w="59687689"/><text x="94.8637%" y="1631.50"></text></g><g><title>__memmove_avx512_unaligned_erms (44,290,957 samples, 0.01%)</title><rect x="94.6580%" y="1637" width="0.0144%" height="15" fill="rgb(251,108,21)" fg:x="291105543885" fg:w="44290957"/><text x="94.9080%" y="1647.50"></text></g><g><title>&lt;() as sum_tree::cursor::SeekAggregate&lt;T&gt;&gt;::push_item (35,581,005 samples, 0.01%)</title><rect x="94.6853%" y="1605" width="0.0116%" height="15" fill="rgb(229,174,54)" fg:x="291189352041" fg:w="35581005"/><text x="94.9353%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek (118,157,359 samples, 0.04%)</title><rect x="94.6976%" y="1605" width="0.0384%" height="15" fill="rgb(211,175,47)" fg:x="291227231616" fg:w="118157359"/><text x="94.9476%" y="1615.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (55,753,519 samples, 0.02%)</title><rect x="94.7360%" y="1605" width="0.0181%" height="15" fill="rgb(234,5,37)" fg:x="291345388975" fg:w="55753519"/><text x="94.9860%" y="1615.50"></text></g><g><title>multi_buffer::MultiBufferChunks::seek (235,770,883 samples, 0.08%)</title><rect x="94.6782%" y="1621" width="0.0767%" height="15" fill="rgb(244,150,43)" fg:x="291167645532" fg:w="235770883"/><text x="94.9282%" y="1631.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::chunks (242,761,705 samples, 0.08%)</title><rect x="94.6763%" y="1637" width="0.0789%" height="15" fill="rgb(242,172,38)" fg:x="291161829580" fg:w="242761705"/><text x="94.9263%" y="1647.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::chunks (394,619,495 samples, 0.13%)</title><rect x="94.6331%" y="1653" width="0.1283%" height="15" fill="rgb(205,27,8)" fg:x="291028953194" fg:w="394619495"/><text x="94.8831%" y="1663.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_tab_point (701,115,370 samples, 0.23%)</title><rect x="94.5402%" y="1669" width="0.2280%" height="15" fill="rgb(217,57,3)" fg:x="290743364390" fg:w="701115370"/><text x="94.7902%" y="1679.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::text_summary_for_range (45,137,331,209 samples, 14.68%)</title><rect x="80.0942%" y="1685" width="14.6772%" height="15" fill="rgb(242,21,38)" fg:x="246316755782" fg:w="45137331209"/><text x="80.3442%" y="1695.50">editor::display_map::t..</text></g><g><title>&lt;editor::display_map::wrap_map::TransformSummary as sum_tree::ContextLessSummary&gt;::add_summary (153,499,861 samples, 0.05%)</title><rect x="95.0025%" y="1669" width="0.0499%" height="15" fill="rgb(209,64,43)" fg:x="292164989332" fg:w="153499861"/><text x="95.2525%" y="1679.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::text_summary_for_range (46,838,412,637 samples, 15.23%)</title><rect x="79.8233%" y="1701" width="15.2303%" height="15" fill="rgb(222,2,46)" fg:x="245483714856" fg:w="46838412637"/><text x="80.0733%" y="1711.50">editor::display_map::wr..</text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (826,551,659 samples, 0.27%)</title><rect x="94.7848%" y="1685" width="0.2688%" height="15" fill="rgb(218,19,44)" fg:x="291495575834" fg:w="826551659"/><text x="95.0348%" y="1695.50"></text></g><g><title>malloc (102,594,993 samples, 0.03%)</title><rect x="95.0617%" y="1701" width="0.0334%" height="15" fill="rgb(240,203,42)" fg:x="292347189889" fg:w="102594993"/><text x="95.3117%" y="1711.50"></text></g><g><title>_int_malloc (36,629,468 samples, 0.01%)</title><rect x="95.0832%" y="1685" width="0.0119%" height="15" fill="rgb(229,23,45)" fg:x="292413155414" fg:w="36629468"/><text x="95.3332%" y="1695.50"></text></g><g><title>&lt;language::syntax_map::SyntaxSnapshot as core::clone::Clone&gt;::clone (89,649,763 samples, 0.03%)</title><rect x="95.2375%" y="1669" width="0.0292%" height="15" fill="rgb(205,228,51)" fg:x="292887721925" fg:w="89649763"/><text x="95.4875%" y="1679.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (60,342,746 samples, 0.02%)</title><rect x="95.2470%" y="1653" width="0.0196%" height="15" fill="rgb(239,36,20)" fg:x="292917028942" fg:w="60342746"/><text x="95.4970%" y="1663.50"></text></g><g><title>&lt;language::buffer::BufferSnapshot as core::clone::Clone&gt;::clone (376,662,311 samples, 0.12%)</title><rect x="95.1475%" y="1685" width="0.1225%" height="15" fill="rgb(248,172,27)" fg:x="292610929034" fg:w="376662311"/><text x="95.3975%" y="1695.50"></text></g><g><title>__memmove_avx512_unaligned_erms (86,493,693 samples, 0.03%)</title><rect x="95.2704%" y="1685" width="0.0281%" height="15" fill="rgb(244,55,32)" fg:x="292988765880" fg:w="86493693"/><text x="95.5204%" y="1695.50"></text></g><g><title>rope::Cursor::summary (365,267,536 samples, 0.12%)</title><rect x="95.3883%" y="1669" width="0.1188%" height="15" fill="rgb(215,97,16)" fg:x="293351325395" fg:w="365267536"/><text x="95.6383%" y="1679.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (196,530,606 samples, 0.06%)</title><rect x="95.4431%" y="1653" width="0.0639%" height="15" fill="rgb(224,80,29)" fg:x="293520062325" fg:w="196530606"/><text x="95.6931%" y="1663.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::end (66,369,324 samples, 0.02%)</title><rect x="95.5080%" y="1669" width="0.0216%" height="15" fill="rgb(216,93,47)" fg:x="293719596996" fg:w="66369324"/><text x="95.7580%" y="1679.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (91,371,438 samples, 0.03%)</title><rect x="95.5298%" y="1669" width="0.0297%" height="15" fill="rgb(238,159,10)" fg:x="293786529842" fg:w="91371438"/><text x="95.7798%" y="1679.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find (63,134,943 samples, 0.02%)</title><rect x="95.5732%" y="1653" width="0.0205%" height="15" fill="rgb(223,98,29)" fg:x="293920072950" fg:w="63134943"/><text x="95.8232%" y="1663.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (49,846,545 samples, 0.02%)</title><rect x="95.5937%" y="1653" width="0.0162%" height="15" fill="rgb(210,176,23)" fg:x="293983207893" fg:w="49846545"/><text x="95.8437%" y="1663.50"></text></g><g><title>multi_buffer::MultiBufferCursor&lt;D&gt;::region (976,349,591 samples, 0.32%)</title><rect x="95.2985%" y="1685" width="0.3175%" height="15" fill="rgb(242,162,27)" fg:x="293075259573" fg:w="976349591"/><text x="95.5485%" y="1695.50"></text></g><g><title>text::BufferSnapshot::offset_for_anchor (173,707,884 samples, 0.06%)</title><rect x="95.5595%" y="1669" width="0.0565%" height="15" fill="rgb(245,109,32)" fg:x="293877901280" fg:w="173707884"/><text x="95.8095%" y="1679.50"></text></g><g><title>&lt;multi_buffer::ExcerptDimension&lt;D&gt; as sum_tree::SeekTarget&lt;multi_buffer::DiffTransformSummary,multi_buffer::DiffTransforms&lt;D&gt;&gt;&gt;::cmp (42,165,788 samples, 0.01%)</title><rect x="95.8486%" y="1653" width="0.0137%" height="15" fill="rgb(248,87,8)" fg:x="294766992199" fg:w="42165788"/><text x="96.0986%" y="1663.50"></text></g><g><title>multi_buffer::MultiBufferCursor&lt;D&gt;::seek_to_start_of_current_excerpt (760,803,902 samples, 0.25%)</title><rect x="95.6160%" y="1685" width="0.2474%" height="15" fill="rgb(250,160,50)" fg:x="294051609164" fg:w="760803902"/><text x="95.8660%" y="1695.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (725,692,010 samples, 0.24%)</title><rect x="95.6274%" y="1669" width="0.2360%" height="15" fill="rgb(246,165,25)" fg:x="294086721056" fg:w="725692010"/><text x="95.8774%" y="1679.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_forward (49,305,136 samples, 0.02%)</title><rect x="95.8652%" y="1685" width="0.0160%" height="15" fill="rgb(249,219,3)" fg:x="294817978939" fg:w="49305136"/><text x="96.1152%" y="1695.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::excerpt_boundaries_in_range::_{{closure}} (2,374,358,790 samples, 0.77%)</title><rect x="95.1102%" y="1701" width="0.7721%" height="15" fill="rgb(226,66,5)" fg:x="292496320593" fg:w="2374358790"/><text x="95.3602%" y="1711.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (104,799,828 samples, 0.03%)</title><rect x="95.9651%" y="1669" width="0.0341%" height="15" fill="rgb(250,220,43)" fg:x="295125245592" fg:w="104799828"/><text x="96.2151%" y="1679.50"></text></g><g><title>core::ptr::drop_in_place&lt;language::buffer::BufferSnapshot&gt; (75,293,995 samples, 0.02%)</title><rect x="95.9747%" y="1653" width="0.0245%" height="15" fill="rgb(225,111,31)" fg:x="295154751425" fg:w="75293995"/><text x="96.2247%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;text::BufferSnapshot&gt; (68,442,213 samples, 0.02%)</title><rect x="95.9769%" y="1637" width="0.0223%" height="15" fill="rgb(248,106,18)" fg:x="295161603207" fg:w="68442213"/><text x="96.2269%" y="1647.50"></text></g><g><title>_int_free_chunk (79,504,651 samples, 0.03%)</title><rect x="96.0095%" y="1653" width="0.0259%" height="15" fill="rgb(220,226,45)" fg:x="295262000567" fg:w="79504651"/><text x="96.2595%" y="1663.50"></text></g><g><title>_int_free_merge_chunk (38,504,447 samples, 0.01%)</title><rect x="96.0229%" y="1637" width="0.0125%" height="15" fill="rgb(208,58,53)" fg:x="295303000771" fg:w="38504447"/><text x="96.2729%" y="1647.50"></text></g><g><title>cfree@GLIBC_2.2.5 (81,795,337 samples, 0.03%)</title><rect x="96.0092%" y="1669" width="0.0266%" height="15" fill="rgb(209,133,1)" fg:x="295260846547" fg:w="81795337"/><text x="96.2592%" y="1679.50"></text></g><g><title>__memmove_avx512_unaligned_erms (40,857,381 samples, 0.01%)</title><rect x="96.0679%" y="1653" width="0.0133%" height="15" fill="rgb(228,216,27)" fg:x="295441586945" fg:w="40857381"/><text x="96.3179%" y="1663.50"></text></g><g><title>__memmove_avx512_unaligned_erms (136,714,819 samples, 0.04%)</title><rect x="96.1361%" y="1637" width="0.0445%" height="15" fill="rgb(238,155,2)" fg:x="295651056752" fg:w="136714819"/><text x="96.3861%" y="1647.50"></text></g><g><title>__memmove_avx512_unaligned_erms (233,263,136 samples, 0.08%)</title><rect x="96.2482%" y="1621" width="0.0758%" height="15" fill="rgb(244,99,37)" fg:x="295995862505" fg:w="233263136"/><text x="96.4982%" y="1631.50"></text></g><g><title>&lt;editor::display_map::block_map::Block as core::clone::Clone&gt;::clone (59,155,825 samples, 0.02%)</title><rect x="96.3256%" y="1605" width="0.0192%" height="15" fill="rgb(254,32,3)" fg:x="296234032833" fg:w="59155825"/><text x="96.5756%" y="1615.50"></text></g><g><title>&lt;language::buffer::BufferSnapshot as core::clone::Clone&gt;::clone (59,155,825 samples, 0.02%)</title><rect x="96.3256%" y="1589" width="0.0192%" height="15" fill="rgb(234,46,50)" fg:x="296234032833" fg:w="59155825"/><text x="96.5756%" y="1599.50"></text></g><g><title>arrayvec::arrayvec::ArrayVec&lt;T,_&gt;::extend_from_iter (87,608,312 samples, 0.03%)</title><rect x="96.3253%" y="1621" width="0.0285%" height="15" fill="rgb(232,118,51)" fg:x="296232952556" fg:w="87608312"/><text x="96.5753%" y="1631.50"></text></g><g><title>&lt;editor::display_map::block_map::Block as core::clone::Clone&gt;::clone (106,048,813 samples, 0.03%)</title><rect x="96.3552%" y="1605" width="0.0345%" height="15" fill="rgb(207,24,32)" fg:x="296324881628" fg:w="106048813"/><text x="96.6052%" y="1615.50"></text></g><g><title>&lt;language::buffer::BufferSnapshot as core::clone::Clone&gt;::clone (91,567,149 samples, 0.03%)</title><rect x="96.3599%" y="1589" width="0.0298%" height="15" fill="rgb(208,107,43)" fg:x="296339363292" fg:w="91567149"/><text x="96.6099%" y="1599.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (114,890,918 samples, 0.04%)</title><rect x="96.3538%" y="1621" width="0.0374%" height="15" fill="rgb(231,28,9)" fg:x="296320560868" fg:w="114890918"/><text x="96.6038%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;language::buffer::BufferSnapshot&gt; (44,691,251 samples, 0.01%)</title><rect x="96.3915%" y="1621" width="0.0145%" height="15" fill="rgb(241,204,15)" fg:x="296436607753" fg:w="44691251"/><text x="96.6415%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;text::BufferSnapshot&gt; (33,757,919 samples, 0.01%)</title><rect x="96.3950%" y="1605" width="0.0110%" height="15" fill="rgb(214,54,15)" fg:x="296447541085" fg:w="33757919"/><text x="96.6450%" y="1615.50"></text></g><g><title>__memmove_avx512_unaligned_erms (280,885,479 samples, 0.09%)</title><rect x="96.4239%" y="1605" width="0.0913%" height="15" fill="rgb(230,12,28)" fg:x="296536162633" fg:w="280885479"/><text x="96.6739%" y="1615.50"></text></g><g><title>&lt;editor::display_map::block_map::Block as core::clone::Clone&gt;::clone (105,834,550 samples, 0.03%)</title><rect x="96.5219%" y="1589" width="0.0344%" height="15" fill="rgb(221,171,5)" fg:x="296837663693" fg:w="105834550"/><text x="96.7719%" y="1599.50"></text></g><g><title>&lt;language::buffer::BufferSnapshot as core::clone::Clone&gt;::clone (105,834,550 samples, 0.03%)</title><rect x="96.5219%" y="1573" width="0.0344%" height="15" fill="rgb(207,72,25)" fg:x="296837663693" fg:w="105834550"/><text x="96.7719%" y="1583.50"></text></g><g><title>arrayvec::arrayvec::ArrayVec&lt;T,_&gt;::extend_from_iter (137,342,777 samples, 0.04%)</title><rect x="96.5183%" y="1605" width="0.0447%" height="15" fill="rgb(249,79,37)" fg:x="296826711993" fg:w="137342777"/><text x="96.7683%" y="1615.50"></text></g><g><title>&lt;editor::display_map::block_map::Block as core::clone::Clone&gt;::clone (100,571,646 samples, 0.03%)</title><rect x="96.5649%" y="1589" width="0.0327%" height="15" fill="rgb(209,98,49)" fg:x="296969813473" fg:w="100571646"/><text x="96.8149%" y="1599.50"></text></g><g><title>&lt;language::buffer::BufferSnapshot as core::clone::Clone&gt;::clone (99,426,536 samples, 0.03%)</title><rect x="96.5652%" y="1573" width="0.0323%" height="15" fill="rgb(221,62,13)" fg:x="296970958583" fg:w="99426536"/><text x="96.8152%" y="1583.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (125,453,925 samples, 0.04%)</title><rect x="96.5630%" y="1605" width="0.0408%" height="15" fill="rgb(223,39,6)" fg:x="296964054770" fg:w="125453925"/><text x="96.8130%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;language::buffer::BufferSnapshot&gt; (61,421,681 samples, 0.02%)</title><rect x="96.6038%" y="1605" width="0.0200%" height="15" fill="rgb(246,163,20)" fg:x="297089508695" fg:w="61421681"/><text x="96.8538%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;text::BufferSnapshot&gt; (48,055,218 samples, 0.02%)</title><rect x="96.6081%" y="1589" width="0.0156%" height="15" fill="rgb(211,111,29)" fg:x="297102875158" fg:w="48055218"/><text x="96.8581%" y="1599.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (2,291,080,840 samples, 0.74%)</title><rect x="95.8837%" y="1701" width="0.7450%" height="15" fill="rgb(243,118,5)" fg:x="294874977239" fg:w="2291080840"/><text x="96.1337%" y="1711.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (2,226,090,737 samples, 0.72%)</title><rect x="95.9048%" y="1685" width="0.7239%" height="15" fill="rgb(240,144,52)" fg:x="294939967342" fg:w="2226090737"/><text x="96.1548%" y="1695.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (1,816,132,751 samples, 0.59%)</title><rect x="96.0381%" y="1669" width="0.5905%" height="15" fill="rgb(244,158,36)" fg:x="295349925328" fg:w="1816132751"/><text x="96.2881%" y="1679.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (1,651,917,911 samples, 0.54%)</title><rect x="96.0915%" y="1653" width="0.5371%" height="15" fill="rgb(241,109,37)" fg:x="295514140168" fg:w="1651917911"/><text x="96.3415%" y="1663.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (1,311,640,301 samples, 0.43%)</title><rect x="96.2022%" y="1637" width="0.4265%" height="15" fill="rgb(213,95,32)" fg:x="295854417778" fg:w="1311640301"/><text x="96.4522%" y="1647.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (670,831,697 samples, 0.22%)</title><rect x="96.4105%" y="1621" width="0.2181%" height="15" fill="rgb(252,193,9)" fg:x="296495226382" fg:w="670831697"/><text x="96.6605%" y="1631.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::update_last_recursive (157,224,536 samples, 0.05%)</title><rect x="96.6299%" y="1701" width="0.0511%" height="15" fill="rgb(225,213,21)" fg:x="297169786087" fg:w="157224536"/><text x="96.8799%" y="1711.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::update_last_recursive (139,187,059 samples, 0.05%)</title><rect x="96.6358%" y="1685" width="0.0453%" height="15" fill="rgb(220,172,46)" fg:x="297187823564" fg:w="139187059"/><text x="96.8858%" y="1695.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::update_last_recursive (90,599,933 samples, 0.03%)</title><rect x="96.6516%" y="1669" width="0.0295%" height="15" fill="rgb(235,75,41)" fg:x="297236410690" fg:w="90599933"/><text x="96.9016%" y="1679.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::update_last_recursive (61,778,440 samples, 0.02%)</title><rect x="96.6609%" y="1653" width="0.0201%" height="15" fill="rgb(213,86,9)" fg:x="297265232183" fg:w="61778440"/><text x="96.9109%" y="1663.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::search_backward (93,958,299 samples, 0.03%)</title><rect x="96.6824%" y="1701" width="0.0306%" height="15" fill="rgb(238,127,51)" fg:x="297331403185" fg:w="93958299"/><text x="96.9324%" y="1711.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (66,417,755 samples, 0.02%)</title><rect x="96.7137%" y="1701" width="0.0216%" height="15" fill="rgb(215,2,54)" fg:x="297427645757" fg:w="66417755"/><text x="96.9637%" y="1711.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (44,078,253 samples, 0.01%)</title><rect x="96.7210%" y="1685" width="0.0143%" height="15" fill="rgb(245,80,6)" fg:x="297449985259" fg:w="44078253"/><text x="96.9710%" y="1695.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (34,108,875 samples, 0.01%)</title><rect x="96.7242%" y="1669" width="0.0111%" height="15" fill="rgb(233,106,42)" fg:x="297459954637" fg:w="34108875"/><text x="96.9742%" y="1679.50"></text></g><g><title>editor::display_map::block_map::BlockMap::sync (60,253,342,771 samples, 19.59%)</title><rect x="77.1431%" y="1717" width="19.5924%" height="15" fill="rgb(244,86,38)" fg:x="237241371129" fg:w="60253342771"/><text x="77.3931%" y="1727.50">editor::display_map::block_map:..</text></g><g><title>editor::display_map::block_map::BlockMap::read (60,634,076,485 samples, 19.72%)</title><rect x="77.0238%" y="1733" width="19.7162%" height="15" fill="rgb(242,167,7)" fg:x="236874268610" fg:w="60634076485"/><text x="77.2738%" y="1743.50">editor::display_map::block_map:..</text></g><g><title>editor::display_map::fold_map::FoldMap::read (30,795,559 samples, 0.01%)</title><rect x="96.7400%" y="1733" width="0.0100%" height="15" fill="rgb(218,216,3)" fg:x="297508345095" fg:w="30795559"/><text x="96.9900%" y="1743.50"></text></g><g><title>editor::display_map::inlay_map::InlayMap::sync (46,492,826 samples, 0.02%)</title><rect x="96.7500%" y="1733" width="0.0151%" height="15" fill="rgb(206,136,36)" fg:x="297539140654" fg:w="46492826"/><text x="97.0000%" y="1743.50"></text></g><g><title>editor::display_map::tab_map::TabMap::sync (50,565,620 samples, 0.02%)</title><rect x="96.7651%" y="1733" width="0.0164%" height="15" fill="rgb(206,206,15)" fg:x="297585633480" fg:w="50565620"/><text x="97.0151%" y="1743.50"></text></g><g><title>parking::Inner::park (33,605,673 samples, 0.01%)</title><rect x="96.7905%" y="1685" width="0.0109%" height="15" fill="rgb(207,163,34)" fg:x="297663840064" fg:w="33605673"/><text x="97.0405%" y="1695.50"></text></g><g><title>syscall (31,755,262 samples, 0.01%)</title><rect x="96.7911%" y="1669" width="0.0103%" height="15" fill="rgb(240,127,22)" fg:x="297665690475" fg:w="31755262"/><text x="97.0411%" y="1679.50"></text></g><g><title>[unknown] (31,755,262 samples, 0.01%)</title><rect x="96.7911%" y="1653" width="0.0103%" height="15" fill="rgb(227,49,5)" fg:x="297665690475" fg:w="31755262"/><text x="97.0411%" y="1663.50"></text></g><g><title>[unknown] (31,755,262 samples, 0.01%)</title><rect x="96.7911%" y="1637" width="0.0103%" height="15" fill="rgb(231,8,6)" fg:x="297665690475" fg:w="31755262"/><text x="97.0411%" y="1647.50"></text></g><g><title>[unknown] (31,755,262 samples, 0.01%)</title><rect x="96.7911%" y="1621" width="0.0103%" height="15" fill="rgb(223,21,24)" fg:x="297665690475" fg:w="31755262"/><text x="97.0411%" y="1631.50"></text></g><g><title>gpui::executor::BackgroundExecutor::block_internal (39,160,441 samples, 0.01%)</title><rect x="96.7891%" y="1701" width="0.0127%" height="15" fill="rgb(244,44,52)" fg:x="297659508445" fg:w="39160441"/><text x="97.0391%" y="1711.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits (71,008,728 samples, 0.02%)</title><rect x="96.7822%" y="1717" width="0.0231%" height="15" fill="rgb(207,73,28)" fg:x="297638302254" fg:w="71008728"/><text x="97.0322%" y="1727.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::sync (73,989,670 samples, 0.02%)</title><rect x="96.7816%" y="1733" width="0.0241%" height="15" fill="rgb(234,215,10)" fg:x="297636199100" fg:w="73989670"/><text x="97.0316%" y="1743.50"></text></g><g><title>editor::display_map::DisplayMap::snapshot (60,845,667,829 samples, 19.79%)</title><rect x="77.0217%" y="1749" width="19.7850%" height="15" fill="rgb(236,85,3)" fg:x="236867780949" fg:w="60845667829"/><text x="77.2717%" y="1759.50">editor::display_map::DisplayMap..</text></g><g><title>editor::Editor::snapshot (60,851,135,078 samples, 19.79%)</title><rect x="77.0207%" y="1765" width="19.7868%" height="15" fill="rgb(236,102,39)" fg:x="236864793549" fg:w="60851135078"/><text x="77.2707%" y="1775.50">editor::Editor::snapshot</text></g><g><title>editor::selections_collection::resolve_selections_point (33,145,857 samples, 0.01%)</title><rect x="96.8148%" y="1749" width="0.0108%" height="15" fill="rgb(243,50,8)" fg:x="297738351871" fg:w="33145857"/><text x="97.0648%" y="1759.50"></text></g><g><title>editor::selections_collection::SelectionsCollection::newest (81,593,352 samples, 0.03%)</title><rect x="96.8075%" y="1765" width="0.0265%" height="15" fill="rgb(207,111,4)" fg:x="297715928627" fg:w="81593352"/><text x="97.0575%" y="1775.50"></text></g><g><title>editor::Editor::refresh_selected_text_highlights (60,935,756,944 samples, 19.81%)</title><rect x="77.0204%" y="1781" width="19.8143%" height="15" fill="rgb(230,52,42)" fg:x="236863837722" fg:w="60935756944"/><text x="77.2704%" y="1791.50">editor::Editor::refresh_selecte..</text></g><g><title>&lt;worktree::TraversalTarget as sum_tree::SeekTarget&lt;worktree::EntrySummary,worktree::TraversalProgress&gt;&gt;::cmp (37,090,546 samples, 0.01%)</title><rect x="96.8633%" y="1701" width="0.0121%" height="15" fill="rgb(252,178,50)" fg:x="297887454994" fg:w="37090546"/><text x="97.1133%" y="1711.50"></text></g><g><title>&lt;util::rel_path::RelPathComponents as core::iter::traits::iterator::Iterator&gt;::next (34,108,282 samples, 0.01%)</title><rect x="96.8642%" y="1685" width="0.0111%" height="15" fill="rgb(234,46,35)" fg:x="297890437258" fg:w="34108282"/><text x="97.1142%" y="1695.50"></text></g><g><title>worktree::Snapshot::entry_for_path (44,105,576 samples, 0.01%)</title><rect x="96.8616%" y="1733" width="0.0143%" height="15" fill="rgb(228,69,37)" fg:x="297882227660" fg:w="44105576"/><text x="97.1116%" y="1743.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (41,886,505 samples, 0.01%)</title><rect x="96.8623%" y="1717" width="0.0136%" height="15" fill="rgb(221,21,11)" fg:x="297884446731" fg:w="41886505"/><text x="97.1123%" y="1727.50"></text></g><g><title>editor::Editor::visible_excerpts (118,009,408 samples, 0.04%)</title><rect x="96.8379%" y="1749" width="0.0384%" height="15" fill="rgb(223,56,9)" fg:x="297809576684" fg:w="118009408"/><text x="97.0879%" y="1759.50"></text></g><g><title>editor::Editor::update_lsp_data (130,161,190 samples, 0.04%)</title><rect x="96.8350%" y="1781" width="0.0423%" height="15" fill="rgb(234,30,19)" fg:x="297800453008" fg:w="130161190"/><text x="97.0850%" y="1791.50"></text></g><g><title>editor::lsp_colors::&lt;impl editor::Editor&gt;::refresh_colors_for_visible_range (128,118,463 samples, 0.04%)</title><rect x="96.8356%" y="1765" width="0.0417%" height="15" fill="rgb(211,64,54)" fg:x="297802495735" fg:w="128118463"/><text x="97.0856%" y="1775.50"></text></g><g><title>editor::selections_collection::SelectionsCollection::newest (57,401,419 samples, 0.02%)</title><rect x="96.8834%" y="1765" width="0.0187%" height="15" fill="rgb(250,189,5)" fg:x="297949517958" fg:w="57401419"/><text x="97.1334%" y="1775.50"></text></g><g><title>ts_query_cursor__advance (37,655,525 samples, 0.01%)</title><rect x="96.9058%" y="1685" width="0.0122%" height="15" fill="rgb(214,180,13)" fg:x="298018206680" fg:w="37655525"/><text x="97.1558%" y="1695.50"></text></g><g><title>language::syntax_map::SyntaxMapMatchesLayer::advance (40,945,503 samples, 0.01%)</title><rect x="96.9058%" y="1717" width="0.0133%" height="15" fill="rgb(238,40,40)" fg:x="298018206680" fg:w="40945503"/><text x="97.1558%" y="1727.50"></text></g><g><title>ts_query_cursor_next_match (40,945,503 samples, 0.01%)</title><rect x="96.9058%" y="1701" width="0.0133%" height="15" fill="rgb(214,101,38)" fg:x="298018206680" fg:w="40945503"/><text x="97.1558%" y="1711.50"></text></g><g><title>language::syntax_map::SyntaxMapMatches::new (54,837,092 samples, 0.02%)</title><rect x="96.9051%" y="1733" width="0.0178%" height="15" fill="rgb(242,65,53)" fg:x="298016178049" fg:w="54837092"/><text x="97.1551%" y="1743.50"></text></g><g><title>language::buffer::BufferSnapshot::all_bracket_ranges (60,036,253 samples, 0.02%)</title><rect x="96.9048%" y="1749" width="0.0195%" height="15" fill="rgb(230,22,45)" fg:x="298015159466" fg:w="60036253"/><text x="97.1548%" y="1759.50"></text></g><g><title>editor::highlight_matching_bracket::&lt;impl editor::Editor&gt;::refresh_matching_bracket_highlights (158,498,589 samples, 0.05%)</title><rect x="96.8773%" y="1781" width="0.0515%" height="15" fill="rgb(223,77,1)" fg:x="297930614198" fg:w="158498589"/><text x="97.1273%" y="1791.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::innermost_enclosing_bracket_ranges (78,546,396 samples, 0.03%)</title><rect x="96.9033%" y="1765" width="0.0255%" height="15" fill="rgb(227,33,37)" fg:x="298010566391" fg:w="78546396"/><text x="97.1533%" y="1775.50"></text></g><g><title>gpui::app::context::Context&lt;T&gt;::subscribe_in::_{{closure}}::_{{closure}} (61,281,786,432 samples, 19.93%)</title><rect x="77.0113%" y="1797" width="19.9268%" height="15" fill="rgb(224,148,39)" fg:x="236835887902" fg:w="61281786432"/><text x="77.2613%" y="1807.50">gpui::app::context::Context&lt;T&gt;:..</text></g><g><title>gpui::app::context::Context&lt;T&gt;::subscribe_in::_{{closure}} (61,325,964,124 samples, 19.94%)</title><rect x="77.0007%" y="1813" width="19.9412%" height="15" fill="rgb(232,212,39)" fg:x="236803444029" fg:w="61325964124"/><text x="77.2507%" y="1823.50">gpui::app::context::Context&lt;T&gt;:..</text></g><g><title>gpui::app::App::flush_effects (61,606,055,339 samples, 20.03%)</title><rect x="76.9185%" y="1829" width="20.0323%" height="15" fill="rgb(251,172,7)" fg:x="236550477610" fg:w="61606055339"/><text x="77.1685%" y="1839.50">gpui::app::App::flush_effects</text></g><g><title>git_ui::project_diff::ProjectDiff::refresh::_{{closure}} (63,291,754,127 samples, 20.58%)</title><rect x="76.3824%" y="1845" width="20.5804%" height="15" fill="rgb(219,39,9)" fg:x="234901832027" fg:w="63291754127"/><text x="76.6324%" y="1855.50">git_ui::project_diff::ProjectDif..</text></g><g><title>project::manifest_tree::server_tree::LanguageServerTree::get (38,141,264 samples, 0.01%)</title><rect x="97.0002%" y="1781" width="0.0124%" height="15" fill="rgb(228,118,14)" fg:x="298308731094" fg:w="38141264"/><text x="97.2502%" y="1791.50"></text></g><g><title>project::lsp_store::LocalLspStore::initialize_buffer (42,494,043 samples, 0.01%)</title><rect x="96.9991%" y="1797" width="0.0138%" height="15" fill="rgb(207,140,10)" fg:x="298305353386" fg:w="42494043"/><text x="97.2491%" y="1807.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (34,151,007 samples, 0.01%)</title><rect x="97.0222%" y="1733" width="0.0111%" height="15" fill="rgb(227,111,53)" fg:x="298376120532" fg:w="34151007"/><text x="97.2722%" y="1743.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::fold (49,898,494 samples, 0.02%)</title><rect x="97.0206%" y="1749" width="0.0162%" height="15" fill="rgb(216,165,16)" fg:x="298371270476" fg:w="49898494"/><text x="97.2706%" y="1759.50"></text></g><g><title>language::language_registry::LanguageRegistry::language_for_file_internal (82,383,890 samples, 0.03%)</title><rect x="97.0195%" y="1765" width="0.0268%" height="15" fill="rgb(226,111,18)" fg:x="298367988078" fg:w="82383890"/><text x="97.2695%" y="1775.50"></text></g><g><title>language::language_registry::LanguageRegistry::language_for_file (102,522,355 samples, 0.03%)</title><rect x="97.0133%" y="1781" width="0.0333%" height="15" fill="rgb(251,27,17)" fg:x="298349004230" fg:w="102522355"/><text x="97.2633%" y="1791.50"></text></g><g><title>language::buffer::Buffer::reparse (75,347,954 samples, 0.02%)</title><rect x="97.0515%" y="1749" width="0.0245%" height="15" fill="rgb(254,69,9)" fg:x="298466322682" fg:w="75347954"/><text x="97.3015%" y="1759.50"></text></g><g><title>language::buffer::Buffer::set_language (80,747,152 samples, 0.03%)</title><rect x="97.0515%" y="1765" width="0.0263%" height="15" fill="rgb(234,140,37)" fg:x="298466322682" fg:w="80747152"/><text x="97.3015%" y="1775.50"></text></g><g><title>project::lsp_store::LspStore::detect_language_for_buffer (212,339,455 samples, 0.07%)</title><rect x="97.0130%" y="1797" width="0.0690%" height="15" fill="rgb(220,93,8)" fg:x="298347847429" fg:w="212339455"/><text x="97.2630%" y="1807.50"></text></g><g><title>project::lsp_store::LspStore::set_language_for_buffer (107,819,170 samples, 0.04%)</title><rect x="97.0469%" y="1781" width="0.0351%" height="15" fill="rgb(236,113,3)" fg:x="298452367714" fg:w="107819170"/><text x="97.2969%" y="1791.50"></text></g><g><title>gpui::app::App::subscribe_internal::_{{closure}} (322,976,946 samples, 0.11%)</title><rect x="96.9833%" y="1813" width="0.1050%" height="15" fill="rgb(234,108,23)" fg:x="298256478785" fg:w="322976946"/><text x="97.2333%" y="1823.50"></text></g><g><title>gpui::app::App::finish_update (401,047,203 samples, 0.13%)</title><rect x="96.9628%" y="1845" width="0.1304%" height="15" fill="rgb(205,114,34)" fg:x="298193586154" fg:w="401047203"/><text x="97.2128%" y="1855.50"></text></g><g><title>gpui::app::App::flush_effects (401,047,203 samples, 0.13%)</title><rect x="96.9628%" y="1829" width="0.1304%" height="15" fill="rgb(236,200,45)" fg:x="298193586154" fg:w="401047203"/><text x="97.2128%" y="1839.50"></text></g><g><title>agent::NativeAgent::handle_project_event (49,445,927 samples, 0.02%)</title><rect x="97.1359%" y="1813" width="0.0161%" height="15" fill="rgb(227,194,29)" fg:x="298725983358" fg:w="49445927"/><text x="97.3859%" y="1823.50"></text></g><g><title>util::rel_path::RelPath::new (34,576,301 samples, 0.01%)</title><rect x="97.1408%" y="1797" width="0.0112%" height="15" fill="rgb(250,76,42)" fg:x="298740852984" fg:w="34576301"/><text x="97.3908%" y="1807.50"></text></g><g><title>project::git_store::GitStore::on_worktree_store_event (73,404,441 samples, 0.02%)</title><rect x="97.1653%" y="1813" width="0.0239%" height="15" fill="rgb(208,128,8)" fg:x="298816247097" fg:w="73404441"/><text x="97.4153%" y="1823.50"></text></g><g><title>worktree::Snapshot::absolutize (45,118,174 samples, 0.01%)</title><rect x="97.1745%" y="1797" width="0.0147%" height="15" fill="rgb(229,209,35)" fg:x="298844533364" fg:w="45118174"/><text x="97.4245%" y="1807.50"></text></g><g><title>gpui::app::App::subscribe_internal::_{{closure}} (219,957,155 samples, 0.07%)</title><rect x="97.1195%" y="1829" width="0.0715%" height="15" fill="rgb(215,39,53)" fg:x="298675426228" fg:w="219957155"/><text x="97.3695%" y="1839.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_tab_point (41,681,899 samples, 0.01%)</title><rect x="97.2362%" y="1717" width="0.0136%" height="15" fill="rgb(219,123,41)" fg:x="299034275354" fg:w="41681899"/><text x="97.4862%" y="1727.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::text_summary_for_excerpt_offset_range (32,443,144 samples, 0.01%)</title><rect x="97.2677%" y="1637" width="0.0105%" height="15" fill="rgb(212,158,18)" fg:x="299131304279" fg:w="32443144"/><text x="97.5177%" y="1647.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::text_summary_for_range (39,032,977 samples, 0.01%)</title><rect x="97.2670%" y="1669" width="0.0127%" height="15" fill="rgb(234,196,53)" fg:x="299128999182" fg:w="39032977"/><text x="97.5170%" y="1679.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::text_summary_for_range (37,984,333 samples, 0.01%)</title><rect x="97.2673%" y="1653" width="0.0124%" height="15" fill="rgb(210,139,12)" fg:x="299130047826" fg:w="37984333"/><text x="97.5173%" y="1663.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (62,329,714 samples, 0.02%)</title><rect x="97.2801%" y="1653" width="0.0203%" height="15" fill="rgb(220,116,54)" fg:x="299169281753" fg:w="62329714"/><text x="97.5301%" y="1663.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (64,544,853 samples, 0.02%)</title><rect x="97.2797%" y="1669" width="0.0210%" height="15" fill="rgb(247,103,28)" fg:x="299168032159" fg:w="64544853"/><text x="97.5297%" y="1679.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::text_summary_for_range (105,264,473 samples, 0.03%)</title><rect x="97.2667%" y="1685" width="0.0342%" height="15" fill="rgb(253,156,45)" fg:x="299128307406" fg:w="105264473"/><text x="97.5167%" y="1695.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (97,466,119 samples, 0.03%)</title><rect x="97.3103%" y="1637" width="0.0317%" height="15" fill="rgb(237,157,52)" fg:x="299262197298" fg:w="97466119"/><text x="97.5603%" y="1647.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (113,967,542 samples, 0.04%)</title><rect x="97.3056%" y="1669" width="0.0371%" height="15" fill="rgb(253,112,16)" fg:x="299247791559" fg:w="113967542"/><text x="97.5556%" y="1679.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (102,748,251 samples, 0.03%)</title><rect x="97.3092%" y="1653" width="0.0334%" height="15" fill="rgb(234,70,18)" fg:x="299259010850" fg:w="102748251"/><text x="97.5592%" y="1663.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::chunks (36,242,867 samples, 0.01%)</title><rect x="97.3441%" y="1653" width="0.0118%" height="15" fill="rgb(247,138,19)" fg:x="299366318798" fg:w="36242867"/><text x="97.5941%" y="1663.50"></text></g><g><title>multi_buffer::MultiBufferChunks::seek (34,511,824 samples, 0.01%)</title><rect x="97.3447%" y="1637" width="0.0112%" height="15" fill="rgb(207,171,1)" fg:x="299368049841" fg:w="34511824"/><text x="97.5947%" y="1647.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::chunks (42,071,002 samples, 0.01%)</title><rect x="97.3427%" y="1669" width="0.0137%" height="15" fill="rgb(239,213,3)" fg:x="299361759101" fg:w="42071002"/><text x="97.5927%" y="1679.50"></text></g><g><title>rope::Cursor::summary (32,296,334 samples, 0.01%)</title><rect x="97.3830%" y="1605" width="0.0105%" height="15" fill="rgb(226,112,4)" fg:x="299485731061" fg:w="32296334"/><text x="97.6330%" y="1615.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (110,908,234 samples, 0.04%)</title><rect x="97.3676%" y="1621" width="0.0361%" height="15" fill="rgb(252,170,12)" fg:x="299438594157" fg:w="110908234"/><text x="97.6176%" y="1631.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (127,717,568 samples, 0.04%)</title><rect x="97.3630%" y="1653" width="0.0415%" height="15" fill="rgb(241,106,13)" fg:x="299424215964" fg:w="127717568"/><text x="97.6130%" y="1663.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (116,691,848 samples, 0.04%)</title><rect x="97.3665%" y="1637" width="0.0379%" height="15" fill="rgb(225,73,23)" fg:x="299435241684" fg:w="116691848"/><text x="97.6165%" y="1647.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::chunks (51,686,764 samples, 0.02%)</title><rect x="97.4075%" y="1637" width="0.0168%" height="15" fill="rgb(251,227,29)" fg:x="299561059274" fg:w="51686764"/><text x="97.6575%" y="1647.50"></text></g><g><title>multi_buffer::MultiBufferChunks::seek (49,623,558 samples, 0.02%)</title><rect x="97.4081%" y="1621" width="0.0161%" height="15" fill="rgb(237,144,13)" fg:x="299563122480" fg:w="49623558"/><text x="97.6581%" y="1631.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::chunks (61,737,586 samples, 0.02%)</title><rect x="97.4045%" y="1653" width="0.0201%" height="15" fill="rgb(232,106,46)" fg:x="299551933532" fg:w="61737586"/><text x="97.6545%" y="1663.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::chunks (388,171,681 samples, 0.13%)</title><rect x="97.3013%" y="1685" width="0.1262%" height="15" fill="rgb(245,154,53)" fg:x="299234578002" fg:w="388171681"/><text x="97.5513%" y="1695.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_fold_point (218,919,580 samples, 0.07%)</title><rect x="97.3563%" y="1669" width="0.0712%" height="15" fill="rgb(212,119,47)" fg:x="299403830103" fg:w="218919580"/><text x="97.6063%" y="1679.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (90,173,457 samples, 0.03%)</title><rect x="97.4338%" y="1637" width="0.0293%" height="15" fill="rgb(253,135,25)" fg:x="299642050029" fg:w="90173457"/><text x="97.6838%" y="1647.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (97,774,603 samples, 0.03%)</title><rect x="97.4321%" y="1669" width="0.0318%" height="15" fill="rgb(253,208,39)" fg:x="299636824299" fg:w="97774603"/><text x="97.6821%" y="1679.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (94,864,733 samples, 0.03%)</title><rect x="97.4330%" y="1653" width="0.0308%" height="15" fill="rgb(226,64,12)" fg:x="299639734169" fg:w="94864733"/><text x="97.6830%" y="1663.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::chunks (47,269,647 samples, 0.02%)</title><rect x="97.4653%" y="1653" width="0.0154%" height="15" fill="rgb(214,162,37)" fg:x="299738878008" fg:w="47269647"/><text x="97.7153%" y="1663.50"></text></g><g><title>multi_buffer::MultiBufferChunks::seek (46,037,863 samples, 0.01%)</title><rect x="97.4657%" y="1637" width="0.0150%" height="15" fill="rgb(250,104,5)" fg:x="299740109792" fg:w="46037863"/><text x="97.7157%" y="1647.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::chunks (52,567,019 samples, 0.02%)</title><rect x="97.4639%" y="1669" width="0.0171%" height="15" fill="rgb(220,202,50)" fg:x="299734598902" fg:w="52567019"/><text x="97.7139%" y="1679.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_fold_point (180,657,213 samples, 0.06%)</title><rect x="97.4275%" y="1685" width="0.0587%" height="15" fill="rgb(248,67,38)" fg:x="299622749683" fg:w="180657213"/><text x="97.6775%" y="1695.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::text_summary_for_range (723,071,756 samples, 0.24%)</title><rect x="97.2532%" y="1701" width="0.2351%" height="15" fill="rgb(242,94,35)" fg:x="299086768693" fg:w="723071756"/><text x="97.5032%" y="1711.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::text_summary_for_range (748,079,813 samples, 0.24%)</title><rect x="97.2497%" y="1717" width="0.2433%" height="15" fill="rgb(209,78,37)" fg:x="299075957253" fg:w="748079813"/><text x="97.4997%" y="1727.50"></text></g><g><title>multi_buffer::MultiBufferCursor&lt;D&gt;::region (71,813,310 samples, 0.02%)</title><rect x="97.5125%" y="1701" width="0.0234%" height="15" fill="rgb(230,126,47)" fg:x="299884039838" fg:w="71813310"/><text x="97.7625%" y="1711.50"></text></g><g><title>multi_buffer::MultiBufferCursor&lt;D&gt;::seek_to_start_of_current_excerpt (204,049,210 samples, 0.07%)</title><rect x="97.5358%" y="1701" width="0.0664%" height="15" fill="rgb(222,110,35)" fg:x="299955853148" fg:w="204049210"/><text x="97.7858%" y="1711.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (193,291,296 samples, 0.06%)</title><rect x="97.5393%" y="1685" width="0.0629%" height="15" fill="rgb(233,154,20)" fg:x="299966611062" fg:w="193291296"/><text x="97.7893%" y="1695.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::excerpt_boundaries_in_range::_{{closure}} (293,003,905 samples, 0.10%)</title><rect x="97.5082%" y="1717" width="0.0953%" height="15" fill="rgb(223,53,50)" fg:x="299870943933" fg:w="293003905"/><text x="97.7582%" y="1727.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (51,041,518 samples, 0.02%)</title><rect x="97.6038%" y="1717" width="0.0166%" height="15" fill="rgb(251,27,26)" fg:x="300164846013" fg:w="51041518"/><text x="97.8538%" y="1727.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (46,601,153 samples, 0.02%)</title><rect x="97.6052%" y="1701" width="0.0152%" height="15" fill="rgb(223,189,16)" fg:x="300169286378" fg:w="46601153"/><text x="97.8552%" y="1711.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (38,905,878 samples, 0.01%)</title><rect x="97.6077%" y="1685" width="0.0127%" height="15" fill="rgb(207,5,54)" fg:x="300176981653" fg:w="38905878"/><text x="97.8577%" y="1695.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (34,704,076 samples, 0.01%)</title><rect x="97.6091%" y="1669" width="0.0113%" height="15" fill="rgb(254,124,50)" fg:x="300181183455" fg:w="34704076"/><text x="97.8591%" y="1679.50"></text></g><g><title>editor::display_map::block_map::BlockMap::sync (1,287,998,877 samples, 0.42%)</title><rect x="97.2292%" y="1733" width="0.4188%" height="15" fill="rgb(253,193,24)" fg:x="299012799184" fg:w="1287998877"/><text x="97.4792%" y="1743.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (80,974,614 samples, 0.03%)</title><rect x="97.6217%" y="1717" width="0.0263%" height="15" fill="rgb(235,170,24)" fg:x="300219823447" fg:w="80974614"/><text x="97.8717%" y="1727.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (62,988,261 samples, 0.02%)</title><rect x="97.6275%" y="1701" width="0.0205%" height="15" fill="rgb(222,212,52)" fg:x="300237809800" fg:w="62988261"/><text x="97.8775%" y="1711.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (38,297,826 samples, 0.01%)</title><rect x="97.6355%" y="1685" width="0.0125%" height="15" fill="rgb(223,17,45)" fg:x="300262500235" fg:w="38297826"/><text x="97.8855%" y="1695.50"></text></g><g><title>editor::display_map::block_map::BlockMap::read (1,318,775,950 samples, 0.43%)</title><rect x="97.2195%" y="1749" width="0.4288%" height="15" fill="rgb(227,103,26)" fg:x="298983105247" fg:w="1318775950"/><text x="97.4695%" y="1759.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::text_summary_for_excerpt_offset_range (41,172,233 samples, 0.01%)</title><rect x="97.6601%" y="1717" width="0.0134%" height="15" fill="rgb(251,151,25)" fg:x="300337900314" fg:w="41172233"/><text x="97.9101%" y="1727.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::text_summary_for_range (58,619,998 samples, 0.02%)</title><rect x="97.6585%" y="1733" width="0.0191%" height="15" fill="rgb(248,144,29)" fg:x="300332953626" fg:w="58619998"/><text x="97.9085%" y="1743.50"></text></g><g><title>editor::display_map::inlay_map::InlayMap::sync (74,331,966 samples, 0.02%)</title><rect x="97.6565%" y="1749" width="0.0242%" height="15" fill="rgb(245,97,16)" fg:x="300326893189" fg:w="74331966"/><text x="97.9065%" y="1759.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::offset_to_point (108,954,765 samples, 0.04%)</title><rect x="97.6842%" y="1701" width="0.0354%" height="15" fill="rgb(220,200,29)" fg:x="300412198007" fg:w="108954765"/><text x="97.9342%" y="1711.50"></text></g><g><title>editor::display_map::fold_map::FoldOffset::to_point (117,732,770 samples, 0.04%)</title><rect x="97.6817%" y="1733" width="0.0383%" height="15" fill="rgb(206,38,29)" fg:x="300404546682" fg:w="117732770"/><text x="97.9317%" y="1743.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_point (113,120,080 samples, 0.04%)</title><rect x="97.6832%" y="1717" width="0.0368%" height="15" fill="rgb(245,19,52)" fg:x="300409159372" fg:w="113120080"/><text x="97.9332%" y="1727.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (81,292,391 samples, 0.03%)</title><rect x="97.7369%" y="1685" width="0.0264%" height="15" fill="rgb(205,67,43)" fg:x="300574312698" fg:w="81292391"/><text x="97.9869%" y="1695.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (86,119,389 samples, 0.03%)</title><rect x="97.7360%" y="1717" width="0.0280%" height="15" fill="rgb(217,128,23)" fg:x="300571434843" fg:w="86119389"/><text x="97.9860%" y="1727.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (83,241,534 samples, 0.03%)</title><rect x="97.7369%" y="1701" width="0.0271%" height="15" fill="rgb(210,109,28)" fg:x="300574312698" fg:w="83241534"/><text x="97.9869%" y="1711.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::chunks (48,895,029 samples, 0.02%)</title><rect x="97.7640%" y="1717" width="0.0159%" height="15" fill="rgb(233,181,7)" fg:x="300657554232" fg:w="48895029"/><text x="98.0140%" y="1727.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::chunks (45,689,140 samples, 0.01%)</title><rect x="97.7650%" y="1701" width="0.0149%" height="15" fill="rgb(244,11,22)" fg:x="300660760121" fg:w="45689140"/><text x="98.0150%" y="1711.50"></text></g><g><title>multi_buffer::MultiBufferChunks::seek (45,123,479 samples, 0.01%)</title><rect x="97.7652%" y="1685" width="0.0147%" height="15" fill="rgb(205,124,54)" fg:x="300661325782" fg:w="45123479"/><text x="98.0152%" y="1695.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_tab_point (157,986,791 samples, 0.05%)</title><rect x="97.7325%" y="1733" width="0.0514%" height="15" fill="rgb(218,21,27)" fg:x="300560656735" fg:w="157986791"/><text x="97.9825%" y="1743.50"></text></g><g><title>editor::display_map::tab_map::TabMap::sync (318,623,536 samples, 0.10%)</title><rect x="97.6807%" y="1749" width="0.1036%" height="15" fill="rgb(224,153,33)" fg:x="300401225155" fg:w="318623536"/><text x="97.9307%" y="1759.50"></text></g><g><title>editor::display_map::fold_map::FoldSnapshot::text_summary_for_range (58,515,829 samples, 0.02%)</title><rect x="97.7907%" y="1685" width="0.0190%" height="15" fill="rgb(240,219,28)" fg:x="300739520416" fg:w="58515829"/><text x="98.0407%" y="1695.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (36,967,579 samples, 0.01%)</title><rect x="97.7977%" y="1669" width="0.0120%" height="15" fill="rgb(214,80,29)" fg:x="300761068666" fg:w="36967579"/><text x="98.0477%" y="1679.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (36,967,579 samples, 0.01%)</title><rect x="97.7977%" y="1653" width="0.0120%" height="15" fill="rgb(247,148,44)" fg:x="300761068666" fg:w="36967579"/><text x="98.0477%" y="1663.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (53,536,619 samples, 0.02%)</title><rect x="97.8112%" y="1637" width="0.0174%" height="15" fill="rgb(243,110,30)" fg:x="300802787013" fg:w="53536619"/><text x="98.0612%" y="1647.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (59,415,570 samples, 0.02%)</title><rect x="97.8097%" y="1669" width="0.0193%" height="15" fill="rgb(243,173,41)" fg:x="300798036245" fg:w="59415570"/><text x="98.0597%" y="1679.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (55,877,033 samples, 0.02%)</title><rect x="97.8108%" y="1653" width="0.0182%" height="15" fill="rgb(225,160,47)" fg:x="300801574782" fg:w="55877033"/><text x="98.0608%" y="1663.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::point_to_offset (55,178,166 samples, 0.02%)</title><rect x="97.8404%" y="1621" width="0.0179%" height="15" fill="rgb(215,44,21)" fg:x="300892417423" fg:w="55178166"/><text x="98.0904%" y="1631.50"></text></g><g><title>editor::display_map::fold_map::FoldPoint::to_offset (60,811,979 samples, 0.02%)</title><rect x="97.8389%" y="1653" width="0.0198%" height="15" fill="rgb(248,90,3)" fg:x="300888038673" fg:w="60811979"/><text x="98.0889%" y="1663.50"></text></g><g><title>editor::display_map::inlay_map::InlaySnapshot::to_offset (56,433,229 samples, 0.02%)</title><rect x="97.8404%" y="1637" width="0.0184%" height="15" fill="rgb(220,196,49)" fg:x="300892417423" fg:w="56433229"/><text x="98.0904%" y="1647.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::chunks (185,564,878 samples, 0.06%)</title><rect x="97.8097%" y="1685" width="0.0603%" height="15" fill="rgb(217,138,14)" fg:x="300798036245" fg:w="185564878"/><text x="98.0597%" y="1695.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_fold_point (108,246,691 samples, 0.04%)</title><rect x="97.8348%" y="1669" width="0.0352%" height="15" fill="rgb(219,111,20)" fg:x="300875354432" fg:w="108246691"/><text x="98.0848%" y="1679.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::to_fold_point (60,538,465 samples, 0.02%)</title><rect x="97.8700%" y="1685" width="0.0197%" height="15" fill="rgb(218,114,4)" fg:x="300983601123" fg:w="60538465"/><text x="98.1200%" y="1695.50"></text></g><g><title>editor::display_map::tab_map::TabSnapshot::text_summary_for_range (324,023,880 samples, 0.11%)</title><rect x="97.7859%" y="1701" width="0.1054%" height="15" fill="rgb(238,133,3)" fg:x="300724806258" fg:w="324023880"/><text x="98.0359%" y="1711.50"></text></g><g><title>editor::display_map::wrap_map::WrapSnapshot::interpolate (335,874,088 samples, 0.11%)</title><rect x="97.7855%" y="1717" width="0.1092%" height="15" fill="rgb(224,95,0)" fg:x="300723795606" fg:w="335874088"/><text x="98.0355%" y="1727.50"></text></g><g><title>parking::Inner::park (38,887,523 samples, 0.01%)</title><rect x="97.8955%" y="1701" width="0.0126%" height="15" fill="rgb(220,169,35)" fg:x="301061914773" fg:w="38887523"/><text x="98.1455%" y="1711.50"></text></g><g><title>syscall (34,848,001 samples, 0.01%)</title><rect x="97.8968%" y="1685" width="0.0113%" height="15" fill="rgb(242,116,47)" fg:x="301065954295" fg:w="34848001"/><text x="98.1468%" y="1695.50"></text></g><g><title>[unknown] (31,629,131 samples, 0.01%)</title><rect x="97.8978%" y="1669" width="0.0103%" height="15" fill="rgb(251,42,20)" fg:x="301069173165" fg:w="31629131"/><text x="98.1478%" y="1679.50"></text></g><g><title>[unknown] (31,629,131 samples, 0.01%)</title><rect x="97.8978%" y="1653" width="0.0103%" height="15" fill="rgb(234,7,34)" fg:x="301069173165" fg:w="31629131"/><text x="98.1478%" y="1663.50"></text></g><g><title>[unknown] (31,629,131 samples, 0.01%)</title><rect x="97.8978%" y="1637" width="0.0103%" height="15" fill="rgb(243,208,13)" fg:x="301069173165" fg:w="31629131"/><text x="98.1478%" y="1647.50"></text></g><g><title>[unknown] (31,629,131 samples, 0.01%)</title><rect x="97.8978%" y="1621" width="0.0103%" height="15" fill="rgb(227,33,28)" fg:x="301069173165" fg:w="31629131"/><text x="98.1478%" y="1631.50"></text></g><g><title>gpui::executor::BackgroundExecutor::block_internal (42,129,893 samples, 0.01%)</title><rect x="97.8948%" y="1717" width="0.0137%" height="15" fill="rgb(250,47,37)" fg:x="301059669694" fg:w="42129893"/><text x="98.1448%" y="1727.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::flush_edits (389,084,812 samples, 0.13%)</title><rect x="97.7843%" y="1733" width="0.1265%" height="15" fill="rgb(235,111,52)" fg:x="300719848691" fg:w="389084812"/><text x="98.0343%" y="1743.50"></text></g><g><title>editor::display_map::wrap_map::WrapMap::sync (390,884,376 samples, 0.13%)</title><rect x="97.7843%" y="1749" width="0.1271%" height="15" fill="rgb(223,64,28)" fg:x="300719848691" fg:w="390884376"/><text x="98.0343%" y="1759.50"></text></g><g><title>&lt;worktree::File as language::buffer::File&gt;::disk_state (31,159,935 samples, 0.01%)</title><rect x="97.9618%" y="1717" width="0.0101%" height="15" fill="rgb(236,67,22)" fg:x="301265856141" fg:w="31159935"/><text x="98.2118%" y="1727.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (142,048,615 samples, 0.05%)</title><rect x="97.9771%" y="1717" width="0.0462%" height="15" fill="rgb(243,79,24)" fg:x="301312864382" fg:w="142048615"/><text x="98.2271%" y="1727.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find_recurse (151,534,539 samples, 0.05%)</title><rect x="98.0374%" y="1717" width="0.0493%" height="15" fill="rgb(241,225,22)" fg:x="301498220936" fg:w="151534539"/><text x="98.2874%" y="1727.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find_recurse (131,468,385 samples, 0.04%)</title><rect x="98.0439%" y="1701" width="0.0427%" height="15" fill="rgb(228,214,26)" fg:x="301518287090" fg:w="131468385"/><text x="98.2939%" y="1711.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find_recurse (98,776,030 samples, 0.03%)</title><rect x="98.0545%" y="1685" width="0.0321%" height="15" fill="rgb(219,84,52)" fg:x="301550979445" fg:w="98776030"/><text x="98.3045%" y="1695.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::find_recurse (49,901,972 samples, 0.02%)</title><rect x="98.0704%" y="1669" width="0.0162%" height="15" fill="rgb(220,12,22)" fg:x="301599853503" fg:w="49901972"/><text x="98.3204%" y="1679.50"></text></g><g><title>multi_buffer::MultiBuffer::sync_ (546,448,750 samples, 0.18%)</title><rect x="97.9166%" y="1733" width="0.1777%" height="15" fill="rgb(219,9,49)" fg:x="301126841553" fg:w="546448750"/><text x="98.1666%" y="1743.50"></text></g><g><title>editor::display_map::DisplayMap::snapshot (2,699,464,843 samples, 0.88%)</title><rect x="97.2175%" y="1765" width="0.8778%" height="15" fill="rgb(237,40,43)" fg:x="298976900668" fg:w="2699464843"/><text x="97.4675%" y="1775.50"></text></g><g><title>multi_buffer::MultiBuffer::snapshot (563,567,287 samples, 0.18%)</title><rect x="97.9120%" y="1749" width="0.1833%" height="15" fill="rgb(212,189,32)" fg:x="301112798224" fg:w="563567287"/><text x="98.1620%" y="1759.50"></text></g><g><title>editor::Editor::snapshot (2,704,128,252 samples, 0.88%)</title><rect x="97.2163%" y="1781" width="0.8793%" height="15" fill="rgb(247,48,9)" fg:x="298973134797" fg:w="2704128252"/><text x="97.4663%" y="1791.50"></text></g><g><title>editor::Editor::refresh_selected_text_highlights (2,786,177,675 samples, 0.91%)</title><rect x="97.2159%" y="1797" width="0.9060%" height="15" fill="rgb(247,112,3)" fg:x="298972050710" fg:w="2786177675"/><text x="97.4659%" y="1807.50"></text></g><g><title>editor::selections_collection::SelectionsCollection::newest (80,965,336 samples, 0.03%)</title><rect x="98.0956%" y="1781" width="0.0263%" height="15" fill="rgb(243,110,18)" fg:x="301677263049" fg:w="80965336"/><text x="98.3456%" y="1791.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::dimensions_from_points::_{{closure}} (36,650,048 samples, 0.01%)</title><rect x="98.1100%" y="1765" width="0.0119%" height="15" fill="rgb(233,223,44)" fg:x="301721578337" fg:w="36650048"/><text x="98.3600%" y="1775.50"></text></g><g><title>editor::selections_collection::SelectionsCollection::newest (55,566,192 samples, 0.02%)</title><rect x="98.1275%" y="1781" width="0.0181%" height="15" fill="rgb(245,160,20)" fg:x="301775544648" fg:w="55566192"/><text x="98.3775%" y="1791.50"></text></g><g><title>language::syntax_map::SyntaxMapMatches::new (32,719,102 samples, 0.01%)</title><rect x="98.1470%" y="1749" width="0.0106%" height="15" fill="rgb(225,37,1)" fg:x="301835343287" fg:w="32719102"/><text x="98.3970%" y="1759.50"></text></g><g><title>language::buffer::BufferSnapshot::all_bracket_ranges (35,897,453 samples, 0.01%)</title><rect x="98.1470%" y="1765" width="0.0117%" height="15" fill="rgb(253,227,39)" fg:x="301835343287" fg:w="35897453"/><text x="98.3970%" y="1775.50"></text></g><g><title>multi_buffer::MultiBufferSnapshot::innermost_enclosing_bracket_ranges (48,458,460 samples, 0.02%)</title><rect x="98.1460%" y="1781" width="0.0158%" height="15" fill="rgb(240,179,26)" fg:x="301832342192" fg:w="48458460"/><text x="98.3960%" y="1791.50"></text></g><g><title>editor::highlight_matching_bracket::&lt;impl editor::Editor&gt;::refresh_matching_bracket_highlights (123,650,930 samples, 0.04%)</title><rect x="98.1219%" y="1797" width="0.0402%" height="15" fill="rgb(237,212,23)" fg:x="301758228385" fg:w="123650930"/><text x="98.3719%" y="1807.50"></text></g><g><title>gpui::app::context::Context&lt;T&gt;::subscribe_in::_{{closure}}::_{{closure}} (2,933,267,150 samples, 0.95%)</title><rect x="97.2090%" y="1813" width="0.9538%" height="15" fill="rgb(221,38,11)" fg:x="298950730713" fg:w="2933267150"/><text x="97.4590%" y="1823.50"></text></g><g><title>gpui::app::context::Context&lt;T&gt;::subscribe_in::_{{closure}} (2,981,314,832 samples, 0.97%)</title><rect x="97.1980%" y="1829" width="0.9694%" height="15" fill="rgb(215,85,6)" fg:x="298917009644" fg:w="2981314832"/><text x="97.4480%" y="1839.50"></text></g><g><title>gpui::app::App::flush_effects (3,334,574,573 samples, 1.08%)</title><rect x="97.0932%" y="1845" width="1.0843%" height="15" fill="rgb(239,64,14)" fg:x="298594633357" fg:w="3334574573"/><text x="97.3432%" y="1855.50"></text></g><g><title>&lt;zlog::Zlog as log::Log&gt;::log (44,883,046 samples, 0.01%)</title><rect x="98.1965%" y="1829" width="0.0146%" height="15" fill="rgb(215,150,32)" fg:x="301987646220" fg:w="44883046"/><text x="98.4465%" y="1839.50"></text></g><g><title>zlog::sink::submit (41,978,786 samples, 0.01%)</title><rect x="98.1974%" y="1813" width="0.0137%" height="15" fill="rgb(238,15,13)" fg:x="301990550480" fg:w="41978786"/><text x="98.4474%" y="1823.50"></text></g><g><title>core::fmt::write (37,656,534 samples, 0.01%)</title><rect x="98.1989%" y="1797" width="0.0122%" height="15" fill="rgb(251,87,8)" fg:x="301994872732" fg:w="37656534"/><text x="98.4489%" y="1807.50"></text></g><g><title>language::buffer::Buffer::build (60,671,981 samples, 0.02%)</title><rect x="98.1954%" y="1845" width="0.0197%" height="15" fill="rgb(206,86,1)" fg:x="301984302269" fg:w="60671981"/><text x="98.4454%" y="1855.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (68,929,637 samples, 0.02%)</title><rect x="98.2151%" y="1781" width="0.0224%" height="15" fill="rgb(208,151,45)" fg:x="302044974250" fg:w="68929637"/><text x="98.4651%" y="1791.50"></text></g><g><title>core::ptr::drop_in_place&lt;language::syntax_map::SyntaxLayerEntry&gt; (48,158,919 samples, 0.02%)</title><rect x="98.2219%" y="1765" width="0.0157%" height="15" fill="rgb(231,181,24)" fg:x="302065744968" fg:w="48158919"/><text x="98.4719%" y="1775.50"></text></g><g><title>ts_tree_delete (48,158,919 samples, 0.02%)</title><rect x="98.2219%" y="1749" width="0.0157%" height="15" fill="rgb(240,106,29)" fg:x="302065744968" fg:w="48158919"/><text x="98.4719%" y="1759.50"></text></g><g><title>ts_subtree_release (48,158,919 samples, 0.02%)</title><rect x="98.2219%" y="1733" width="0.0157%" height="15" fill="rgb(227,166,11)" fg:x="302065744968" fg:w="48158919"/><text x="98.4719%" y="1743.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (85,475,893 samples, 0.03%)</title><rect x="98.2151%" y="1797" width="0.0278%" height="15" fill="rgb(254,14,34)" fg:x="302044974250" fg:w="85475893"/><text x="98.4651%" y="1807.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (90,762,334 samples, 0.03%)</title><rect x="98.2151%" y="1813" width="0.0295%" height="15" fill="rgb(223,222,6)" fg:x="302044974250" fg:w="90762334"/><text x="98.4651%" y="1823.50"></text></g><g><title>core::ptr::drop_in_place&lt;language::syntax_map::SyntaxSnapshot&gt; (91,801,033 samples, 0.03%)</title><rect x="98.2151%" y="1829" width="0.0299%" height="15" fill="rgb(245,69,24)" fg:x="302044974250" fg:w="91801033"/><text x="98.4651%" y="1839.50"></text></g><g><title>language::buffer::Buffer::did_finish_parsing (96,009,681 samples, 0.03%)</title><rect x="98.2151%" y="1845" width="0.0312%" height="15" fill="rgb(213,193,7)" fg:x="302044974250" fg:w="96009681"/><text x="98.4651%" y="1855.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (59,048,622 samples, 0.02%)</title><rect x="98.2577%" y="1781" width="0.0192%" height="15" fill="rgb(237,92,51)" fg:x="302175860079" fg:w="59048622"/><text x="98.5077%" y="1791.50"></text></g><g><title>core::ptr::drop_in_place&lt;language::syntax_map::SyntaxLayerEntry&gt; (45,611,490 samples, 0.01%)</title><rect x="98.2621%" y="1765" width="0.0148%" height="15" fill="rgb(225,194,6)" fg:x="302189297211" fg:w="45611490"/><text x="98.5121%" y="1775.50"></text></g><g><title>ts_tree_delete (44,156,704 samples, 0.01%)</title><rect x="98.2625%" y="1749" width="0.0144%" height="15" fill="rgb(205,159,49)" fg:x="302190751997" fg:w="44156704"/><text x="98.5125%" y="1759.50"></text></g><g><title>ts_subtree_release (44,156,704 samples, 0.01%)</title><rect x="98.2625%" y="1733" width="0.0144%" height="15" fill="rgb(219,69,2)" fg:x="302190751997" fg:w="44156704"/><text x="98.5125%" y="1743.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (86,127,343 samples, 0.03%)</title><rect x="98.2577%" y="1797" width="0.0280%" height="15" fill="rgb(215,107,24)" fg:x="302175860079" fg:w="86127343"/><text x="98.5077%" y="1807.50"></text></g><g><title>core::ptr::drop_in_place&lt;language::syntax_map::SyntaxSnapshot&gt; (89,183,267 samples, 0.03%)</title><rect x="98.2577%" y="1813" width="0.0290%" height="15" fill="rgb(249,208,29)" fg:x="302175860079" fg:w="89183267"/><text x="98.5077%" y="1823.50"></text></g><g><title>language::buffer::Buffer::did_finish_parsing (101,835,167 samples, 0.03%)</title><rect x="98.2577%" y="1829" width="0.0331%" height="15" fill="rgb(213,147,10)" fg:x="302175860079" fg:w="101835167"/><text x="98.5077%" y="1839.50"></text></g><g><title>language::buffer::Buffer::reparse (180,931,549 samples, 0.06%)</title><rect x="98.2464%" y="1845" width="0.0588%" height="15" fill="rgb(254,140,42)" fg:x="302140983931" fg:w="180931549"/><text x="98.4964%" y="1855.50"></text></g><g><title>rope::Cursor::summary (114,449,990 samples, 0.04%)</title><rect x="98.3224%" y="1765" width="0.0372%" height="15" fill="rgb(249,9,15)" fg:x="302374790230" fg:w="114449990"/><text x="98.5724%" y="1775.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (79,732,434 samples, 0.03%)</title><rect x="98.3337%" y="1749" width="0.0259%" height="15" fill="rgb(210,19,33)" fg:x="302409507786" fg:w="79732434"/><text x="98.5837%" y="1759.50"></text></g><g><title>text::BufferSnapshot::offset_for_anchor (44,440,167 samples, 0.01%)</title><rect x="98.3651%" y="1765" width="0.0145%" height="15" fill="rgb(241,121,22)" fg:x="302506077068" fg:w="44440167"/><text x="98.6151%" y="1775.50"></text></g><g><title>text::BufferSnapshot::try_fragment_id_for_anchor (34,164,635 samples, 0.01%)</title><rect x="98.3795%" y="1765" width="0.0111%" height="15" fill="rgb(244,69,52)" fg:x="302550517235" fg:w="34164635"/><text x="98.6295%" y="1775.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt; as core::iter::traits::iterator::Iterator&gt;::next (224,049,290 samples, 0.07%)</title><rect x="98.3185%" y="1781" width="0.0729%" height="15" fill="rgb(244,191,54)" fg:x="302362767205" fg:w="224049290"/><text x="98.5685%" y="1791.50"></text></g><g><title>text::anchor::Anchor::cmp (33,018,460 samples, 0.01%)</title><rect x="98.4055%" y="1781" width="0.0107%" height="15" fill="rgb(250,3,53)" fg:x="302630317060" fg:w="33018460"/><text x="98.6555%" y="1791.50"></text></g><g><title>text::BufferSnapshot::try_fragment_id_for_anchor (30,775,424 samples, 0.01%)</title><rect x="98.4062%" y="1765" width="0.0100%" height="15" fill="rgb(205,77,3)" fg:x="302632560096" fg:w="30775424"/><text x="98.6562%" y="1775.50"></text></g><g><title>buffer_diff::BufferDiffInner::hunks_intersecting_range::_{{closure}} (306,888,460 samples, 0.10%)</title><rect x="98.3175%" y="1797" width="0.0998%" height="15" fill="rgb(207,155,3)" fg:x="302359663143" fg:w="306888460"/><text x="98.5675%" y="1807.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (33,738,629 samples, 0.01%)</title><rect x="98.4294%" y="1781" width="0.0110%" height="15" fill="rgb(224,79,2)" fg:x="302703769973" fg:w="33738629"/><text x="98.6794%" y="1791.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (32,712,097 samples, 0.01%)</title><rect x="98.4297%" y="1765" width="0.0106%" height="15" fill="rgb(243,172,5)" fg:x="302704796505" fg:w="32712097"/><text x="98.6797%" y="1775.50"></text></g><g><title>multi_buffer::MultiBuffer::push_buffer_content_transform (98,304,045 samples, 0.03%)</title><rect x="98.4232%" y="1797" width="0.0320%" height="15" fill="rgb(217,23,43)" fg:x="302684925150" fg:w="98304045"/><text x="98.6732%" y="1807.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (80,385,763 samples, 0.03%)</title><rect x="98.4676%" y="1781" width="0.0261%" height="15" fill="rgb(223,109,20)" fg:x="302821204204" fg:w="80385763"/><text x="98.7176%" y="1791.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (69,969,987 samples, 0.02%)</title><rect x="98.4709%" y="1765" width="0.0228%" height="15" fill="rgb(232,159,21)" fg:x="302831619980" fg:w="69969987"/><text x="98.7209%" y="1775.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (32,820,970 samples, 0.01%)</title><rect x="98.4830%" y="1749" width="0.0107%" height="15" fill="rgb(219,58,2)" fg:x="302868768997" fg:w="32820970"/><text x="98.7330%" y="1759.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (90,843,968 samples, 0.03%)</title><rect x="98.4646%" y="1797" width="0.0295%" height="15" fill="rgb(241,56,8)" fg:x="302812062760" fg:w="90843968"/><text x="98.7146%" y="1807.50"></text></g><g><title>multi_buffer::MultiBuffer::sync_diff_transforms (571,701,773 samples, 0.19%)</title><rect x="98.3137%" y="1813" width="0.1859%" height="15" fill="rgb(249,10,27)" fg:x="302348154103" fg:w="571701773"/><text x="98.5637%" y="1823.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (34,225,441 samples, 0.01%)</title><rect x="98.5030%" y="1797" width="0.0111%" height="15" fill="rgb(248,177,5)" fg:x="302930113316" fg:w="34225441"/><text x="98.7530%" y="1807.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::insert_or_replace (141,488,162 samples, 0.05%)</title><rect x="98.4999%" y="1813" width="0.0460%" height="15" fill="rgb(239,12,30)" fg:x="302920763073" fg:w="141488162"/><text x="98.7499%" y="1823.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (97,912,478 samples, 0.03%)</title><rect x="98.5141%" y="1797" width="0.0318%" height="15" fill="rgb(229,164,25)" fg:x="302964338757" fg:w="97912478"/><text x="98.7641%" y="1807.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::append (62,391,593 samples, 0.02%)</title><rect x="98.5256%" y="1781" width="0.0203%" height="15" fill="rgb(231,217,50)" fg:x="302999859642" fg:w="62391593"/><text x="98.7756%" y="1791.50"></text></g><g><title>sum_tree::SumTree&lt;T&gt;::push_tree_recursive (56,121,764 samples, 0.02%)</title><rect x="98.5277%" y="1765" width="0.0182%" height="15" fill="rgb(247,99,32)" fg:x="303006129471" fg:w="56121764"/><text x="98.7777%" y="1775.50"></text></g><g><title>multi_buffer::MultiBuffer::add_diff (764,993,405 samples, 0.25%)</title><rect x="98.3066%" y="1845" width="0.2488%" height="15" fill="rgb(240,74,50)" fg:x="302326254409" fg:w="764993405"/><text x="98.5566%" y="1855.50"></text></g><g><title>multi_buffer::MultiBuffer::buffer_diff_changed (758,400,026 samples, 0.25%)</title><rect x="98.3088%" y="1829" width="0.2466%" height="15" fill="rgb(218,54,8)" fg:x="302332847788" fg:w="758400026"/><text x="98.5588%" y="1839.50"></text></g><g><title>project::Project::open_buffer (108,139,290 samples, 0.04%)</title><rect x="98.5571%" y="1845" width="0.0352%" height="15" fill="rgb(227,132,20)" fg:x="303096590841" fg:w="108139290"/><text x="98.8071%" y="1855.50"></text></g><g><title>project::buffer_store::BufferStore::open_buffer (107,267,025 samples, 0.03%)</title><rect x="98.5574%" y="1829" width="0.0349%" height="15" fill="rgb(232,134,12)" fg:x="303097463106" fg:w="107267025"/><text x="98.8074%" y="1839.50"></text></g><g><title>worktree::Worktree::load_file (73,362,616 samples, 0.02%)</title><rect x="98.5684%" y="1813" width="0.0239%" height="15" fill="rgb(250,129,18)" fg:x="303131367515" fg:w="73362616"/><text x="98.8184%" y="1823.50"></text></g><g><title>project::git_store::GitStore::open_uncommitted_diff (42,330,950 samples, 0.01%)</title><rect x="98.5925%" y="1829" width="0.0138%" height="15" fill="rgb(232,129,47)" fg:x="303205541641" fg:w="42330950"/><text x="98.8425%" y="1839.50"></text></g><g><title>project::Project::open_uncommitted_diff (44,194,058 samples, 0.01%)</title><rect x="98.5923%" y="1845" width="0.0144%" height="15" fill="rgb(230,31,40)" fg:x="303204730131" fg:w="44194058"/><text x="98.8423%" y="1855.50"></text></g><g><title>language::buffer::Buffer::build_empty_snapshot (32,459,071 samples, 0.01%)</title><rect x="98.6190%" y="1813" width="0.0106%" height="15" fill="rgb(232,126,10)" fg:x="303287056989" fg:w="32459071"/><text x="98.8690%" y="1823.50"></text></g><g><title>buffer_diff::BufferDiff::new (39,022,733 samples, 0.01%)</title><rect x="98.6187%" y="1829" width="0.0127%" height="15" fill="rgb(205,46,31)" fg:x="303285904681" fg:w="39022733"/><text x="98.8687%" y="1839.50"></text></g><g><title>project::git_store::GitStore::open_diff_internal::_{{closure}} (116,725,384 samples, 0.04%)</title><rect x="98.6144%" y="1845" width="0.0380%" height="15" fill="rgb(232,37,37)" fg:x="303272702027" fg:w="116725384"/><text x="98.8644%" y="1855.50"></text></g><g><title>language::language_registry::LanguageRegistry::language_for_file (45,188,389 samples, 0.01%)</title><rect x="98.6552%" y="1829" width="0.0147%" height="15" fill="rgb(240,91,16)" fg:x="303398251481" fg:w="45188389"/><text x="98.9052%" y="1839.50"></text></g><g><title>language::language_registry::LanguageRegistry::language_for_file_internal (40,502,485 samples, 0.01%)</title><rect x="98.6567%" y="1813" width="0.0132%" height="15" fill="rgb(224,160,9)" fg:x="303402937385" fg:w="40502485"/><text x="98.9067%" y="1823.50"></text></g><g><title>project::lsp_store::LspStore::detect_language_for_buffer (52,998,042 samples, 0.02%)</title><rect x="98.6544%" y="1845" width="0.0172%" height="15" fill="rgb(215,116,14)" fg:x="303395975460" fg:w="52998042"/><text x="98.9044%" y="1855.50"></text></g><g><title>project::lsp_store::LspStore::insert_newly_running_language_server (31,127,223 samples, 0.01%)</title><rect x="98.6737%" y="1845" width="0.0101%" height="15" fill="rgb(235,46,36)" fg:x="303455276673" fg:w="31127223"/><text x="98.9237%" y="1855.50"></text></g><g><title>&lt;language::language_settings::AllLanguageSettings as settings::settings_store::Settings&gt;::from_settings (33,728,796 samples, 0.01%)</title><rect x="98.6942%" y="1797" width="0.0110%" height="15" fill="rgb(238,39,28)" fg:x="303518245288" fg:w="33728796"/><text x="98.9442%" y="1807.50"></text></g><g><title>&lt;settings::settings_store::SettingValue&lt;T&gt; as settings::settings_store::AnySettingValue&gt;::from_settings (41,433,146 samples, 0.01%)</title><rect x="98.6942%" y="1813" width="0.0135%" height="15" fill="rgb(242,125,29)" fg:x="303518245288" fg:w="41433146"/><text x="98.9442%" y="1823.50"></text></g><g><title>settings::settings_store::SettingsStore::set_extension_settings (48,916,423 samples, 0.02%)</title><rect x="98.6935%" y="1845" width="0.0159%" height="15" fill="rgb(238,211,30)" fg:x="303516166836" fg:w="48916423"/><text x="98.9435%" y="1855.50"></text></g><g><title>settings::settings_store::SettingsStore::recompute_values (48,916,423 samples, 0.02%)</title><rect x="98.6935%" y="1829" width="0.0159%" height="15" fill="rgb(227,201,28)" fg:x="303516166836" fg:w="48916423"/><text x="98.9435%" y="1839.50"></text></g><g><title>gpui::app::async_context::AsyncApp::open_window (45,551,902 samples, 0.01%)</title><rect x="98.7148%" y="1829" width="0.0148%" height="15" fill="rgb(238,77,29)" fg:x="303581544777" fg:w="45551902"/><text x="98.9648%" y="1839.50"></text></g><g><title>gpui::window::Window::new (40,005,359 samples, 0.01%)</title><rect x="98.7166%" y="1813" width="0.0130%" height="15" fill="rgb(213,221,40)" fg:x="303587091320" fg:w="40005359"/><text x="98.9666%" y="1823.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::open_window (40,005,359 samples, 0.01%)</title><rect x="98.7166%" y="1797" width="0.0130%" height="15" fill="rgb(226,220,44)" fg:x="303587091320" fg:w="40005359"/><text x="98.9666%" y="1807.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::open_window (40,005,359 samples, 0.01%)</title><rect x="98.7166%" y="1781" width="0.0130%" height="15" fill="rgb(228,90,23)" fg:x="303587091320" fg:w="40005359"/><text x="98.9666%" y="1791.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindow::new (40,005,359 samples, 0.01%)</title><rect x="98.7166%" y="1765" width="0.0130%" height="15" fill="rgb(235,72,29)" fg:x="303587091320" fg:w="40005359"/><text x="98.9666%" y="1775.50"></text></g><g><title>gpui::platform::blade::blade_renderer::BladePipelines::new (35,950,247 samples, 0.01%)</title><rect x="98.7179%" y="1749" width="0.0117%" height="15" fill="rgb(248,117,39)" fg:x="303591146432" fg:w="35950247"/><text x="98.9679%" y="1759.50"></text></g><g><title>workspace::Workspace::new_local::_{{closure}}::_{{closure}} (47,885,209 samples, 0.02%)</title><rect x="98.7148%" y="1845" width="0.0156%" height="15" fill="rgb(225,43,28)" fg:x="303581544777" fg:w="47885209"/><text x="98.9648%" y="1855.50"></text></g><g><title>&lt;worktree::TraversalTarget as sum_tree::SeekTarget&lt;worktree::EntrySummary,worktree::TraversalProgress&gt;&gt;::cmp (35,490,757 samples, 0.01%)</title><rect x="98.7328%" y="1813" width="0.0115%" height="15" fill="rgb(240,93,4)" fg:x="303636980134" fg:w="35490757"/><text x="98.9828%" y="1823.50"></text></g><g><title>&lt;util::rel_path::RelPathComponents as core::iter::traits::iterator::Iterator&gt;::next (32,410,749 samples, 0.01%)</title><rect x="98.7338%" y="1797" width="0.0105%" height="15" fill="rgb(234,178,27)" fg:x="303640060142" fg:w="32410749"/><text x="98.9838%" y="1807.50"></text></g><g><title>worktree::Snapshot::entry_for_path (40,196,369 samples, 0.01%)</title><rect x="98.7321%" y="1845" width="0.0131%" height="15" fill="rgb(254,88,22)" fg:x="303634681454" fg:w="40196369"/><text x="98.9821%" y="1855.50"></text></g><g><title>sum_tree::cursor::Cursor&lt;T,D&gt;::seek_internal (40,196,369 samples, 0.01%)</title><rect x="98.7321%" y="1829" width="0.0131%" height="15" fill="rgb(240,206,50)" fg:x="303634681454" fg:w="40196369"/><text x="98.9821%" y="1839.50"></text></g><g><title>gpui::app::App::spawn::_{{closure}} (69,846,424,510 samples, 22.71%)</title><rect x="76.0337%" y="1861" width="22.7118%" height="15" fill="rgb(249,103,8)" fg:x="233829427945" fg:w="69846424510"/><text x="76.2837%" y="1871.50">gpui::app::App::spawn::_{{closure}}</text></g><g><title>lsp::LanguageServer::on_custom_notification::_{{closure}} (71,706,216 samples, 0.02%)</title><rect x="98.7687%" y="1845" width="0.0233%" height="15" fill="rgb(241,178,36)" fg:x="303747220906" fg:w="71706216"/><text x="99.0187%" y="1855.50"></text></g><g><title>gpui::app::async_context::AsyncApp::spawn::_{{closure}} (138,336,517 samples, 0.04%)</title><rect x="98.7505%" y="1861" width="0.0450%" height="15" fill="rgb(246,110,15)" fg:x="303691298760" fg:w="138336517"/><text x="99.0005%" y="1871.50"></text></g><g><title>async_task::raw::RawTask&lt;F,T,S,M&gt;::run (70,161,416,704 samples, 22.81%)</title><rect x="75.9847%" y="1877" width="22.8142%" height="15" fill="rgb(207,14,43)" fg:x="233678910268" fg:w="70161416704"/><text x="76.2347%" y="1887.50">async_task::raw::RawTask&lt;F,T,S,M&gt;::r..</text></g><g><title>polling::Poller::wait_impl (251,416,514 samples, 0.08%)</title><rect x="98.8011%" y="1861" width="0.0818%" height="15" fill="rgb(253,219,19)" fg:x="303847130653" fg:w="251416514"/><text x="99.0511%" y="1871.50"></text></g><g><title>[unknown] (229,549,430 samples, 0.07%)</title><rect x="98.8083%" y="1845" width="0.0746%" height="15" fill="rgb(216,126,5)" fg:x="303868997737" fg:w="229549430"/><text x="99.0583%" y="1855.50"></text></g><g><title>[unknown] (223,005,336 samples, 0.07%)</title><rect x="98.8104%" y="1829" width="0.0725%" height="15" fill="rgb(218,78,42)" fg:x="303875541831" fg:w="223005336"/><text x="99.0604%" y="1839.50"></text></g><g><title>[unknown] (219,017,976 samples, 0.07%)</title><rect x="98.8117%" y="1813" width="0.0712%" height="15" fill="rgb(215,154,40)" fg:x="303879529191" fg:w="219017976"/><text x="99.0617%" y="1823.50"></text></g><g><title>[unknown] (204,857,630 samples, 0.07%)</title><rect x="98.8163%" y="1797" width="0.0666%" height="15" fill="rgb(235,129,32)" fg:x="303893689537" fg:w="204857630"/><text x="99.0663%" y="1807.50"></text></g><g><title>[unknown] (197,023,657 samples, 0.06%)</title><rect x="98.8188%" y="1781" width="0.0641%" height="15" fill="rgb(218,51,8)" fg:x="303901523510" fg:w="197023657"/><text x="99.0688%" y="1791.50"></text></g><g><title>[unknown] (171,882,187 samples, 0.06%)</title><rect x="98.8270%" y="1765" width="0.0559%" height="15" fill="rgb(245,48,4)" fg:x="303926664980" fg:w="171882187"/><text x="99.0770%" y="1775.50"></text></g><g><title>[unknown] (131,812,347 samples, 0.04%)</title><rect x="98.8400%" y="1749" width="0.0429%" height="15" fill="rgb(250,175,12)" fg:x="303966734820" fg:w="131812347"/><text x="99.0900%" y="1759.50"></text></g><g><title>[unknown] (117,339,007 samples, 0.04%)</title><rect x="98.8447%" y="1733" width="0.0382%" height="15" fill="rgb(237,95,40)" fg:x="303981208160" fg:w="117339007"/><text x="99.0947%" y="1743.50"></text></g><g><title>[unknown] (104,237,692 samples, 0.03%)</title><rect x="98.8490%" y="1717" width="0.0339%" height="15" fill="rgb(244,120,0)" fg:x="303994309475" fg:w="104237692"/><text x="99.0990%" y="1727.50"></text></g><g><title>[unknown] (85,943,414 samples, 0.03%)</title><rect x="98.8550%" y="1701" width="0.0279%" height="15" fill="rgb(241,19,42)" fg:x="304012603753" fg:w="85943414"/><text x="99.1050%" y="1711.50"></text></g><g><title>[unknown] (69,718,733 samples, 0.02%)</title><rect x="98.8602%" y="1685" width="0.0227%" height="15" fill="rgb(217,174,48)" fg:x="304028828434" fg:w="69718733"/><text x="99.1102%" y="1695.50"></text></g><g><title>[unknown] (65,978,545 samples, 0.02%)</title><rect x="98.8614%" y="1669" width="0.0215%" height="15" fill="rgb(239,36,38)" fg:x="304032568622" fg:w="65978545"/><text x="99.1114%" y="1679.50"></text></g><g><title>[unknown] (59,314,144 samples, 0.02%)</title><rect x="98.8636%" y="1653" width="0.0193%" height="15" fill="rgb(220,63,49)" fg:x="304039233023" fg:w="59314144"/><text x="99.1136%" y="1663.50"></text></g><g><title>[unknown] (52,843,055 samples, 0.02%)</title><rect x="98.8657%" y="1637" width="0.0172%" height="15" fill="rgb(240,101,13)" fg:x="304045704112" fg:w="52843055"/><text x="99.1157%" y="1647.50"></text></g><g><title>[unknown] (43,488,032 samples, 0.01%)</title><rect x="98.8688%" y="1621" width="0.0141%" height="15" fill="rgb(209,184,51)" fg:x="304055059135" fg:w="43488032"/><text x="99.1188%" y="1631.50"></text></g><g><title>[unknown] (39,884,880 samples, 0.01%)</title><rect x="98.8699%" y="1605" width="0.0130%" height="15" fill="rgb(206,136,39)" fg:x="304058662287" fg:w="39884880"/><text x="99.1199%" y="1615.50"></text></g><g><title>calloop::sys::Poll::poll (261,804,130 samples, 0.09%)</title><rect x="98.7989%" y="1877" width="0.0851%" height="15" fill="rgb(254,47,45)" fg:x="303840326972" fg:w="261804130"/><text x="99.0489%" y="1887.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (81,804,064,384 samples, 26.60%)</title><rect x="72.2976%" y="1893" width="26.6000%" height="15" fill="rgb(252,103,20)" fg:x="222339677689" fg:w="81804064384"/><text x="72.5476%" y="1903.50">&lt;gpui::platform::linux::wayland::client::Wa..</text></g><g><title>migrator::migrate_settings (33,586,375 samples, 0.01%)</title><rect x="98.9157%" y="1797" width="0.0109%" height="15" fill="rgb(230,69,12)" fg:x="304199408221" fg:w="33586375"/><text x="99.1657%" y="1807.50"></text></g><g><title>zed::zed::handle_settings_file_changes (35,078,300 samples, 0.01%)</title><rect x="98.9154%" y="1861" width="0.0114%" height="15" fill="rgb(219,2,28)" fg:x="304198541336" fg:w="35078300"/><text x="99.1654%" y="1871.50"></text></g><g><title>&lt;C as gpui::BorrowAppContext&gt;::update_global (35,078,300 samples, 0.01%)</title><rect x="98.9154%" y="1845" width="0.0114%" height="15" fill="rgb(210,9,12)" fg:x="304198541336" fg:w="35078300"/><text x="99.1654%" y="1855.50"></text></g><g><title>zed::zed::handle_settings_file_changes::{{closure}} (35,078,300 samples, 0.01%)</title><rect x="98.9154%" y="1829" width="0.0114%" height="15" fill="rgb(235,99,33)" fg:x="304198541336" fg:w="35078300"/><text x="99.1654%" y="1839.50"></text></g><g><title>settings::settings_store::SettingsStore::set_user_settings (34,211,415 samples, 0.01%)</title><rect x="98.9157%" y="1813" width="0.0111%" height="15" fill="rgb(230,11,38)" fg:x="304199408221" fg:w="34211415"/><text x="99.1657%" y="1823.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (86,995,413 samples, 0.03%)</title><rect x="98.8989%" y="1893" width="0.0283%" height="15" fill="rgb(217,129,0)" fg:x="304147635533" fg:w="86995413"/><text x="99.1489%" y="1903.50"></text></g><g><title>zed::main::_{{closure}} (85,854,663 samples, 0.03%)</title><rect x="98.8992%" y="1877" width="0.0279%" height="15" fill="rgb(222,198,4)" fg:x="304148776283" fg:w="85854663"/><text x="99.1492%" y="1887.50"></text></g><g><title>gpui::app::Application::run (81,899,564,030 samples, 26.63%)</title><rect x="72.2966%" y="1925" width="26.6311%" height="15" fill="rgb(246,170,27)" fg:x="222336492503" fg:w="81899564030"/><text x="72.5466%" y="1935.50">gpui::app::Application::run</text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (81,899,564,030 samples, 26.63%)</title><rect x="72.2966%" y="1909" width="26.6311%" height="15" fill="rgb(229,17,28)" fg:x="222336492503" fg:w="81899564030"/><text x="72.5466%" y="1919.50">gpui::platform::linux::platform::&lt;impl gpui..</text></g><g><title>_start (82,448,898,443 samples, 26.81%)</title><rect x="72.1192%" y="2053" width="26.8097%" height="15" fill="rgb(233,198,48)" fg:x="221791205503" fg:w="82448898443"/><text x="72.3692%" y="2063.50">_start</text></g><g><title>__libc_start_main@@GLIBC_2.34 (82,448,898,443 samples, 26.81%)</title><rect x="72.1192%" y="2037" width="26.8097%" height="15" fill="rgb(238,103,23)" fg:x="221791205503" fg:w="82448898443"/><text x="72.3692%" y="2047.50">__libc_start_main@@GLIBC_2.34</text></g><g><title>__libc_start_call_main (82,445,953,867 samples, 26.81%)</title><rect x="72.1202%" y="2021" width="26.8087%" height="15" fill="rgb(206,91,41)" fg:x="221794150079" fg:w="82445953867"/><text x="72.3702%" y="2031.50">__libc_start_call_main</text></g><g><title>main (82,445,953,867 samples, 26.81%)</title><rect x="72.1202%" y="2005" width="26.8087%" height="15" fill="rgb(227,34,25)" fg:x="221794150079" fg:w="82445953867"/><text x="72.3702%" y="2015.50">main</text></g><g><title>std::rt::lang_start_internal (82,445,953,867 samples, 26.81%)</title><rect x="72.1202%" y="1989" width="26.8087%" height="15" fill="rgb(210,110,44)" fg:x="221794150079" fg:w="82445953867"/><text x="72.3702%" y="1999.50">std::rt::lang_start_internal</text></g><g><title>std::rt::lang_start::{{closure}} (82,443,102,769 samples, 26.81%)</title><rect x="72.1211%" y="1973" width="26.8078%" height="15" fill="rgb(216,189,8)" fg:x="221797001177" fg:w="82443102769"/><text x="72.3711%" y="1983.50">std::rt::lang_start::{{closure}}</text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (82,443,102,769 samples, 26.81%)</title><rect x="72.1211%" y="1957" width="26.8078%" height="15" fill="rgb(234,9,46)" fg:x="221797001177" fg:w="82443102769"/><text x="72.3711%" y="1967.50">std::sys::backtrace::__rust_begin_short_bac..</text></g><g><title>zed::main (82,443,102,769 samples, 26.81%)</title><rect x="72.1211%" y="1941" width="26.8078%" height="15" fill="rgb(251,200,5)" fg:x="221797001177" fg:w="82443102769"/><text x="72.3711%" y="1951.50">zed::main</text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (54,598,109 samples, 0.02%)</title><rect x="98.9344%" y="213" width="0.0178%" height="15" fill="rgb(238,165,37)" fg:x="304256829672" fg:w="54598109"/><text x="99.1844%" y="223.50"></text></g><g><title>gpui::window::Window::compute_layout (37,036,342 samples, 0.01%)</title><rect x="98.9401%" y="197" width="0.0120%" height="15" fill="rgb(232,77,38)" fg:x="304274391439" fg:w="37036342"/><text x="99.1901%" y="207.50"></text></g><g><title>stacksafe::internal::with_protected::_{{closure}} (37,036,342 samples, 0.01%)</title><rect x="98.9401%" y="181" width="0.0120%" height="15" fill="rgb(253,179,33)" fg:x="304274391439" fg:w="37036342"/><text x="99.1901%" y="191.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (37,036,342 samples, 0.01%)</title><rect x="98.9401%" y="165" width="0.0120%" height="15" fill="rgb(240,13,35)" fg:x="304274391439" fg:w="37036342"/><text x="99.1901%" y="175.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (37,036,342 samples, 0.01%)</title><rect x="98.9401%" y="149" width="0.0120%" height="15" fill="rgb(242,150,49)" fg:x="304274391439" fg:w="37036342"/><text x="99.1901%" y="159.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (37,036,342 samples, 0.01%)</title><rect x="98.9401%" y="133" width="0.0120%" height="15" fill="rgb(237,176,28)" fg:x="304274391439" fg:w="37036342"/><text x="99.1901%" y="143.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (34,879,052 samples, 0.01%)</title><rect x="98.9408%" y="117" width="0.0113%" height="15" fill="rgb(214,176,33)" fg:x="304276548729" fg:w="34879052"/><text x="99.1908%" y="127.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (34,879,052 samples, 0.01%)</title><rect x="98.9408%" y="101" width="0.0113%" height="15" fill="rgb(214,25,12)" fg:x="304276548729" fg:w="34879052"/><text x="99.1908%" y="111.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (34,879,052 samples, 0.01%)</title><rect x="98.9408%" y="85" width="0.0113%" height="15" fill="rgb(238,190,20)" fg:x="304276548729" fg:w="34879052"/><text x="99.1908%" y="95.50"></text></g><g><title>gpui::elements::text::TextLayout::layout::_{{closure}} (34,879,052 samples, 0.01%)</title><rect x="98.9408%" y="69" width="0.0113%" height="15" fill="rgb(208,11,19)" fg:x="304276548729" fg:w="34879052"/><text x="99.1908%" y="79.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="1045" width="0.0251%" height="15" fill="rgb(239,90,4)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="1029" width="0.0251%" height="15" fill="rgb(248,110,3)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="1039.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="1013" width="0.0251%" height="15" fill="rgb(210,41,30)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="997" width="0.0251%" height="15" fill="rgb(239,36,8)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="981" width="0.0251%" height="15" fill="rgb(237,201,47)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="965" width="0.0251%" height="15" fill="rgb(224,140,29)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="949" width="0.0251%" height="15" fill="rgb(231,209,17)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="959.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="933" width="0.0251%" height="15" fill="rgb(249,196,1)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="917" width="0.0251%" height="15" fill="rgb(223,207,51)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="927.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="901" width="0.0251%" height="15" fill="rgb(210,14,40)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="885" width="0.0251%" height="15" fill="rgb(250,20,52)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="869" width="0.0251%" height="15" fill="rgb(241,46,11)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="853" width="0.0251%" height="15" fill="rgb(219,105,5)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="863.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="837" width="0.0251%" height="15" fill="rgb(252,77,35)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="847.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="821" width="0.0251%" height="15" fill="rgb(243,119,2)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="831.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="805" width="0.0251%" height="15" fill="rgb(206,82,28)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="815.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (77,104,193 samples, 0.03%)</title><rect x="98.9296%" y="789" width="0.0251%" height="15" fill="rgb(227,120,12)" fg:x="304242160470" fg:w="77104193"/><text x="99.1796%" y="799.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="773" width="0.0248%" height="15" fill="rgb(229,134,41)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="757" width="0.0248%" height="15" fill="rgb(239,96,32)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="767.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="741" width="0.0248%" height="15" fill="rgb(225,46,27)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="725" width="0.0248%" height="15" fill="rgb(215,168,2)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="709" width="0.0248%" height="15" fill="rgb(207,170,52)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="693" width="0.0248%" height="15" fill="rgb(237,198,36)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="703.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="677" width="0.0248%" height="15" fill="rgb(213,27,14)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="661" width="0.0248%" height="15" fill="rgb(218,77,5)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="671.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="645" width="0.0248%" height="15" fill="rgb(230,219,39)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="655.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="629" width="0.0248%" height="15" fill="rgb(245,177,7)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="613" width="0.0248%" height="15" fill="rgb(246,44,46)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="623.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="597" width="0.0248%" height="15" fill="rgb(207,173,15)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="581" width="0.0248%" height="15" fill="rgb(245,170,50)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="565" width="0.0248%" height="15" fill="rgb(233,156,21)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="549" width="0.0248%" height="15" fill="rgb(253,146,27)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="533" width="0.0248%" height="15" fill="rgb(247,66,29)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="543.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="517" width="0.0248%" height="15" fill="rgb(218,207,26)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="501" width="0.0248%" height="15" fill="rgb(234,93,26)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="511.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="485" width="0.0248%" height="15" fill="rgb(214,75,48)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="469" width="0.0248%" height="15" fill="rgb(229,119,22)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="453" width="0.0248%" height="15" fill="rgb(226,153,19)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="437" width="0.0248%" height="15" fill="rgb(220,204,36)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="421" width="0.0248%" height="15" fill="rgb(253,181,43)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="431.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (76,257,929 samples, 0.02%)</title><rect x="98.9299%" y="405" width="0.0248%" height="15" fill="rgb(211,41,51)" fg:x="304243006734" fg:w="76257929"/><text x="99.1799%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (74,446,337 samples, 0.02%)</title><rect x="98.9305%" y="389" width="0.0242%" height="15" fill="rgb(207,215,0)" fg:x="304244818326" fg:w="74446337"/><text x="99.1805%" y="399.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (74,446,337 samples, 0.02%)</title><rect x="98.9305%" y="373" width="0.0242%" height="15" fill="rgb(212,153,10)" fg:x="304244818326" fg:w="74446337"/><text x="99.1805%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (74,446,337 samples, 0.02%)</title><rect x="98.9305%" y="357" width="0.0242%" height="15" fill="rgb(251,171,36)" fg:x="304244818326" fg:w="74446337"/><text x="99.1805%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (74,446,337 samples, 0.02%)</title><rect x="98.9305%" y="341" width="0.0242%" height="15" fill="rgb(225,219,41)" fg:x="304244818326" fg:w="74446337"/><text x="99.1805%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (74,446,337 samples, 0.02%)</title><rect x="98.9305%" y="325" width="0.0242%" height="15" fill="rgb(208,200,1)" fg:x="304244818326" fg:w="74446337"/><text x="99.1805%" y="335.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (74,446,337 samples, 0.02%)</title><rect x="98.9305%" y="309" width="0.0242%" height="15" fill="rgb(206,75,47)" fg:x="304244818326" fg:w="74446337"/><text x="99.1805%" y="319.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (74,446,337 samples, 0.02%)</title><rect x="98.9305%" y="293" width="0.0242%" height="15" fill="rgb(248,3,16)" fg:x="304244818326" fg:w="74446337"/><text x="99.1805%" y="303.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (62,434,991 samples, 0.02%)</title><rect x="98.9344%" y="277" width="0.0203%" height="15" fill="rgb(242,157,36)" fg:x="304256829672" fg:w="62434991"/><text x="99.1844%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (62,434,991 samples, 0.02%)</title><rect x="98.9344%" y="261" width="0.0203%" height="15" fill="rgb(215,175,11)" fg:x="304256829672" fg:w="62434991"/><text x="99.1844%" y="271.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (62,434,991 samples, 0.02%)</title><rect x="98.9344%" y="245" width="0.0203%" height="15" fill="rgb(252,222,22)" fg:x="304256829672" fg:w="62434991"/><text x="99.1844%" y="255.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (62,434,991 samples, 0.02%)</title><rect x="98.9344%" y="229" width="0.0203%" height="15" fill="rgb(250,121,35)" fg:x="304256829672" fg:w="62434991"/><text x="99.1844%" y="239.50"></text></g><g><title>gpui::app::Application::run (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="2053" width="0.0320%" height="15" fill="rgb(233,120,49)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="2063.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="2037" width="0.0320%" height="15" fill="rgb(205,201,14)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="2047.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="2021" width="0.0320%" height="15" fill="rgb(219,58,45)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="2031.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="2005" width="0.0320%" height="15" fill="rgb(251,65,12)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="2015.50"></text></g><g><title>wayland_client::event_queue::queue_callback (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="1989" width="0.0320%" height="15" fill="rgb(224,47,31)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="1999.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="1973" width="0.0320%" height="15" fill="rgb(233,74,26)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="1983.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="1957" width="0.0320%" height="15" fill="rgb(231,211,31)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="1967.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="1941" width="0.0320%" height="15" fill="rgb(239,167,5)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="1951.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="1925" width="0.0320%" height="15" fill="rgb(241,85,0)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="1935.50"></text></g><g><title>gpui::window::Window::draw (98,268,773 samples, 0.03%)</title><rect x="98.9292%" y="1909" width="0.0320%" height="15" fill="rgb(229,130,21)" fg:x="304241034522" fg:w="98268773"/><text x="99.1792%" y="1919.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1893" width="0.0316%" height="15" fill="rgb(254,84,49)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1903.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1877" width="0.0316%" height="15" fill="rgb(235,85,21)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1887.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1861" width="0.0316%" height="15" fill="rgb(246,128,52)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1871.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1845" width="0.0316%" height="15" fill="rgb(243,114,49)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1855.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1829" width="0.0316%" height="15" fill="rgb(240,224,22)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1839.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1813" width="0.0316%" height="15" fill="rgb(247,201,52)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1797" width="0.0316%" height="15" fill="rgb(231,70,45)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1781" width="0.0316%" height="15" fill="rgb(217,215,20)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1765" width="0.0316%" height="15" fill="rgb(226,170,30)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1749" width="0.0316%" height="15" fill="rgb(220,190,43)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1759.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1733" width="0.0316%" height="15" fill="rgb(218,20,18)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1717" width="0.0316%" height="15" fill="rgb(245,37,26)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1727.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1701" width="0.0316%" height="15" fill="rgb(241,127,29)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1685" width="0.0316%" height="15" fill="rgb(241,33,26)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1669" width="0.0316%" height="15" fill="rgb(220,106,21)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1653" width="0.0316%" height="15" fill="rgb(225,125,35)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1637" width="0.0316%" height="15" fill="rgb(248,80,22)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1647.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1621" width="0.0316%" height="15" fill="rgb(231,117,39)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1605" width="0.0316%" height="15" fill="rgb(239,183,16)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1615.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1589" width="0.0316%" height="15" fill="rgb(221,61,19)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1573" width="0.0316%" height="15" fill="rgb(239,196,44)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1557" width="0.0316%" height="15" fill="rgb(206,113,19)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1541" width="0.0316%" height="15" fill="rgb(245,114,12)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1525" width="0.0316%" height="15" fill="rgb(247,89,39)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1535.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1509" width="0.0316%" height="15" fill="rgb(213,85,14)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1493" width="0.0316%" height="15" fill="rgb(249,206,33)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1503.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1477" width="0.0316%" height="15" fill="rgb(235,167,47)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1461" width="0.0316%" height="15" fill="rgb(217,177,16)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1445" width="0.0316%" height="15" fill="rgb(250,228,29)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1429" width="0.0316%" height="15" fill="rgb(216,195,42)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1413" width="0.0316%" height="15" fill="rgb(232,192,32)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1423.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1397" width="0.0316%" height="15" fill="rgb(211,8,47)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1407.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1381" width="0.0316%" height="15" fill="rgb(251,201,9)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1391.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1365" width="0.0316%" height="15" fill="rgb(206,185,47)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1349" width="0.0316%" height="15" fill="rgb(245,54,32)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1333" width="0.0316%" height="15" fill="rgb(208,1,8)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1317" width="0.0316%" height="15" fill="rgb(228,57,24)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1301" width="0.0316%" height="15" fill="rgb(251,24,8)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1311.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1285" width="0.0316%" height="15" fill="rgb(236,196,50)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1269" width="0.0316%" height="15" fill="rgb(246,222,29)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1279.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1253" width="0.0316%" height="15" fill="rgb(211,34,40)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1237" width="0.0316%" height="15" fill="rgb(210,66,51)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1221" width="0.0316%" height="15" fill="rgb(250,56,43)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1205" width="0.0316%" height="15" fill="rgb(240,111,50)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1189" width="0.0316%" height="15" fill="rgb(209,117,13)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1199.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1173" width="0.0316%" height="15" fill="rgb(232,164,45)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1157" width="0.0316%" height="15" fill="rgb(205,69,32)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1167.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1141" width="0.0316%" height="15" fill="rgb(240,147,45)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1125" width="0.0316%" height="15" fill="rgb(221,94,48)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1109" width="0.0316%" height="15" fill="rgb(249,209,17)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1093" width="0.0316%" height="15" fill="rgb(228,57,28)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1103.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1077" width="0.0316%" height="15" fill="rgb(250,133,26)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1087.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (97,142,825 samples, 0.03%)</title><rect x="98.9296%" y="1061" width="0.0316%" height="15" fill="rgb(254,15,16)" fg:x="304242160470" fg:w="97142825"/><text x="99.1796%" y="1071.50"></text></g><g><title>gpui::window::Window::paint_glyph (37,836,863 samples, 0.01%)</title><rect x="98.9847%" y="37" width="0.0123%" height="15" fill="rgb(209,147,42)" fg:x="304411544505" fg:w="37836863"/><text x="99.2347%" y="47.50"></text></g><g><title>gpui::text_system::line::paint_line (75,488,562 samples, 0.02%)</title><rect x="98.9746%" y="53" width="0.0245%" height="15" fill="rgb(208,5,29)" fg:x="304380492652" fg:w="75488562"/><text x="99.2246%" y="63.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="229" width="0.0300%" height="15" fill="rgb(250,73,31)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="213" width="0.0300%" height="15" fill="rgb(238,45,10)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="223.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="197" width="0.0300%" height="15" fill="rgb(214,104,5)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="207.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="181" width="0.0300%" height="15" fill="rgb(242,217,19)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="165" width="0.0300%" height="15" fill="rgb(246,113,27)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="149" width="0.0300%" height="15" fill="rgb(221,34,27)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="133" width="0.0300%" height="15" fill="rgb(246,109,6)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="143.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="117" width="0.0300%" height="15" fill="rgb(217,12,25)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="127.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="101" width="0.0300%" height="15" fill="rgb(250,195,5)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="111.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="85" width="0.0300%" height="15" fill="rgb(244,140,45)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="95.50"></text></g><g><title>gpui::elements::text::TextLayout::paint (92,121,500 samples, 0.03%)</title><rect x="98.9746%" y="69" width="0.0300%" height="15" fill="rgb(230,64,14)" fg:x="304380492652" fg:w="92121500"/><text x="99.2246%" y="79.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1429" width="0.0307%" height="15" fill="rgb(206,27,27)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1439.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1413" width="0.0307%" height="15" fill="rgb(230,14,50)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1397" width="0.0307%" height="15" fill="rgb(237,172,14)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1381" width="0.0307%" height="15" fill="rgb(209,25,21)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1365" width="0.0307%" height="15" fill="rgb(248,148,22)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1349" width="0.0307%" height="15" fill="rgb(234,100,22)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1333" width="0.0307%" height="15" fill="rgb(210,20,30)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1317" width="0.0307%" height="15" fill="rgb(232,58,0)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1327.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1301" width="0.0307%" height="15" fill="rgb(221,68,13)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1311.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1285" width="0.0307%" height="15" fill="rgb(231,194,11)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1295.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1269" width="0.0307%" height="15" fill="rgb(235,51,41)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1279.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1253" width="0.0307%" height="15" fill="rgb(240,50,32)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1237" width="0.0307%" height="15" fill="rgb(240,185,36)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1247.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1221" width="0.0307%" height="15" fill="rgb(211,168,15)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1205" width="0.0307%" height="15" fill="rgb(221,70,0)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1189" width="0.0307%" height="15" fill="rgb(205,21,33)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1173" width="0.0307%" height="15" fill="rgb(225,106,10)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1157" width="0.0307%" height="15" fill="rgb(236,200,50)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1141" width="0.0307%" height="15" fill="rgb(249,93,23)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1125" width="0.0307%" height="15" fill="rgb(244,115,35)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1135.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1109" width="0.0307%" height="15" fill="rgb(231,129,47)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1119.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1093" width="0.0307%" height="15" fill="rgb(225,160,50)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1103.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1077" width="0.0307%" height="15" fill="rgb(218,135,23)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1087.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1061" width="0.0307%" height="15" fill="rgb(227,119,14)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1071.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1045" width="0.0307%" height="15" fill="rgb(242,138,13)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1029" width="0.0307%" height="15" fill="rgb(215,11,16)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="1013" width="0.0307%" height="15" fill="rgb(234,170,50)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="997" width="0.0307%" height="15" fill="rgb(233,34,20)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="981" width="0.0307%" height="15" fill="rgb(237,100,45)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="965" width="0.0307%" height="15" fill="rgb(231,184,36)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="975.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="949" width="0.0307%" height="15" fill="rgb(252,93,2)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="933" width="0.0307%" height="15" fill="rgb(248,176,47)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="943.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="917" width="0.0307%" height="15" fill="rgb(249,125,23)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="901" width="0.0307%" height="15" fill="rgb(239,67,42)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="885" width="0.0307%" height="15" fill="rgb(244,162,4)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="869" width="0.0307%" height="15" fill="rgb(214,150,38)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="853" width="0.0307%" height="15" fill="rgb(228,211,28)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="837" width="0.0307%" height="15" fill="rgb(212,98,48)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="821" width="0.0307%" height="15" fill="rgb(213,45,13)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="831.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="805" width="0.0307%" height="15" fill="rgb(218,35,29)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="815.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="789" width="0.0307%" height="15" fill="rgb(244,13,3)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="799.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="773" width="0.0307%" height="15" fill="rgb(235,170,19)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="757" width="0.0307%" height="15" fill="rgb(233,193,43)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="741" width="0.0307%" height="15" fill="rgb(228,223,20)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="725" width="0.0307%" height="15" fill="rgb(208,85,54)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="709" width="0.0307%" height="15" fill="rgb(254,14,45)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="693" width="0.0307%" height="15" fill="rgb(247,99,29)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="677" width="0.0307%" height="15" fill="rgb(225,180,54)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="661" width="0.0307%" height="15" fill="rgb(239,88,43)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="671.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="645" width="0.0307%" height="15" fill="rgb(209,47,11)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="629" width="0.0307%" height="15" fill="rgb(219,179,23)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="613" width="0.0307%" height="15" fill="rgb(213,183,19)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="597" width="0.0307%" height="15" fill="rgb(210,11,9)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="581" width="0.0307%" height="15" fill="rgb(239,194,16)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="565" width="0.0307%" height="15" fill="rgb(246,23,50)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="575.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="549" width="0.0307%" height="15" fill="rgb(245,10,41)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="533" width="0.0307%" height="15" fill="rgb(228,43,24)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="543.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="517" width="0.0307%" height="15" fill="rgb(220,151,0)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="501" width="0.0307%" height="15" fill="rgb(232,219,10)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="485" width="0.0307%" height="15" fill="rgb(227,217,48)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="469" width="0.0307%" height="15" fill="rgb(210,66,35)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="453" width="0.0307%" height="15" fill="rgb(254,6,7)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="437" width="0.0307%" height="15" fill="rgb(235,222,42)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="421" width="0.0307%" height="15" fill="rgb(245,126,5)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="431.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="405" width="0.0307%" height="15" fill="rgb(215,73,17)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="389" width="0.0307%" height="15" fill="rgb(219,198,52)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="399.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="373" width="0.0307%" height="15" fill="rgb(217,159,18)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="357" width="0.0307%" height="15" fill="rgb(212,177,18)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="341" width="0.0307%" height="15" fill="rgb(241,10,11)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="325" width="0.0307%" height="15" fill="rgb(232,114,35)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="309" width="0.0307%" height="15" fill="rgb(238,222,8)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="293" width="0.0307%" height="15" fill="rgb(251,153,44)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="277" width="0.0307%" height="15" fill="rgb(210,140,51)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="287.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="261" width="0.0307%" height="15" fill="rgb(222,63,0)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="271.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (94,359,065 samples, 0.03%)</title><rect x="98.9746%" y="245" width="0.0307%" height="15" fill="rgb(240,18,40)" fg:x="304380492652" fg:w="94359065"/><text x="99.2246%" y="255.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1589" width="0.0317%" height="15" fill="rgb(237,88,16)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1573" width="0.0317%" height="15" fill="rgb(251,117,13)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1583.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1557" width="0.0317%" height="15" fill="rgb(251,228,8)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1541" width="0.0317%" height="15" fill="rgb(205,107,49)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1525" width="0.0317%" height="15" fill="rgb(238,72,41)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1509" width="0.0317%" height="15" fill="rgb(248,183,52)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1493" width="0.0317%" height="15" fill="rgb(215,58,20)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1477" width="0.0317%" height="15" fill="rgb(209,49,13)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1461" width="0.0317%" height="15" fill="rgb(208,113,17)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1471.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (97,553,413 samples, 0.03%)</title><rect x="98.9746%" y="1445" width="0.0317%" height="15" fill="rgb(208,14,22)" fg:x="304380492652" fg:w="97553413"/><text x="99.2246%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="997" width="0.0147%" height="15" fill="rgb(222,95,2)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="1007.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="981" width="0.0147%" height="15" fill="rgb(253,180,37)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="965" width="0.0147%" height="15" fill="rgb(250,81,33)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="949" width="0.0147%" height="15" fill="rgb(251,151,41)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="933" width="0.0147%" height="15" fill="rgb(210,135,17)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="917" width="0.0147%" height="15" fill="rgb(239,21,29)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="901" width="0.0147%" height="15" fill="rgb(231,215,16)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="885" width="0.0147%" height="15" fill="rgb(239,151,54)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="895.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="869" width="0.0147%" height="15" fill="rgb(222,122,38)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="879.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="853" width="0.0147%" height="15" fill="rgb(243,128,1)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="863.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="837" width="0.0147%" height="15" fill="rgb(225,74,21)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="847.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="821" width="0.0147%" height="15" fill="rgb(216,210,10)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="805" width="0.0147%" height="15" fill="rgb(228,76,19)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="815.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="789" width="0.0147%" height="15" fill="rgb(236,80,34)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="773" width="0.0147%" height="15" fill="rgb(225,173,23)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="757" width="0.0147%" height="15" fill="rgb(253,38,1)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="741" width="0.0147%" height="15" fill="rgb(206,155,35)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="725" width="0.0147%" height="15" fill="rgb(254,27,53)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="709" width="0.0147%" height="15" fill="rgb(225,52,41)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="693" width="0.0147%" height="15" fill="rgb(244,53,18)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="703.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="677" width="0.0147%" height="15" fill="rgb(254,206,48)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="661" width="0.0147%" height="15" fill="rgb(236,182,23)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="645" width="0.0147%" height="15" fill="rgb(236,191,37)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="655.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="629" width="0.0147%" height="15" fill="rgb(245,53,8)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="613" width="0.0147%" height="15" fill="rgb(245,147,9)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="597" width="0.0147%" height="15" fill="rgb(218,24,48)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="581" width="0.0147%" height="15" fill="rgb(254,23,9)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="565" width="0.0147%" height="15" fill="rgb(244,105,9)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="549" width="0.0147%" height="15" fill="rgb(212,142,22)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="533" width="0.0147%" height="15" fill="rgb(221,114,49)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="543.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="517" width="0.0147%" height="15" fill="rgb(223,210,25)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="501" width="0.0147%" height="15" fill="rgb(235,162,44)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="511.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="485" width="0.0147%" height="15" fill="rgb(237,65,45)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="469" width="0.0147%" height="15" fill="rgb(208,79,9)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="453" width="0.0147%" height="15" fill="rgb(215,228,8)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="437" width="0.0147%" height="15" fill="rgb(205,185,17)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="421" width="0.0147%" height="15" fill="rgb(213,62,36)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="405" width="0.0147%" height="15" fill="rgb(209,34,9)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="389" width="0.0147%" height="15" fill="rgb(246,151,27)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="399.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,235,615 samples, 0.01%)</title><rect x="99.0158%" y="373" width="0.0147%" height="15" fill="rgb(218,206,3)" fg:x="304507286916" fg:w="45235615"/><text x="99.2658%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="357" width="0.0143%" height="15" fill="rgb(242,202,1)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="367.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="341" width="0.0143%" height="15" fill="rgb(227,185,16)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="351.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="325" width="0.0143%" height="15" fill="rgb(241,1,14)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="309" width="0.0143%" height="15" fill="rgb(212,113,25)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="293" width="0.0143%" height="15" fill="rgb(247,37,43)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="277" width="0.0143%" height="15" fill="rgb(226,54,8)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="261" width="0.0143%" height="15" fill="rgb(251,205,25)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="271.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="245" width="0.0143%" height="15" fill="rgb(246,87,35)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="255.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="229" width="0.0143%" height="15" fill="rgb(251,145,46)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="213" width="0.0143%" height="15" fill="rgb(210,210,33)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="223.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="197" width="0.0143%" height="15" fill="rgb(221,151,11)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="207.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="181" width="0.0143%" height="15" fill="rgb(208,160,28)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="165" width="0.0143%" height="15" fill="rgb(243,69,29)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="149" width="0.0143%" height="15" fill="rgb(224,144,4)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="133" width="0.0143%" height="15" fill="rgb(211,140,38)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="143.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="117" width="0.0143%" height="15" fill="rgb(252,189,15)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="127.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="101" width="0.0143%" height="15" fill="rgb(251,175,23)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="111.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="85" width="0.0143%" height="15" fill="rgb(212,184,11)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="95.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint (44,105,632 samples, 0.01%)</title><rect x="99.0162%" y="69" width="0.0143%" height="15" fill="rgb(217,205,6)" fg:x="304508416899" fg:w="44105632"/><text x="99.2662%" y="79.50"></text></g><g><title>editor::element::EditorElement::register_actions (42,923,421 samples, 0.01%)</title><rect x="99.0166%" y="53" width="0.0140%" height="15" fill="rgb(235,45,45)" fg:x="304509599110" fg:w="42923421"/><text x="99.2666%" y="63.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1157" width="0.0151%" height="15" fill="rgb(211,157,53)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1167.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1141" width="0.0151%" height="15" fill="rgb(212,13,8)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1151.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1125" width="0.0151%" height="15" fill="rgb(218,80,36)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1135.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1109" width="0.0151%" height="15" fill="rgb(211,123,43)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1093" width="0.0151%" height="15" fill="rgb(206,165,2)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1077" width="0.0151%" height="15" fill="rgb(248,63,35)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1061" width="0.0151%" height="15" fill="rgb(219,133,41)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1045" width="0.0151%" height="15" fill="rgb(206,175,46)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1029" width="0.0151%" height="15" fill="rgb(224,41,35)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1039.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (46,489,190 samples, 0.02%)</title><rect x="99.0158%" y="1013" width="0.0151%" height="15" fill="rgb(226,113,24)" fg:x="304507286916" fg:w="46489190"/><text x="99.2658%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (181,349,008 samples, 0.06%)</title><rect x="98.9731%" y="1877" width="0.0590%" height="15" fill="rgb(219,51,41)" fg:x="304375971898" fg:w="181349008"/><text x="99.2231%" y="1887.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (181,349,008 samples, 0.06%)</title><rect x="98.9731%" y="1861" width="0.0590%" height="15" fill="rgb(220,145,47)" fg:x="304375971898" fg:w="181349008"/><text x="99.2231%" y="1871.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (181,349,008 samples, 0.06%)</title><rect x="98.9731%" y="1845" width="0.0590%" height="15" fill="rgb(239,121,47)" fg:x="304375971898" fg:w="181349008"/><text x="99.2231%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (181,349,008 samples, 0.06%)</title><rect x="98.9731%" y="1829" width="0.0590%" height="15" fill="rgb(207,60,40)" fg:x="304375971898" fg:w="181349008"/><text x="99.2231%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (181,349,008 samples, 0.06%)</title><rect x="98.9731%" y="1813" width="0.0590%" height="15" fill="rgb(224,229,11)" fg:x="304375971898" fg:w="181349008"/><text x="99.2231%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (181,349,008 samples, 0.06%)</title><rect x="98.9731%" y="1797" width="0.0590%" height="15" fill="rgb(252,28,32)" fg:x="304375971898" fg:w="181349008"/><text x="99.2231%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (181,349,008 samples, 0.06%)</title><rect x="98.9731%" y="1781" width="0.0590%" height="15" fill="rgb(207,52,49)" fg:x="304375971898" fg:w="181349008"/><text x="99.2231%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (181,349,008 samples, 0.06%)</title><rect x="98.9731%" y="1765" width="0.0590%" height="15" fill="rgb(243,51,50)" fg:x="304375971898" fg:w="181349008"/><text x="99.2231%" y="1775.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (181,349,008 samples, 0.06%)</title><rect x="98.9731%" y="1749" width="0.0590%" height="15" fill="rgb(212,92,21)" fg:x="304375971898" fg:w="181349008"/><text x="99.2231%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (176,828,254 samples, 0.06%)</title><rect x="98.9746%" y="1733" width="0.0575%" height="15" fill="rgb(230,183,50)" fg:x="304380492652" fg:w="176828254"/><text x="99.2246%" y="1743.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (176,828,254 samples, 0.06%)</title><rect x="98.9746%" y="1717" width="0.0575%" height="15" fill="rgb(225,48,9)" fg:x="304380492652" fg:w="176828254"/><text x="99.2246%" y="1727.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (176,828,254 samples, 0.06%)</title><rect x="98.9746%" y="1701" width="0.0575%" height="15" fill="rgb(254,44,4)" fg:x="304380492652" fg:w="176828254"/><text x="99.2246%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (176,828,254 samples, 0.06%)</title><rect x="98.9746%" y="1685" width="0.0575%" height="15" fill="rgb(252,128,37)" fg:x="304380492652" fg:w="176828254"/><text x="99.2246%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (176,828,254 samples, 0.06%)</title><rect x="98.9746%" y="1669" width="0.0575%" height="15" fill="rgb(227,178,8)" fg:x="304380492652" fg:w="176828254"/><text x="99.2246%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (176,828,254 samples, 0.06%)</title><rect x="98.9746%" y="1653" width="0.0575%" height="15" fill="rgb(205,206,32)" fg:x="304380492652" fg:w="176828254"/><text x="99.2246%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (176,828,254 samples, 0.06%)</title><rect x="98.9746%" y="1637" width="0.0575%" height="15" fill="rgb(220,218,22)" fg:x="304380492652" fg:w="176828254"/><text x="99.2246%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (176,828,254 samples, 0.06%)</title><rect x="98.9746%" y="1621" width="0.0575%" height="15" fill="rgb(236,41,28)" fg:x="304380492652" fg:w="176828254"/><text x="99.2246%" y="1631.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (176,828,254 samples, 0.06%)</title><rect x="98.9746%" y="1605" width="0.0575%" height="15" fill="rgb(219,37,7)" fg:x="304380492652" fg:w="176828254"/><text x="99.2246%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (79,274,841 samples, 0.03%)</title><rect x="99.0063%" y="1589" width="0.0258%" height="15" fill="rgb(206,160,15)" fg:x="304478046065" fg:w="79274841"/><text x="99.2563%" y="1599.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,274,841 samples, 0.03%)</title><rect x="99.0063%" y="1573" width="0.0258%" height="15" fill="rgb(208,82,21)" fg:x="304478046065" fg:w="79274841"/><text x="99.2563%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (79,274,841 samples, 0.03%)</title><rect x="99.0063%" y="1557" width="0.0258%" height="15" fill="rgb(226,130,25)" fg:x="304478046065" fg:w="79274841"/><text x="99.2563%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (79,274,841 samples, 0.03%)</title><rect x="99.0063%" y="1541" width="0.0258%" height="15" fill="rgb(212,72,24)" fg:x="304478046065" fg:w="79274841"/><text x="99.2563%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (79,274,841 samples, 0.03%)</title><rect x="99.0063%" y="1525" width="0.0258%" height="15" fill="rgb(206,28,16)" fg:x="304478046065" fg:w="79274841"/><text x="99.2563%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (79,274,841 samples, 0.03%)</title><rect x="99.0063%" y="1509" width="0.0258%" height="15" fill="rgb(249,41,5)" fg:x="304478046065" fg:w="79274841"/><text x="99.2563%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (79,274,841 samples, 0.03%)</title><rect x="99.0063%" y="1493" width="0.0258%" height="15" fill="rgb(233,96,48)" fg:x="304478046065" fg:w="79274841"/><text x="99.2563%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (79,274,841 samples, 0.03%)</title><rect x="99.0063%" y="1477" width="0.0258%" height="15" fill="rgb(240,198,11)" fg:x="304478046065" fg:w="79274841"/><text x="99.2563%" y="1487.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (79,274,841 samples, 0.03%)</title><rect x="99.0063%" y="1461" width="0.0258%" height="15" fill="rgb(209,175,35)" fg:x="304478046065" fg:w="79274841"/><text x="99.2563%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (75,612,288 samples, 0.02%)</title><rect x="99.0075%" y="1445" width="0.0246%" height="15" fill="rgb(214,40,51)" fg:x="304481708618" fg:w="75612288"/><text x="99.2575%" y="1455.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (75,612,288 samples, 0.02%)</title><rect x="99.0075%" y="1429" width="0.0246%" height="15" fill="rgb(252,56,4)" fg:x="304481708618" fg:w="75612288"/><text x="99.2575%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (75,612,288 samples, 0.02%)</title><rect x="99.0075%" y="1413" width="0.0246%" height="15" fill="rgb(219,131,5)" fg:x="304481708618" fg:w="75612288"/><text x="99.2575%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (75,612,288 samples, 0.02%)</title><rect x="99.0075%" y="1397" width="0.0246%" height="15" fill="rgb(223,67,53)" fg:x="304481708618" fg:w="75612288"/><text x="99.2575%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (75,612,288 samples, 0.02%)</title><rect x="99.0075%" y="1381" width="0.0246%" height="15" fill="rgb(227,154,8)" fg:x="304481708618" fg:w="75612288"/><text x="99.2575%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (75,612,288 samples, 0.02%)</title><rect x="99.0075%" y="1365" width="0.0246%" height="15" fill="rgb(216,174,51)" fg:x="304481708618" fg:w="75612288"/><text x="99.2575%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (75,612,288 samples, 0.02%)</title><rect x="99.0075%" y="1349" width="0.0246%" height="15" fill="rgb(239,60,34)" fg:x="304481708618" fg:w="75612288"/><text x="99.2575%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (75,612,288 samples, 0.02%)</title><rect x="99.0075%" y="1333" width="0.0246%" height="15" fill="rgb(236,165,48)" fg:x="304481708618" fg:w="75612288"/><text x="99.2575%" y="1343.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (75,612,288 samples, 0.02%)</title><rect x="99.0075%" y="1317" width="0.0246%" height="15" fill="rgb(210,37,26)" fg:x="304481708618" fg:w="75612288"/><text x="99.2575%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (50,033,990 samples, 0.02%)</title><rect x="99.0158%" y="1301" width="0.0163%" height="15" fill="rgb(211,3,17)" fg:x="304507286916" fg:w="50033990"/><text x="99.2658%" y="1311.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (50,033,990 samples, 0.02%)</title><rect x="99.0158%" y="1285" width="0.0163%" height="15" fill="rgb(234,88,49)" fg:x="304507286916" fg:w="50033990"/><text x="99.2658%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (50,033,990 samples, 0.02%)</title><rect x="99.0158%" y="1269" width="0.0163%" height="15" fill="rgb(233,40,17)" fg:x="304507286916" fg:w="50033990"/><text x="99.2658%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (50,033,990 samples, 0.02%)</title><rect x="99.0158%" y="1253" width="0.0163%" height="15" fill="rgb(235,127,31)" fg:x="304507286916" fg:w="50033990"/><text x="99.2658%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (50,033,990 samples, 0.02%)</title><rect x="99.0158%" y="1237" width="0.0163%" height="15" fill="rgb(248,167,17)" fg:x="304507286916" fg:w="50033990"/><text x="99.2658%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (50,033,990 samples, 0.02%)</title><rect x="99.0158%" y="1221" width="0.0163%" height="15" fill="rgb(218,179,8)" fg:x="304507286916" fg:w="50033990"/><text x="99.2658%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (50,033,990 samples, 0.02%)</title><rect x="99.0158%" y="1205" width="0.0163%" height="15" fill="rgb(216,92,14)" fg:x="304507286916" fg:w="50033990"/><text x="99.2658%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (50,033,990 samples, 0.02%)</title><rect x="99.0158%" y="1189" width="0.0163%" height="15" fill="rgb(221,198,46)" fg:x="304507286916" fg:w="50033990"/><text x="99.2658%" y="1199.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (50,033,990 samples, 0.02%)</title><rect x="99.0158%" y="1173" width="0.0163%" height="15" fill="rgb(244,7,25)" fg:x="304507286916" fg:w="50033990"/><text x="99.2658%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (191,411,926 samples, 0.06%)</title><rect x="98.9702%" y="2021" width="0.0622%" height="15" fill="rgb(233,75,6)" fg:x="304367025201" fg:w="191411926"/><text x="99.2202%" y="2031.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (191,411,926 samples, 0.06%)</title><rect x="98.9702%" y="2005" width="0.0622%" height="15" fill="rgb(240,189,41)" fg:x="304367025201" fg:w="191411926"/><text x="99.2202%" y="2015.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (191,411,926 samples, 0.06%)</title><rect x="98.9702%" y="1989" width="0.0622%" height="15" fill="rgb(237,157,21)" fg:x="304367025201" fg:w="191411926"/><text x="99.2202%" y="1999.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (191,411,926 samples, 0.06%)</title><rect x="98.9702%" y="1973" width="0.0622%" height="15" fill="rgb(210,136,49)" fg:x="304367025201" fg:w="191411926"/><text x="99.2202%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (191,411,926 samples, 0.06%)</title><rect x="98.9702%" y="1957" width="0.0622%" height="15" fill="rgb(210,68,29)" fg:x="304367025201" fg:w="191411926"/><text x="99.2202%" y="1967.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (191,411,926 samples, 0.06%)</title><rect x="98.9702%" y="1941" width="0.0622%" height="15" fill="rgb(247,207,20)" fg:x="304367025201" fg:w="191411926"/><text x="99.2202%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (191,411,926 samples, 0.06%)</title><rect x="98.9702%" y="1925" width="0.0622%" height="15" fill="rgb(224,73,48)" fg:x="304367025201" fg:w="191411926"/><text x="99.2202%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (191,411,926 samples, 0.06%)</title><rect x="98.9702%" y="1909" width="0.0622%" height="15" fill="rgb(215,136,47)" fg:x="304367025201" fg:w="191411926"/><text x="99.2202%" y="1919.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (191,411,926 samples, 0.06%)</title><rect x="98.9702%" y="1893" width="0.0622%" height="15" fill="rgb(232,222,16)" fg:x="304367025201" fg:w="191411926"/><text x="99.2202%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (193,608,885 samples, 0.06%)</title><rect x="98.9702%" y="2053" width="0.0630%" height="15" fill="rgb(249,202,47)" fg:x="304367025201" fg:w="193608885"/><text x="99.2202%" y="2063.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (193,608,885 samples, 0.06%)</title><rect x="98.9702%" y="2037" width="0.0630%" height="15" fill="rgb(236,56,8)" fg:x="304367025201" fg:w="193608885"/><text x="99.2202%" y="2047.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1573" width="0.0117%" height="15" fill="rgb(222,6,3)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1557" width="0.0117%" height="15" fill="rgb(254,222,28)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1567.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1541" width="0.0117%" height="15" fill="rgb(219,57,23)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1525" width="0.0117%" height="15" fill="rgb(251,106,48)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1509" width="0.0117%" height="15" fill="rgb(242,2,23)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1493" width="0.0117%" height="15" fill="rgb(212,109,31)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1477" width="0.0117%" height="15" fill="rgb(241,9,22)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1461" width="0.0117%" height="15" fill="rgb(209,64,27)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1445" width="0.0117%" height="15" fill="rgb(248,13,44)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1455.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (35,963,890 samples, 0.01%)</title><rect x="99.0386%" y="1429" width="0.0117%" height="15" fill="rgb(213,86,6)" fg:x="304577365614" fg:w="35963890"/><text x="99.2886%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (69,148,771 samples, 0.02%)</title><rect x="99.0367%" y="1861" width="0.0225%" height="15" fill="rgb(247,11,18)" fg:x="304571422829" fg:w="69148771"/><text x="99.2867%" y="1871.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (69,148,771 samples, 0.02%)</title><rect x="99.0367%" y="1845" width="0.0225%" height="15" fill="rgb(252,31,11)" fg:x="304571422829" fg:w="69148771"/><text x="99.2867%" y="1855.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (69,148,771 samples, 0.02%)</title><rect x="99.0367%" y="1829" width="0.0225%" height="15" fill="rgb(215,63,51)" fg:x="304571422829" fg:w="69148771"/><text x="99.2867%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (69,148,771 samples, 0.02%)</title><rect x="99.0367%" y="1813" width="0.0225%" height="15" fill="rgb(222,180,4)" fg:x="304571422829" fg:w="69148771"/><text x="99.2867%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (69,148,771 samples, 0.02%)</title><rect x="99.0367%" y="1797" width="0.0225%" height="15" fill="rgb(233,4,23)" fg:x="304571422829" fg:w="69148771"/><text x="99.2867%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (69,148,771 samples, 0.02%)</title><rect x="99.0367%" y="1781" width="0.0225%" height="15" fill="rgb(230,116,22)" fg:x="304571422829" fg:w="69148771"/><text x="99.2867%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (69,148,771 samples, 0.02%)</title><rect x="99.0367%" y="1765" width="0.0225%" height="15" fill="rgb(222,20,14)" fg:x="304571422829" fg:w="69148771"/><text x="99.2867%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (69,148,771 samples, 0.02%)</title><rect x="99.0367%" y="1749" width="0.0225%" height="15" fill="rgb(210,176,43)" fg:x="304571422829" fg:w="69148771"/><text x="99.2867%" y="1759.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (69,148,771 samples, 0.02%)</title><rect x="99.0367%" y="1733" width="0.0225%" height="15" fill="rgb(219,67,32)" fg:x="304571422829" fg:w="69148771"/><text x="99.2867%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (63,205,986 samples, 0.02%)</title><rect x="99.0386%" y="1717" width="0.0206%" height="15" fill="rgb(228,91,39)" fg:x="304577365614" fg:w="63205986"/><text x="99.2886%" y="1727.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (63,205,986 samples, 0.02%)</title><rect x="99.0386%" y="1701" width="0.0206%" height="15" fill="rgb(254,63,14)" fg:x="304577365614" fg:w="63205986"/><text x="99.2886%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (63,205,986 samples, 0.02%)</title><rect x="99.0386%" y="1685" width="0.0206%" height="15" fill="rgb(216,171,39)" fg:x="304577365614" fg:w="63205986"/><text x="99.2886%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (63,205,986 samples, 0.02%)</title><rect x="99.0386%" y="1669" width="0.0206%" height="15" fill="rgb(248,68,25)" fg:x="304577365614" fg:w="63205986"/><text x="99.2886%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (63,205,986 samples, 0.02%)</title><rect x="99.0386%" y="1653" width="0.0206%" height="15" fill="rgb(239,63,16)" fg:x="304577365614" fg:w="63205986"/><text x="99.2886%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (63,205,986 samples, 0.02%)</title><rect x="99.0386%" y="1637" width="0.0206%" height="15" fill="rgb(225,111,43)" fg:x="304577365614" fg:w="63205986"/><text x="99.2886%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (63,205,986 samples, 0.02%)</title><rect x="99.0386%" y="1621" width="0.0206%" height="15" fill="rgb(246,165,17)" fg:x="304577365614" fg:w="63205986"/><text x="99.2886%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (63,205,986 samples, 0.02%)</title><rect x="99.0386%" y="1605" width="0.0206%" height="15" fill="rgb(208,124,1)" fg:x="304577365614" fg:w="63205986"/><text x="99.2886%" y="1615.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (63,205,986 samples, 0.02%)</title><rect x="99.0386%" y="1589" width="0.0206%" height="15" fill="rgb(234,147,33)" fg:x="304577365614" fg:w="63205986"/><text x="99.2886%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (81,099,179 samples, 0.03%)</title><rect x="99.0332%" y="2053" width="0.0264%" height="15" fill="rgb(240,86,30)" fg:x="304560634086" fg:w="81099179"/><text x="99.2832%" y="2063.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (81,099,179 samples, 0.03%)</title><rect x="99.0332%" y="2037" width="0.0264%" height="15" fill="rgb(237,34,51)" fg:x="304560634086" fg:w="81099179"/><text x="99.2832%" y="2047.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (81,099,179 samples, 0.03%)</title><rect x="99.0332%" y="2021" width="0.0264%" height="15" fill="rgb(232,131,41)" fg:x="304560634086" fg:w="81099179"/><text x="99.2832%" y="2031.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (76,614,565 samples, 0.02%)</title><rect x="99.0346%" y="2005" width="0.0249%" height="15" fill="rgb(227,129,53)" fg:x="304565118700" fg:w="76614565"/><text x="99.2846%" y="2015.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (76,614,565 samples, 0.02%)</title><rect x="99.0346%" y="1989" width="0.0249%" height="15" fill="rgb(230,90,35)" fg:x="304565118700" fg:w="76614565"/><text x="99.2846%" y="1999.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (76,614,565 samples, 0.02%)</title><rect x="99.0346%" y="1973" width="0.0249%" height="15" fill="rgb(248,88,27)" fg:x="304565118700" fg:w="76614565"/><text x="99.2846%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (76,614,565 samples, 0.02%)</title><rect x="99.0346%" y="1957" width="0.0249%" height="15" fill="rgb(223,18,17)" fg:x="304565118700" fg:w="76614565"/><text x="99.2846%" y="1967.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (76,614,565 samples, 0.02%)</title><rect x="99.0346%" y="1941" width="0.0249%" height="15" fill="rgb(241,11,10)" fg:x="304565118700" fg:w="76614565"/><text x="99.2846%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,614,565 samples, 0.02%)</title><rect x="99.0346%" y="1925" width="0.0249%" height="15" fill="rgb(232,111,52)" fg:x="304565118700" fg:w="76614565"/><text x="99.2846%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,614,565 samples, 0.02%)</title><rect x="99.0346%" y="1909" width="0.0249%" height="15" fill="rgb(228,67,8)" fg:x="304565118700" fg:w="76614565"/><text x="99.2846%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (76,614,565 samples, 0.02%)</title><rect x="99.0346%" y="1893" width="0.0249%" height="15" fill="rgb(251,168,31)" fg:x="304565118700" fg:w="76614565"/><text x="99.2846%" y="1903.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (76,614,565 samples, 0.02%)</title><rect x="99.0346%" y="1877" width="0.0249%" height="15" fill="rgb(249,164,11)" fg:x="304565118700" fg:w="76614565"/><text x="99.2846%" y="1887.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (66,621,869 samples, 0.02%)</title><rect x="99.0689%" y="1845" width="0.0217%" height="15" fill="rgb(239,81,9)" fg:x="304670572011" fg:w="66621869"/><text x="99.3189%" y="1855.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (66,621,869 samples, 0.02%)</title><rect x="99.0689%" y="1829" width="0.0217%" height="15" fill="rgb(222,145,38)" fg:x="304670572011" fg:w="66621869"/><text x="99.3189%" y="1839.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (66,621,869 samples, 0.02%)</title><rect x="99.0689%" y="1813" width="0.0217%" height="15" fill="rgb(238,80,54)" fg:x="304670572011" fg:w="66621869"/><text x="99.3189%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (66,621,869 samples, 0.02%)</title><rect x="99.0689%" y="1797" width="0.0217%" height="15" fill="rgb(237,116,16)" fg:x="304670572011" fg:w="66621869"/><text x="99.3189%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (66,621,869 samples, 0.02%)</title><rect x="99.0689%" y="1781" width="0.0217%" height="15" fill="rgb(218,135,19)" fg:x="304670572011" fg:w="66621869"/><text x="99.3189%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (66,621,869 samples, 0.02%)</title><rect x="99.0689%" y="1765" width="0.0217%" height="15" fill="rgb(216,207,44)" fg:x="304670572011" fg:w="66621869"/><text x="99.3189%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (66,621,869 samples, 0.02%)</title><rect x="99.0689%" y="1749" width="0.0217%" height="15" fill="rgb(226,152,40)" fg:x="304670572011" fg:w="66621869"/><text x="99.3189%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (66,621,869 samples, 0.02%)</title><rect x="99.0689%" y="1733" width="0.0217%" height="15" fill="rgb(219,98,35)" fg:x="304670572011" fg:w="66621869"/><text x="99.3189%" y="1743.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (66,621,869 samples, 0.02%)</title><rect x="99.0689%" y="1717" width="0.0217%" height="15" fill="rgb(222,136,46)" fg:x="304670572011" fg:w="66621869"/><text x="99.3189%" y="1727.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (57,944,560 samples, 0.02%)</title><rect x="99.0717%" y="1701" width="0.0188%" height="15" fill="rgb(222,71,8)" fg:x="304679249320" fg:w="57944560"/><text x="99.3217%" y="1711.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (57,944,560 samples, 0.02%)</title><rect x="99.0717%" y="1685" width="0.0188%" height="15" fill="rgb(209,89,53)" fg:x="304679249320" fg:w="57944560"/><text x="99.3217%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (57,944,560 samples, 0.02%)</title><rect x="99.0717%" y="1669" width="0.0188%" height="15" fill="rgb(210,97,51)" fg:x="304679249320" fg:w="57944560"/><text x="99.3217%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (57,944,560 samples, 0.02%)</title><rect x="99.0717%" y="1653" width="0.0188%" height="15" fill="rgb(248,65,21)" fg:x="304679249320" fg:w="57944560"/><text x="99.3217%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (57,944,560 samples, 0.02%)</title><rect x="99.0717%" y="1637" width="0.0188%" height="15" fill="rgb(222,5,31)" fg:x="304679249320" fg:w="57944560"/><text x="99.3217%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (57,944,560 samples, 0.02%)</title><rect x="99.0717%" y="1621" width="0.0188%" height="15" fill="rgb(241,16,30)" fg:x="304679249320" fg:w="57944560"/><text x="99.3217%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (57,944,560 samples, 0.02%)</title><rect x="99.0717%" y="1605" width="0.0188%" height="15" fill="rgb(215,86,30)" fg:x="304679249320" fg:w="57944560"/><text x="99.3217%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (57,944,560 samples, 0.02%)</title><rect x="99.0717%" y="1589" width="0.0188%" height="15" fill="rgb(235,26,44)" fg:x="304679249320" fg:w="57944560"/><text x="99.3217%" y="1599.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (57,944,560 samples, 0.02%)</title><rect x="99.0717%" y="1573" width="0.0188%" height="15" fill="rgb(228,147,14)" fg:x="304679249320" fg:w="57944560"/><text x="99.3217%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (38,698,101 samples, 0.01%)</title><rect x="99.0780%" y="1557" width="0.0126%" height="15" fill="rgb(253,38,50)" fg:x="304698495779" fg:w="38698101"/><text x="99.3280%" y="1567.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (38,698,101 samples, 0.01%)</title><rect x="99.0780%" y="1541" width="0.0126%" height="15" fill="rgb(251,151,16)" fg:x="304698495779" fg:w="38698101"/><text x="99.3280%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (38,698,101 samples, 0.01%)</title><rect x="99.0780%" y="1525" width="0.0126%" height="15" fill="rgb(224,64,19)" fg:x="304698495779" fg:w="38698101"/><text x="99.3280%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (38,698,101 samples, 0.01%)</title><rect x="99.0780%" y="1509" width="0.0126%" height="15" fill="rgb(235,214,47)" fg:x="304698495779" fg:w="38698101"/><text x="99.3280%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (38,698,101 samples, 0.01%)</title><rect x="99.0780%" y="1493" width="0.0126%" height="15" fill="rgb(218,15,19)" fg:x="304698495779" fg:w="38698101"/><text x="99.3280%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (38,698,101 samples, 0.01%)</title><rect x="99.0780%" y="1477" width="0.0126%" height="15" fill="rgb(247,209,3)" fg:x="304698495779" fg:w="38698101"/><text x="99.3280%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (38,698,101 samples, 0.01%)</title><rect x="99.0780%" y="1461" width="0.0126%" height="15" fill="rgb(217,29,2)" fg:x="304698495779" fg:w="38698101"/><text x="99.3280%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (38,698,101 samples, 0.01%)</title><rect x="99.0780%" y="1445" width="0.0126%" height="15" fill="rgb(234,9,9)" fg:x="304698495779" fg:w="38698101"/><text x="99.3280%" y="1455.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (38,698,101 samples, 0.01%)</title><rect x="99.0780%" y="1429" width="0.0126%" height="15" fill="rgb(207,43,14)" fg:x="304698495779" fg:w="38698101"/><text x="99.3280%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (82,231,307 samples, 0.03%)</title><rect x="99.0642%" y="1989" width="0.0267%" height="15" fill="rgb(216,219,36)" fg:x="304656094120" fg:w="82231307"/><text x="99.3142%" y="1999.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (82,231,307 samples, 0.03%)</title><rect x="99.0642%" y="1973" width="0.0267%" height="15" fill="rgb(238,12,26)" fg:x="304656094120" fg:w="82231307"/><text x="99.3142%" y="1983.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (82,231,307 samples, 0.03%)</title><rect x="99.0642%" y="1957" width="0.0267%" height="15" fill="rgb(226,67,30)" fg:x="304656094120" fg:w="82231307"/><text x="99.3142%" y="1967.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (82,231,307 samples, 0.03%)</title><rect x="99.0642%" y="1941" width="0.0267%" height="15" fill="rgb(229,154,7)" fg:x="304656094120" fg:w="82231307"/><text x="99.3142%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (82,231,307 samples, 0.03%)</title><rect x="99.0642%" y="1925" width="0.0267%" height="15" fill="rgb(249,90,18)" fg:x="304656094120" fg:w="82231307"/><text x="99.3142%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (82,231,307 samples, 0.03%)</title><rect x="99.0642%" y="1909" width="0.0267%" height="15" fill="rgb(223,53,15)" fg:x="304656094120" fg:w="82231307"/><text x="99.3142%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (82,231,307 samples, 0.03%)</title><rect x="99.0642%" y="1893" width="0.0267%" height="15" fill="rgb(253,86,38)" fg:x="304656094120" fg:w="82231307"/><text x="99.3142%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (82,231,307 samples, 0.03%)</title><rect x="99.0642%" y="1877" width="0.0267%" height="15" fill="rgb(222,198,9)" fg:x="304656094120" fg:w="82231307"/><text x="99.3142%" y="1887.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (82,231,307 samples, 0.03%)</title><rect x="99.0642%" y="1861" width="0.0267%" height="15" fill="rgb(240,146,25)" fg:x="304656094120" fg:w="82231307"/><text x="99.3142%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (99,804,092 samples, 0.03%)</title><rect x="99.0595%" y="2053" width="0.0325%" height="15" fill="rgb(225,38,10)" fg:x="304641733265" fg:w="99804092"/><text x="99.3095%" y="2063.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (99,804,092 samples, 0.03%)</title><rect x="99.0595%" y="2037" width="0.0325%" height="15" fill="rgb(246,93,4)" fg:x="304641733265" fg:w="99804092"/><text x="99.3095%" y="2047.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (99,804,092 samples, 0.03%)</title><rect x="99.0595%" y="2021" width="0.0325%" height="15" fill="rgb(222,55,18)" fg:x="304641733265" fg:w="99804092"/><text x="99.3095%" y="2031.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (99,804,092 samples, 0.03%)</title><rect x="99.0595%" y="2005" width="0.0325%" height="15" fill="rgb(233,137,48)" fg:x="304641733265" fg:w="99804092"/><text x="99.3095%" y="2015.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (90,615,477 samples, 0.03%)</title><rect x="99.0961%" y="1973" width="0.0295%" height="15" fill="rgb(214,8,54)" fg:x="304754191344" fg:w="90615477"/><text x="99.3461%" y="1983.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (90,615,477 samples, 0.03%)</title><rect x="99.0961%" y="1957" width="0.0295%" height="15" fill="rgb(206,75,4)" fg:x="304754191344" fg:w="90615477"/><text x="99.3461%" y="1967.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (90,615,477 samples, 0.03%)</title><rect x="99.0961%" y="1941" width="0.0295%" height="15" fill="rgb(238,171,14)" fg:x="304754191344" fg:w="90615477"/><text x="99.3461%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (90,615,477 samples, 0.03%)</title><rect x="99.0961%" y="1925" width="0.0295%" height="15" fill="rgb(233,70,41)" fg:x="304754191344" fg:w="90615477"/><text x="99.3461%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (90,615,477 samples, 0.03%)</title><rect x="99.0961%" y="1909" width="0.0295%" height="15" fill="rgb(214,68,36)" fg:x="304754191344" fg:w="90615477"/><text x="99.3461%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (90,615,477 samples, 0.03%)</title><rect x="99.0961%" y="1893" width="0.0295%" height="15" fill="rgb(223,29,5)" fg:x="304754191344" fg:w="90615477"/><text x="99.3461%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (90,615,477 samples, 0.03%)</title><rect x="99.0961%" y="1877" width="0.0295%" height="15" fill="rgb(251,22,40)" fg:x="304754191344" fg:w="90615477"/><text x="99.3461%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (90,615,477 samples, 0.03%)</title><rect x="99.0961%" y="1861" width="0.0295%" height="15" fill="rgb(210,67,41)" fg:x="304754191344" fg:w="90615477"/><text x="99.3461%" y="1871.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (90,615,477 samples, 0.03%)</title><rect x="99.0961%" y="1845" width="0.0295%" height="15" fill="rgb(225,177,31)" fg:x="304754191344" fg:w="90615477"/><text x="99.3461%" y="1855.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (78,773,526 samples, 0.03%)</title><rect x="99.0999%" y="1829" width="0.0256%" height="15" fill="rgb(221,229,11)" fg:x="304766033295" fg:w="78773526"/><text x="99.3499%" y="1839.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (78,773,526 samples, 0.03%)</title><rect x="99.0999%" y="1813" width="0.0256%" height="15" fill="rgb(247,172,52)" fg:x="304766033295" fg:w="78773526"/><text x="99.3499%" y="1823.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (78,773,526 samples, 0.03%)</title><rect x="99.0999%" y="1797" width="0.0256%" height="15" fill="rgb(212,73,19)" fg:x="304766033295" fg:w="78773526"/><text x="99.3499%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (78,773,526 samples, 0.03%)</title><rect x="99.0999%" y="1781" width="0.0256%" height="15" fill="rgb(244,7,46)" fg:x="304766033295" fg:w="78773526"/><text x="99.3499%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (78,773,526 samples, 0.03%)</title><rect x="99.0999%" y="1765" width="0.0256%" height="15" fill="rgb(230,113,20)" fg:x="304766033295" fg:w="78773526"/><text x="99.3499%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (78,773,526 samples, 0.03%)</title><rect x="99.0999%" y="1749" width="0.0256%" height="15" fill="rgb(209,97,30)" fg:x="304766033295" fg:w="78773526"/><text x="99.3499%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (78,773,526 samples, 0.03%)</title><rect x="99.0999%" y="1733" width="0.0256%" height="15" fill="rgb(243,89,12)" fg:x="304766033295" fg:w="78773526"/><text x="99.3499%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (78,773,526 samples, 0.03%)</title><rect x="99.0999%" y="1717" width="0.0256%" height="15" fill="rgb(228,32,19)" fg:x="304766033295" fg:w="78773526"/><text x="99.3499%" y="1727.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (78,773,526 samples, 0.03%)</title><rect x="99.0999%" y="1701" width="0.0256%" height="15" fill="rgb(248,25,17)" fg:x="304766033295" fg:w="78773526"/><text x="99.3499%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (72,593,582 samples, 0.02%)</title><rect x="99.1020%" y="1685" width="0.0236%" height="15" fill="rgb(232,161,29)" fg:x="304772213239" fg:w="72593582"/><text x="99.3520%" y="1695.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (72,593,582 samples, 0.02%)</title><rect x="99.1020%" y="1669" width="0.0236%" height="15" fill="rgb(251,192,11)" fg:x="304772213239" fg:w="72593582"/><text x="99.3520%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (72,593,582 samples, 0.02%)</title><rect x="99.1020%" y="1653" width="0.0236%" height="15" fill="rgb(240,47,32)" fg:x="304772213239" fg:w="72593582"/><text x="99.3520%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (72,593,582 samples, 0.02%)</title><rect x="99.1020%" y="1637" width="0.0236%" height="15" fill="rgb(250,16,45)" fg:x="304772213239" fg:w="72593582"/><text x="99.3520%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (72,593,582 samples, 0.02%)</title><rect x="99.1020%" y="1621" width="0.0236%" height="15" fill="rgb(227,217,42)" fg:x="304772213239" fg:w="72593582"/><text x="99.3520%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (72,593,582 samples, 0.02%)</title><rect x="99.1020%" y="1605" width="0.0236%" height="15" fill="rgb(206,82,54)" fg:x="304772213239" fg:w="72593582"/><text x="99.3520%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (72,593,582 samples, 0.02%)</title><rect x="99.1020%" y="1589" width="0.0236%" height="15" fill="rgb(243,145,25)" fg:x="304772213239" fg:w="72593582"/><text x="99.3520%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (72,593,582 samples, 0.02%)</title><rect x="99.1020%" y="1573" width="0.0236%" height="15" fill="rgb(207,166,24)" fg:x="304772213239" fg:w="72593582"/><text x="99.3520%" y="1583.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (72,593,582 samples, 0.02%)</title><rect x="99.1020%" y="1557" width="0.0236%" height="15" fill="rgb(215,191,44)" fg:x="304772213239" fg:w="72593582"/><text x="99.3520%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (63,688,851 samples, 0.02%)</title><rect x="99.1049%" y="1541" width="0.0207%" height="15" fill="rgb(234,218,51)" fg:x="304781117970" fg:w="63688851"/><text x="99.3549%" y="1551.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (63,688,851 samples, 0.02%)</title><rect x="99.1049%" y="1525" width="0.0207%" height="15" fill="rgb(245,133,21)" fg:x="304781117970" fg:w="63688851"/><text x="99.3549%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (63,688,851 samples, 0.02%)</title><rect x="99.1049%" y="1509" width="0.0207%" height="15" fill="rgb(230,136,45)" fg:x="304781117970" fg:w="63688851"/><text x="99.3549%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (63,688,851 samples, 0.02%)</title><rect x="99.1049%" y="1493" width="0.0207%" height="15" fill="rgb(247,63,43)" fg:x="304781117970" fg:w="63688851"/><text x="99.3549%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (63,688,851 samples, 0.02%)</title><rect x="99.1049%" y="1477" width="0.0207%" height="15" fill="rgb(254,223,31)" fg:x="304781117970" fg:w="63688851"/><text x="99.3549%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (63,688,851 samples, 0.02%)</title><rect x="99.1049%" y="1461" width="0.0207%" height="15" fill="rgb(236,185,0)" fg:x="304781117970" fg:w="63688851"/><text x="99.3549%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (63,688,851 samples, 0.02%)</title><rect x="99.1049%" y="1445" width="0.0207%" height="15" fill="rgb(231,139,46)" fg:x="304781117970" fg:w="63688851"/><text x="99.3549%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (63,688,851 samples, 0.02%)</title><rect x="99.1049%" y="1429" width="0.0207%" height="15" fill="rgb(236,147,31)" fg:x="304781117970" fg:w="63688851"/><text x="99.3549%" y="1439.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (63,688,851 samples, 0.02%)</title><rect x="99.1049%" y="1413" width="0.0207%" height="15" fill="rgb(225,222,22)" fg:x="304781117970" fg:w="63688851"/><text x="99.3549%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (34,624,877 samples, 0.01%)</title><rect x="99.1143%" y="1397" width="0.0113%" height="15" fill="rgb(225,193,14)" fg:x="304810181944" fg:w="34624877"/><text x="99.3643%" y="1407.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,624,877 samples, 0.01%)</title><rect x="99.1143%" y="1381" width="0.0113%" height="15" fill="rgb(253,193,46)" fg:x="304810181944" fg:w="34624877"/><text x="99.3643%" y="1391.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (34,624,877 samples, 0.01%)</title><rect x="99.1143%" y="1365" width="0.0113%" height="15" fill="rgb(218,187,39)" fg:x="304810181944" fg:w="34624877"/><text x="99.3643%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (34,624,877 samples, 0.01%)</title><rect x="99.1143%" y="1349" width="0.0113%" height="15" fill="rgb(227,162,48)" fg:x="304810181944" fg:w="34624877"/><text x="99.3643%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (34,624,877 samples, 0.01%)</title><rect x="99.1143%" y="1333" width="0.0113%" height="15" fill="rgb(222,25,5)" fg:x="304810181944" fg:w="34624877"/><text x="99.3643%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,624,877 samples, 0.01%)</title><rect x="99.1143%" y="1317" width="0.0113%" height="15" fill="rgb(211,205,16)" fg:x="304810181944" fg:w="34624877"/><text x="99.3643%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,624,877 samples, 0.01%)</title><rect x="99.1143%" y="1301" width="0.0113%" height="15" fill="rgb(244,191,2)" fg:x="304810181944" fg:w="34624877"/><text x="99.3643%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,624,877 samples, 0.01%)</title><rect x="99.1143%" y="1285" width="0.0113%" height="15" fill="rgb(248,159,12)" fg:x="304810181944" fg:w="34624877"/><text x="99.3643%" y="1295.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (34,624,877 samples, 0.01%)</title><rect x="99.1143%" y="1269" width="0.0113%" height="15" fill="rgb(235,204,17)" fg:x="304810181944" fg:w="34624877"/><text x="99.3643%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (107,462,653 samples, 0.03%)</title><rect x="99.0920%" y="2053" width="0.0349%" height="15" fill="rgb(240,21,27)" fg:x="304741537357" fg:w="107462653"/><text x="99.3420%" y="2063.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (107,462,653 samples, 0.03%)</title><rect x="99.0920%" y="2037" width="0.0349%" height="15" fill="rgb(224,170,31)" fg:x="304741537357" fg:w="107462653"/><text x="99.3420%" y="2047.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (107,462,653 samples, 0.03%)</title><rect x="99.0920%" y="2021" width="0.0349%" height="15" fill="rgb(223,145,32)" fg:x="304741537357" fg:w="107462653"/><text x="99.3420%" y="2031.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (107,462,653 samples, 0.03%)</title><rect x="99.0920%" y="2005" width="0.0349%" height="15" fill="rgb(243,100,5)" fg:x="304741537357" fg:w="107462653"/><text x="99.3420%" y="2015.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (107,462,653 samples, 0.03%)</title><rect x="99.0920%" y="1989" width="0.0349%" height="15" fill="rgb(242,131,51)" fg:x="304741537357" fg:w="107462653"/><text x="99.3420%" y="1999.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (55,860,093 samples, 0.02%)</title><rect x="99.1406%" y="1669" width="0.0182%" height="15" fill="rgb(223,156,46)" fg:x="304891082707" fg:w="55860093"/><text x="99.3906%" y="1679.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (55,860,093 samples, 0.02%)</title><rect x="99.1406%" y="1653" width="0.0182%" height="15" fill="rgb(215,10,40)" fg:x="304891082707" fg:w="55860093"/><text x="99.3906%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (55,860,093 samples, 0.02%)</title><rect x="99.1406%" y="1637" width="0.0182%" height="15" fill="rgb(233,155,0)" fg:x="304891082707" fg:w="55860093"/><text x="99.3906%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (55,860,093 samples, 0.02%)</title><rect x="99.1406%" y="1621" width="0.0182%" height="15" fill="rgb(247,78,6)" fg:x="304891082707" fg:w="55860093"/><text x="99.3906%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (55,860,093 samples, 0.02%)</title><rect x="99.1406%" y="1605" width="0.0182%" height="15" fill="rgb(237,217,21)" fg:x="304891082707" fg:w="55860093"/><text x="99.3906%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (55,860,093 samples, 0.02%)</title><rect x="99.1406%" y="1589" width="0.0182%" height="15" fill="rgb(212,1,21)" fg:x="304891082707" fg:w="55860093"/><text x="99.3906%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (55,860,093 samples, 0.02%)</title><rect x="99.1406%" y="1573" width="0.0182%" height="15" fill="rgb(213,7,14)" fg:x="304891082707" fg:w="55860093"/><text x="99.3906%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (55,860,093 samples, 0.02%)</title><rect x="99.1406%" y="1557" width="0.0182%" height="15" fill="rgb(225,84,14)" fg:x="304891082707" fg:w="55860093"/><text x="99.3906%" y="1567.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (55,860,093 samples, 0.02%)</title><rect x="99.1406%" y="1541" width="0.0182%" height="15" fill="rgb(239,216,39)" fg:x="304891082707" fg:w="55860093"/><text x="99.3906%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (49,484,488 samples, 0.02%)</title><rect x="99.1427%" y="1525" width="0.0161%" height="15" fill="rgb(253,29,23)" fg:x="304897458312" fg:w="49484488"/><text x="99.3927%" y="1535.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,484,488 samples, 0.02%)</title><rect x="99.1427%" y="1509" width="0.0161%" height="15" fill="rgb(220,167,50)" fg:x="304897458312" fg:w="49484488"/><text x="99.3927%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (49,484,488 samples, 0.02%)</title><rect x="99.1427%" y="1493" width="0.0161%" height="15" fill="rgb(232,141,1)" fg:x="304897458312" fg:w="49484488"/><text x="99.3927%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (49,484,488 samples, 0.02%)</title><rect x="99.1427%" y="1477" width="0.0161%" height="15" fill="rgb(222,210,1)" fg:x="304897458312" fg:w="49484488"/><text x="99.3927%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (49,484,488 samples, 0.02%)</title><rect x="99.1427%" y="1461" width="0.0161%" height="15" fill="rgb(219,84,10)" fg:x="304897458312" fg:w="49484488"/><text x="99.3927%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (49,484,488 samples, 0.02%)</title><rect x="99.1427%" y="1445" width="0.0161%" height="15" fill="rgb(245,188,6)" fg:x="304897458312" fg:w="49484488"/><text x="99.3927%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (49,484,488 samples, 0.02%)</title><rect x="99.1427%" y="1429" width="0.0161%" height="15" fill="rgb(252,139,39)" fg:x="304897458312" fg:w="49484488"/><text x="99.3927%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (49,484,488 samples, 0.02%)</title><rect x="99.1427%" y="1413" width="0.0161%" height="15" fill="rgb(218,42,26)" fg:x="304897458312" fg:w="49484488"/><text x="99.3927%" y="1423.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (49,484,488 samples, 0.02%)</title><rect x="99.1427%" y="1397" width="0.0161%" height="15" fill="rgb(237,226,51)" fg:x="304897458312" fg:w="49484488"/><text x="99.3927%" y="1407.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (34,126,671 samples, 0.01%)</title><rect x="99.1477%" y="1381" width="0.0111%" height="15" fill="rgb(246,15,17)" fg:x="304912816129" fg:w="34126671"/><text x="99.3977%" y="1391.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,126,671 samples, 0.01%)</title><rect x="99.1477%" y="1365" width="0.0111%" height="15" fill="rgb(228,170,42)" fg:x="304912816129" fg:w="34126671"/><text x="99.3977%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (34,126,671 samples, 0.01%)</title><rect x="99.1477%" y="1349" width="0.0111%" height="15" fill="rgb(248,118,53)" fg:x="304912816129" fg:w="34126671"/><text x="99.3977%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (34,126,671 samples, 0.01%)</title><rect x="99.1477%" y="1333" width="0.0111%" height="15" fill="rgb(207,30,10)" fg:x="304912816129" fg:w="34126671"/><text x="99.3977%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (34,126,671 samples, 0.01%)</title><rect x="99.1477%" y="1317" width="0.0111%" height="15" fill="rgb(217,104,38)" fg:x="304912816129" fg:w="34126671"/><text x="99.3977%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,126,671 samples, 0.01%)</title><rect x="99.1477%" y="1301" width="0.0111%" height="15" fill="rgb(211,165,26)" fg:x="304912816129" fg:w="34126671"/><text x="99.3977%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,126,671 samples, 0.01%)</title><rect x="99.1477%" y="1285" width="0.0111%" height="15" fill="rgb(247,38,9)" fg:x="304912816129" fg:w="34126671"/><text x="99.3977%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (34,126,671 samples, 0.01%)</title><rect x="99.1477%" y="1269" width="0.0111%" height="15" fill="rgb(218,187,8)" fg:x="304912816129" fg:w="34126671"/><text x="99.3977%" y="1279.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (34,126,671 samples, 0.01%)</title><rect x="99.1477%" y="1253" width="0.0111%" height="15" fill="rgb(247,94,28)" fg:x="304912816129" fg:w="34126671"/><text x="99.3977%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (71,854,694 samples, 0.02%)</title><rect x="99.1358%" y="1813" width="0.0234%" height="15" fill="rgb(218,173,30)" fg:x="304876260242" fg:w="71854694"/><text x="99.3858%" y="1823.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (71,854,694 samples, 0.02%)</title><rect x="99.1358%" y="1797" width="0.0234%" height="15" fill="rgb(245,45,36)" fg:x="304876260242" fg:w="71854694"/><text x="99.3858%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (71,854,694 samples, 0.02%)</title><rect x="99.1358%" y="1781" width="0.0234%" height="15" fill="rgb(221,172,44)" fg:x="304876260242" fg:w="71854694"/><text x="99.3858%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (71,854,694 samples, 0.02%)</title><rect x="99.1358%" y="1765" width="0.0234%" height="15" fill="rgb(222,45,12)" fg:x="304876260242" fg:w="71854694"/><text x="99.3858%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (71,854,694 samples, 0.02%)</title><rect x="99.1358%" y="1749" width="0.0234%" height="15" fill="rgb(250,10,22)" fg:x="304876260242" fg:w="71854694"/><text x="99.3858%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (71,854,694 samples, 0.02%)</title><rect x="99.1358%" y="1733" width="0.0234%" height="15" fill="rgb(239,27,0)" fg:x="304876260242" fg:w="71854694"/><text x="99.3858%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (71,854,694 samples, 0.02%)</title><rect x="99.1358%" y="1717" width="0.0234%" height="15" fill="rgb(223,118,22)" fg:x="304876260242" fg:w="71854694"/><text x="99.3858%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (71,854,694 samples, 0.02%)</title><rect x="99.1358%" y="1701" width="0.0234%" height="15" fill="rgb(251,81,25)" fg:x="304876260242" fg:w="71854694"/><text x="99.3858%" y="1711.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (71,854,694 samples, 0.02%)</title><rect x="99.1358%" y="1685" width="0.0234%" height="15" fill="rgb(237,225,53)" fg:x="304876260242" fg:w="71854694"/><text x="99.3858%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (86,829,017 samples, 0.03%)</title><rect x="99.1313%" y="1957" width="0.0282%" height="15" fill="rgb(237,186,51)" fg:x="304862410167" fg:w="86829017"/><text x="99.3813%" y="1967.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (86,829,017 samples, 0.03%)</title><rect x="99.1313%" y="1941" width="0.0282%" height="15" fill="rgb(247,209,11)" fg:x="304862410167" fg:w="86829017"/><text x="99.3813%" y="1951.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (86,829,017 samples, 0.03%)</title><rect x="99.1313%" y="1925" width="0.0282%" height="15" fill="rgb(223,109,27)" fg:x="304862410167" fg:w="86829017"/><text x="99.3813%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (86,829,017 samples, 0.03%)</title><rect x="99.1313%" y="1909" width="0.0282%" height="15" fill="rgb(246,181,13)" fg:x="304862410167" fg:w="86829017"/><text x="99.3813%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (86,829,017 samples, 0.03%)</title><rect x="99.1313%" y="1893" width="0.0282%" height="15" fill="rgb(234,57,44)" fg:x="304862410167" fg:w="86829017"/><text x="99.3813%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (86,829,017 samples, 0.03%)</title><rect x="99.1313%" y="1877" width="0.0282%" height="15" fill="rgb(211,227,50)" fg:x="304862410167" fg:w="86829017"/><text x="99.3813%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (86,829,017 samples, 0.03%)</title><rect x="99.1313%" y="1861" width="0.0282%" height="15" fill="rgb(254,57,34)" fg:x="304862410167" fg:w="86829017"/><text x="99.3813%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (86,829,017 samples, 0.03%)</title><rect x="99.1313%" y="1845" width="0.0282%" height="15" fill="rgb(227,212,26)" fg:x="304862410167" fg:w="86829017"/><text x="99.3813%" y="1855.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (86,829,017 samples, 0.03%)</title><rect x="99.1313%" y="1829" width="0.0282%" height="15" fill="rgb(244,169,44)" fg:x="304862410167" fg:w="86829017"/><text x="99.3813%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (101,153,344 samples, 0.03%)</title><rect x="99.1269%" y="2053" width="0.0329%" height="15" fill="rgb(236,135,50)" fg:x="304849000010" fg:w="101153344"/><text x="99.3769%" y="2063.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (101,153,344 samples, 0.03%)</title><rect x="99.1269%" y="2037" width="0.0329%" height="15" fill="rgb(241,89,30)" fg:x="304849000010" fg:w="101153344"/><text x="99.3769%" y="2047.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (101,153,344 samples, 0.03%)</title><rect x="99.1269%" y="2021" width="0.0329%" height="15" fill="rgb(206,113,34)" fg:x="304849000010" fg:w="101153344"/><text x="99.3769%" y="2031.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (101,153,344 samples, 0.03%)</title><rect x="99.1269%" y="2005" width="0.0329%" height="15" fill="rgb(218,104,52)" fg:x="304849000010" fg:w="101153344"/><text x="99.3769%" y="2015.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (101,153,344 samples, 0.03%)</title><rect x="99.1269%" y="1989" width="0.0329%" height="15" fill="rgb(223,82,32)" fg:x="304849000010" fg:w="101153344"/><text x="99.3769%" y="1999.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (101,153,344 samples, 0.03%)</title><rect x="99.1269%" y="1973" width="0.0329%" height="15" fill="rgb(249,219,30)" fg:x="304849000010" fg:w="101153344"/><text x="99.3769%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="2053" width="0.0191%" height="15" fill="rgb(233,141,21)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="2063.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="2037" width="0.0191%" height="15" fill="rgb(252,87,44)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="2047.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="2021" width="0.0191%" height="15" fill="rgb(229,48,33)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="2031.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="2005" width="0.0191%" height="15" fill="rgb(229,23,22)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="2015.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1989" width="0.0191%" height="15" fill="rgb(244,116,16)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1999.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1973" width="0.0191%" height="15" fill="rgb(247,45,10)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1957" width="0.0191%" height="15" fill="rgb(228,60,29)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1967.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1941" width="0.0191%" height="15" fill="rgb(205,129,15)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1951.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1925" width="0.0191%" height="15" fill="rgb(206,229,4)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1935.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1909" width="0.0191%" height="15" fill="rgb(249,191,30)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1919.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1893" width="0.0191%" height="15" fill="rgb(250,84,54)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1903.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1877" width="0.0191%" height="15" fill="rgb(207,25,53)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1861" width="0.0191%" height="15" fill="rgb(235,40,8)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1845" width="0.0191%" height="15" fill="rgb(226,169,33)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1829" width="0.0191%" height="15" fill="rgb(238,110,8)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1839.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1813" width="0.0191%" height="15" fill="rgb(251,206,12)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1823.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1797" width="0.0191%" height="15" fill="rgb(248,171,18)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1781" width="0.0191%" height="15" fill="rgb(213,65,46)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1791.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1765" width="0.0191%" height="15" fill="rgb(211,154,15)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1749" width="0.0191%" height="15" fill="rgb(217,75,43)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1733" width="0.0191%" height="15" fill="rgb(230,32,33)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1717" width="0.0191%" height="15" fill="rgb(221,100,16)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1727.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1701" width="0.0191%" height="15" fill="rgb(212,129,47)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1711.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1685" width="0.0191%" height="15" fill="rgb(239,217,47)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1669" width="0.0191%" height="15" fill="rgb(230,84,24)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1679.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1653" width="0.0191%" height="15" fill="rgb(214,153,51)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1637" width="0.0191%" height="15" fill="rgb(231,6,35)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1621" width="0.0191%" height="15" fill="rgb(229,122,30)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1605" width="0.0191%" height="15" fill="rgb(234,71,10)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1589" width="0.0191%" height="15" fill="rgb(215,173,26)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1599.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (58,800,782 samples, 0.02%)</title><rect x="99.1598%" y="1573" width="0.0191%" height="15" fill="rgb(248,118,52)" fg:x="304950153354" fg:w="58800782"/><text x="99.4098%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (54,297,502 samples, 0.02%)</title><rect x="99.1613%" y="1557" width="0.0177%" height="15" fill="rgb(237,55,46)" fg:x="304954656634" fg:w="54297502"/><text x="99.4113%" y="1567.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (54,297,502 samples, 0.02%)</title><rect x="99.1613%" y="1541" width="0.0177%" height="15" fill="rgb(243,214,43)" fg:x="304954656634" fg:w="54297502"/><text x="99.4113%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (54,297,502 samples, 0.02%)</title><rect x="99.1613%" y="1525" width="0.0177%" height="15" fill="rgb(252,123,30)" fg:x="304954656634" fg:w="54297502"/><text x="99.4113%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (54,297,502 samples, 0.02%)</title><rect x="99.1613%" y="1509" width="0.0177%" height="15" fill="rgb(215,73,39)" fg:x="304954656634" fg:w="54297502"/><text x="99.4113%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (54,297,502 samples, 0.02%)</title><rect x="99.1613%" y="1493" width="0.0177%" height="15" fill="rgb(251,194,29)" fg:x="304954656634" fg:w="54297502"/><text x="99.4113%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (54,297,502 samples, 0.02%)</title><rect x="99.1613%" y="1477" width="0.0177%" height="15" fill="rgb(224,58,52)" fg:x="304954656634" fg:w="54297502"/><text x="99.4113%" y="1487.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (54,297,502 samples, 0.02%)</title><rect x="99.1613%" y="1461" width="0.0177%" height="15" fill="rgb(248,106,46)" fg:x="304954656634" fg:w="54297502"/><text x="99.4113%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (41,197,130 samples, 0.01%)</title><rect x="99.1655%" y="1445" width="0.0134%" height="15" fill="rgb(223,80,29)" fg:x="304967757006" fg:w="41197130"/><text x="99.4155%" y="1455.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (41,197,130 samples, 0.01%)</title><rect x="99.1655%" y="1429" width="0.0134%" height="15" fill="rgb(243,137,9)" fg:x="304967757006" fg:w="41197130"/><text x="99.4155%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (41,197,130 samples, 0.01%)</title><rect x="99.1655%" y="1413" width="0.0134%" height="15" fill="rgb(235,121,28)" fg:x="304967757006" fg:w="41197130"/><text x="99.4155%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (41,197,130 samples, 0.01%)</title><rect x="99.1655%" y="1397" width="0.0134%" height="15" fill="rgb(219,121,41)" fg:x="304967757006" fg:w="41197130"/><text x="99.4155%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (41,197,130 samples, 0.01%)</title><rect x="99.1655%" y="1381" width="0.0134%" height="15" fill="rgb(251,60,6)" fg:x="304967757006" fg:w="41197130"/><text x="99.4155%" y="1391.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (41,197,130 samples, 0.01%)</title><rect x="99.1655%" y="1365" width="0.0134%" height="15" fill="rgb(208,12,30)" fg:x="304967757006" fg:w="41197130"/><text x="99.4155%" y="1375.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (41,197,130 samples, 0.01%)</title><rect x="99.1655%" y="1349" width="0.0134%" height="15" fill="rgb(207,176,36)" fg:x="304967757006" fg:w="41197130"/><text x="99.4155%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (50,554,255 samples, 0.02%)</title><rect x="99.1865%" y="213" width="0.0164%" height="15" fill="rgb(211,188,29)" fg:x="305032121123" fg:w="50554255"/><text x="99.4365%" y="223.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (50,554,255 samples, 0.02%)</title><rect x="99.1865%" y="197" width="0.0164%" height="15" fill="rgb(220,184,37)" fg:x="305032121123" fg:w="50554255"/><text x="99.4365%" y="207.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (50,554,255 samples, 0.02%)</title><rect x="99.1865%" y="181" width="0.0164%" height="15" fill="rgb(239,87,37)" fg:x="305032121123" fg:w="50554255"/><text x="99.4365%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (50,554,255 samples, 0.02%)</title><rect x="99.1865%" y="165" width="0.0164%" height="15" fill="rgb(232,113,44)" fg:x="305032121123" fg:w="50554255"/><text x="99.4365%" y="175.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (50,554,255 samples, 0.02%)</title><rect x="99.1865%" y="149" width="0.0164%" height="15" fill="rgb(246,25,39)" fg:x="305032121123" fg:w="50554255"/><text x="99.4365%" y="159.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (50,554,255 samples, 0.02%)</title><rect x="99.1865%" y="133" width="0.0164%" height="15" fill="rgb(247,30,13)" fg:x="305032121123" fg:w="50554255"/><text x="99.4365%" y="143.50"></text></g><g><title>&lt;ui::components::keybinding::KeyBinding as gpui::element::RenderOnce&gt;::render (50,554,255 samples, 0.02%)</title><rect x="99.1865%" y="117" width="0.0164%" height="15" fill="rgb(230,176,35)" fg:x="305032121123" fg:w="50554255"/><text x="99.4365%" y="127.50"></text></g><g><title>gpui::window::Window::highest_precedence_binding_for_action_in (49,672,667 samples, 0.02%)</title><rect x="99.1868%" y="101" width="0.0162%" height="15" fill="rgb(222,23,18)" fg:x="305033002711" fg:w="49672667"/><text x="99.4368%" y="111.50"></text></g><g><title>gpui::key_dispatch::DispatchTree::highest_precedence_binding_for_action (49,672,667 samples, 0.02%)</title><rect x="99.1868%" y="85" width="0.0162%" height="15" fill="rgb(234,86,8)" fg:x="305033002711" fg:w="49672667"/><text x="99.4368%" y="95.50"></text></g><g><title>gpui::key_dispatch::DispatchTree::binding_matches_predicate_and_not_shadowed (49,672,667 samples, 0.02%)</title><rect x="99.1868%" y="69" width="0.0162%" height="15" fill="rgb(206,218,47)" fg:x="305033002711" fg:w="49672667"/><text x="99.4368%" y="79.50"></text></g><g><title>gpui::keymap::context::KeyBindingContextPredicate::eval_inner (48,543,097 samples, 0.02%)</title><rect x="99.1871%" y="53" width="0.0158%" height="15" fill="rgb(229,35,31)" fg:x="305034132281" fg:w="48543097"/><text x="99.4371%" y="63.50"></text></g><g><title>gpui::keymap::context::KeyBindingContextPredicate::eval_inner (31,849,104 samples, 0.01%)</title><rect x="99.1926%" y="37" width="0.0104%" height="15" fill="rgb(242,81,7)" fg:x="305050826274" fg:w="31849104"/><text x="99.4426%" y="47.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="677" width="0.0168%" height="15" fill="rgb(231,11,35)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="687.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="661" width="0.0168%" height="15" fill="rgb(219,218,17)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="645" width="0.0168%" height="15" fill="rgb(221,83,32)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="655.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="629" width="0.0168%" height="15" fill="rgb(233,49,54)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="613" width="0.0168%" height="15" fill="rgb(206,18,51)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="597" width="0.0168%" height="15" fill="rgb(249,193,15)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="581" width="0.0168%" height="15" fill="rgb(245,186,19)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="591.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="565" width="0.0168%" height="15" fill="rgb(230,4,24)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="575.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="549" width="0.0168%" height="15" fill="rgb(234,75,27)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="559.50"></text></g><g><title>gpui::window::Window::with_optional_element_state::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="533" width="0.0168%" height="15" fill="rgb(244,187,35)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="543.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="517" width="0.0168%" height="15" fill="rgb(241,97,43)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="501" width="0.0168%" height="15" fill="rgb(236,94,2)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="511.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="485" width="0.0168%" height="15" fill="rgb(231,175,7)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="469" width="0.0168%" height="15" fill="rgb(236,89,47)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="453" width="0.0168%" height="15" fill="rgb(213,191,37)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="437" width="0.0168%" height="15" fill="rgb(252,0,34)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="447.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="421" width="0.0168%" height="15" fill="rgb(208,145,44)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="405" width="0.0168%" height="15" fill="rgb(227,95,50)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="415.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="389" width="0.0168%" height="15" fill="rgb(222,136,24)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="373" width="0.0168%" height="15" fill="rgb(218,105,10)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="357" width="0.0168%" height="15" fill="rgb(216,65,28)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="341" width="0.0168%" height="15" fill="rgb(229,6,28)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="351.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="325" width="0.0168%" height="15" fill="rgb(222,160,42)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="335.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="309" width="0.0168%" height="15" fill="rgb(235,83,49)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="319.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="293" width="0.0168%" height="15" fill="rgb(236,86,36)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="277" width="0.0168%" height="15" fill="rgb(236,19,41)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="261" width="0.0168%" height="15" fill="rgb(217,71,31)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="245" width="0.0168%" height="15" fill="rgb(236,209,25)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="255.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (51,711,626 samples, 0.02%)</title><rect x="99.1865%" y="229" width="0.0168%" height="15" fill="rgb(247,104,21)" fg:x="305032121123" fg:w="51711626"/><text x="99.4365%" y="239.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1317" width="0.0198%" height="15" fill="rgb(243,80,38)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1327.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1301" width="0.0198%" height="15" fill="rgb(232,109,38)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1285" width="0.0198%" height="15" fill="rgb(212,177,53)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1295.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1269" width="0.0198%" height="15" fill="rgb(227,30,34)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1253" width="0.0198%" height="15" fill="rgb(205,175,25)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1237" width="0.0198%" height="15" fill="rgb(249,39,54)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1221" width="0.0198%" height="15" fill="rgb(215,54,37)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1205" width="0.0198%" height="15" fill="rgb(205,60,46)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1215.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1189" width="0.0198%" height="15" fill="rgb(238,89,29)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1199.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1173" width="0.0198%" height="15" fill="rgb(212,48,10)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1183.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (60,922,880 samples, 0.02%)</title><rect x="99.1838%" y="1157" width="0.0198%" height="15" fill="rgb(237,186,28)" fg:x="305023965239" fg:w="60922880"/><text x="99.4338%" y="1167.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="1141" width="0.0194%" height="15" fill="rgb(237,204,4)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="1125" width="0.0194%" height="15" fill="rgb(237,15,47)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1135.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="1109" width="0.0194%" height="15" fill="rgb(244,110,25)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="1093" width="0.0194%" height="15" fill="rgb(241,12,16)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="1077" width="0.0194%" height="15" fill="rgb(235,25,9)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="1061" width="0.0194%" height="15" fill="rgb(245,159,19)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1071.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="1045" width="0.0194%" height="15" fill="rgb(236,63,32)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1055.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="1029" width="0.0194%" height="15" fill="rgb(235,32,52)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="1013" width="0.0194%" height="15" fill="rgb(209,176,21)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1023.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="997" width="0.0194%" height="15" fill="rgb(205,90,42)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="981" width="0.0194%" height="15" fill="rgb(213,132,16)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="965" width="0.0194%" height="15" fill="rgb(232,11,22)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="949" width="0.0194%" height="15" fill="rgb(248,167,41)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="933" width="0.0194%" height="15" fill="rgb(209,127,6)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="943.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="917" width="0.0194%" height="15" fill="rgb(246,210,34)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="927.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="901" width="0.0194%" height="15" fill="rgb(238,165,13)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="911.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="885" width="0.0194%" height="15" fill="rgb(233,98,15)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="895.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="869" width="0.0194%" height="15" fill="rgb(215,215,51)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="879.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="853" width="0.0194%" height="15" fill="rgb(217,161,25)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="837" width="0.0194%" height="15" fill="rgb(217,167,48)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="821" width="0.0194%" height="15" fill="rgb(205,163,34)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="805" width="0.0194%" height="15" fill="rgb(241,197,31)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="815.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="789" width="0.0194%" height="15" fill="rgb(225,123,11)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="799.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="773" width="0.0194%" height="15" fill="rgb(217,4,20)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="783.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="757" width="0.0194%" height="15" fill="rgb(215,55,9)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="767.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="741" width="0.0194%" height="15" fill="rgb(218,165,5)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="751.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="725" width="0.0194%" height="15" fill="rgb(222,175,15)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="735.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (59,761,520 samples, 0.02%)</title><rect x="99.1842%" y="709" width="0.0194%" height="15" fill="rgb(223,85,34)" fg:x="305025126599" fg:w="59761520"/><text x="99.4342%" y="719.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (52,766,996 samples, 0.02%)</title><rect x="99.1865%" y="693" width="0.0172%" height="15" fill="rgb(234,228,29)" fg:x="305032121123" fg:w="52766996"/><text x="99.4365%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="2053" width="0.0310%" height="15" fill="rgb(239,7,28)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="2063.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="2037" width="0.0310%" height="15" fill="rgb(252,222,53)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="2047.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="2021" width="0.0310%" height="15" fill="rgb(232,146,44)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="2031.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="2005" width="0.0310%" height="15" fill="rgb(243,223,53)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="2015.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1989" width="0.0310%" height="15" fill="rgb(219,128,25)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1999.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1973" width="0.0310%" height="15" fill="rgb(223,56,32)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1957" width="0.0310%" height="15" fill="rgb(237,41,3)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1967.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1941" width="0.0310%" height="15" fill="rgb(235,138,9)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1925" width="0.0310%" height="15" fill="rgb(214,131,10)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1935.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1909" width="0.0310%" height="15" fill="rgb(229,89,7)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1919.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1893" width="0.0310%" height="15" fill="rgb(240,24,42)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1903.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1877" width="0.0310%" height="15" fill="rgb(243,188,54)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1887.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1861" width="0.0310%" height="15" fill="rgb(246,92,22)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1845" width="0.0310%" height="15" fill="rgb(211,176,51)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1829" width="0.0310%" height="15" fill="rgb(246,207,34)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1813" width="0.0310%" height="15" fill="rgb(239,95,2)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1823.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1797" width="0.0310%" height="15" fill="rgb(211,124,25)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1807.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1781" width="0.0310%" height="15" fill="rgb(231,221,19)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1765" width="0.0310%" height="15" fill="rgb(239,183,19)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1775.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1749" width="0.0310%" height="15" fill="rgb(221,130,29)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1733" width="0.0310%" height="15" fill="rgb(206,130,36)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1717" width="0.0310%" height="15" fill="rgb(215,70,19)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1701" width="0.0310%" height="15" fill="rgb(244,16,43)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1685" width="0.0310%" height="15" fill="rgb(222,115,32)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1695.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,364,986 samples, 0.03%)</title><rect x="99.1789%" y="1669" width="0.0310%" height="15" fill="rgb(247,48,25)" fg:x="305008954136" fg:w="95364986"/><text x="99.4289%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (93,069,731 samples, 0.03%)</title><rect x="99.1797%" y="1653" width="0.0303%" height="15" fill="rgb(226,180,51)" fg:x="305011249391" fg:w="93069731"/><text x="99.4297%" y="1663.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (93,069,731 samples, 0.03%)</title><rect x="99.1797%" y="1637" width="0.0303%" height="15" fill="rgb(217,142,42)" fg:x="305011249391" fg:w="93069731"/><text x="99.4297%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (93,069,731 samples, 0.03%)</title><rect x="99.1797%" y="1621" width="0.0303%" height="15" fill="rgb(220,178,3)" fg:x="305011249391" fg:w="93069731"/><text x="99.4297%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (93,069,731 samples, 0.03%)</title><rect x="99.1797%" y="1605" width="0.0303%" height="15" fill="rgb(217,221,4)" fg:x="305011249391" fg:w="93069731"/><text x="99.4297%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,069,731 samples, 0.03%)</title><rect x="99.1797%" y="1589" width="0.0303%" height="15" fill="rgb(237,63,43)" fg:x="305011249391" fg:w="93069731"/><text x="99.4297%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,069,731 samples, 0.03%)</title><rect x="99.1797%" y="1573" width="0.0303%" height="15" fill="rgb(220,57,8)" fg:x="305011249391" fg:w="93069731"/><text x="99.4297%" y="1583.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (93,069,731 samples, 0.03%)</title><rect x="99.1797%" y="1557" width="0.0303%" height="15" fill="rgb(254,186,27)" fg:x="305011249391" fg:w="93069731"/><text x="99.4297%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (87,350,546 samples, 0.03%)</title><rect x="99.1815%" y="1541" width="0.0284%" height="15" fill="rgb(251,57,28)" fg:x="305016968576" fg:w="87350546"/><text x="99.4315%" y="1551.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (87,350,546 samples, 0.03%)</title><rect x="99.1815%" y="1525" width="0.0284%" height="15" fill="rgb(215,228,0)" fg:x="305016968576" fg:w="87350546"/><text x="99.4315%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (87,350,546 samples, 0.03%)</title><rect x="99.1815%" y="1509" width="0.0284%" height="15" fill="rgb(237,218,39)" fg:x="305016968576" fg:w="87350546"/><text x="99.4315%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (87,350,546 samples, 0.03%)</title><rect x="99.1815%" y="1493" width="0.0284%" height="15" fill="rgb(207,2,54)" fg:x="305016968576" fg:w="87350546"/><text x="99.4315%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,350,546 samples, 0.03%)</title><rect x="99.1815%" y="1477" width="0.0284%" height="15" fill="rgb(232,76,50)" fg:x="305016968576" fg:w="87350546"/><text x="99.4315%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (87,350,546 samples, 0.03%)</title><rect x="99.1815%" y="1461" width="0.0284%" height="15" fill="rgb(211,85,31)" fg:x="305016968576" fg:w="87350546"/><text x="99.4315%" y="1471.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (87,350,546 samples, 0.03%)</title><rect x="99.1815%" y="1445" width="0.0284%" height="15" fill="rgb(223,210,27)" fg:x="305016968576" fg:w="87350546"/><text x="99.4315%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (80,353,883 samples, 0.03%)</title><rect x="99.1838%" y="1429" width="0.0261%" height="15" fill="rgb(254,36,8)" fg:x="305023965239" fg:w="80353883"/><text x="99.4338%" y="1439.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (80,353,883 samples, 0.03%)</title><rect x="99.1838%" y="1413" width="0.0261%" height="15" fill="rgb(213,4,25)" fg:x="305023965239" fg:w="80353883"/><text x="99.4338%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (80,353,883 samples, 0.03%)</title><rect x="99.1838%" y="1397" width="0.0261%" height="15" fill="rgb(224,2,39)" fg:x="305023965239" fg:w="80353883"/><text x="99.4338%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (80,353,883 samples, 0.03%)</title><rect x="99.1838%" y="1381" width="0.0261%" height="15" fill="rgb(208,8,39)" fg:x="305023965239" fg:w="80353883"/><text x="99.4338%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (80,353,883 samples, 0.03%)</title><rect x="99.1838%" y="1365" width="0.0261%" height="15" fill="rgb(216,226,3)" fg:x="305023965239" fg:w="80353883"/><text x="99.4338%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (80,353,883 samples, 0.03%)</title><rect x="99.1838%" y="1349" width="0.0261%" height="15" fill="rgb(249,139,31)" fg:x="305023965239" fg:w="80353883"/><text x="99.4338%" y="1359.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (80,353,883 samples, 0.03%)</title><rect x="99.1838%" y="1333" width="0.0261%" height="15" fill="rgb(242,170,35)" fg:x="305023965239" fg:w="80353883"/><text x="99.4338%" y="1343.50"></text></g><g><title>gpui::keymap::context::KeyBindingContextPredicate::eval_inner (69,543,204 samples, 0.02%)</title><rect x="99.2296%" y="37" width="0.0226%" height="15" fill="rgb(238,14,9)" fg:x="305164818272" fg:w="69543204"/><text x="99.4796%" y="47.50"></text></g><g><title>&lt;ui::components::keybinding::KeyBinding as gpui::element::RenderOnce&gt;::render (86,813,553 samples, 0.03%)</title><rect x="99.2244%" y="101" width="0.0282%" height="15" fill="rgb(251,81,46)" fg:x="305148645190" fg:w="86813553"/><text x="99.4744%" y="111.50"></text></g><g><title>gpui::window::Window::highest_precedence_binding_for_action_in (85,714,671 samples, 0.03%)</title><rect x="99.2247%" y="85" width="0.0279%" height="15" fill="rgb(230,23,4)" fg:x="305149744072" fg:w="85714671"/><text x="99.4747%" y="95.50"></text></g><g><title>gpui::key_dispatch::DispatchTree::highest_precedence_binding_for_action (85,714,671 samples, 0.03%)</title><rect x="99.2247%" y="69" width="0.0279%" height="15" fill="rgb(211,85,25)" fg:x="305149744072" fg:w="85714671"/><text x="99.4747%" y="79.50"></text></g><g><title>gpui::key_dispatch::DispatchTree::binding_matches_predicate_and_not_shadowed (85,714,671 samples, 0.03%)</title><rect x="99.2247%" y="53" width="0.0279%" height="15" fill="rgb(252,23,31)" fg:x="305149744072" fg:w="85714671"/><text x="99.4747%" y="63.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (89,242,542 samples, 0.03%)</title><rect x="99.2240%" y="197" width="0.0290%" height="15" fill="rgb(234,163,38)" fg:x="305147406483" fg:w="89242542"/><text x="99.4740%" y="207.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (89,242,542 samples, 0.03%)</title><rect x="99.2240%" y="181" width="0.0290%" height="15" fill="rgb(210,190,50)" fg:x="305147406483" fg:w="89242542"/><text x="99.4740%" y="191.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (89,242,542 samples, 0.03%)</title><rect x="99.2240%" y="165" width="0.0290%" height="15" fill="rgb(228,158,3)" fg:x="305147406483" fg:w="89242542"/><text x="99.4740%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (89,242,542 samples, 0.03%)</title><rect x="99.2240%" y="149" width="0.0290%" height="15" fill="rgb(216,130,0)" fg:x="305147406483" fg:w="89242542"/><text x="99.4740%" y="159.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (89,242,542 samples, 0.03%)</title><rect x="99.2240%" y="133" width="0.0290%" height="15" fill="rgb(224,184,10)" fg:x="305147406483" fg:w="89242542"/><text x="99.4740%" y="143.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (89,242,542 samples, 0.03%)</title><rect x="99.2240%" y="117" width="0.0290%" height="15" fill="rgb(214,202,18)" fg:x="305147406483" fg:w="89242542"/><text x="99.4740%" y="127.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="661" width="0.0294%" height="15" fill="rgb(213,229,54)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="671.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="645" width="0.0294%" height="15" fill="rgb(246,120,0)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="655.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="629" width="0.0294%" height="15" fill="rgb(237,6,15)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="639.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="613" width="0.0294%" height="15" fill="rgb(252,156,15)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="597" width="0.0294%" height="15" fill="rgb(249,78,18)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="581" width="0.0294%" height="15" fill="rgb(230,223,44)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="565" width="0.0294%" height="15" fill="rgb(230,222,32)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="575.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="549" width="0.0294%" height="15" fill="rgb(247,54,6)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="559.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="533" width="0.0294%" height="15" fill="rgb(247,115,45)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="543.50"></text></g><g><title>gpui::window::Window::with_optional_element_state::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="517" width="0.0294%" height="15" fill="rgb(213,203,37)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="527.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="501" width="0.0294%" height="15" fill="rgb(248,188,18)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="485" width="0.0294%" height="15" fill="rgb(206,80,8)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="495.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="469" width="0.0294%" height="15" fill="rgb(245,217,31)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="453" width="0.0294%" height="15" fill="rgb(220,193,15)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="437" width="0.0294%" height="15" fill="rgb(226,7,19)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="421" width="0.0294%" height="15" fill="rgb(222,145,31)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="431.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="405" width="0.0294%" height="15" fill="rgb(241,193,36)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="389" width="0.0294%" height="15" fill="rgb(225,123,33)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="399.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="373" width="0.0294%" height="15" fill="rgb(246,136,38)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="357" width="0.0294%" height="15" fill="rgb(243,56,24)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="341" width="0.0294%" height="15" fill="rgb(215,147,2)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="351.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="325" width="0.0294%" height="15" fill="rgb(209,155,27)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="335.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="309" width="0.0294%" height="15" fill="rgb(222,177,11)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="319.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="293" width="0.0294%" height="15" fill="rgb(212,227,15)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="303.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="277" width="0.0294%" height="15" fill="rgb(214,138,20)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="287.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="261" width="0.0294%" height="15" fill="rgb(221,170,31)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="271.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="245" width="0.0294%" height="15" fill="rgb(253,207,5)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="229" width="0.0294%" height="15" fill="rgb(212,64,37)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="239.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (90,343,979 samples, 0.03%)</title><rect x="99.2240%" y="213" width="0.0294%" height="15" fill="rgb(208,113,51)" fg:x="305147406483" fg:w="90343979"/><text x="99.4740%" y="223.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1301" width="0.0354%" height="15" fill="rgb(237,15,5)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1311.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1285" width="0.0354%" height="15" fill="rgb(238,33,18)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1269" width="0.0354%" height="15" fill="rgb(253,206,50)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1279.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1253" width="0.0354%" height="15" fill="rgb(242,158,43)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1237" width="0.0354%" height="15" fill="rgb(213,125,27)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1221" width="0.0354%" height="15" fill="rgb(233,161,31)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1205" width="0.0354%" height="15" fill="rgb(218,135,6)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1189" width="0.0354%" height="15" fill="rgb(222,73,53)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1199.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1173" width="0.0354%" height="15" fill="rgb(229,66,53)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1183.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1157" width="0.0354%" height="15" fill="rgb(208,128,19)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1167.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (108,977,579 samples, 0.04%)</title><rect x="99.2186%" y="1141" width="0.0354%" height="15" fill="rgb(235,70,27)" fg:x="305131045442" fg:w="108977579"/><text x="99.4686%" y="1151.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="1125" width="0.0323%" height="15" fill="rgb(241,130,30)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="1135.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="1109" width="0.0323%" height="15" fill="rgb(222,57,48)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="1119.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="1093" width="0.0323%" height="15" fill="rgb(225,204,29)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="1077" width="0.0323%" height="15" fill="rgb(240,196,35)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="1061" width="0.0323%" height="15" fill="rgb(215,150,16)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="1045" width="0.0323%" height="15" fill="rgb(209,170,13)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="1029" width="0.0323%" height="15" fill="rgb(235,75,31)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="1039.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="1013" width="0.0323%" height="15" fill="rgb(252,1,47)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="997" width="0.0323%" height="15" fill="rgb(241,2,36)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="1007.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="981" width="0.0323%" height="15" fill="rgb(236,191,4)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="965" width="0.0323%" height="15" fill="rgb(212,65,35)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="949" width="0.0323%" height="15" fill="rgb(209,49,33)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="933" width="0.0323%" height="15" fill="rgb(208,36,46)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="917" width="0.0323%" height="15" fill="rgb(210,125,2)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="927.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="901" width="0.0323%" height="15" fill="rgb(225,62,6)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="911.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="885" width="0.0323%" height="15" fill="rgb(210,54,27)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="895.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="869" width="0.0323%" height="15" fill="rgb(249,189,52)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="879.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="853" width="0.0323%" height="15" fill="rgb(225,134,40)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="863.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="837" width="0.0323%" height="15" fill="rgb(206,13,37)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="821" width="0.0323%" height="15" fill="rgb(232,114,28)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="805" width="0.0323%" height="15" fill="rgb(253,215,8)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="789" width="0.0323%" height="15" fill="rgb(254,64,19)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="773" width="0.0323%" height="15" fill="rgb(242,18,46)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="783.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="757" width="0.0323%" height="15" fill="rgb(239,192,30)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="741" width="0.0323%" height="15" fill="rgb(232,73,14)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="751.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="725" width="0.0323%" height="15" fill="rgb(225,51,9)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="735.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="709" width="0.0323%" height="15" fill="rgb(242,217,54)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="719.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (99,270,650 samples, 0.03%)</title><rect x="99.2218%" y="693" width="0.0323%" height="15" fill="rgb(216,93,3)" fg:x="305140752371" fg:w="99270650"/><text x="99.4718%" y="703.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (92,616,538 samples, 0.03%)</title><rect x="99.2240%" y="677" width="0.0301%" height="15" fill="rgb(230,119,33)" fg:x="305147406483" fg:w="92616538"/><text x="99.4740%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="2053" width="0.0554%" height="15" fill="rgb(238,170,27)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="2063.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="2037" width="0.0554%" height="15" fill="rgb(229,8,2)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="2047.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="2021" width="0.0554%" height="15" fill="rgb(205,214,42)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="2031.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="2005" width="0.0554%" height="15" fill="rgb(245,113,1)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="2015.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1989" width="0.0554%" height="15" fill="rgb(252,50,2)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1999.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1973" width="0.0554%" height="15" fill="rgb(225,122,24)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1983.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1957" width="0.0554%" height="15" fill="rgb(234,129,31)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1967.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1941" width="0.0554%" height="15" fill="rgb(219,177,4)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1925" width="0.0554%" height="15" fill="rgb(225,142,27)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1909" width="0.0554%" height="15" fill="rgb(205,107,51)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1919.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1893" width="0.0554%" height="15" fill="rgb(236,223,15)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1903.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1877" width="0.0554%" height="15" fill="rgb(235,133,11)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1887.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1861" width="0.0554%" height="15" fill="rgb(247,172,13)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1871.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1845" width="0.0554%" height="15" fill="rgb(233,191,41)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1829" width="0.0554%" height="15" fill="rgb(250,65,16)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1813" width="0.0554%" height="15" fill="rgb(206,10,27)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1797" width="0.0554%" height="15" fill="rgb(212,96,22)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1781" width="0.0554%" height="15" fill="rgb(206,50,0)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1791.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1765" width="0.0554%" height="15" fill="rgb(249,105,52)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1749" width="0.0554%" height="15" fill="rgb(216,93,51)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1759.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1733" width="0.0554%" height="15" fill="rgb(217,172,13)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1717" width="0.0554%" height="15" fill="rgb(235,199,38)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1701" width="0.0554%" height="15" fill="rgb(221,97,33)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1685" width="0.0554%" height="15" fill="rgb(205,156,50)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1669" width="0.0554%" height="15" fill="rgb(215,142,19)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1679.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (170,242,123 samples, 0.06%)</title><rect x="99.2099%" y="1653" width="0.0554%" height="15" fill="rgb(232,170,7)" fg:x="305104319122" fg:w="170242123"/><text x="99.4599%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (168,111,645 samples, 0.05%)</title><rect x="99.2106%" y="1637" width="0.0547%" height="15" fill="rgb(223,50,17)" fg:x="305106449600" fg:w="168111645"/><text x="99.4606%" y="1647.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,111,645 samples, 0.05%)</title><rect x="99.2106%" y="1621" width="0.0547%" height="15" fill="rgb(230,103,46)" fg:x="305106449600" fg:w="168111645"/><text x="99.4606%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (168,111,645 samples, 0.05%)</title><rect x="99.2106%" y="1605" width="0.0547%" height="15" fill="rgb(254,30,34)" fg:x="305106449600" fg:w="168111645"/><text x="99.4606%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (168,111,645 samples, 0.05%)</title><rect x="99.2106%" y="1589" width="0.0547%" height="15" fill="rgb(235,198,1)" fg:x="305106449600" fg:w="168111645"/><text x="99.4606%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (168,111,645 samples, 0.05%)</title><rect x="99.2106%" y="1573" width="0.0547%" height="15" fill="rgb(217,105,47)" fg:x="305106449600" fg:w="168111645"/><text x="99.4606%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (168,111,645 samples, 0.05%)</title><rect x="99.2106%" y="1557" width="0.0547%" height="15" fill="rgb(231,18,12)" fg:x="305106449600" fg:w="168111645"/><text x="99.4606%" y="1567.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (168,111,645 samples, 0.05%)</title><rect x="99.2106%" y="1541" width="0.0547%" height="15" fill="rgb(218,196,1)" fg:x="305106449600" fg:w="168111645"/><text x="99.4606%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (161,168,608 samples, 0.05%)</title><rect x="99.2129%" y="1525" width="0.0524%" height="15" fill="rgb(210,32,3)" fg:x="305113392637" fg:w="161168608"/><text x="99.4629%" y="1535.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (161,168,608 samples, 0.05%)</title><rect x="99.2129%" y="1509" width="0.0524%" height="15" fill="rgb(227,178,30)" fg:x="305113392637" fg:w="161168608"/><text x="99.4629%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (161,168,608 samples, 0.05%)</title><rect x="99.2129%" y="1493" width="0.0524%" height="15" fill="rgb(231,140,27)" fg:x="305113392637" fg:w="161168608"/><text x="99.4629%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (161,168,608 samples, 0.05%)</title><rect x="99.2129%" y="1477" width="0.0524%" height="15" fill="rgb(206,66,35)" fg:x="305113392637" fg:w="161168608"/><text x="99.4629%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (161,168,608 samples, 0.05%)</title><rect x="99.2129%" y="1461" width="0.0524%" height="15" fill="rgb(212,34,2)" fg:x="305113392637" fg:w="161168608"/><text x="99.4629%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (161,168,608 samples, 0.05%)</title><rect x="99.2129%" y="1445" width="0.0524%" height="15" fill="rgb(207,201,33)" fg:x="305113392637" fg:w="161168608"/><text x="99.4629%" y="1455.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (161,168,608 samples, 0.05%)</title><rect x="99.2129%" y="1429" width="0.0524%" height="15" fill="rgb(221,135,32)" fg:x="305113392637" fg:w="161168608"/><text x="99.4629%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (143,515,803 samples, 0.05%)</title><rect x="99.2186%" y="1413" width="0.0467%" height="15" fill="rgb(206,77,31)" fg:x="305131045442" fg:w="143515803"/><text x="99.4686%" y="1423.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (143,515,803 samples, 0.05%)</title><rect x="99.2186%" y="1397" width="0.0467%" height="15" fill="rgb(252,198,50)" fg:x="305131045442" fg:w="143515803"/><text x="99.4686%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (143,515,803 samples, 0.05%)</title><rect x="99.2186%" y="1381" width="0.0467%" height="15" fill="rgb(206,79,27)" fg:x="305131045442" fg:w="143515803"/><text x="99.4686%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (143,515,803 samples, 0.05%)</title><rect x="99.2186%" y="1365" width="0.0467%" height="15" fill="rgb(228,108,9)" fg:x="305131045442" fg:w="143515803"/><text x="99.4686%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (143,515,803 samples, 0.05%)</title><rect x="99.2186%" y="1349" width="0.0467%" height="15" fill="rgb(213,9,39)" fg:x="305131045442" fg:w="143515803"/><text x="99.4686%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (143,515,803 samples, 0.05%)</title><rect x="99.2186%" y="1333" width="0.0467%" height="15" fill="rgb(252,51,13)" fg:x="305131045442" fg:w="143515803"/><text x="99.4686%" y="1343.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (143,515,803 samples, 0.05%)</title><rect x="99.2186%" y="1317" width="0.0467%" height="15" fill="rgb(218,202,39)" fg:x="305131045442" fg:w="143515803"/><text x="99.4686%" y="1327.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (57,464,724 samples, 0.02%)</title><rect x="99.2653%" y="2053" width="0.0187%" height="15" fill="rgb(214,122,21)" fg:x="305274561245" fg:w="57464724"/><text x="99.5153%" y="2063.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (57,464,724 samples, 0.02%)</title><rect x="99.2653%" y="2037" width="0.0187%" height="15" fill="rgb(217,205,48)" fg:x="305274561245" fg:w="57464724"/><text x="99.5153%" y="2047.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (57,464,724 samples, 0.02%)</title><rect x="99.2653%" y="2021" width="0.0187%" height="15" fill="rgb(230,216,13)" fg:x="305274561245" fg:w="57464724"/><text x="99.5153%" y="2031.50"></text></g><g><title>wayland_client::event_queue::queue_callback (57,464,724 samples, 0.02%)</title><rect x="99.2653%" y="2005" width="0.0187%" height="15" fill="rgb(249,118,4)" fg:x="305274561245" fg:w="57464724"/><text x="99.5153%" y="2015.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (57,464,724 samples, 0.02%)</title><rect x="99.2653%" y="1989" width="0.0187%" height="15" fill="rgb(212,207,40)" fg:x="305274561245" fg:w="57464724"/><text x="99.5153%" y="1999.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (57,464,724 samples, 0.02%)</title><rect x="99.2653%" y="1973" width="0.0187%" height="15" fill="rgb(217,156,26)" fg:x="305274561245" fg:w="57464724"/><text x="99.5153%" y="1983.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (57,464,724 samples, 0.02%)</title><rect x="99.2653%" y="1957" width="0.0187%" height="15" fill="rgb(226,86,34)" fg:x="305274561245" fg:w="57464724"/><text x="99.5153%" y="1967.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (57,464,724 samples, 0.02%)</title><rect x="99.2653%" y="1941" width="0.0187%" height="15" fill="rgb(217,111,30)" fg:x="305274561245" fg:w="57464724"/><text x="99.5153%" y="1951.50"></text></g><g><title>gpui::window::Window::draw (57,464,724 samples, 0.02%)</title><rect x="99.2653%" y="1925" width="0.0187%" height="15" fill="rgb(228,64,18)" fg:x="305274561245" fg:w="57464724"/><text x="99.5153%" y="1935.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1909" width="0.0172%" height="15" fill="rgb(254,217,48)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1919.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1893" width="0.0172%" height="15" fill="rgb(226,156,48)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1903.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1877" width="0.0172%" height="15" fill="rgb(236,168,20)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1887.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1861" width="0.0172%" height="15" fill="rgb(239,210,33)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1871.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1845" width="0.0172%" height="15" fill="rgb(242,85,17)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1855.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1829" width="0.0172%" height="15" fill="rgb(221,196,15)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1813" width="0.0172%" height="15" fill="rgb(249,76,21)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1797" width="0.0172%" height="15" fill="rgb(243,67,29)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1781" width="0.0172%" height="15" fill="rgb(240,159,2)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1765" width="0.0172%" height="15" fill="rgb(244,64,3)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1775.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1749" width="0.0172%" height="15" fill="rgb(220,86,40)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1733" width="0.0172%" height="15" fill="rgb(222,194,51)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1743.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1717" width="0.0172%" height="15" fill="rgb(207,154,19)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1701" width="0.0172%" height="15" fill="rgb(206,178,36)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1685" width="0.0172%" height="15" fill="rgb(218,8,24)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1669" width="0.0172%" height="15" fill="rgb(226,83,41)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1653" width="0.0172%" height="15" fill="rgb(224,23,22)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1663.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1637" width="0.0172%" height="15" fill="rgb(218,198,45)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1621" width="0.0172%" height="15" fill="rgb(249,147,41)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1631.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1605" width="0.0172%" height="15" fill="rgb(244,224,13)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1589" width="0.0172%" height="15" fill="rgb(225,97,27)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1573" width="0.0172%" height="15" fill="rgb(254,64,0)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1557" width="0.0172%" height="15" fill="rgb(208,130,43)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1541" width="0.0172%" height="15" fill="rgb(247,91,25)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1551.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1525" width="0.0172%" height="15" fill="rgb(215,218,42)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1509" width="0.0172%" height="15" fill="rgb(233,9,24)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1519.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1493" width="0.0172%" height="15" fill="rgb(252,105,38)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1477" width="0.0172%" height="15" fill="rgb(225,40,49)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1461" width="0.0172%" height="15" fill="rgb(232,196,19)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1445" width="0.0172%" height="15" fill="rgb(207,35,15)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1429" width="0.0172%" height="15" fill="rgb(238,68,36)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1439.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1413" width="0.0172%" height="15" fill="rgb(205,158,20)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1397" width="0.0172%" height="15" fill="rgb(232,32,22)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1407.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1381" width="0.0172%" height="15" fill="rgb(210,169,6)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1365" width="0.0172%" height="15" fill="rgb(229,28,12)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1349" width="0.0172%" height="15" fill="rgb(229,78,10)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1333" width="0.0172%" height="15" fill="rgb(223,139,54)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1317" width="0.0172%" height="15" fill="rgb(207,110,4)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1327.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1301" width="0.0172%" height="15" fill="rgb(248,30,41)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1285" width="0.0172%" height="15" fill="rgb(235,54,25)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1295.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1269" width="0.0172%" height="15" fill="rgb(213,107,41)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1253" width="0.0172%" height="15" fill="rgb(237,102,9)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1237" width="0.0172%" height="15" fill="rgb(252,137,49)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1221" width="0.0172%" height="15" fill="rgb(233,202,33)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1205" width="0.0172%" height="15" fill="rgb(223,14,51)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1215.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1189" width="0.0172%" height="15" fill="rgb(248,70,23)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1173" width="0.0172%" height="15" fill="rgb(209,207,47)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1183.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1157" width="0.0172%" height="15" fill="rgb(245,124,2)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1141" width="0.0172%" height="15" fill="rgb(249,208,11)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1125" width="0.0172%" height="15" fill="rgb(247,112,7)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1109" width="0.0172%" height="15" fill="rgb(209,192,31)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1093" width="0.0172%" height="15" fill="rgb(236,55,19)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1103.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (52,817,256 samples, 0.02%)</title><rect x="99.2668%" y="1077" width="0.0172%" height="15" fill="rgb(252,89,41)" fg:x="305279208713" fg:w="52817256"/><text x="99.5168%" y="1087.50"></text></g><g><title>gpui::window::Window::paint_glyph (71,732,622 samples, 0.02%)</title><rect x="99.3061%" y="37" width="0.0233%" height="15" fill="rgb(220,172,14)" fg:x="305400044196" fg:w="71732622"/><text x="99.5561%" y="47.50"></text></g><g><title>gpui::text_system::line::paint_line (131,725,562 samples, 0.04%)</title><rect x="99.2896%" y="53" width="0.0428%" height="15" fill="rgb(252,65,2)" fg:x="305349338748" fg:w="131725562"/><text x="99.5396%" y="63.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint::_{{closure}} (166,178,387 samples, 0.05%)</title><rect x="99.2856%" y="85" width="0.0540%" height="15" fill="rgb(250,20,8)" fg:x="305336885328" fg:w="166178387"/><text x="99.5356%" y="95.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}}::_{{closure}} (166,178,387 samples, 0.05%)</title><rect x="99.2856%" y="69" width="0.0540%" height="15" fill="rgb(234,149,13)" fg:x="305336885328" fg:w="166178387"/><text x="99.5356%" y="79.50"></text></g><g><title>editor::element::EditorElement::register_actions (37,043,078 samples, 0.01%)</title><rect x="99.3405%" y="85" width="0.0120%" height="15" fill="rgb(223,219,12)" fg:x="305505845486" fg:w="37043078"/><text x="99.5905%" y="95.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint (207,193,660 samples, 0.07%)</title><rect x="99.2856%" y="101" width="0.0674%" height="15" fill="rgb(234,13,49)" fg:x="305336885328" fg:w="207193660"/><text x="99.5356%" y="111.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (213,307,619 samples, 0.07%)</title><rect x="99.2840%" y="1509" width="0.0694%" height="15" fill="rgb(214,41,25)" fg:x="305332025969" fg:w="213307619"/><text x="99.5340%" y="1519.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (213,307,619 samples, 0.07%)</title><rect x="99.2840%" y="1493" width="0.0694%" height="15" fill="rgb(232,198,52)" fg:x="305332025969" fg:w="213307619"/><text x="99.5340%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (213,307,619 samples, 0.07%)</title><rect x="99.2840%" y="1477" width="0.0694%" height="15" fill="rgb(236,111,46)" fg:x="305332025969" fg:w="213307619"/><text x="99.5340%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (213,307,619 samples, 0.07%)</title><rect x="99.2840%" y="1461" width="0.0694%" height="15" fill="rgb(253,30,20)" fg:x="305332025969" fg:w="213307619"/><text x="99.5340%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (213,307,619 samples, 0.07%)</title><rect x="99.2840%" y="1445" width="0.0694%" height="15" fill="rgb(247,141,17)" fg:x="305332025969" fg:w="213307619"/><text x="99.5340%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (213,307,619 samples, 0.07%)</title><rect x="99.2840%" y="1429" width="0.0694%" height="15" fill="rgb(214,195,21)" fg:x="305332025969" fg:w="213307619"/><text x="99.5340%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (213,307,619 samples, 0.07%)</title><rect x="99.2840%" y="1413" width="0.0694%" height="15" fill="rgb(214,98,12)" fg:x="305332025969" fg:w="213307619"/><text x="99.5340%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (213,307,619 samples, 0.07%)</title><rect x="99.2840%" y="1397" width="0.0694%" height="15" fill="rgb(239,4,26)" fg:x="305332025969" fg:w="213307619"/><text x="99.5340%" y="1407.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (213,307,619 samples, 0.07%)</title><rect x="99.2840%" y="1381" width="0.0694%" height="15" fill="rgb(234,210,35)" fg:x="305332025969" fg:w="213307619"/><text x="99.5340%" y="1391.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1365" width="0.0690%" height="15" fill="rgb(252,178,27)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1375.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1349" width="0.0690%" height="15" fill="rgb(217,50,1)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1333" width="0.0690%" height="15" fill="rgb(233,137,5)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1317" width="0.0690%" height="15" fill="rgb(217,227,25)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1301" width="0.0690%" height="15" fill="rgb(242,89,38)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1285" width="0.0690%" height="15" fill="rgb(212,190,30)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1269" width="0.0690%" height="15" fill="rgb(222,120,8)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1253" width="0.0690%" height="15" fill="rgb(227,181,9)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1263.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1237" width="0.0690%" height="15" fill="rgb(222,125,29)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1247.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1221" width="0.0690%" height="15" fill="rgb(215,153,31)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1231.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1205" width="0.0690%" height="15" fill="rgb(228,77,30)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1189" width="0.0690%" height="15" fill="rgb(226,110,9)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1173" width="0.0690%" height="15" fill="rgb(219,111,7)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1157" width="0.0690%" height="15" fill="rgb(229,167,25)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1141" width="0.0690%" height="15" fill="rgb(209,77,43)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1125" width="0.0690%" height="15" fill="rgb(233,70,39)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1109" width="0.0690%" height="15" fill="rgb(207,171,44)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1119.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1093" width="0.0690%" height="15" fill="rgb(244,91,6)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1103.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1077" width="0.0690%" height="15" fill="rgb(234,136,12)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1087.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1061" width="0.0690%" height="15" fill="rgb(216,210,38)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1071.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1045" width="0.0690%" height="15" fill="rgb(241,227,7)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1029" width="0.0690%" height="15" fill="rgb(241,222,11)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="1013" width="0.0690%" height="15" fill="rgb(246,86,18)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="997" width="0.0690%" height="15" fill="rgb(224,151,49)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="981" width="0.0690%" height="15" fill="rgb(235,4,41)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="965" width="0.0690%" height="15" fill="rgb(218,30,52)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="975.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (212,192,175 samples, 0.07%)</title><rect x="99.2844%" y="949" width="0.0690%" height="15" fill="rgb(205,124,51)" fg:x="305333141413" fg:w="212192175"/><text x="99.5344%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="933" width="0.0678%" height="15" fill="rgb(237,126,51)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="943.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="917" width="0.0678%" height="15" fill="rgb(225,32,46)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="901" width="0.0678%" height="15" fill="rgb(251,60,49)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="885" width="0.0678%" height="15" fill="rgb(234,18,23)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="869" width="0.0678%" height="15" fill="rgb(234,25,23)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="853" width="0.0678%" height="15" fill="rgb(210,43,52)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="837" width="0.0678%" height="15" fill="rgb(237,198,21)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="821" width="0.0678%" height="15" fill="rgb(211,20,34)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="831.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="805" width="0.0678%" height="15" fill="rgb(221,155,50)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="815.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="789" width="0.0678%" height="15" fill="rgb(213,214,53)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="773" width="0.0678%" height="15" fill="rgb(215,229,48)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="783.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="757" width="0.0678%" height="15" fill="rgb(243,88,5)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="767.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="741" width="0.0678%" height="15" fill="rgb(216,199,8)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="725" width="0.0678%" height="15" fill="rgb(241,22,4)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="709" width="0.0678%" height="15" fill="rgb(209,190,22)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="693" width="0.0678%" height="15" fill="rgb(251,138,45)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="677" width="0.0678%" height="15" fill="rgb(219,111,22)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="661" width="0.0678%" height="15" fill="rgb(253,29,49)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="671.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="645" width="0.0678%" height="15" fill="rgb(238,129,49)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="655.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="629" width="0.0678%" height="15" fill="rgb(240,26,41)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="639.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="613" width="0.0678%" height="15" fill="rgb(221,47,33)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="623.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="597" width="0.0678%" height="15" fill="rgb(216,200,17)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="581" width="0.0678%" height="15" fill="rgb(230,151,26)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="591.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="565" width="0.0678%" height="15" fill="rgb(242,182,16)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="549" width="0.0678%" height="15" fill="rgb(236,35,53)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="533" width="0.0678%" height="15" fill="rgb(214,180,28)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="517" width="0.0678%" height="15" fill="rgb(208,173,36)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="501" width="0.0678%" height="15" fill="rgb(218,39,15)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="485" width="0.0678%" height="15" fill="rgb(213,145,15)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="469" width="0.0678%" height="15" fill="rgb(242,110,37)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="479.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="453" width="0.0678%" height="15" fill="rgb(247,146,22)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="437" width="0.0678%" height="15" fill="rgb(215,191,7)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="447.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="421" width="0.0678%" height="15" fill="rgb(240,158,1)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="405" width="0.0678%" height="15" fill="rgb(241,78,32)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="389" width="0.0678%" height="15" fill="rgb(248,83,10)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="373" width="0.0678%" height="15" fill="rgb(241,52,0)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="357" width="0.0678%" height="15" fill="rgb(238,37,13)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="341" width="0.0678%" height="15" fill="rgb(242,194,17)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="325" width="0.0678%" height="15" fill="rgb(236,96,3)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="335.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="309" width="0.0678%" height="15" fill="rgb(235,148,34)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="319.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="293" width="0.0678%" height="15" fill="rgb(254,12,11)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="303.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="277" width="0.0678%" height="15" fill="rgb(207,31,54)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="287.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="261" width="0.0678%" height="15" fill="rgb(252,14,28)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="271.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="245" width="0.0678%" height="15" fill="rgb(252,108,36)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="229" width="0.0678%" height="15" fill="rgb(214,149,7)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="239.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="213" width="0.0678%" height="15" fill="rgb(243,94,12)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="223.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="197" width="0.0678%" height="15" fill="rgb(208,36,10)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="207.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="181" width="0.0678%" height="15" fill="rgb(233,185,52)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="165" width="0.0678%" height="15" fill="rgb(234,50,45)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="149" width="0.0678%" height="15" fill="rgb(228,92,54)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="159.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="133" width="0.0678%" height="15" fill="rgb(224,85,25)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="143.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (208,448,260 samples, 0.07%)</title><rect x="99.2856%" y="117" width="0.0678%" height="15" fill="rgb(246,1,45)" fg:x="305336885328" fg:w="208448260"/><text x="99.5356%" y="127.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1989" width="0.0697%" height="15" fill="rgb(240,66,23)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1999.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1973" width="0.0697%" height="15" fill="rgb(222,96,27)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1983.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1957" width="0.0697%" height="15" fill="rgb(212,136,10)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1967.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1941" width="0.0697%" height="15" fill="rgb(226,192,50)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1951.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1925" width="0.0697%" height="15" fill="rgb(241,182,31)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1935.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1909" width="0.0697%" height="15" fill="rgb(219,205,47)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1893" width="0.0697%" height="15" fill="rgb(207,96,14)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1877" width="0.0697%" height="15" fill="rgb(216,119,9)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1861" width="0.0697%" height="15" fill="rgb(235,62,36)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1845" width="0.0697%" height="15" fill="rgb(214,41,27)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1829" width="0.0697%" height="15" fill="rgb(214,174,37)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1839.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1813" width="0.0697%" height="15" fill="rgb(212,11,25)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1823.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1797" width="0.0697%" height="15" fill="rgb(217,71,35)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1807.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1781" width="0.0697%" height="15" fill="rgb(234,152,9)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1765" width="0.0697%" height="15" fill="rgb(228,32,51)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1749" width="0.0697%" height="15" fill="rgb(209,14,47)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1733" width="0.0697%" height="15" fill="rgb(218,201,17)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1717" width="0.0697%" height="15" fill="rgb(218,98,15)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1701" width="0.0697%" height="15" fill="rgb(233,202,29)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1685" width="0.0697%" height="15" fill="rgb(207,196,44)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1695.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1669" width="0.0697%" height="15" fill="rgb(218,63,34)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1653" width="0.0697%" height="15" fill="rgb(209,10,5)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1663.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1637" width="0.0697%" height="15" fill="rgb(224,36,28)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1621" width="0.0697%" height="15" fill="rgb(249,178,7)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1605" width="0.0697%" height="15" fill="rgb(253,163,10)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1589" width="0.0697%" height="15" fill="rgb(245,67,46)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1573" width="0.0697%" height="15" fill="rgb(225,14,18)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1557" width="0.0697%" height="15" fill="rgb(217,41,54)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1541" width="0.0697%" height="15" fill="rgb(222,111,11)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1551.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (214,290,497 samples, 0.07%)</title><rect x="99.2840%" y="1525" width="0.0697%" height="15" fill="rgb(211,85,31)" fg:x="305332025969" fg:w="214290497"/><text x="99.5340%" y="1535.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="1141" width="0.0103%" height="15" fill="rgb(223,29,26)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="1125" width="0.0103%" height="15" fill="rgb(236,124,50)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1135.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="1109" width="0.0103%" height="15" fill="rgb(219,148,15)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="1093" width="0.0103%" height="15" fill="rgb(248,159,33)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="1077" width="0.0103%" height="15" fill="rgb(252,65,8)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="1061" width="0.0103%" height="15" fill="rgb(236,45,7)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1071.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="1045" width="0.0103%" height="15" fill="rgb(244,3,48)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1055.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="1029" width="0.0103%" height="15" fill="rgb(224,123,53)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="1013" width="0.0103%" height="15" fill="rgb(223,173,15)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1023.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="997" width="0.0103%" height="15" fill="rgb(254,181,5)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="981" width="0.0103%" height="15" fill="rgb(243,124,33)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="965" width="0.0103%" height="15" fill="rgb(253,220,11)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="949" width="0.0103%" height="15" fill="rgb(217,14,4)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="933" width="0.0103%" height="15" fill="rgb(209,196,12)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="943.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="917" width="0.0103%" height="15" fill="rgb(237,108,29)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="927.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="901" width="0.0103%" height="15" fill="rgb(216,173,20)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="911.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (31,807,987 samples, 0.01%)</title><rect x="99.3537%" y="885" width="0.0103%" height="15" fill="rgb(245,27,6)" fg:x="305546316466" fg:w="31807987"/><text x="99.6037%" y="895.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (258,376,933 samples, 0.08%)</title><rect x="99.2840%" y="2053" width="0.0840%" height="15" fill="rgb(210,181,20)" fg:x="305332025969" fg:w="258376933"/><text x="99.5340%" y="2063.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (258,376,933 samples, 0.08%)</title><rect x="99.2840%" y="2037" width="0.0840%" height="15" fill="rgb(235,213,1)" fg:x="305332025969" fg:w="258376933"/><text x="99.5340%" y="2047.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (258,376,933 samples, 0.08%)</title><rect x="99.2840%" y="2021" width="0.0840%" height="15" fill="rgb(239,68,43)" fg:x="305332025969" fg:w="258376933"/><text x="99.5340%" y="2031.50"></text></g><g><title>gpui::window::Window::draw (258,376,933 samples, 0.08%)</title><rect x="99.2840%" y="2005" width="0.0840%" height="15" fill="rgb(254,137,43)" fg:x="305332025969" fg:w="258376933"/><text x="99.5340%" y="2015.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1989" width="0.0143%" height="15" fill="rgb(252,170,38)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1999.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1973" width="0.0143%" height="15" fill="rgb(234,21,42)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1983.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1957" width="0.0143%" height="15" fill="rgb(216,145,40)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1967.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1941" width="0.0143%" height="15" fill="rgb(251,73,9)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1951.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1925" width="0.0143%" height="15" fill="rgb(242,54,6)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1935.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1909" width="0.0143%" height="15" fill="rgb(239,70,7)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1893" width="0.0143%" height="15" fill="rgb(216,159,35)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1877" width="0.0143%" height="15" fill="rgb(224,50,39)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1861" width="0.0143%" height="15" fill="rgb(235,9,35)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1871.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1845" width="0.0143%" height="15" fill="rgb(239,34,21)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1855.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1829" width="0.0143%" height="15" fill="rgb(218,162,43)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1839.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1813" width="0.0143%" height="15" fill="rgb(219,89,33)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1823.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1797" width="0.0143%" height="15" fill="rgb(226,125,37)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1781" width="0.0143%" height="15" fill="rgb(233,149,30)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1765" width="0.0143%" height="15" fill="rgb(236,8,18)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1749" width="0.0143%" height="15" fill="rgb(205,176,9)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1733" width="0.0143%" height="15" fill="rgb(252,103,44)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1743.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1717" width="0.0143%" height="15" fill="rgb(207,68,53)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1727.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1701" width="0.0143%" height="15" fill="rgb(218,193,48)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1711.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1685" width="0.0143%" height="15" fill="rgb(234,121,52)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1669" width="0.0143%" height="15" fill="rgb(227,218,49)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1653" width="0.0143%" height="15" fill="rgb(221,8,7)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1637" width="0.0143%" height="15" fill="rgb(217,151,36)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1621" width="0.0143%" height="15" fill="rgb(213,71,5)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1631.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1605" width="0.0143%" height="15" fill="rgb(225,145,43)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1589" width="0.0143%" height="15" fill="rgb(235,118,19)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1599.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1573" width="0.0143%" height="15" fill="rgb(214,102,36)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1557" width="0.0143%" height="15" fill="rgb(220,56,43)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1541" width="0.0143%" height="15" fill="rgb(246,136,46)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1525" width="0.0143%" height="15" fill="rgb(249,99,12)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1509" width="0.0143%" height="15" fill="rgb(224,31,42)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1519.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1493" width="0.0143%" height="15" fill="rgb(208,96,21)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1477" width="0.0143%" height="15" fill="rgb(237,229,7)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1487.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1461" width="0.0143%" height="15" fill="rgb(210,12,6)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1445" width="0.0143%" height="15" fill="rgb(240,9,34)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1429" width="0.0143%" height="15" fill="rgb(211,68,37)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1413" width="0.0143%" height="15" fill="rgb(249,138,50)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1397" width="0.0143%" height="15" fill="rgb(243,185,40)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1407.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1381" width="0.0143%" height="15" fill="rgb(242,92,35)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1391.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1365" width="0.0143%" height="15" fill="rgb(244,98,5)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1375.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1349" width="0.0143%" height="15" fill="rgb(228,186,29)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1333" width="0.0143%" height="15" fill="rgb(253,7,44)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1317" width="0.0143%" height="15" fill="rgb(216,11,45)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1301" width="0.0143%" height="15" fill="rgb(205,67,3)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1285" width="0.0143%" height="15" fill="rgb(250,18,3)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1295.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1269" width="0.0143%" height="15" fill="rgb(241,222,43)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1253" width="0.0143%" height="15" fill="rgb(233,115,3)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1263.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1237" width="0.0143%" height="15" fill="rgb(215,165,25)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1221" width="0.0143%" height="15" fill="rgb(234,179,6)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1205" width="0.0143%" height="15" fill="rgb(215,82,23)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1189" width="0.0143%" height="15" fill="rgb(211,47,18)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1173" width="0.0143%" height="15" fill="rgb(248,17,9)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1183.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,086,436 samples, 0.01%)</title><rect x="99.3537%" y="1157" width="0.0143%" height="15" fill="rgb(210,212,12)" fg:x="305546316466" fg:w="44086436"/><text x="99.6037%" y="1167.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1189" width="0.0104%" height="15" fill="rgb(230,135,45)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1173" width="0.0104%" height="15" fill="rgb(214,121,41)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1183.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1157" width="0.0104%" height="15" fill="rgb(239,165,45)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1141" width="0.0104%" height="15" fill="rgb(214,85,51)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1125" width="0.0104%" height="15" fill="rgb(223,90,27)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1109" width="0.0104%" height="15" fill="rgb(244,84,11)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1093" width="0.0104%" height="15" fill="rgb(253,41,47)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1103.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1077" width="0.0104%" height="15" fill="rgb(232,39,5)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1061" width="0.0104%" height="15" fill="rgb(211,93,4)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1071.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1045" width="0.0104%" height="15" fill="rgb(219,50,49)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1029" width="0.0104%" height="15" fill="rgb(232,80,19)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="1013" width="0.0104%" height="15" fill="rgb(215,227,39)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="997" width="0.0104%" height="15" fill="rgb(211,99,12)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="981" width="0.0104%" height="15" fill="rgb(214,158,5)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="991.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="965" width="0.0104%" height="15" fill="rgb(242,19,53)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="975.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="949" width="0.0104%" height="15" fill="rgb(208,18,20)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="959.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (31,905,202 samples, 0.01%)</title><rect x="99.3742%" y="933" width="0.0104%" height="15" fill="rgb(250,44,11)" fg:x="305609420755" fg:w="31905202"/><text x="99.6242%" y="943.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="917" width="0.0100%" height="15" fill="rgb(238,159,13)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="901" width="0.0100%" height="15" fill="rgb(231,74,18)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="911.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="885" width="0.0100%" height="15" fill="rgb(229,219,45)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="869" width="0.0100%" height="15" fill="rgb(210,221,1)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="853" width="0.0100%" height="15" fill="rgb(209,60,51)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="837" width="0.0100%" height="15" fill="rgb(252,97,34)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="821" width="0.0100%" height="15" fill="rgb(243,211,37)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="831.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="805" width="0.0100%" height="15" fill="rgb(210,229,37)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="815.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="789" width="0.0100%" height="15" fill="rgb(220,208,43)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="799.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="773" width="0.0100%" height="15" fill="rgb(218,118,50)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="757" width="0.0100%" height="15" fill="rgb(254,169,52)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="767.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="741" width="0.0100%" height="15" fill="rgb(221,214,37)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="725" width="0.0100%" height="15" fill="rgb(254,186,32)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="709" width="0.0100%" height="15" fill="rgb(215,144,43)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="693" width="0.0100%" height="15" fill="rgb(252,21,46)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="703.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="677" width="0.0100%" height="15" fill="rgb(207,166,46)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="661" width="0.0100%" height="15" fill="rgb(253,37,49)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="645" width="0.0100%" height="15" fill="rgb(222,97,20)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="655.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="629" width="0.0100%" height="15" fill="rgb(244,181,26)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="613" width="0.0100%" height="15" fill="rgb(241,22,29)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="597" width="0.0100%" height="15" fill="rgb(206,200,43)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="581" width="0.0100%" height="15" fill="rgb(226,224,43)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="565" width="0.0100%" height="15" fill="rgb(253,129,28)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="575.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="549" width="0.0100%" height="15" fill="rgb(252,99,33)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="533" width="0.0100%" height="15" fill="rgb(208,123,45)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="543.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="517" width="0.0100%" height="15" fill="rgb(251,106,12)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="501" width="0.0100%" height="15" fill="rgb(240,209,35)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="485" width="0.0100%" height="15" fill="rgb(214,52,50)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="469" width="0.0100%" height="15" fill="rgb(234,119,4)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="453" width="0.0100%" height="15" fill="rgb(228,181,36)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="463.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="437" width="0.0100%" height="15" fill="rgb(213,171,42)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="447.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="421" width="0.0100%" height="15" fill="rgb(239,14,41)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="405" width="0.0100%" height="15" fill="rgb(239,111,46)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="389" width="0.0100%" height="15" fill="rgb(214,72,7)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="373" width="0.0100%" height="15" fill="rgb(221,114,1)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="383.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (30,755,916 samples, 0.01%)</title><rect x="99.3746%" y="357" width="0.0100%" height="15" fill="rgb(213,143,14)" fg:x="305610570041" fg:w="30755916"/><text x="99.6246%" y="367.50"></text></g><g><title>gpui::window::Window::draw (63,314,631 samples, 0.02%)</title><rect x="99.3680%" y="2053" width="0.0206%" height="15" fill="rgb(220,221,53)" fg:x="305590402902" fg:w="63314631"/><text x="99.6180%" y="2063.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="2037" width="0.0144%" height="15" fill="rgb(236,189,27)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="2047.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="2021" width="0.0144%" height="15" fill="rgb(252,139,49)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="2031.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="2005" width="0.0144%" height="15" fill="rgb(231,158,33)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="2015.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1989" width="0.0144%" height="15" fill="rgb(207,201,15)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1999.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1973" width="0.0144%" height="15" fill="rgb(218,43,48)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1983.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1957" width="0.0144%" height="15" fill="rgb(244,63,52)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1967.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1941" width="0.0144%" height="15" fill="rgb(236,60,17)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1925" width="0.0144%" height="15" fill="rgb(205,206,29)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1909" width="0.0144%" height="15" fill="rgb(205,209,35)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1919.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1893" width="0.0144%" height="15" fill="rgb(227,112,14)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1903.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1877" width="0.0144%" height="15" fill="rgb(248,151,9)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1887.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1861" width="0.0144%" height="15" fill="rgb(247,45,40)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1871.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1845" width="0.0144%" height="15" fill="rgb(232,185,16)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1829" width="0.0144%" height="15" fill="rgb(215,45,44)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1813" width="0.0144%" height="15" fill="rgb(206,69,32)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1797" width="0.0144%" height="15" fill="rgb(233,98,50)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1781" width="0.0144%" height="15" fill="rgb(232,217,52)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1791.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1765" width="0.0144%" height="15" fill="rgb(250,42,51)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1749" width="0.0144%" height="15" fill="rgb(241,200,26)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1759.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1733" width="0.0144%" height="15" fill="rgb(207,10,32)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1717" width="0.0144%" height="15" fill="rgb(214,63,15)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1701" width="0.0144%" height="15" fill="rgb(234,176,14)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1685" width="0.0144%" height="15" fill="rgb(226,104,52)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1669" width="0.0144%" height="15" fill="rgb(211,222,1)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1679.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1653" width="0.0144%" height="15" fill="rgb(237,7,3)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1637" width="0.0144%" height="15" fill="rgb(218,143,7)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1647.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1621" width="0.0144%" height="15" fill="rgb(208,25,22)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1605" width="0.0144%" height="15" fill="rgb(228,127,16)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1589" width="0.0144%" height="15" fill="rgb(237,86,27)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1573" width="0.0144%" height="15" fill="rgb(207,125,19)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1557" width="0.0144%" height="15" fill="rgb(243,195,0)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1567.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1541" width="0.0144%" height="15" fill="rgb(230,95,18)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1525" width="0.0144%" height="15" fill="rgb(232,157,21)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1535.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1509" width="0.0144%" height="15" fill="rgb(212,120,50)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1493" width="0.0144%" height="15" fill="rgb(222,204,44)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1477" width="0.0144%" height="15" fill="rgb(236,6,33)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1461" width="0.0144%" height="15" fill="rgb(247,11,38)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1445" width="0.0144%" height="15" fill="rgb(215,111,0)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1455.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1429" width="0.0144%" height="15" fill="rgb(211,65,46)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1413" width="0.0144%" height="15" fill="rgb(216,5,12)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1423.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1397" width="0.0144%" height="15" fill="rgb(226,7,2)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1381" width="0.0144%" height="15" fill="rgb(242,116,12)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1365" width="0.0144%" height="15" fill="rgb(249,209,7)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1349" width="0.0144%" height="15" fill="rgb(232,73,17)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1333" width="0.0144%" height="15" fill="rgb(214,13,32)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1343.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1317" width="0.0144%" height="15" fill="rgb(221,125,10)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1301" width="0.0144%" height="15" fill="rgb(246,7,44)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1311.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1285" width="0.0144%" height="15" fill="rgb(239,18,35)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1269" width="0.0144%" height="15" fill="rgb(250,222,16)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1253" width="0.0144%" height="15" fill="rgb(219,100,8)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1237" width="0.0144%" height="15" fill="rgb(240,62,13)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1247.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1221" width="0.0144%" height="15" fill="rgb(253,194,2)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1231.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,296,778 samples, 0.01%)</title><rect x="99.3742%" y="1205" width="0.0144%" height="15" fill="rgb(235,58,31)" fg:x="305609420755" fg:w="44296778"/><text x="99.6242%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (40,096,023 samples, 0.01%)</title><rect x="99.3952%" y="389" width="0.0130%" height="15" fill="rgb(231,37,11)" fg:x="305674069453" fg:w="40096023"/><text x="99.6452%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (40,096,023 samples, 0.01%)</title><rect x="99.3952%" y="373" width="0.0130%" height="15" fill="rgb(235,133,0)" fg:x="305674069453" fg:w="40096023"/><text x="99.6452%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (40,096,023 samples, 0.01%)</title><rect x="99.3952%" y="357" width="0.0130%" height="15" fill="rgb(212,185,40)" fg:x="305674069453" fg:w="40096023"/><text x="99.6452%" y="367.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1173" width="0.0152%" height="15" fill="rgb(216,68,42)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1157" width="0.0152%" height="15" fill="rgb(239,81,4)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1167.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1141" width="0.0152%" height="15" fill="rgb(206,86,6)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1125" width="0.0152%" height="15" fill="rgb(249,95,27)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1109" width="0.0152%" height="15" fill="rgb(205,155,45)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1093" width="0.0152%" height="15" fill="rgb(213,55,42)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1103.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1077" width="0.0152%" height="15" fill="rgb(249,197,4)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1087.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1061" width="0.0152%" height="15" fill="rgb(212,128,32)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1071.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1045" width="0.0152%" height="15" fill="rgb(252,47,30)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1055.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1029" width="0.0152%" height="15" fill="rgb(209,79,18)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="1013" width="0.0152%" height="15" fill="rgb(225,81,38)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="997" width="0.0152%" height="15" fill="rgb(205,95,16)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="981" width="0.0152%" height="15" fill="rgb(214,30,4)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="965" width="0.0152%" height="15" fill="rgb(232,137,22)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="975.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="949" width="0.0152%" height="15" fill="rgb(232,156,19)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="959.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="933" width="0.0152%" height="15" fill="rgb(248,157,26)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="943.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (46,760,224 samples, 0.02%)</title><rect x="99.3934%" y="917" width="0.0152%" height="15" fill="rgb(242,24,3)" fg:x="305668556342" fg:w="46760224"/><text x="99.6434%" y="927.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="901" width="0.0148%" height="15" fill="rgb(218,195,48)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="911.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="885" width="0.0148%" height="15" fill="rgb(214,193,36)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="895.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="869" width="0.0148%" height="15" fill="rgb(242,110,40)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="853" width="0.0148%" height="15" fill="rgb(233,150,26)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="837" width="0.0148%" height="15" fill="rgb(239,200,30)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="821" width="0.0148%" height="15" fill="rgb(226,28,11)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="805" width="0.0148%" height="15" fill="rgb(220,26,48)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="815.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="789" width="0.0148%" height="15" fill="rgb(232,10,11)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="799.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="773" width="0.0148%" height="15" fill="rgb(252,143,50)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="783.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="757" width="0.0148%" height="15" fill="rgb(206,58,22)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="767.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="741" width="0.0148%" height="15" fill="rgb(250,9,45)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="751.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="725" width="0.0148%" height="15" fill="rgb(225,148,14)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="709" width="0.0148%" height="15" fill="rgb(205,178,40)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="693" width="0.0148%" height="15" fill="rgb(215,201,4)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="677" width="0.0148%" height="15" fill="rgb(219,223,24)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="687.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="661" width="0.0148%" height="15" fill="rgb(217,19,31)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="671.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="645" width="0.0148%" height="15" fill="rgb(235,33,3)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="655.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="629" width="0.0148%" height="15" fill="rgb(221,39,18)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="639.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="613" width="0.0148%" height="15" fill="rgb(242,162,33)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="597" width="0.0148%" height="15" fill="rgb(233,215,28)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="581" width="0.0148%" height="15" fill="rgb(212,117,9)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="565" width="0.0148%" height="15" fill="rgb(237,70,47)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="549" width="0.0148%" height="15" fill="rgb(206,177,13)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="559.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (45,511,378 samples, 0.01%)</title><rect x="99.3938%" y="533" width="0.0148%" height="15" fill="rgb(209,174,33)" fg:x="305669805188" fg:w="45511378"/><text x="99.6438%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,369,069 samples, 0.01%)</title><rect x="99.3942%" y="517" width="0.0144%" height="15" fill="rgb(226,6,11)" fg:x="305670947497" fg:w="44369069"/><text x="99.6442%" y="527.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,369,069 samples, 0.01%)</title><rect x="99.3942%" y="501" width="0.0144%" height="15" fill="rgb(240,214,6)" fg:x="305670947497" fg:w="44369069"/><text x="99.6442%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,369,069 samples, 0.01%)</title><rect x="99.3942%" y="485" width="0.0144%" height="15" fill="rgb(254,214,40)" fg:x="305670947497" fg:w="44369069"/><text x="99.6442%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,369,069 samples, 0.01%)</title><rect x="99.3942%" y="469" width="0.0144%" height="15" fill="rgb(230,187,15)" fg:x="305670947497" fg:w="44369069"/><text x="99.6442%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,369,069 samples, 0.01%)</title><rect x="99.3942%" y="453" width="0.0144%" height="15" fill="rgb(250,11,27)" fg:x="305670947497" fg:w="44369069"/><text x="99.6442%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,369,069 samples, 0.01%)</title><rect x="99.3942%" y="437" width="0.0144%" height="15" fill="rgb(243,107,19)" fg:x="305670947497" fg:w="44369069"/><text x="99.6442%" y="447.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,369,069 samples, 0.01%)</title><rect x="99.3942%" y="421" width="0.0144%" height="15" fill="rgb(253,66,26)" fg:x="305670947497" fg:w="44369069"/><text x="99.6442%" y="431.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (41,247,113 samples, 0.01%)</title><rect x="99.3952%" y="405" width="0.0134%" height="15" fill="rgb(228,43,8)" fg:x="305674069453" fg:w="41247113"/><text x="99.6452%" y="415.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (71,688,118 samples, 0.02%)</title><rect x="99.3886%" y="2053" width="0.0233%" height="15" fill="rgb(232,197,36)" fg:x="305653717533" fg:w="71688118"/><text x="99.6386%" y="2063.50"></text></g><g><title>gpui::window::Window::draw (71,688,118 samples, 0.02%)</title><rect x="99.3886%" y="2037" width="0.0233%" height="15" fill="rgb(221,182,31)" fg:x="305653717533" fg:w="71688118"/><text x="99.6386%" y="2047.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="2021" width="0.0185%" height="15" fill="rgb(244,25,36)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="2031.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="2005" width="0.0185%" height="15" fill="rgb(247,101,19)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="2015.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1989" width="0.0185%" height="15" fill="rgb(223,117,19)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1999.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1973" width="0.0185%" height="15" fill="rgb(249,63,38)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1983.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1957" width="0.0185%" height="15" fill="rgb(220,143,23)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1967.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1941" width="0.0185%" height="15" fill="rgb(252,183,22)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1925" width="0.0185%" height="15" fill="rgb(243,176,15)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1909" width="0.0185%" height="15" fill="rgb(244,204,46)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1893" width="0.0185%" height="15" fill="rgb(227,28,54)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1903.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1877" width="0.0185%" height="15" fill="rgb(231,10,15)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1887.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1861" width="0.0185%" height="15" fill="rgb(210,200,17)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1871.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1845" width="0.0185%" height="15" fill="rgb(251,106,46)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1855.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1829" width="0.0185%" height="15" fill="rgb(218,211,15)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1813" width="0.0185%" height="15" fill="rgb(239,62,10)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1797" width="0.0185%" height="15" fill="rgb(225,53,53)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1781" width="0.0185%" height="15" fill="rgb(207,16,24)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1765" width="0.0185%" height="15" fill="rgb(217,52,28)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1775.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1749" width="0.0185%" height="15" fill="rgb(246,1,5)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1733" width="0.0185%" height="15" fill="rgb(221,29,26)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1743.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1717" width="0.0185%" height="15" fill="rgb(250,133,32)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1701" width="0.0185%" height="15" fill="rgb(236,63,16)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1685" width="0.0185%" height="15" fill="rgb(231,159,14)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1669" width="0.0185%" height="15" fill="rgb(207,102,36)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1653" width="0.0185%" height="15" fill="rgb(230,224,31)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1663.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1637" width="0.0185%" height="15" fill="rgb(215,182,16)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1621" width="0.0185%" height="15" fill="rgb(226,113,2)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1631.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1605" width="0.0185%" height="15" fill="rgb(241,18,35)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1589" width="0.0185%" height="15" fill="rgb(240,165,44)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1573" width="0.0185%" height="15" fill="rgb(229,130,47)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1557" width="0.0185%" height="15" fill="rgb(223,93,7)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1541" width="0.0185%" height="15" fill="rgb(205,180,36)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1551.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1525" width="0.0185%" height="15" fill="rgb(221,103,28)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1509" width="0.0185%" height="15" fill="rgb(212,4,3)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1519.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1493" width="0.0185%" height="15" fill="rgb(209,221,53)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1477" width="0.0185%" height="15" fill="rgb(233,229,52)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1461" width="0.0185%" height="15" fill="rgb(254,127,37)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1445" width="0.0185%" height="15" fill="rgb(207,161,26)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1429" width="0.0185%" height="15" fill="rgb(223,75,5)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1439.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1413" width="0.0185%" height="15" fill="rgb(235,115,52)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1397" width="0.0185%" height="15" fill="rgb(240,91,46)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1407.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1381" width="0.0185%" height="15" fill="rgb(251,144,21)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1365" width="0.0185%" height="15" fill="rgb(247,220,47)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1349" width="0.0185%" height="15" fill="rgb(253,122,1)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1333" width="0.0185%" height="15" fill="rgb(221,0,24)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1317" width="0.0185%" height="15" fill="rgb(220,204,54)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1327.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1301" width="0.0185%" height="15" fill="rgb(205,96,25)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1285" width="0.0185%" height="15" fill="rgb(247,77,20)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1295.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1269" width="0.0185%" height="15" fill="rgb(245,151,8)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1253" width="0.0185%" height="15" fill="rgb(242,158,39)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1237" width="0.0185%" height="15" fill="rgb(222,214,50)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1221" width="0.0185%" height="15" fill="rgb(229,60,39)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1205" width="0.0185%" height="15" fill="rgb(240,148,18)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1215.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (56,849,309 samples, 0.02%)</title><rect x="99.3934%" y="1189" width="0.0185%" height="15" fill="rgb(215,96,11)" fg:x="305668556342" fg:w="56849309"/><text x="99.6434%" y="1199.50"></text></g><g><title>gpui::text_system::line::paint_line (127,691,718 samples, 0.04%)</title><rect x="99.4152%" y="69" width="0.0415%" height="15" fill="rgb(238,162,53)" fg:x="305735654770" fg:w="127691718"/><text x="99.6652%" y="79.50"></text></g><g><title>gpui::window::Window::paint_glyph (121,894,262 samples, 0.04%)</title><rect x="99.4171%" y="53" width="0.0396%" height="15" fill="rgb(214,83,18)" fg:x="305741452226" fg:w="121894262"/><text x="99.6671%" y="63.50"></text></g><g><title>gpui::text_system::TextSystem::raster_bounds (97,841,813 samples, 0.03%)</title><rect x="99.4249%" y="37" width="0.0318%" height="15" fill="rgb(248,117,24)" fg:x="305765504675" fg:w="97841813"/><text x="99.6749%" y="47.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint::_{{closure}} (143,393,205 samples, 0.05%)</title><rect x="99.4119%" y="101" width="0.0466%" height="15" fill="rgb(238,190,6)" fg:x="305725405651" fg:w="143393205"/><text x="99.6619%" y="111.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}}::_{{closure}} (143,393,205 samples, 0.05%)</title><rect x="99.4119%" y="85" width="0.0466%" height="15" fill="rgb(213,51,6)" fg:x="305725405651" fg:w="143393205"/><text x="99.6619%" y="95.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="2005" width="0.0549%" height="15" fill="rgb(212,136,1)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="2015.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1989" width="0.0549%" height="15" fill="rgb(221,192,14)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1999.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1973" width="0.0549%" height="15" fill="rgb(244,38,54)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1983.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1957" width="0.0549%" height="15" fill="rgb(240,45,28)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1967.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1941" width="0.0549%" height="15" fill="rgb(240,123,12)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1951.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1925" width="0.0549%" height="15" fill="rgb(216,14,30)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1909" width="0.0549%" height="15" fill="rgb(212,50,24)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1893" width="0.0549%" height="15" fill="rgb(253,229,47)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1877" width="0.0549%" height="15" fill="rgb(214,26,17)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1861" width="0.0549%" height="15" fill="rgb(252,60,11)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1845" width="0.0549%" height="15" fill="rgb(209,59,37)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1855.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1829" width="0.0549%" height="15" fill="rgb(228,126,53)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1839.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1813" width="0.0549%" height="15" fill="rgb(233,99,2)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1823.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1797" width="0.0549%" height="15" fill="rgb(217,106,34)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1781" width="0.0549%" height="15" fill="rgb(222,46,19)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1765" width="0.0549%" height="15" fill="rgb(251,87,31)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1749" width="0.0549%" height="15" fill="rgb(213,70,51)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1733" width="0.0549%" height="15" fill="rgb(229,144,18)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1717" width="0.0549%" height="15" fill="rgb(254,60,26)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1701" width="0.0549%" height="15" fill="rgb(243,127,51)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1711.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1685" width="0.0549%" height="15" fill="rgb(221,51,25)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1669" width="0.0549%" height="15" fill="rgb(205,42,7)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1679.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1653" width="0.0549%" height="15" fill="rgb(236,177,48)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1637" width="0.0549%" height="15" fill="rgb(226,79,31)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1621" width="0.0549%" height="15" fill="rgb(216,170,12)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1605" width="0.0549%" height="15" fill="rgb(208,62,51)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1589" width="0.0549%" height="15" fill="rgb(254,129,9)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1573" width="0.0549%" height="15" fill="rgb(243,209,31)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1557" width="0.0549%" height="15" fill="rgb(213,159,23)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1567.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1541" width="0.0549%" height="15" fill="rgb(249,77,39)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1525" width="0.0549%" height="15" fill="rgb(230,13,33)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1535.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1509" width="0.0549%" height="15" fill="rgb(215,215,7)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1493" width="0.0549%" height="15" fill="rgb(222,92,25)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1477" width="0.0549%" height="15" fill="rgb(215,173,22)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1461" width="0.0549%" height="15" fill="rgb(247,205,52)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1445" width="0.0549%" height="15" fill="rgb(240,210,37)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1429" width="0.0549%" height="15" fill="rgb(224,13,10)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1413" width="0.0549%" height="15" fill="rgb(209,48,33)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1423.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1397" width="0.0549%" height="15" fill="rgb(228,219,23)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1407.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1381" width="0.0549%" height="15" fill="rgb(239,46,49)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1391.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1365" width="0.0549%" height="15" fill="rgb(206,172,51)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1349" width="0.0549%" height="15" fill="rgb(213,212,35)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1333" width="0.0549%" height="15" fill="rgb(252,40,27)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1317" width="0.0549%" height="15" fill="rgb(212,33,41)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1301" width="0.0549%" height="15" fill="rgb(232,160,27)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1285" width="0.0549%" height="15" fill="rgb(244,160,20)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1269" width="0.0549%" height="15" fill="rgb(205,66,20)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1279.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1253" width="0.0549%" height="15" fill="rgb(236,158,6)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1237" width="0.0549%" height="15" fill="rgb(232,25,36)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1247.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1221" width="0.0549%" height="15" fill="rgb(220,153,35)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1205" width="0.0549%" height="15" fill="rgb(216,5,8)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1189" width="0.0549%" height="15" fill="rgb(240,97,3)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1173" width="0.0549%" height="15" fill="rgb(220,99,26)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1157" width="0.0549%" height="15" fill="rgb(237,96,2)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1141" width="0.0549%" height="15" fill="rgb(217,197,47)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1125" width="0.0549%" height="15" fill="rgb(252,133,54)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1135.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1109" width="0.0549%" height="15" fill="rgb(233,37,30)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1093" width="0.0549%" height="15" fill="rgb(239,182,12)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1103.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1077" width="0.0549%" height="15" fill="rgb(245,83,39)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1061" width="0.0549%" height="15" fill="rgb(222,109,36)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1045" width="0.0549%" height="15" fill="rgb(237,95,44)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1029" width="0.0549%" height="15" fill="rgb(216,36,54)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="1013" width="0.0549%" height="15" fill="rgb(236,164,3)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="997" width="0.0549%" height="15" fill="rgb(223,15,21)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="981" width="0.0549%" height="15" fill="rgb(239,191,12)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="991.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="965" width="0.0549%" height="15" fill="rgb(231,191,37)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="949" width="0.0549%" height="15" fill="rgb(209,155,36)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="959.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="933" width="0.0549%" height="15" fill="rgb(216,222,49)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="917" width="0.0549%" height="15" fill="rgb(218,181,2)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="901" width="0.0549%" height="15" fill="rgb(239,125,9)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="885" width="0.0549%" height="15" fill="rgb(233,103,7)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="869" width="0.0549%" height="15" fill="rgb(209,223,5)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="853" width="0.0549%" height="15" fill="rgb(234,71,27)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="837" width="0.0549%" height="15" fill="rgb(251,202,16)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="847.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="821" width="0.0549%" height="15" fill="rgb(231,180,0)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="831.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="805" width="0.0549%" height="15" fill="rgb(223,58,28)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="815.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="789" width="0.0549%" height="15" fill="rgb(250,34,24)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="799.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="773" width="0.0549%" height="15" fill="rgb(235,24,16)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="757" width="0.0549%" height="15" fill="rgb(219,28,33)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="767.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="741" width="0.0549%" height="15" fill="rgb(228,150,43)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="751.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="725" width="0.0549%" height="15" fill="rgb(221,228,36)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="709" width="0.0549%" height="15" fill="rgb(232,116,17)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="693" width="0.0549%" height="15" fill="rgb(220,110,51)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="677" width="0.0549%" height="15" fill="rgb(207,26,25)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="687.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="661" width="0.0549%" height="15" fill="rgb(223,58,19)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="671.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="645" width="0.0549%" height="15" fill="rgb(234,125,39)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="655.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="629" width="0.0549%" height="15" fill="rgb(241,48,36)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="639.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="613" width="0.0549%" height="15" fill="rgb(217,148,51)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="597" width="0.0549%" height="15" fill="rgb(247,17,25)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="607.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="581" width="0.0549%" height="15" fill="rgb(219,89,38)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="565" width="0.0549%" height="15" fill="rgb(220,145,2)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="549" width="0.0549%" height="15" fill="rgb(244,66,47)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="533" width="0.0549%" height="15" fill="rgb(226,182,5)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="517" width="0.0549%" height="15" fill="rgb(211,98,20)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="501" width="0.0549%" height="15" fill="rgb(217,103,52)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="485" width="0.0549%" height="15" fill="rgb(208,125,52)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="495.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="469" width="0.0549%" height="15" fill="rgb(244,70,13)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="453" width="0.0549%" height="15" fill="rgb(253,124,3)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="463.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="437" width="0.0549%" height="15" fill="rgb(222,145,32)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="421" width="0.0549%" height="15" fill="rgb(232,183,47)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="405" width="0.0549%" height="15" fill="rgb(246,226,4)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="389" width="0.0549%" height="15" fill="rgb(228,185,46)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="373" width="0.0549%" height="15" fill="rgb(213,196,4)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="357" width="0.0549%" height="15" fill="rgb(212,2,45)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="341" width="0.0549%" height="15" fill="rgb(217,145,50)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="351.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="325" width="0.0549%" height="15" fill="rgb(242,10,46)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="335.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="309" width="0.0549%" height="15" fill="rgb(252,91,48)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="319.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="293" width="0.0549%" height="15" fill="rgb(216,72,13)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="277" width="0.0549%" height="15" fill="rgb(219,6,37)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="287.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="261" width="0.0549%" height="15" fill="rgb(236,185,40)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="245" width="0.0549%" height="15" fill="rgb(208,81,48)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="255.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="229" width="0.0549%" height="15" fill="rgb(211,42,33)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="239.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="213" width="0.0549%" height="15" fill="rgb(211,90,39)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="223.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="197" width="0.0549%" height="15" fill="rgb(218,136,12)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="207.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="181" width="0.0549%" height="15" fill="rgb(234,12,32)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="165" width="0.0549%" height="15" fill="rgb(221,164,18)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="175.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="149" width="0.0549%" height="15" fill="rgb(239,135,14)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="159.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="133" width="0.0549%" height="15" fill="rgb(226,198,47)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="143.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint (168,926,528 samples, 0.05%)</title><rect x="99.4119%" y="117" width="0.0549%" height="15" fill="rgb(244,121,47)" fg:x="305725405651" fg:w="168926528"/><text x="99.6619%" y="127.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (203,082,783 samples, 0.07%)</title><rect x="99.4119%" y="2053" width="0.0660%" height="15" fill="rgb(226,21,48)" fg:x="305725405651" fg:w="203082783"/><text x="99.6619%" y="2063.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (203,082,783 samples, 0.07%)</title><rect x="99.4119%" y="2037" width="0.0660%" height="15" fill="rgb(215,178,47)" fg:x="305725405651" fg:w="203082783"/><text x="99.6619%" y="2047.50"></text></g><g><title>gpui::window::Window::draw (203,082,783 samples, 0.07%)</title><rect x="99.4119%" y="2021" width="0.0660%" height="15" fill="rgb(206,212,19)" fg:x="305725405651" fg:w="203082783"/><text x="99.6619%" y="2031.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="2005" width="0.0111%" height="15" fill="rgb(230,104,34)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="2015.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1989" width="0.0111%" height="15" fill="rgb(210,96,51)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1999.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1973" width="0.0111%" height="15" fill="rgb(229,111,47)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1983.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1957" width="0.0111%" height="15" fill="rgb(218,174,45)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1967.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1941" width="0.0111%" height="15" fill="rgb(215,21,32)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1951.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1925" width="0.0111%" height="15" fill="rgb(235,72,21)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1909" width="0.0111%" height="15" fill="rgb(250,113,30)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1893" width="0.0111%" height="15" fill="rgb(244,136,34)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1877" width="0.0111%" height="15" fill="rgb(213,226,47)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1887.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1861" width="0.0111%" height="15" fill="rgb(224,136,40)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1871.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1845" width="0.0111%" height="15" fill="rgb(253,124,12)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1855.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1829" width="0.0111%" height="15" fill="rgb(210,67,8)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1839.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1813" width="0.0111%" height="15" fill="rgb(210,204,0)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1797" width="0.0111%" height="15" fill="rgb(217,179,22)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1781" width="0.0111%" height="15" fill="rgb(237,192,33)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1765" width="0.0111%" height="15" fill="rgb(211,104,28)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1749" width="0.0111%" height="15" fill="rgb(214,75,30)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1759.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1733" width="0.0111%" height="15" fill="rgb(220,227,12)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1717" width="0.0111%" height="15" fill="rgb(233,134,28)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1727.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1701" width="0.0111%" height="15" fill="rgb(215,146,24)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1685" width="0.0111%" height="15" fill="rgb(248,227,20)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1669" width="0.0111%" height="15" fill="rgb(250,44,42)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1653" width="0.0111%" height="15" fill="rgb(219,5,35)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1637" width="0.0111%" height="15" fill="rgb(241,132,32)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1647.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1621" width="0.0111%" height="15" fill="rgb(234,212,51)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1605" width="0.0111%" height="15" fill="rgb(242,173,29)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1615.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1589" width="0.0111%" height="15" fill="rgb(212,159,2)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1573" width="0.0111%" height="15" fill="rgb(238,165,31)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1557" width="0.0111%" height="15" fill="rgb(241,57,36)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1541" width="0.0111%" height="15" fill="rgb(249,7,4)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1525" width="0.0111%" height="15" fill="rgb(250,137,44)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1535.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1509" width="0.0111%" height="15" fill="rgb(244,185,1)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1493" width="0.0111%" height="15" fill="rgb(216,5,53)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1503.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1477" width="0.0111%" height="15" fill="rgb(234,89,21)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1461" width="0.0111%" height="15" fill="rgb(250,81,43)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1445" width="0.0111%" height="15" fill="rgb(243,132,11)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1429" width="0.0111%" height="15" fill="rgb(253,159,28)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1413" width="0.0111%" height="15" fill="rgb(237,167,34)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1423.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1397" width="0.0111%" height="15" fill="rgb(237,16,50)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1407.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1381" width="0.0111%" height="15" fill="rgb(247,125,2)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1391.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1365" width="0.0111%" height="15" fill="rgb(254,35,3)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1349" width="0.0111%" height="15" fill="rgb(237,209,21)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1333" width="0.0111%" height="15" fill="rgb(224,122,20)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1317" width="0.0111%" height="15" fill="rgb(224,11,46)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1301" width="0.0111%" height="15" fill="rgb(248,21,33)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1311.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1285" width="0.0111%" height="15" fill="rgb(222,144,7)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1269" width="0.0111%" height="15" fill="rgb(205,141,37)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1279.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1253" width="0.0111%" height="15" fill="rgb(237,130,8)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1237" width="0.0111%" height="15" fill="rgb(209,179,39)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1221" width="0.0111%" height="15" fill="rgb(207,52,17)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1205" width="0.0111%" height="15" fill="rgb(253,158,17)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1189" width="0.0111%" height="15" fill="rgb(208,19,53)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1199.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (34,156,255 samples, 0.01%)</title><rect x="99.4668%" y="1173" width="0.0111%" height="15" fill="rgb(233,152,13)" fg:x="305894332179" fg:w="34156255"/><text x="99.7168%" y="1183.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (42,449,122 samples, 0.01%)</title><rect x="99.4866%" y="133" width="0.0138%" height="15" fill="rgb(231,84,1)" fg:x="305955166361" fg:w="42449122"/><text x="99.7366%" y="143.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (47,362,719 samples, 0.02%)</title><rect x="99.4866%" y="181" width="0.0154%" height="15" fill="rgb(229,142,48)" fg:x="305955166361" fg:w="47362719"/><text x="99.7366%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (47,362,719 samples, 0.02%)</title><rect x="99.4866%" y="165" width="0.0154%" height="15" fill="rgb(248,70,29)" fg:x="305955166361" fg:w="47362719"/><text x="99.7366%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (47,362,719 samples, 0.02%)</title><rect x="99.4866%" y="149" width="0.0154%" height="15" fill="rgb(250,85,7)" fg:x="305955166361" fg:w="47362719"/><text x="99.7366%" y="159.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="965" width="0.0217%" height="15" fill="rgb(235,140,43)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="949" width="0.0217%" height="15" fill="rgb(216,0,5)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="959.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="933" width="0.0217%" height="15" fill="rgb(223,167,29)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="917" width="0.0217%" height="15" fill="rgb(229,150,33)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="901" width="0.0217%" height="15" fill="rgb(227,26,52)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="885" width="0.0217%" height="15" fill="rgb(250,60,52)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="895.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="869" width="0.0217%" height="15" fill="rgb(228,81,46)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="853" width="0.0217%" height="15" fill="rgb(225,218,31)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="863.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="837" width="0.0217%" height="15" fill="rgb(230,35,16)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="847.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="821" width="0.0217%" height="15" fill="rgb(247,100,0)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="805" width="0.0217%" height="15" fill="rgb(223,135,11)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="789" width="0.0217%" height="15" fill="rgb(207,136,0)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="773" width="0.0217%" height="15" fill="rgb(246,131,25)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="757" width="0.0217%" height="15" fill="rgb(209,47,12)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="741" width="0.0217%" height="15" fill="rgb(221,25,16)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="751.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="725" width="0.0217%" height="15" fill="rgb(223,164,33)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="735.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (66,633,032 samples, 0.02%)</title><rect x="99.4807%" y="709" width="0.0217%" height="15" fill="rgb(220,26,23)" fg:x="305937010311" fg:w="66633032"/><text x="99.7307%" y="719.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="693" width="0.0203%" height="15" fill="rgb(231,224,1)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="703.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="677" width="0.0203%" height="15" fill="rgb(229,221,24)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="687.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="661" width="0.0203%" height="15" fill="rgb(213,34,10)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="645" width="0.0203%" height="15" fill="rgb(215,33,11)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="629" width="0.0203%" height="15" fill="rgb(216,20,41)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="613" width="0.0203%" height="15" fill="rgb(228,43,31)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="597" width="0.0203%" height="15" fill="rgb(227,83,26)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="607.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="581" width="0.0203%" height="15" fill="rgb(217,168,19)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="591.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="565" width="0.0203%" height="15" fill="rgb(231,34,33)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="575.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="549" width="0.0203%" height="15" fill="rgb(230,120,51)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="533" width="0.0203%" height="15" fill="rgb(215,138,27)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="543.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="517" width="0.0203%" height="15" fill="rgb(246,80,47)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="501" width="0.0203%" height="15" fill="rgb(215,57,53)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="485" width="0.0203%" height="15" fill="rgb(229,137,5)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="469" width="0.0203%" height="15" fill="rgb(210,86,2)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="453" width="0.0203%" height="15" fill="rgb(231,226,51)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="463.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="437" width="0.0203%" height="15" fill="rgb(216,62,29)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="421" width="0.0203%" height="15" fill="rgb(248,202,3)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="431.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="405" width="0.0203%" height="15" fill="rgb(225,181,7)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="389" width="0.0203%" height="15" fill="rgb(247,170,54)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="373" width="0.0203%" height="15" fill="rgb(236,204,33)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="357" width="0.0203%" height="15" fill="rgb(216,45,30)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="341" width="0.0203%" height="15" fill="rgb(213,203,16)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="351.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (62,375,776 samples, 0.02%)</title><rect x="99.4821%" y="325" width="0.0203%" height="15" fill="rgb(215,46,16)" fg:x="305941267567" fg:w="62375776"/><text x="99.7321%" y="335.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (61,199,384 samples, 0.02%)</title><rect x="99.4825%" y="309" width="0.0199%" height="15" fill="rgb(217,162,46)" fg:x="305942443959" fg:w="61199384"/><text x="99.7325%" y="319.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (61,199,384 samples, 0.02%)</title><rect x="99.4825%" y="293" width="0.0199%" height="15" fill="rgb(224,189,20)" fg:x="305942443959" fg:w="61199384"/><text x="99.7325%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (61,199,384 samples, 0.02%)</title><rect x="99.4825%" y="277" width="0.0199%" height="15" fill="rgb(232,35,51)" fg:x="305942443959" fg:w="61199384"/><text x="99.7325%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (61,199,384 samples, 0.02%)</title><rect x="99.4825%" y="261" width="0.0199%" height="15" fill="rgb(243,221,46)" fg:x="305942443959" fg:w="61199384"/><text x="99.7325%" y="271.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (61,199,384 samples, 0.02%)</title><rect x="99.4825%" y="245" width="0.0199%" height="15" fill="rgb(248,16,16)" fg:x="305942443959" fg:w="61199384"/><text x="99.7325%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (61,199,384 samples, 0.02%)</title><rect x="99.4825%" y="229" width="0.0199%" height="15" fill="rgb(220,168,13)" fg:x="305942443959" fg:w="61199384"/><text x="99.7325%" y="239.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (61,199,384 samples, 0.02%)</title><rect x="99.4825%" y="213" width="0.0199%" height="15" fill="rgb(243,102,39)" fg:x="305942443959" fg:w="61199384"/><text x="99.7325%" y="223.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (48,476,982 samples, 0.02%)</title><rect x="99.4866%" y="197" width="0.0158%" height="15" fill="rgb(245,82,32)" fg:x="305955166361" fg:w="48476982"/><text x="99.7366%" y="207.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="677" width="0.0118%" height="15" fill="rgb(230,164,19)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="687.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="661" width="0.0118%" height="15" fill="rgb(221,9,41)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="645" width="0.0118%" height="15" fill="rgb(216,93,0)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="655.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="629" width="0.0118%" height="15" fill="rgb(235,113,9)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="613" width="0.0118%" height="15" fill="rgb(209,224,10)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="597" width="0.0118%" height="15" fill="rgb(226,54,34)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="581" width="0.0118%" height="15" fill="rgb(222,60,8)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="591.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="565" width="0.0118%" height="15" fill="rgb(248,228,41)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="549" width="0.0118%" height="15" fill="rgb(226,31,32)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="559.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="533" width="0.0118%" height="15" fill="rgb(242,132,49)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="517" width="0.0118%" height="15" fill="rgb(224,194,19)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="501" width="0.0118%" height="15" fill="rgb(232,200,51)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="485" width="0.0118%" height="15" fill="rgb(235,60,46)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="495.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="469" width="0.0118%" height="15" fill="rgb(240,109,52)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="479.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="453" width="0.0118%" height="15" fill="rgb(215,78,37)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="437" width="0.0118%" height="15" fill="rgb(225,141,7)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="447.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="421" width="0.0118%" height="15" fill="rgb(216,102,54)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="405" width="0.0118%" height="15" fill="rgb(238,143,13)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="389" width="0.0118%" height="15" fill="rgb(219,45,51)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="373" width="0.0118%" height="15" fill="rgb(242,105,46)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="383.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="357" width="0.0118%" height="15" fill="rgb(206,154,49)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="341" width="0.0118%" height="15" fill="rgb(239,215,4)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="351.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="325" width="0.0118%" height="15" fill="rgb(238,82,17)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="335.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="309" width="0.0118%" height="15" fill="rgb(242,49,30)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="293" width="0.0118%" height="15" fill="rgb(248,5,16)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="277" width="0.0118%" height="15" fill="rgb(237,138,32)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="287.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="261" width="0.0118%" height="15" fill="rgb(235,79,45)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="245" width="0.0118%" height="15" fill="rgb(213,105,25)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="255.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="229" width="0.0118%" height="15" fill="rgb(251,131,7)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="213" width="0.0118%" height="15" fill="rgb(211,155,7)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="223.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="197" width="0.0118%" height="15" fill="rgb(243,70,15)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="207.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="181" width="0.0118%" height="15" fill="rgb(215,171,2)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="191.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="165" width="0.0118%" height="15" fill="rgb(244,121,35)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="175.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::request_layout (36,370,210 samples, 0.01%)</title><rect x="99.5024%" y="149" width="0.0118%" height="15" fill="rgb(249,147,17)" fg:x="306003643343" fg:w="36370210"/><text x="99.7524%" y="159.50"></text></g><g><title>gpui::view::any_view::render (34,292,320 samples, 0.01%)</title><rect x="99.5031%" y="133" width="0.0112%" height="15" fill="rgb(241,193,52)" fg:x="306005721233" fg:w="34292320"/><text x="99.7531%" y="143.50"></text></g><g><title>gpui::app::App::update (34,292,320 samples, 0.01%)</title><rect x="99.5031%" y="117" width="0.0112%" height="15" fill="rgb(217,159,39)" fg:x="306005721233" fg:w="34292320"/><text x="99.7531%" y="127.50"></text></g><g><title>editor::element::LineWithInvisibles::from_chunks (39,329,707 samples, 0.01%)</title><rect x="99.5246%" y="229" width="0.0128%" height="15" fill="rgb(248,110,0)" fg:x="306071926227" fg:w="39329707"/><text x="99.7746%" y="239.50"></text></g><g><title>editor::element::layout_line (49,453,063 samples, 0.02%)</title><rect x="99.5374%" y="229" width="0.0161%" height="15" fill="rgb(233,227,0)" fg:x="306111255934" fg:w="49453063"/><text x="99.7874%" y="239.50"></text></g><g><title>main (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="2053" width="0.0811%" height="15" fill="rgb(252,55,2)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="2063.50"></text></g><g><title>std::rt::lang_start_internal (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="2037" width="0.0811%" height="15" fill="rgb(224,194,24)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="2047.50"></text></g><g><title>std::rt::lang_start::{{closure}} (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="2021" width="0.0811%" height="15" fill="rgb(247,5,33)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="2031.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="2005" width="0.0811%" height="15" fill="rgb(242,66,47)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="2015.50"></text></g><g><title>zed::main (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1989" width="0.0811%" height="15" fill="rgb(213,107,12)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1999.50"></text></g><g><title>gpui::app::Application::run (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1973" width="0.0811%" height="15" fill="rgb(206,131,1)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1983.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1957" width="0.0811%" height="15" fill="rgb(214,9,36)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1967.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1941" width="0.0811%" height="15" fill="rgb(251,215,18)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1951.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1925" width="0.0811%" height="15" fill="rgb(251,64,9)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1935.50"></text></g><g><title>wayland_client::event_queue::queue_callback (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1909" width="0.0811%" height="15" fill="rgb(235,68,21)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1919.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1893" width="0.0811%" height="15" fill="rgb(240,69,38)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1903.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1877" width="0.0811%" height="15" fill="rgb(231,18,27)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1887.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1861" width="0.0811%" height="15" fill="rgb(215,154,25)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1871.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1845" width="0.0811%" height="15" fill="rgb(224,33,46)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1855.50"></text></g><g><title>gpui::window::Window::draw (249,395,809 samples, 0.08%)</title><rect x="99.4779%" y="1829" width="0.0811%" height="15" fill="rgb(248,191,53)" fg:x="305928488434" fg:w="249395809"/><text x="99.7279%" y="1839.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1813" width="0.0783%" height="15" fill="rgb(231,3,37)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1823.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1797" width="0.0783%" height="15" fill="rgb(209,152,2)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1807.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1781" width="0.0783%" height="15" fill="rgb(212,208,43)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1791.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1765" width="0.0783%" height="15" fill="rgb(208,60,49)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1749" width="0.0783%" height="15" fill="rgb(245,135,6)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1759.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1733" width="0.0783%" height="15" fill="rgb(243,86,23)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1717" width="0.0783%" height="15" fill="rgb(223,7,20)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1701" width="0.0783%" height="15" fill="rgb(212,182,17)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1685" width="0.0783%" height="15" fill="rgb(237,94,50)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1669" width="0.0783%" height="15" fill="rgb(232,185,44)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1679.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1653" width="0.0783%" height="15" fill="rgb(205,50,36)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1637" width="0.0783%" height="15" fill="rgb(252,32,32)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1647.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1621" width="0.0783%" height="15" fill="rgb(241,123,33)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1605" width="0.0783%" height="15" fill="rgb(212,140,16)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1589" width="0.0783%" height="15" fill="rgb(247,132,5)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1573" width="0.0783%" height="15" fill="rgb(209,137,38)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1557" width="0.0783%" height="15" fill="rgb(248,32,42)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1567.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1541" width="0.0783%" height="15" fill="rgb(216,188,40)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1551.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1525" width="0.0783%" height="15" fill="rgb(209,127,53)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1535.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1509" width="0.0783%" height="15" fill="rgb(254,162,9)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1493" width="0.0783%" height="15" fill="rgb(219,183,10)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1477" width="0.0783%" height="15" fill="rgb(217,192,21)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1461" width="0.0783%" height="15" fill="rgb(251,89,27)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1445" width="0.0783%" height="15" fill="rgb(253,55,28)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1455.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1429" width="0.0783%" height="15" fill="rgb(216,159,8)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1439.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1413" width="0.0783%" height="15" fill="rgb(231,228,44)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1423.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1397" width="0.0783%" height="15" fill="rgb(247,34,48)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1381" width="0.0783%" height="15" fill="rgb(247,222,18)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1365" width="0.0783%" height="15" fill="rgb(227,49,4)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1349" width="0.0783%" height="15" fill="rgb(219,189,53)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1333" width="0.0783%" height="15" fill="rgb(241,160,53)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1343.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1317" width="0.0783%" height="15" fill="rgb(227,115,4)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1301" width="0.0783%" height="15" fill="rgb(215,28,28)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1311.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1285" width="0.0783%" height="15" fill="rgb(237,143,40)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1269" width="0.0783%" height="15" fill="rgb(205,107,24)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1253" width="0.0783%" height="15" fill="rgb(209,112,35)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1237" width="0.0783%" height="15" fill="rgb(206,135,5)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1247.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1221" width="0.0783%" height="15" fill="rgb(227,217,38)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1231.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1205" width="0.0783%" height="15" fill="rgb(205,0,41)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1189" width="0.0783%" height="15" fill="rgb(220,20,40)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1199.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1173" width="0.0783%" height="15" fill="rgb(216,145,3)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1157" width="0.0783%" height="15" fill="rgb(207,130,51)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1141" width="0.0783%" height="15" fill="rgb(252,93,13)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1125" width="0.0783%" height="15" fill="rgb(210,105,15)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1135.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1109" width="0.0783%" height="15" fill="rgb(212,126,31)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1119.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1093" width="0.0783%" height="15" fill="rgb(241,167,46)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1103.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1077" width="0.0783%" height="15" fill="rgb(217,143,19)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1087.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1061" width="0.0783%" height="15" fill="rgb(235,117,33)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1045" width="0.0783%" height="15" fill="rgb(247,95,6)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1029" width="0.0783%" height="15" fill="rgb(243,206,43)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="1013" width="0.0783%" height="15" fill="rgb(229,65,54)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="997" width="0.0783%" height="15" fill="rgb(247,137,34)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="1007.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (240,873,932 samples, 0.08%)</title><rect x="99.4807%" y="981" width="0.0783%" height="15" fill="rgb(245,174,44)" fg:x="305937010311" fg:w="240873932"/><text x="99.7307%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="965" width="0.0567%" height="15" fill="rgb(223,64,15)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="975.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="949" width="0.0567%" height="15" fill="rgb(243,153,36)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="933" width="0.0567%" height="15" fill="rgb(252,23,4)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="917" width="0.0567%" height="15" fill="rgb(209,132,13)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="901" width="0.0567%" height="15" fill="rgb(209,196,21)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="911.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="885" width="0.0567%" height="15" fill="rgb(252,197,1)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="895.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="869" width="0.0567%" height="15" fill="rgb(229,42,46)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="879.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="853" width="0.0567%" height="15" fill="rgb(219,85,8)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="863.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="837" width="0.0567%" height="15" fill="rgb(223,185,14)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="821" width="0.0567%" height="15" fill="rgb(217,196,18)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="831.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="805" width="0.0567%" height="15" fill="rgb(220,122,37)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="789" width="0.0567%" height="15" fill="rgb(236,135,33)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="773" width="0.0567%" height="15" fill="rgb(222,86,54)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="757" width="0.0567%" height="15" fill="rgb(227,42,22)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="767.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="741" width="0.0567%" height="15" fill="rgb(243,101,27)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="751.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="725" width="0.0567%" height="15" fill="rgb(229,100,8)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="735.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="709" width="0.0567%" height="15" fill="rgb(252,68,10)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="719.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (174,240,900 samples, 0.06%)</title><rect x="99.5024%" y="693" width="0.0567%" height="15" fill="rgb(219,19,31)" fg:x="306003643343" fg:w="174240900"/><text x="99.7524%" y="703.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="677" width="0.0448%" height="15" fill="rgb(246,150,44)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="687.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="661" width="0.0448%" height="15" fill="rgb(211,14,39)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="671.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="645" width="0.0448%" height="15" fill="rgb(221,98,29)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="629" width="0.0448%" height="15" fill="rgb(221,70,26)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="613" width="0.0448%" height="15" fill="rgb(236,146,30)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="623.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="597" width="0.0448%" height="15" fill="rgb(226,94,34)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="581" width="0.0448%" height="15" fill="rgb(248,132,21)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="591.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="565" width="0.0448%" height="15" fill="rgb(245,43,50)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="549" width="0.0448%" height="15" fill="rgb(245,132,31)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="559.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="533" width="0.0448%" height="15" fill="rgb(230,171,4)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="517" width="0.0448%" height="15" fill="rgb(235,6,45)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="501" width="0.0448%" height="15" fill="rgb(220,80,28)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="485" width="0.0448%" height="15" fill="rgb(242,171,9)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="469" width="0.0448%" height="15" fill="rgb(214,135,29)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="479.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (137,870,690 samples, 0.04%)</title><rect x="99.5142%" y="453" width="0.0448%" height="15" fill="rgb(221,229,16)" fg:x="306040013553" fg:w="137870690"/><text x="99.7642%" y="463.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="437" width="0.0445%" height="15" fill="rgb(253,59,46)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="447.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="421" width="0.0445%" height="15" fill="rgb(250,147,20)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="405" width="0.0445%" height="15" fill="rgb(236,64,48)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="415.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="389" width="0.0445%" height="15" fill="rgb(240,37,42)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="373" width="0.0445%" height="15" fill="rgb(220,41,50)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="357" width="0.0445%" height="15" fill="rgb(216,51,14)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="341" width="0.0445%" height="15" fill="rgb(215,83,10)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="351.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="325" width="0.0445%" height="15" fill="rgb(206,144,17)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="335.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="309" width="0.0445%" height="15" fill="rgb(219,196,37)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="319.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="293" width="0.0445%" height="15" fill="rgb(226,135,26)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="303.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="277" width="0.0445%" height="15" fill="rgb(237,195,40)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="287.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="261" width="0.0445%" height="15" fill="rgb(228,182,42)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="271.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (136,735,530 samples, 0.04%)</title><rect x="99.5146%" y="245" width="0.0445%" height="15" fill="rgb(224,135,50)" fg:x="306041148713" fg:w="136735530"/><text x="99.7646%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1621" width="0.0110%" height="15" fill="rgb(236,215,34)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1631.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1605" width="0.0110%" height="15" fill="rgb(244,213,27)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1589" width="0.0110%" height="15" fill="rgb(233,37,53)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1573" width="0.0110%" height="15" fill="rgb(222,132,14)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1557" width="0.0110%" height="15" fill="rgb(219,202,29)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1541" width="0.0110%" height="15" fill="rgb(226,157,39)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1525" width="0.0110%" height="15" fill="rgb(235,213,2)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1509" width="0.0110%" height="15" fill="rgb(250,121,2)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1519.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1493" width="0.0110%" height="15" fill="rgb(206,192,33)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1503.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1477" width="0.0110%" height="15" fill="rgb(240,161,6)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1487.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1461" width="0.0110%" height="15" fill="rgb(246,53,30)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1471.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1445" width="0.0110%" height="15" fill="rgb(219,123,43)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1429" width="0.0110%" height="15" fill="rgb(236,53,49)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1439.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1413" width="0.0110%" height="15" fill="rgb(241,156,1)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1397" width="0.0110%" height="15" fill="rgb(209,73,26)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1381" width="0.0110%" height="15" fill="rgb(206,114,3)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1365" width="0.0110%" height="15" fill="rgb(230,214,9)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1349" width="0.0110%" height="15" fill="rgb(240,184,46)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1333" width="0.0110%" height="15" fill="rgb(242,169,54)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1317" width="0.0110%" height="15" fill="rgb(207,168,50)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1327.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1301" width="0.0110%" height="15" fill="rgb(240,114,2)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1311.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1285" width="0.0110%" height="15" fill="rgb(211,17,40)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1269" width="0.0110%" height="15" fill="rgb(235,97,36)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1279.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1253" width="0.0110%" height="15" fill="rgb(208,164,11)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1237" width="0.0110%" height="15" fill="rgb(242,11,17)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1221" width="0.0110%" height="15" fill="rgb(215,86,33)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1205" width="0.0110%" height="15" fill="rgb(245,185,28)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1189" width="0.0110%" height="15" fill="rgb(231,89,42)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1173" width="0.0110%" height="15" fill="rgb(210,18,47)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1157" width="0.0110%" height="15" fill="rgb(214,84,8)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1167.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1141" width="0.0110%" height="15" fill="rgb(214,222,23)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1125" width="0.0110%" height="15" fill="rgb(213,104,21)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1135.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1109" width="0.0110%" height="15" fill="rgb(238,138,6)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1093" width="0.0110%" height="15" fill="rgb(205,167,50)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1077" width="0.0110%" height="15" fill="rgb(230,105,27)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1061" width="0.0110%" height="15" fill="rgb(222,97,48)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1045" width="0.0110%" height="15" fill="rgb(222,197,14)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1029" width="0.0110%" height="15" fill="rgb(210,105,47)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1039.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="1013" width="0.0110%" height="15" fill="rgb(238,158,19)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1023.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="997" width="0.0110%" height="15" fill="rgb(226,176,23)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="981" width="0.0110%" height="15" fill="rgb(208,79,31)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="991.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="965" width="0.0110%" height="15" fill="rgb(221,154,21)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="949" width="0.0110%" height="15" fill="rgb(213,61,41)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="933" width="0.0110%" height="15" fill="rgb(215,28,33)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="917" width="0.0110%" height="15" fill="rgb(231,139,26)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="901" width="0.0110%" height="15" fill="rgb(232,159,16)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="911.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="885" width="0.0110%" height="15" fill="rgb(233,80,10)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="869" width="0.0110%" height="15" fill="rgb(208,147,29)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (33,849,984 samples, 0.01%)</title><rect x="99.5605%" y="853" width="0.0110%" height="15" fill="rgb(213,10,12)" fg:x="306182345621" fg:w="33849984"/><text x="99.8105%" y="863.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::paint (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="837" width="0.0107%" height="15" fill="rgb(231,218,13)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="821" width="0.0107%" height="15" fill="rgb(244,199,44)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="805" width="0.0107%" height="15" fill="rgb(240,144,53)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="789" width="0.0107%" height="15" fill="rgb(223,57,28)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="773" width="0.0107%" height="15" fill="rgb(213,134,38)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="757" width="0.0107%" height="15" fill="rgb(251,182,42)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="741" width="0.0107%" height="15" fill="rgb(229,93,13)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="751.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="725" width="0.0107%" height="15" fill="rgb(234,171,3)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="735.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="709" width="0.0107%" height="15" fill="rgb(241,105,32)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="719.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="693" width="0.0107%" height="15" fill="rgb(221,66,3)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="677" width="0.0107%" height="15" fill="rgb(248,155,29)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="661" width="0.0107%" height="15" fill="rgb(231,31,5)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="645" width="0.0107%" height="15" fill="rgb(213,188,31)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="629" width="0.0107%" height="15" fill="rgb(212,104,33)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="613" width="0.0107%" height="15" fill="rgb(254,77,51)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="623.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="597" width="0.0107%" height="15" fill="rgb(234,39,26)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="581" width="0.0107%" height="15" fill="rgb(208,88,36)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="591.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="565" width="0.0107%" height="15" fill="rgb(243,222,10)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="549" width="0.0107%" height="15" fill="rgb(218,133,52)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="533" width="0.0107%" height="15" fill="rgb(222,25,26)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="517" width="0.0107%" height="15" fill="rgb(243,174,24)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="501" width="0.0107%" height="15" fill="rgb(233,188,52)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="485" width="0.0107%" height="15" fill="rgb(208,89,14)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="469" width="0.0107%" height="15" fill="rgb(205,204,21)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="479.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="453" width="0.0107%" height="15" fill="rgb(246,39,28)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="463.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (32,764,545 samples, 0.01%)</title><rect x="99.5608%" y="437" width="0.0107%" height="15" fill="rgb(235,71,19)" fg:x="306183431060" fg:w="32764545"/><text x="99.8108%" y="447.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1781" width="0.0147%" height="15" fill="rgb(211,62,39)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1765" width="0.0147%" height="15" fill="rgb(246,118,20)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1775.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1749" width="0.0147%" height="15" fill="rgb(230,82,12)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1733" width="0.0147%" height="15" fill="rgb(205,212,34)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1717" width="0.0147%" height="15" fill="rgb(239,90,1)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1701" width="0.0147%" height="15" fill="rgb(225,198,50)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1685" width="0.0147%" height="15" fill="rgb(227,208,48)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1669" width="0.0147%" height="15" fill="rgb(238,134,41)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1653" width="0.0147%" height="15" fill="rgb(241,58,39)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1663.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (45,152,355 samples, 0.01%)</title><rect x="99.5605%" y="1637" width="0.0147%" height="15" fill="rgb(214,126,4)" fg:x="306182345621" fg:w="45152355"/><text x="99.8105%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (111,776,565 samples, 0.04%)</title><rect x="99.5590%" y="2037" width="0.0363%" height="15" fill="rgb(235,149,4)" fg:x="306177884243" fg:w="111776565"/><text x="99.8090%" y="2047.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (111,776,565 samples, 0.04%)</title><rect x="99.5590%" y="2021" width="0.0363%" height="15" fill="rgb(236,59,29)" fg:x="306177884243" fg:w="111776565"/><text x="99.8090%" y="2031.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (111,776,565 samples, 0.04%)</title><rect x="99.5590%" y="2005" width="0.0363%" height="15" fill="rgb(246,11,33)" fg:x="306177884243" fg:w="111776565"/><text x="99.8090%" y="2015.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (111,776,565 samples, 0.04%)</title><rect x="99.5590%" y="1989" width="0.0363%" height="15" fill="rgb(232,180,35)" fg:x="306177884243" fg:w="111776565"/><text x="99.8090%" y="1999.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (111,776,565 samples, 0.04%)</title><rect x="99.5590%" y="1973" width="0.0363%" height="15" fill="rgb(220,35,37)" fg:x="306177884243" fg:w="111776565"/><text x="99.8090%" y="1983.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (111,776,565 samples, 0.04%)</title><rect x="99.5590%" y="1957" width="0.0363%" height="15" fill="rgb(238,107,48)" fg:x="306177884243" fg:w="111776565"/><text x="99.8090%" y="1967.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (111,776,565 samples, 0.04%)</title><rect x="99.5590%" y="1941" width="0.0363%" height="15" fill="rgb(205,65,21)" fg:x="306177884243" fg:w="111776565"/><text x="99.8090%" y="1951.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (107,315,187 samples, 0.03%)</title><rect x="99.5605%" y="1925" width="0.0349%" height="15" fill="rgb(246,138,48)" fg:x="306182345621" fg:w="107315187"/><text x="99.8105%" y="1935.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (107,315,187 samples, 0.03%)</title><rect x="99.5605%" y="1909" width="0.0349%" height="15" fill="rgb(209,220,47)" fg:x="306182345621" fg:w="107315187"/><text x="99.8105%" y="1919.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (107,315,187 samples, 0.03%)</title><rect x="99.5605%" y="1893" width="0.0349%" height="15" fill="rgb(222,162,49)" fg:x="306182345621" fg:w="107315187"/><text x="99.8105%" y="1903.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (107,315,187 samples, 0.03%)</title><rect x="99.5605%" y="1877" width="0.0349%" height="15" fill="rgb(243,123,11)" fg:x="306182345621" fg:w="107315187"/><text x="99.8105%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (107,315,187 samples, 0.03%)</title><rect x="99.5605%" y="1861" width="0.0349%" height="15" fill="rgb(221,229,41)" fg:x="306182345621" fg:w="107315187"/><text x="99.8105%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (107,315,187 samples, 0.03%)</title><rect x="99.5605%" y="1845" width="0.0349%" height="15" fill="rgb(216,68,4)" fg:x="306182345621" fg:w="107315187"/><text x="99.8105%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (107,315,187 samples, 0.03%)</title><rect x="99.5605%" y="1829" width="0.0349%" height="15" fill="rgb(207,88,35)" fg:x="306182345621" fg:w="107315187"/><text x="99.8105%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (107,315,187 samples, 0.03%)</title><rect x="99.5605%" y="1813" width="0.0349%" height="15" fill="rgb(252,2,5)" fg:x="306182345621" fg:w="107315187"/><text x="99.8105%" y="1823.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (107,315,187 samples, 0.03%)</title><rect x="99.5605%" y="1797" width="0.0349%" height="15" fill="rgb(209,173,7)" fg:x="306182345621" fg:w="107315187"/><text x="99.8105%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (62,162,832 samples, 0.02%)</title><rect x="99.5752%" y="1781" width="0.0202%" height="15" fill="rgb(210,198,52)" fg:x="306227497976" fg:w="62162832"/><text x="99.8252%" y="1791.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (62,162,832 samples, 0.02%)</title><rect x="99.5752%" y="1765" width="0.0202%" height="15" fill="rgb(228,152,32)" fg:x="306227497976" fg:w="62162832"/><text x="99.8252%" y="1775.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (62,162,832 samples, 0.02%)</title><rect x="99.5752%" y="1749" width="0.0202%" height="15" fill="rgb(249,98,29)" fg:x="306227497976" fg:w="62162832"/><text x="99.8252%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (62,162,832 samples, 0.02%)</title><rect x="99.5752%" y="1733" width="0.0202%" height="15" fill="rgb(205,148,48)" fg:x="306227497976" fg:w="62162832"/><text x="99.8252%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (62,162,832 samples, 0.02%)</title><rect x="99.5752%" y="1717" width="0.0202%" height="15" fill="rgb(236,69,34)" fg:x="306227497976" fg:w="62162832"/><text x="99.8252%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (62,162,832 samples, 0.02%)</title><rect x="99.5752%" y="1701" width="0.0202%" height="15" fill="rgb(220,151,41)" fg:x="306227497976" fg:w="62162832"/><text x="99.8252%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (62,162,832 samples, 0.02%)</title><rect x="99.5752%" y="1685" width="0.0202%" height="15" fill="rgb(254,106,24)" fg:x="306227497976" fg:w="62162832"/><text x="99.8252%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (62,162,832 samples, 0.02%)</title><rect x="99.5752%" y="1669" width="0.0202%" height="15" fill="rgb(210,37,48)" fg:x="306227497976" fg:w="62162832"/><text x="99.8252%" y="1679.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (62,162,832 samples, 0.02%)</title><rect x="99.5752%" y="1653" width="0.0202%" height="15" fill="rgb(254,131,5)" fg:x="306227497976" fg:w="62162832"/><text x="99.8252%" y="1663.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (50,282,647 samples, 0.02%)</title><rect x="99.5790%" y="1637" width="0.0164%" height="15" fill="rgb(216,55,41)" fg:x="306239378161" fg:w="50282647"/><text x="99.8290%" y="1647.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (50,282,647 samples, 0.02%)</title><rect x="99.5790%" y="1621" width="0.0164%" height="15" fill="rgb(250,35,31)" fg:x="306239378161" fg:w="50282647"/><text x="99.8290%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (50,282,647 samples, 0.02%)</title><rect x="99.5790%" y="1605" width="0.0164%" height="15" fill="rgb(207,124,33)" fg:x="306239378161" fg:w="50282647"/><text x="99.8290%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (50,282,647 samples, 0.02%)</title><rect x="99.5790%" y="1589" width="0.0164%" height="15" fill="rgb(249,175,17)" fg:x="306239378161" fg:w="50282647"/><text x="99.8290%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (50,282,647 samples, 0.02%)</title><rect x="99.5790%" y="1573" width="0.0164%" height="15" fill="rgb(224,175,39)" fg:x="306239378161" fg:w="50282647"/><text x="99.8290%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (50,282,647 samples, 0.02%)</title><rect x="99.5790%" y="1557" width="0.0164%" height="15" fill="rgb(208,67,49)" fg:x="306239378161" fg:w="50282647"/><text x="99.8290%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (50,282,647 samples, 0.02%)</title><rect x="99.5790%" y="1541" width="0.0164%" height="15" fill="rgb(222,188,41)" fg:x="306239378161" fg:w="50282647"/><text x="99.8290%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (50,282,647 samples, 0.02%)</title><rect x="99.5790%" y="1525" width="0.0164%" height="15" fill="rgb(243,213,30)" fg:x="306239378161" fg:w="50282647"/><text x="99.8290%" y="1535.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (50,282,647 samples, 0.02%)</title><rect x="99.5790%" y="1509" width="0.0164%" height="15" fill="rgb(253,100,45)" fg:x="306239378161" fg:w="50282647"/><text x="99.8290%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (31,612,220 samples, 0.01%)</title><rect x="99.5851%" y="1493" width="0.0103%" height="15" fill="rgb(226,24,44)" fg:x="306258048588" fg:w="31612220"/><text x="99.8351%" y="1503.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (31,612,220 samples, 0.01%)</title><rect x="99.5851%" y="1477" width="0.0103%" height="15" fill="rgb(215,41,24)" fg:x="306258048588" fg:w="31612220"/><text x="99.8351%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (31,612,220 samples, 0.01%)</title><rect x="99.5851%" y="1461" width="0.0103%" height="15" fill="rgb(254,53,33)" fg:x="306258048588" fg:w="31612220"/><text x="99.8351%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (31,612,220 samples, 0.01%)</title><rect x="99.5851%" y="1445" width="0.0103%" height="15" fill="rgb(242,103,10)" fg:x="306258048588" fg:w="31612220"/><text x="99.8351%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (31,612,220 samples, 0.01%)</title><rect x="99.5851%" y="1429" width="0.0103%" height="15" fill="rgb(246,29,21)" fg:x="306258048588" fg:w="31612220"/><text x="99.8351%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (31,612,220 samples, 0.01%)</title><rect x="99.5851%" y="1413" width="0.0103%" height="15" fill="rgb(251,154,1)" fg:x="306258048588" fg:w="31612220"/><text x="99.8351%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (31,612,220 samples, 0.01%)</title><rect x="99.5851%" y="1397" width="0.0103%" height="15" fill="rgb(254,212,26)" fg:x="306258048588" fg:w="31612220"/><text x="99.8351%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (31,612,220 samples, 0.01%)</title><rect x="99.5851%" y="1381" width="0.0103%" height="15" fill="rgb(251,187,46)" fg:x="306258048588" fg:w="31612220"/><text x="99.8351%" y="1391.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (31,612,220 samples, 0.01%)</title><rect x="99.5851%" y="1365" width="0.0103%" height="15" fill="rgb(224,208,14)" fg:x="306258048588" fg:w="31612220"/><text x="99.8351%" y="1375.50"></text></g><g><title>gpui::key_dispatch::DispatchTree::highest_precedence_binding_for_action (46,888,088 samples, 0.02%)</title><rect x="99.6073%" y="53" width="0.0152%" height="15" fill="rgb(222,176,26)" fg:x="306326253464" fg:w="46888088"/><text x="99.8573%" y="63.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (58,070,740 samples, 0.02%)</title><rect x="99.6044%" y="181" width="0.0189%" height="15" fill="rgb(241,219,52)" fg:x="306317257161" fg:w="58070740"/><text x="99.8544%" y="191.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (58,070,740 samples, 0.02%)</title><rect x="99.6044%" y="165" width="0.0189%" height="15" fill="rgb(252,198,21)" fg:x="306317257161" fg:w="58070740"/><text x="99.8544%" y="175.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (58,070,740 samples, 0.02%)</title><rect x="99.6044%" y="149" width="0.0189%" height="15" fill="rgb(244,196,23)" fg:x="306317257161" fg:w="58070740"/><text x="99.8544%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (58,070,740 samples, 0.02%)</title><rect x="99.6044%" y="133" width="0.0189%" height="15" fill="rgb(239,121,44)" fg:x="306317257161" fg:w="58070740"/><text x="99.8544%" y="143.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (58,070,740 samples, 0.02%)</title><rect x="99.6044%" y="117" width="0.0189%" height="15" fill="rgb(249,203,23)" fg:x="306317257161" fg:w="58070740"/><text x="99.8544%" y="127.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (58,070,740 samples, 0.02%)</title><rect x="99.6044%" y="101" width="0.0189%" height="15" fill="rgb(238,219,10)" fg:x="306317257161" fg:w="58070740"/><text x="99.8544%" y="111.50"></text></g><g><title>&lt;ui::components::keybinding::KeyBinding as gpui::element::RenderOnce&gt;::render (57,018,823 samples, 0.02%)</title><rect x="99.6047%" y="85" width="0.0185%" height="15" fill="rgb(241,35,46)" fg:x="306318309078" fg:w="57018823"/><text x="99.8547%" y="95.50"></text></g><g><title>gpui::window::Window::highest_precedence_binding_for_action_in (49,074,437 samples, 0.02%)</title><rect x="99.6073%" y="69" width="0.0160%" height="15" fill="rgb(218,28,6)" fg:x="306326253464" fg:w="49074437"/><text x="99.8573%" y="79.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="629" width="0.0192%" height="15" fill="rgb(233,151,50)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="613" width="0.0192%" height="15" fill="rgb(208,57,8)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="623.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="597" width="0.0192%" height="15" fill="rgb(253,99,10)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="581" width="0.0192%" height="15" fill="rgb(237,196,49)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="565" width="0.0192%" height="15" fill="rgb(209,51,3)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="549" width="0.0192%" height="15" fill="rgb(238,129,10)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="559.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="533" width="0.0192%" height="15" fill="rgb(246,201,16)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="543.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="517" width="0.0192%" height="15" fill="rgb(250,160,20)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="527.50"></text></g><g><title>gpui::window::Window::with_optional_element_state::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="501" width="0.0192%" height="15" fill="rgb(251,107,25)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="511.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="485" width="0.0192%" height="15" fill="rgb(212,103,39)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="469" width="0.0192%" height="15" fill="rgb(207,9,29)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="479.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="453" width="0.0192%" height="15" fill="rgb(227,84,3)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="437" width="0.0192%" height="15" fill="rgb(242,194,7)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="421" width="0.0192%" height="15" fill="rgb(230,40,4)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="405" width="0.0192%" height="15" fill="rgb(243,229,33)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="415.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="389" width="0.0192%" height="15" fill="rgb(240,65,24)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="373" width="0.0192%" height="15" fill="rgb(212,28,20)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="383.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="357" width="0.0192%" height="15" fill="rgb(209,72,3)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="341" width="0.0192%" height="15" fill="rgb(238,170,36)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="325" width="0.0192%" height="15" fill="rgb(236,19,38)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="335.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="309" width="0.0192%" height="15" fill="rgb(230,67,43)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="319.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="293" width="0.0192%" height="15" fill="rgb(227,14,36)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="277" width="0.0192%" height="15" fill="rgb(247,171,49)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="287.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="261" width="0.0192%" height="15" fill="rgb(235,164,51)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="245" width="0.0192%" height="15" fill="rgb(246,107,20)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="255.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="229" width="0.0192%" height="15" fill="rgb(226,88,18)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="213" width="0.0192%" height="15" fill="rgb(235,136,9)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="223.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (59,138,924 samples, 0.02%)</title><rect x="99.6044%" y="197" width="0.0192%" height="15" fill="rgb(209,3,34)" fg:x="306317257161" fg:w="59138924"/><text x="99.8544%" y="207.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (60,335,953 samples, 0.02%)</title><rect x="99.6044%" y="645" width="0.0196%" height="15" fill="rgb(213,38,19)" fg:x="306317257161" fg:w="60335953"/><text x="99.8544%" y="655.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1285" width="0.0231%" height="15" fill="rgb(254,24,24)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1295.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1269" width="0.0231%" height="15" fill="rgb(219,122,42)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1253" width="0.0231%" height="15" fill="rgb(205,128,31)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1263.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1237" width="0.0231%" height="15" fill="rgb(212,142,0)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1221" width="0.0231%" height="15" fill="rgb(211,25,35)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1205" width="0.0231%" height="15" fill="rgb(220,150,53)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1189" width="0.0231%" height="15" fill="rgb(220,30,24)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1173" width="0.0231%" height="15" fill="rgb(218,86,23)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1183.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1157" width="0.0231%" height="15" fill="rgb(206,62,27)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1167.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1141" width="0.0231%" height="15" fill="rgb(249,174,0)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1151.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (70,976,258 samples, 0.02%)</title><rect x="99.6019%" y="1125" width="0.0231%" height="15" fill="rgb(246,67,27)" fg:x="306309704763" fg:w="70976258"/><text x="99.8519%" y="1135.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="1109" width="0.0221%" height="15" fill="rgb(250,195,30)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="1093" width="0.0221%" height="15" fill="rgb(251,171,50)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="1103.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="1077" width="0.0221%" height="15" fill="rgb(236,196,10)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="1061" width="0.0221%" height="15" fill="rgb(249,228,52)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="1045" width="0.0221%" height="15" fill="rgb(219,60,51)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="1029" width="0.0221%" height="15" fill="rgb(240,198,24)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="1013" width="0.0221%" height="15" fill="rgb(240,192,40)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="1023.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="997" width="0.0221%" height="15" fill="rgb(219,118,5)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="981" width="0.0221%" height="15" fill="rgb(205,202,34)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="991.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="965" width="0.0221%" height="15" fill="rgb(234,153,26)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="949" width="0.0221%" height="15" fill="rgb(229,26,29)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="933" width="0.0221%" height="15" fill="rgb(237,115,21)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="917" width="0.0221%" height="15" fill="rgb(252,144,15)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="901" width="0.0221%" height="15" fill="rgb(232,26,13)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="911.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="885" width="0.0221%" height="15" fill="rgb(206,44,19)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="895.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="869" width="0.0221%" height="15" fill="rgb(249,159,2)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="853" width="0.0221%" height="15" fill="rgb(231,5,32)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="863.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="837" width="0.0221%" height="15" fill="rgb(249,210,18)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="847.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="821" width="0.0221%" height="15" fill="rgb(215,223,36)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="805" width="0.0221%" height="15" fill="rgb(245,185,20)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="789" width="0.0221%" height="15" fill="rgb(206,224,11)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="773" width="0.0221%" height="15" fill="rgb(248,73,42)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="757" width="0.0221%" height="15" fill="rgb(219,149,31)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="741" width="0.0221%" height="15" fill="rgb(243,104,17)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="751.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="725" width="0.0221%" height="15" fill="rgb(244,117,33)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="735.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="709" width="0.0221%" height="15" fill="rgb(251,25,47)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="719.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="693" width="0.0221%" height="15" fill="rgb(249,70,13)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="703.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (67,943,349 samples, 0.02%)</title><rect x="99.6029%" y="677" width="0.0221%" height="15" fill="rgb(217,133,18)" fg:x="306312737672" fg:w="67943349"/><text x="99.8529%" y="687.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (63,423,860 samples, 0.02%)</title><rect x="99.6044%" y="661" width="0.0206%" height="15" fill="rgb(248,97,28)" fg:x="306317257161" fg:w="63423860"/><text x="99.8544%" y="671.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (231,027,025 samples, 0.08%)</title><rect x="99.5590%" y="2053" width="0.0751%" height="15" fill="rgb(237,193,4)" fg:x="306177884243" fg:w="231027025"/><text x="99.8090%" y="2063.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="2037" width="0.0388%" height="15" fill="rgb(247,198,45)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="2047.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="2021" width="0.0388%" height="15" fill="rgb(245,2,20)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="2031.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="2005" width="0.0388%" height="15" fill="rgb(210,71,36)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="2015.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1989" width="0.0388%" height="15" fill="rgb(238,114,30)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1999.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1973" width="0.0388%" height="15" fill="rgb(241,200,2)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1983.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1957" width="0.0388%" height="15" fill="rgb(232,106,18)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1967.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1941" width="0.0388%" height="15" fill="rgb(211,141,18)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1951.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1925" width="0.0388%" height="15" fill="rgb(224,9,9)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1935.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1909" width="0.0388%" height="15" fill="rgb(249,137,46)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1919.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1893" width="0.0388%" height="15" fill="rgb(236,44,45)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1903.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1877" width="0.0388%" height="15" fill="rgb(205,68,40)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1887.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1861" width="0.0388%" height="15" fill="rgb(214,198,49)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1871.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1845" width="0.0388%" height="15" fill="rgb(226,140,45)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1855.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1829" width="0.0388%" height="15" fill="rgb(209,109,20)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1813" width="0.0388%" height="15" fill="rgb(217,33,46)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1797" width="0.0388%" height="15" fill="rgb(232,150,33)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1781" width="0.0388%" height="15" fill="rgb(233,76,25)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1765" width="0.0388%" height="15" fill="rgb(254,219,23)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1775.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1749" width="0.0388%" height="15" fill="rgb(233,108,4)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1733" width="0.0388%" height="15" fill="rgb(229,98,6)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1743.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1717" width="0.0388%" height="15" fill="rgb(217,40,27)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1701" width="0.0388%" height="15" fill="rgb(221,35,43)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1685" width="0.0388%" height="15" fill="rgb(212,107,11)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1669" width="0.0388%" height="15" fill="rgb(245,42,44)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1653" width="0.0388%" height="15" fill="rgb(209,31,12)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1663.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (119,250,460 samples, 0.04%)</title><rect x="99.5954%" y="1637" width="0.0388%" height="15" fill="rgb(210,228,54)" fg:x="306289660808" fg:w="119250460"/><text x="99.8454%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (118,258,245 samples, 0.04%)</title><rect x="99.5957%" y="1621" width="0.0385%" height="15" fill="rgb(241,19,33)" fg:x="306290653023" fg:w="118258245"/><text x="99.8457%" y="1631.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (118,258,245 samples, 0.04%)</title><rect x="99.5957%" y="1605" width="0.0385%" height="15" fill="rgb(229,51,27)" fg:x="306290653023" fg:w="118258245"/><text x="99.8457%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (118,258,245 samples, 0.04%)</title><rect x="99.5957%" y="1589" width="0.0385%" height="15" fill="rgb(214,167,49)" fg:x="306290653023" fg:w="118258245"/><text x="99.8457%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (118,258,245 samples, 0.04%)</title><rect x="99.5957%" y="1573" width="0.0385%" height="15" fill="rgb(248,140,47)" fg:x="306290653023" fg:w="118258245"/><text x="99.8457%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (118,258,245 samples, 0.04%)</title><rect x="99.5957%" y="1557" width="0.0385%" height="15" fill="rgb(228,6,51)" fg:x="306290653023" fg:w="118258245"/><text x="99.8457%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (118,258,245 samples, 0.04%)</title><rect x="99.5957%" y="1541" width="0.0385%" height="15" fill="rgb(242,44,53)" fg:x="306290653023" fg:w="118258245"/><text x="99.8457%" y="1551.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (118,258,245 samples, 0.04%)</title><rect x="99.5957%" y="1525" width="0.0385%" height="15" fill="rgb(249,90,50)" fg:x="306290653023" fg:w="118258245"/><text x="99.8457%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (112,778,840 samples, 0.04%)</title><rect x="99.5975%" y="1509" width="0.0367%" height="15" fill="rgb(222,84,19)" fg:x="306296132428" fg:w="112778840"/><text x="99.8475%" y="1519.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (112,778,840 samples, 0.04%)</title><rect x="99.5975%" y="1493" width="0.0367%" height="15" fill="rgb(214,140,12)" fg:x="306296132428" fg:w="112778840"/><text x="99.8475%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (112,778,840 samples, 0.04%)</title><rect x="99.5975%" y="1477" width="0.0367%" height="15" fill="rgb(210,20,43)" fg:x="306296132428" fg:w="112778840"/><text x="99.8475%" y="1487.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (112,778,840 samples, 0.04%)</title><rect x="99.5975%" y="1461" width="0.0367%" height="15" fill="rgb(243,1,40)" fg:x="306296132428" fg:w="112778840"/><text x="99.8475%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (112,778,840 samples, 0.04%)</title><rect x="99.5975%" y="1445" width="0.0367%" height="15" fill="rgb(224,102,26)" fg:x="306296132428" fg:w="112778840"/><text x="99.8475%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (112,778,840 samples, 0.04%)</title><rect x="99.5975%" y="1429" width="0.0367%" height="15" fill="rgb(221,179,1)" fg:x="306296132428" fg:w="112778840"/><text x="99.8475%" y="1439.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (112,778,840 samples, 0.04%)</title><rect x="99.5975%" y="1413" width="0.0367%" height="15" fill="rgb(216,209,47)" fg:x="306296132428" fg:w="112778840"/><text x="99.8475%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (99,206,505 samples, 0.03%)</title><rect x="99.6019%" y="1397" width="0.0323%" height="15" fill="rgb(251,135,9)" fg:x="306309704763" fg:w="99206505"/><text x="99.8519%" y="1407.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (99,206,505 samples, 0.03%)</title><rect x="99.6019%" y="1381" width="0.0323%" height="15" fill="rgb(242,9,36)" fg:x="306309704763" fg:w="99206505"/><text x="99.8519%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (99,206,505 samples, 0.03%)</title><rect x="99.6019%" y="1365" width="0.0323%" height="15" fill="rgb(249,60,37)" fg:x="306309704763" fg:w="99206505"/><text x="99.8519%" y="1375.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (99,206,505 samples, 0.03%)</title><rect x="99.6019%" y="1349" width="0.0323%" height="15" fill="rgb(230,66,45)" fg:x="306309704763" fg:w="99206505"/><text x="99.8519%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (99,206,505 samples, 0.03%)</title><rect x="99.6019%" y="1333" width="0.0323%" height="15" fill="rgb(216,1,47)" fg:x="306309704763" fg:w="99206505"/><text x="99.8519%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (99,206,505 samples, 0.03%)</title><rect x="99.6019%" y="1317" width="0.0323%" height="15" fill="rgb(235,8,23)" fg:x="306309704763" fg:w="99206505"/><text x="99.8519%" y="1327.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (99,206,505 samples, 0.03%)</title><rect x="99.6019%" y="1301" width="0.0323%" height="15" fill="rgb(225,136,11)" fg:x="306309704763" fg:w="99206505"/><text x="99.8519%" y="1311.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (52,554,499 samples, 0.02%)</title><rect x="99.6490%" y="165" width="0.0171%" height="15" fill="rgb(228,63,44)" fg:x="306454457127" fg:w="52554499"/><text x="99.8990%" y="175.50"></text></g><g><title>gpui::window::Window::compute_layout (41,557,685 samples, 0.01%)</title><rect x="99.6525%" y="149" width="0.0135%" height="15" fill="rgb(240,43,52)" fg:x="306465453941" fg:w="41557685"/><text x="99.9025%" y="159.50"></text></g><g><title>stacksafe::internal::with_protected::_{{closure}} (41,557,685 samples, 0.01%)</title><rect x="99.6525%" y="133" width="0.0135%" height="15" fill="rgb(217,167,36)" fg:x="306465453941" fg:w="41557685"/><text x="99.9025%" y="143.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (41,557,685 samples, 0.01%)</title><rect x="99.6525%" y="117" width="0.0135%" height="15" fill="rgb(250,19,6)" fg:x="306465453941" fg:w="41557685"/><text x="99.9025%" y="127.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (41,557,685 samples, 0.01%)</title><rect x="99.6525%" y="101" width="0.0135%" height="15" fill="rgb(236,60,51)" fg:x="306465453941" fg:w="41557685"/><text x="99.9025%" y="111.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (60,033,105 samples, 0.02%)</title><rect x="99.6490%" y="213" width="0.0195%" height="15" fill="rgb(222,217,20)" fg:x="306454457127" fg:w="60033105"/><text x="99.8990%" y="223.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (60,033,105 samples, 0.02%)</title><rect x="99.6490%" y="197" width="0.0195%" height="15" fill="rgb(242,65,52)" fg:x="306454457127" fg:w="60033105"/><text x="99.8990%" y="207.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (60,033,105 samples, 0.02%)</title><rect x="99.6490%" y="181" width="0.0195%" height="15" fill="rgb(217,5,41)" fg:x="306454457127" fg:w="60033105"/><text x="99.8990%" y="191.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="997" width="0.0322%" height="15" fill="rgb(223,208,53)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="981" width="0.0322%" height="15" fill="rgb(221,104,30)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="991.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="965" width="0.0322%" height="15" fill="rgb(230,210,42)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="949" width="0.0322%" height="15" fill="rgb(206,205,27)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="933" width="0.0322%" height="15" fill="rgb(233,114,38)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="917" width="0.0322%" height="15" fill="rgb(216,174,36)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="901" width="0.0322%" height="15" fill="rgb(211,30,9)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="911.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="885" width="0.0322%" height="15" fill="rgb(216,8,21)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="895.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="869" width="0.0322%" height="15" fill="rgb(237,209,39)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="879.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="853" width="0.0322%" height="15" fill="rgb(235,111,47)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="837" width="0.0322%" height="15" fill="rgb(216,139,9)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="821" width="0.0322%" height="15" fill="rgb(248,185,4)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="805" width="0.0322%" height="15" fill="rgb(239,185,25)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="815.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="789" width="0.0322%" height="15" fill="rgb(233,207,8)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="799.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="773" width="0.0322%" height="15" fill="rgb(249,220,24)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="783.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="757" width="0.0322%" height="15" fill="rgb(221,50,14)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="767.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (98,923,739 samples, 0.03%)</title><rect x="99.6367%" y="741" width="0.0322%" height="15" fill="rgb(227,79,42)" fg:x="306416850324" fg:w="98923739"/><text x="99.8867%" y="751.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="725" width="0.0305%" height="15" fill="rgb(228,218,49)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="735.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="709" width="0.0305%" height="15" fill="rgb(249,18,15)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="719.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="693" width="0.0305%" height="15" fill="rgb(212,84,27)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="677" width="0.0305%" height="15" fill="rgb(207,83,24)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="661" width="0.0305%" height="15" fill="rgb(219,61,7)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="645" width="0.0305%" height="15" fill="rgb(211,43,29)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="655.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="629" width="0.0305%" height="15" fill="rgb(243,15,23)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="639.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="613" width="0.0305%" height="15" fill="rgb(217,52,28)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="623.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="597" width="0.0305%" height="15" fill="rgb(210,35,6)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="607.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="581" width="0.0305%" height="15" fill="rgb(237,187,28)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="565" width="0.0305%" height="15" fill="rgb(231,136,24)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="575.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="549" width="0.0305%" height="15" fill="rgb(205,176,52)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="533" width="0.0305%" height="15" fill="rgb(218,65,12)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="517" width="0.0305%" height="15" fill="rgb(234,101,21)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="501" width="0.0305%" height="15" fill="rgb(206,13,20)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="485" width="0.0305%" height="15" fill="rgb(236,89,44)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="495.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="469" width="0.0305%" height="15" fill="rgb(225,52,17)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="453" width="0.0305%" height="15" fill="rgb(214,27,25)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="463.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="437" width="0.0305%" height="15" fill="rgb(240,141,35)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="421" width="0.0305%" height="15" fill="rgb(216,126,3)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="405" width="0.0305%" height="15" fill="rgb(249,196,23)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="389" width="0.0305%" height="15" fill="rgb(215,185,43)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="373" width="0.0305%" height="15" fill="rgb(208,194,36)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="383.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="357" width="0.0305%" height="15" fill="rgb(245,182,12)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="341" width="0.0305%" height="15" fill="rgb(244,222,52)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="351.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="325" width="0.0305%" height="15" fill="rgb(236,222,51)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="309" width="0.0305%" height="15" fill="rgb(254,71,22)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="293" width="0.0305%" height="15" fill="rgb(250,104,15)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="277" width="0.0305%" height="15" fill="rgb(229,223,46)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="287.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="261" width="0.0305%" height="15" fill="rgb(209,129,18)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="271.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (93,814,577 samples, 0.03%)</title><rect x="99.6384%" y="245" width="0.0305%" height="15" fill="rgb(224,160,1)" fg:x="306421959486" fg:w="93814577"/><text x="99.8884%" y="255.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (61,316,936 samples, 0.02%)</title><rect x="99.6490%" y="229" width="0.0199%" height="15" fill="rgb(237,112,21)" fg:x="306454457127" fg:w="61316936"/><text x="99.8990%" y="239.50"></text></g><g><title>ts_query_cursor__advance (59,364,203 samples, 0.02%)</title><rect x="99.6781%" y="53" width="0.0193%" height="15" fill="rgb(215,198,53)" fg:x="306544059929" fg:w="59364203"/><text x="99.9281%" y="63.50"></text></g><g><title>&lt;editor::display_map::wrap_map::WrapChunks as core::iter::traits::iterator::Iterator&gt;::next (64,464,472 samples, 0.02%)</title><rect x="99.6768%" y="213" width="0.0210%" height="15" fill="rgb(218,227,35)" fg:x="306540076497" fg:w="64464472"/><text x="99.9268%" y="223.50"></text></g><g><title>&lt;editor::display_map::tab_map::TabChunks as core::iter::traits::iterator::Iterator&gt;::next (64,464,472 samples, 0.02%)</title><rect x="99.6768%" y="197" width="0.0210%" height="15" fill="rgb(232,121,22)" fg:x="306540076497" fg:w="64464472"/><text x="99.9268%" y="207.50"></text></g><g><title>&lt;editor::display_map::fold_map::FoldChunks as core::iter::traits::iterator::Iterator&gt;::next (64,464,472 samples, 0.02%)</title><rect x="99.6768%" y="181" width="0.0210%" height="15" fill="rgb(235,52,54)" fg:x="306540076497" fg:w="64464472"/><text x="99.9268%" y="191.50"></text></g><g><title>&lt;editor::display_map::inlay_map::InlayChunks as core::iter::traits::iterator::Iterator&gt;::next (64,464,472 samples, 0.02%)</title><rect x="99.6768%" y="165" width="0.0210%" height="15" fill="rgb(219,21,44)" fg:x="306540076497" fg:w="64464472"/><text x="99.9268%" y="175.50"></text></g><g><title>&lt;editor::display_map::custom_highlights::CustomHighlightsChunks as core::iter::traits::iterator::Iterator&gt;::next (64,464,472 samples, 0.02%)</title><rect x="99.6768%" y="149" width="0.0210%" height="15" fill="rgb(221,51,43)" fg:x="306540076497" fg:w="64464472"/><text x="99.9268%" y="159.50"></text></g><g><title>&lt;multi_buffer::MultiBufferChunks as core::iter::traits::iterator::Iterator&gt;::next (64,464,472 samples, 0.02%)</title><rect x="99.6768%" y="133" width="0.0210%" height="15" fill="rgb(225,77,42)" fg:x="306540076497" fg:w="64464472"/><text x="99.9268%" y="143.50"></text></g><g><title>&lt;language::buffer::BufferChunks as core::iter::traits::iterator::Iterator&gt;::next (64,464,472 samples, 0.02%)</title><rect x="99.6768%" y="117" width="0.0210%" height="15" fill="rgb(214,117,53)" fg:x="306540076497" fg:w="64464472"/><text x="99.9268%" y="127.50"></text></g><g><title>language::syntax_map::SyntaxMapCaptures::advance (64,464,472 samples, 0.02%)</title><rect x="99.6768%" y="101" width="0.0210%" height="15" fill="rgb(218,227,27)" fg:x="306540076497" fg:w="64464472"/><text x="99.9268%" y="111.50"></text></g><g><title>language::syntax_map::SyntaxMapCapturesLayer::advance (64,464,472 samples, 0.02%)</title><rect x="99.6768%" y="85" width="0.0210%" height="15" fill="rgb(223,214,36)" fg:x="306540076497" fg:w="64464472"/><text x="99.9268%" y="95.50"></text></g><g><title>ts_query_cursor_next_capture (60,481,040 samples, 0.02%)</title><rect x="99.6781%" y="69" width="0.0197%" height="15" fill="rgb(235,21,7)" fg:x="306544059929" fg:w="60481040"/><text x="99.9281%" y="79.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt; as core::iter::traits::iterator::Iterator&gt;::next (65,711,481 samples, 0.02%)</title><rect x="99.6768%" y="245" width="0.0214%" height="15" fill="rgb(244,216,4)" fg:x="306540076497" fg:w="65711481"/><text x="99.9268%" y="255.50"></text></g><g><title>&lt;editor::display_map::block_map::BlockChunks as core::iter::traits::iterator::Iterator&gt;::next (65,711,481 samples, 0.02%)</title><rect x="99.6768%" y="229" width="0.0214%" height="15" fill="rgb(249,197,24)" fg:x="306540076497" fg:w="65711481"/><text x="99.9268%" y="239.50"></text></g><g><title>editor::element::LineWithInvisibles::from_chunks (68,974,938 samples, 0.02%)</title><rect x="99.6768%" y="261" width="0.0224%" height="15" fill="rgb(222,169,49)" fg:x="306540076497" fg:w="68974938"/><text x="99.9268%" y="271.50"></text></g><g><title>std::rt::lang_start::{{closure}} (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="2053" width="0.0698%" height="15" fill="rgb(207,137,33)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="2063.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="2037" width="0.0698%" height="15" fill="rgb(219,180,40)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="2047.50"></text></g><g><title>zed::main (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="2021" width="0.0698%" height="15" fill="rgb(250,163,42)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="2031.50"></text></g><g><title>gpui::app::Application::run (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="2005" width="0.0698%" height="15" fill="rgb(239,163,0)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="2015.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="1989" width="0.0698%" height="15" fill="rgb(252,38,28)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="1999.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="1973" width="0.0698%" height="15" fill="rgb(254,203,26)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="1983.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="1957" width="0.0698%" height="15" fill="rgb(209,129,32)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="1967.50"></text></g><g><title>wayland_client::event_queue::queue_callback (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="1941" width="0.0698%" height="15" fill="rgb(207,177,52)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="1951.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="1925" width="0.0698%" height="15" fill="rgb(230,209,36)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="1935.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="1909" width="0.0698%" height="15" fill="rgb(238,131,0)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="1919.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="1893" width="0.0698%" height="15" fill="rgb(218,61,31)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="1903.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="1877" width="0.0698%" height="15" fill="rgb(232,6,53)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="1887.50"></text></g><g><title>gpui::window::Window::draw (214,562,948 samples, 0.07%)</title><rect x="99.6342%" y="1861" width="0.0698%" height="15" fill="rgb(254,100,32)" fg:x="306408911268" fg:w="214562948"/><text x="99.8842%" y="1871.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1845" width="0.0672%" height="15" fill="rgb(229,194,49)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1855.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1829" width="0.0672%" height="15" fill="rgb(206,208,39)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1839.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1813" width="0.0672%" height="15" fill="rgb(246,226,14)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1823.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1797" width="0.0672%" height="15" fill="rgb(226,48,32)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1781" width="0.0672%" height="15" fill="rgb(252,43,54)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1791.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1765" width="0.0672%" height="15" fill="rgb(207,124,0)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1749" width="0.0672%" height="15" fill="rgb(248,188,30)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1733" width="0.0672%" height="15" fill="rgb(232,14,43)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1717" width="0.0672%" height="15" fill="rgb(218,52,29)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1727.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1701" width="0.0672%" height="15" fill="rgb(218,176,50)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1711.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1685" width="0.0672%" height="15" fill="rgb(213,112,0)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1669" width="0.0672%" height="15" fill="rgb(244,216,8)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1679.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1653" width="0.0672%" height="15" fill="rgb(224,148,53)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1637" width="0.0672%" height="15" fill="rgb(241,133,40)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1621" width="0.0672%" height="15" fill="rgb(232,17,44)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1605" width="0.0672%" height="15" fill="rgb(213,32,25)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1589" width="0.0672%" height="15" fill="rgb(249,115,27)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1599.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1573" width="0.0672%" height="15" fill="rgb(241,50,1)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1557" width="0.0672%" height="15" fill="rgb(244,175,40)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1567.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1541" width="0.0672%" height="15" fill="rgb(230,94,34)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1525" width="0.0672%" height="15" fill="rgb(223,185,29)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1509" width="0.0672%" height="15" fill="rgb(225,193,15)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1493" width="0.0672%" height="15" fill="rgb(252,121,38)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1477" width="0.0672%" height="15" fill="rgb(232,44,12)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1487.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1461" width="0.0672%" height="15" fill="rgb(226,45,54)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1445" width="0.0672%" height="15" fill="rgb(209,67,17)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1455.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1429" width="0.0672%" height="15" fill="rgb(219,108,52)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1413" width="0.0672%" height="15" fill="rgb(216,118,19)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1397" width="0.0672%" height="15" fill="rgb(228,120,40)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1381" width="0.0672%" height="15" fill="rgb(221,218,34)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1391.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1365" width="0.0672%" height="15" fill="rgb(235,89,14)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1375.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1349" width="0.0672%" height="15" fill="rgb(248,89,7)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1333" width="0.0672%" height="15" fill="rgb(212,114,34)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1343.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1317" width="0.0672%" height="15" fill="rgb(246,88,32)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1301" width="0.0672%" height="15" fill="rgb(237,135,0)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1285" width="0.0672%" height="15" fill="rgb(220,201,54)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1269" width="0.0672%" height="15" fill="rgb(210,142,36)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1253" width="0.0672%" height="15" fill="rgb(247,189,26)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1263.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1237" width="0.0672%" height="15" fill="rgb(223,89,24)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1247.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1221" width="0.0672%" height="15" fill="rgb(205,90,19)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1231.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1205" width="0.0672%" height="15" fill="rgb(234,57,40)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1189" width="0.0672%" height="15" fill="rgb(213,109,10)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1173" width="0.0672%" height="15" fill="rgb(214,189,23)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1157" width="0.0672%" height="15" fill="rgb(234,200,10)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1167.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1141" width="0.0672%" height="15" fill="rgb(221,148,16)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1151.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1125" width="0.0672%" height="15" fill="rgb(230,115,10)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1135.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1109" width="0.0672%" height="15" fill="rgb(220,106,42)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1119.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1093" width="0.0672%" height="15" fill="rgb(225,105,39)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1077" width="0.0672%" height="15" fill="rgb(211,161,38)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1061" width="0.0672%" height="15" fill="rgb(213,23,19)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1045" width="0.0672%" height="15" fill="rgb(240,2,33)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1029" width="0.0672%" height="15" fill="rgb(221,29,45)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1039.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (206,623,892 samples, 0.07%)</title><rect x="99.6367%" y="1013" width="0.0672%" height="15" fill="rgb(242,10,19)" fg:x="306416850324" fg:w="206623892"/><text x="99.8867%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="997" width="0.0350%" height="15" fill="rgb(250,84,37)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="1007.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="981" width="0.0350%" height="15" fill="rgb(214,136,7)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="965" width="0.0350%" height="15" fill="rgb(231,189,12)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="949" width="0.0350%" height="15" fill="rgb(244,40,16)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="933" width="0.0350%" height="15" fill="rgb(217,29,15)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="917" width="0.0350%" height="15" fill="rgb(235,172,33)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="927.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="901" width="0.0350%" height="15" fill="rgb(206,148,28)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="911.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="885" width="0.0350%" height="15" fill="rgb(251,167,37)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="895.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="869" width="0.0350%" height="15" fill="rgb(229,94,52)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="879.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="853" width="0.0350%" height="15" fill="rgb(216,132,9)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="863.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="837" width="0.0350%" height="15" fill="rgb(208,110,29)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="821" width="0.0350%" height="15" fill="rgb(241,23,8)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="805" width="0.0350%" height="15" fill="rgb(208,26,35)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="789" width="0.0350%" height="15" fill="rgb(242,165,34)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="773" width="0.0350%" height="15" fill="rgb(222,222,33)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="783.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="757" width="0.0350%" height="15" fill="rgb(227,16,52)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="767.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="741" width="0.0350%" height="15" fill="rgb(213,93,12)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="751.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (107,700,153 samples, 0.04%)</title><rect x="99.6689%" y="725" width="0.0350%" height="15" fill="rgb(238,41,5)" fg:x="306515774063" fg:w="107700153"/><text x="99.9189%" y="735.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="709" width="0.0310%" height="15" fill="rgb(211,60,15)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="719.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="693" width="0.0310%" height="15" fill="rgb(209,11,34)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="703.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="677" width="0.0310%" height="15" fill="rgb(254,155,53)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="661" width="0.0310%" height="15" fill="rgb(236,174,8)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="645" width="0.0310%" height="15" fill="rgb(229,31,27)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="629" width="0.0310%" height="15" fill="rgb(242,226,26)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="613" width="0.0310%" height="15" fill="rgb(234,32,40)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="623.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="597" width="0.0310%" height="15" fill="rgb(249,226,47)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="581" width="0.0310%" height="15" fill="rgb(212,6,26)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="591.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="565" width="0.0310%" height="15" fill="rgb(249,202,29)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="549" width="0.0310%" height="15" fill="rgb(226,106,4)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="533" width="0.0310%" height="15" fill="rgb(251,2,27)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="517" width="0.0310%" height="15" fill="rgb(236,208,0)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="501" width="0.0310%" height="15" fill="rgb(211,66,17)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="511.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="485" width="0.0310%" height="15" fill="rgb(216,129,9)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="495.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="469" width="0.0310%" height="15" fill="rgb(215,130,23)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="479.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="453" width="0.0310%" height="15" fill="rgb(253,157,11)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="437" width="0.0310%" height="15" fill="rgb(224,25,14)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="447.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="421" width="0.0310%" height="15" fill="rgb(238,16,7)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="405" width="0.0310%" height="15" fill="rgb(228,74,11)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="389" width="0.0310%" height="15" fill="rgb(239,221,27)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="373" width="0.0310%" height="15" fill="rgb(229,166,18)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="357" width="0.0310%" height="15" fill="rgb(254,94,46)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="367.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="341" width="0.0310%" height="15" fill="rgb(241,79,19)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="351.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="325" width="0.0310%" height="15" fill="rgb(228,99,51)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="335.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="309" width="0.0310%" height="15" fill="rgb(211,15,6)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="319.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="293" width="0.0310%" height="15" fill="rgb(245,107,54)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="303.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (95,349,615 samples, 0.03%)</title><rect x="99.6729%" y="277" width="0.0310%" height="15" fill="rgb(243,3,2)" fg:x="306528124601" fg:w="95349615"/><text x="99.9229%" y="287.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (47,056,701 samples, 0.02%)</title><rect x="99.7147%" y="149" width="0.0153%" height="15" fill="rgb(206,122,10)" fg:x="306656478700" fg:w="47056701"/><text x="99.9647%" y="159.50"></text></g><g><title>gpui::window::Window::compute_layout (41,900,867 samples, 0.01%)</title><rect x="99.7163%" y="133" width="0.0136%" height="15" fill="rgb(224,88,4)" fg:x="306661634534" fg:w="41900867"/><text x="99.9663%" y="143.50"></text></g><g><title>stacksafe::internal::with_protected::_{{closure}} (41,900,867 samples, 0.01%)</title><rect x="99.7163%" y="117" width="0.0136%" height="15" fill="rgb(230,1,41)" fg:x="306661634534" fg:w="41900867"/><text x="99.9663%" y="127.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (41,900,867 samples, 0.01%)</title><rect x="99.7163%" y="101" width="0.0136%" height="15" fill="rgb(230,1,31)" fg:x="306661634534" fg:w="41900867"/><text x="99.9663%" y="111.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (41,900,867 samples, 0.01%)</title><rect x="99.7163%" y="85" width="0.0136%" height="15" fill="rgb(232,67,19)" fg:x="306661634534" fg:w="41900867"/><text x="99.9663%" y="95.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (52,166,719 samples, 0.02%)</title><rect x="99.7147%" y="197" width="0.0170%" height="15" fill="rgb(222,206,20)" fg:x="306656478700" fg:w="52166719"/><text x="99.9647%" y="207.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (52,166,719 samples, 0.02%)</title><rect x="99.7147%" y="181" width="0.0170%" height="15" fill="rgb(217,225,19)" fg:x="306656478700" fg:w="52166719"/><text x="99.9647%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (52,166,719 samples, 0.02%)</title><rect x="99.7147%" y="165" width="0.0170%" height="15" fill="rgb(234,13,33)" fg:x="306656478700" fg:w="52166719"/><text x="99.9647%" y="175.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="981" width="0.0240%" height="15" fill="rgb(254,5,1)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="991.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="965" width="0.0240%" height="15" fill="rgb(211,121,41)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="975.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="949" width="0.0240%" height="15" fill="rgb(213,199,35)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="933" width="0.0240%" height="15" fill="rgb(240,118,22)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="917" width="0.0240%" height="15" fill="rgb(238,184,25)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="927.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="901" width="0.0240%" height="15" fill="rgb(210,165,6)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="911.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="885" width="0.0240%" height="15" fill="rgb(235,149,5)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="895.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="869" width="0.0240%" height="15" fill="rgb(221,63,5)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="879.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="853" width="0.0240%" height="15" fill="rgb(250,44,41)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="863.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="837" width="0.0240%" height="15" fill="rgb(235,112,47)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="821" width="0.0240%" height="15" fill="rgb(252,176,34)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="805" width="0.0240%" height="15" fill="rgb(234,50,19)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="789" width="0.0240%" height="15" fill="rgb(241,195,31)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="799.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="773" width="0.0240%" height="15" fill="rgb(212,93,11)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="783.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="757" width="0.0240%" height="15" fill="rgb(254,98,51)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="767.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="741" width="0.0240%" height="15" fill="rgb(246,18,45)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="751.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (73,753,246 samples, 0.02%)</title><rect x="99.7079%" y="725" width="0.0240%" height="15" fill="rgb(215,148,23)" fg:x="306635769866" fg:w="73753246"/><text x="99.9579%" y="735.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="709" width="0.0230%" height="15" fill="rgb(227,22,7)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="719.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="693" width="0.0230%" height="15" fill="rgb(207,210,37)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="703.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="677" width="0.0230%" height="15" fill="rgb(247,147,42)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="661" width="0.0230%" height="15" fill="rgb(226,213,14)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="645" width="0.0230%" height="15" fill="rgb(223,18,10)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="629" width="0.0230%" height="15" fill="rgb(253,34,22)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="613" width="0.0230%" height="15" fill="rgb(222,90,31)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="623.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="597" width="0.0230%" height="15" fill="rgb(220,182,30)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="607.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="581" width="0.0230%" height="15" fill="rgb(229,170,12)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="591.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="565" width="0.0230%" height="15" fill="rgb(210,101,21)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="549" width="0.0230%" height="15" fill="rgb(237,177,31)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="559.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="533" width="0.0230%" height="15" fill="rgb(215,91,34)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="517" width="0.0230%" height="15" fill="rgb(229,206,16)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="501" width="0.0230%" height="15" fill="rgb(235,207,10)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="485" width="0.0230%" height="15" fill="rgb(247,18,10)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="469" width="0.0230%" height="15" fill="rgb(232,4,6)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="479.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="453" width="0.0230%" height="15" fill="rgb(247,93,45)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="463.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="437" width="0.0230%" height="15" fill="rgb(240,181,18)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="447.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="421" width="0.0230%" height="15" fill="rgb(208,224,0)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="405" width="0.0230%" height="15" fill="rgb(224,207,54)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="389" width="0.0230%" height="15" fill="rgb(217,152,29)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="373" width="0.0230%" height="15" fill="rgb(243,78,27)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="357" width="0.0230%" height="15" fill="rgb(228,111,9)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="367.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="341" width="0.0230%" height="15" fill="rgb(230,213,21)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="351.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="325" width="0.0230%" height="15" fill="rgb(248,50,36)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="335.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="309" width="0.0230%" height="15" fill="rgb(226,19,31)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="293" width="0.0230%" height="15" fill="rgb(205,132,21)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="303.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="277" width="0.0230%" height="15" fill="rgb(207,42,19)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="287.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="261" width="0.0230%" height="15" fill="rgb(229,69,35)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="245" width="0.0230%" height="15" fill="rgb(226,96,11)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="255.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (70,616,054 samples, 0.02%)</title><rect x="99.7089%" y="229" width="0.0230%" height="15" fill="rgb(236,133,54)" fg:x="306638907058" fg:w="70616054"/><text x="99.9589%" y="239.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (53,044,412 samples, 0.02%)</title><rect x="99.7147%" y="213" width="0.0172%" height="15" fill="rgb(247,166,21)" fg:x="306656478700" fg:w="53044412"/><text x="99.9647%" y="223.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="693" width="0.0110%" height="15" fill="rgb(220,132,12)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="703.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="677" width="0.0110%" height="15" fill="rgb(233,27,30)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="687.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="661" width="0.0110%" height="15" fill="rgb(246,161,27)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="671.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="645" width="0.0110%" height="15" fill="rgb(240,56,3)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="655.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="629" width="0.0110%" height="15" fill="rgb(242,190,9)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="613" width="0.0110%" height="15" fill="rgb(234,3,52)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="597" width="0.0110%" height="15" fill="rgb(220,221,19)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="607.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="581" width="0.0110%" height="15" fill="rgb(247,178,30)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="565" width="0.0110%" height="15" fill="rgb(234,212,27)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="575.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="549" width="0.0110%" height="15" fill="rgb(226,199,38)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="533" width="0.0110%" height="15" fill="rgb(248,114,22)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="517" width="0.0110%" height="15" fill="rgb(221,180,4)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="501" width="0.0110%" height="15" fill="rgb(220,229,24)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="511.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="485" width="0.0110%" height="15" fill="rgb(226,184,27)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="495.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="469" width="0.0110%" height="15" fill="rgb(232,99,15)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="453" width="0.0110%" height="15" fill="rgb(250,167,16)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="463.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="437" width="0.0110%" height="15" fill="rgb(243,113,6)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="421" width="0.0110%" height="15" fill="rgb(244,147,52)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="405" width="0.0110%" height="15" fill="rgb(235,59,50)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="389" width="0.0110%" height="15" fill="rgb(250,188,6)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="399.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="373" width="0.0110%" height="15" fill="rgb(236,173,11)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="357" width="0.0110%" height="15" fill="rgb(233,64,3)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="367.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="341" width="0.0110%" height="15" fill="rgb(207,92,7)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="351.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="325" width="0.0110%" height="15" fill="rgb(221,30,19)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="309" width="0.0110%" height="15" fill="rgb(245,22,49)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="319.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="293" width="0.0110%" height="15" fill="rgb(218,39,20)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="303.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="277" width="0.0110%" height="15" fill="rgb(222,144,21)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="287.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="261" width="0.0110%" height="15" fill="rgb(222,78,51)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="271.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="245" width="0.0110%" height="15" fill="rgb(248,213,53)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="229" width="0.0110%" height="15" fill="rgb(245,28,34)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="239.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="213" width="0.0110%" height="15" fill="rgb(229,186,26)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="223.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="197" width="0.0110%" height="15" fill="rgb(224,0,41)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="207.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="181" width="0.0110%" height="15" fill="rgb(223,136,51)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="191.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::request_layout (33,813,106 samples, 0.01%)</title><rect x="99.7319%" y="165" width="0.0110%" height="15" fill="rgb(234,50,9)" fg:x="306709523112" fg:w="33813106"/><text x="99.9819%" y="175.50"></text></g><g><title>ts_query_cursor__advance (39,724,475 samples, 0.01%)</title><rect x="99.7496%" y="37" width="0.0129%" height="15" fill="rgb(242,164,20)" fg:x="306764080573" fg:w="39724475"/><text x="99.9996%" y="47.50"></text></g><g><title>&lt;language::buffer::BufferChunks as core::iter::traits::iterator::Iterator&gt;::next (60,881,244 samples, 0.02%)</title><rect x="99.7475%" y="101" width="0.0198%" height="15" fill="rgb(230,169,22)" fg:x="306757585937" fg:w="60881244"/><text x="99.9975%" y="111.50"></text></g><g><title>language::syntax_map::SyntaxMapCaptures::advance (60,881,244 samples, 0.02%)</title><rect x="99.7475%" y="85" width="0.0198%" height="15" fill="rgb(228,82,26)" fg:x="306757585937" fg:w="60881244"/><text x="99.9975%" y="95.50"></text></g><g><title>language::syntax_map::SyntaxMapCapturesLayer::advance (60,881,244 samples, 0.02%)</title><rect x="99.7475%" y="69" width="0.0198%" height="15" fill="rgb(244,220,31)" fg:x="306757585937" fg:w="60881244"/><text x="99.9975%" y="79.50"></text></g><g><title>ts_query_cursor_next_capture (59,659,014 samples, 0.02%)</title><rect x="99.7479%" y="53" width="0.0194%" height="15" fill="rgb(214,35,25)" fg:x="306758808167" fg:w="59659014"/><text x="99.9979%" y="63.50"></text></g><g><title>&lt;editor::display_map::wrap_map::WrapChunks as core::iter::traits::iterator::Iterator&gt;::next (63,303,359 samples, 0.02%)</title><rect x="99.7475%" y="197" width="0.0206%" height="15" fill="rgb(245,162,54)" fg:x="306757585937" fg:w="63303359"/><text x="99.9975%" y="207.50"></text></g><g><title>&lt;editor::display_map::tab_map::TabChunks as core::iter::traits::iterator::Iterator&gt;::next (63,303,359 samples, 0.02%)</title><rect x="99.7475%" y="181" width="0.0206%" height="15" fill="rgb(210,43,24)" fg:x="306757585937" fg:w="63303359"/><text x="99.9975%" y="191.50"></text></g><g><title>&lt;editor::display_map::fold_map::FoldChunks as core::iter::traits::iterator::Iterator&gt;::next (63,303,359 samples, 0.02%)</title><rect x="99.7475%" y="165" width="0.0206%" height="15" fill="rgb(226,145,51)" fg:x="306757585937" fg:w="63303359"/><text x="99.9975%" y="175.50"></text></g><g><title>&lt;editor::display_map::inlay_map::InlayChunks as core::iter::traits::iterator::Iterator&gt;::next (63,303,359 samples, 0.02%)</title><rect x="99.7475%" y="149" width="0.0206%" height="15" fill="rgb(237,52,53)" fg:x="306757585937" fg:w="63303359"/><text x="99.9975%" y="159.50"></text></g><g><title>&lt;editor::display_map::custom_highlights::CustomHighlightsChunks as core::iter::traits::iterator::Iterator&gt;::next (63,303,359 samples, 0.02%)</title><rect x="99.7475%" y="133" width="0.0206%" height="15" fill="rgb(216,226,7)" fg:x="306757585937" fg:w="63303359"/><text x="99.9975%" y="143.50"></text></g><g><title>&lt;multi_buffer::MultiBufferChunks as core::iter::traits::iterator::Iterator&gt;::next (63,303,359 samples, 0.02%)</title><rect x="99.7475%" y="117" width="0.0206%" height="15" fill="rgb(206,223,18)" fg:x="306757585937" fg:w="63303359"/><text x="99.9975%" y="127.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt; as core::iter::traits::iterator::Iterator&gt;::next (65,724,611 samples, 0.02%)</title><rect x="99.7475%" y="229" width="0.0214%" height="15" fill="rgb(221,1,10)" fg:x="306757585937" fg:w="65724611"/><text x="99.9975%" y="239.50"></text></g><g><title>&lt;editor::display_map::block_map::BlockChunks as core::iter::traits::iterator::Iterator&gt;::next (65,724,611 samples, 0.02%)</title><rect x="99.7475%" y="213" width="0.0214%" height="15" fill="rgb(221,151,42)" fg:x="306757585937" fg:w="65724611"/><text x="99.9975%" y="223.50"></text></g><g><title>editor::element::LineWithInvisibles::from_chunks (83,402,833 samples, 0.03%)</title><rect x="99.7475%" y="245" width="0.0271%" height="15" fill="rgb(205,183,46)" fg:x="306757585937" fg:w="83402833"/><text x="99.9975%" y="255.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (231,917,712 samples, 0.08%)</title><rect x="99.7039%" y="1909" width="0.0754%" height="15" fill="rgb(239,229,1)" fg:x="306623474216" fg:w="231917712"/><text x="99.9539%" y="1919.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (231,917,712 samples, 0.08%)</title><rect x="99.7039%" y="1893" width="0.0754%" height="15" fill="rgb(236,192,23)" fg:x="306623474216" fg:w="231917712"/><text x="99.9539%" y="1903.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (231,917,712 samples, 0.08%)</title><rect x="99.7039%" y="1877" width="0.0754%" height="15" fill="rgb(215,146,3)" fg:x="306623474216" fg:w="231917712"/><text x="99.9539%" y="1887.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (231,917,712 samples, 0.08%)</title><rect x="99.7039%" y="1861" width="0.0754%" height="15" fill="rgb(235,52,27)" fg:x="306623474216" fg:w="231917712"/><text x="99.9539%" y="1871.50"></text></g><g><title>gpui::window::Window::draw (231,917,712 samples, 0.08%)</title><rect x="99.7039%" y="1845" width="0.0754%" height="15" fill="rgb(236,45,20)" fg:x="306623474216" fg:w="231917712"/><text x="99.9539%" y="1855.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1829" width="0.0714%" height="15" fill="rgb(235,86,41)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1839.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1813" width="0.0714%" height="15" fill="rgb(235,27,27)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1823.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1797" width="0.0714%" height="15" fill="rgb(232,4,34)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1807.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1781" width="0.0714%" height="15" fill="rgb(215,22,10)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1765" width="0.0714%" height="15" fill="rgb(230,228,27)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1775.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1749" width="0.0714%" height="15" fill="rgb(216,26,51)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1733" width="0.0714%" height="15" fill="rgb(225,180,50)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1717" width="0.0714%" height="15" fill="rgb(236,211,2)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1701" width="0.0714%" height="15" fill="rgb(250,51,20)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1685" width="0.0714%" height="15" fill="rgb(232,70,37)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1695.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1669" width="0.0714%" height="15" fill="rgb(226,183,39)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1679.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1653" width="0.0714%" height="15" fill="rgb(232,228,21)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1663.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1637" width="0.0714%" height="15" fill="rgb(251,118,32)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1621" width="0.0714%" height="15" fill="rgb(235,172,38)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1605" width="0.0714%" height="15" fill="rgb(235,63,18)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1615.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1589" width="0.0714%" height="15" fill="rgb(225,4,7)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1573" width="0.0714%" height="15" fill="rgb(231,61,1)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1583.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1557" width="0.0714%" height="15" fill="rgb(241,155,22)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1567.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1541" width="0.0714%" height="15" fill="rgb(209,100,26)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1551.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1525" width="0.0714%" height="15" fill="rgb(248,181,15)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1509" width="0.0714%" height="15" fill="rgb(214,94,31)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1493" width="0.0714%" height="15" fill="rgb(207,16,42)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1503.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1477" width="0.0714%" height="15" fill="rgb(208,127,13)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1461" width="0.0714%" height="15" fill="rgb(220,211,18)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1471.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1445" width="0.0714%" height="15" fill="rgb(221,55,38)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1455.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1429" width="0.0714%" height="15" fill="rgb(252,219,45)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1439.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1413" width="0.0714%" height="15" fill="rgb(248,53,35)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1397" width="0.0714%" height="15" fill="rgb(210,87,2)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1381" width="0.0714%" height="15" fill="rgb(239,133,9)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1365" width="0.0714%" height="15" fill="rgb(214,114,5)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1349" width="0.0714%" height="15" fill="rgb(206,124,24)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1359.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1333" width="0.0714%" height="15" fill="rgb(212,57,33)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1343.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1317" width="0.0714%" height="15" fill="rgb(246,21,20)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1327.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1301" width="0.0714%" height="15" fill="rgb(253,210,39)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1285" width="0.0714%" height="15" fill="rgb(209,187,24)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1269" width="0.0714%" height="15" fill="rgb(246,136,17)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1253" width="0.0714%" height="15" fill="rgb(211,0,30)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1237" width="0.0714%" height="15" fill="rgb(216,199,7)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1247.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1221" width="0.0714%" height="15" fill="rgb(207,210,19)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1231.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1205" width="0.0714%" height="15" fill="rgb(237,187,39)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1215.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1189" width="0.0714%" height="15" fill="rgb(243,194,42)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1173" width="0.0714%" height="15" fill="rgb(225,194,19)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1157" width="0.0714%" height="15" fill="rgb(224,192,14)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1141" width="0.0714%" height="15" fill="rgb(252,21,18)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1125" width="0.0714%" height="15" fill="rgb(229,69,19)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1135.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1109" width="0.0714%" height="15" fill="rgb(251,31,53)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1093" width="0.0714%" height="15" fill="rgb(218,39,50)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1103.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1077" width="0.0714%" height="15" fill="rgb(231,50,17)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1061" width="0.0714%" height="15" fill="rgb(223,217,31)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1045" width="0.0714%" height="15" fill="rgb(225,91,12)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1029" width="0.0714%" height="15" fill="rgb(242,58,43)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="1013" width="0.0714%" height="15" fill="rgb(242,32,21)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1023.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (219,622,062 samples, 0.07%)</title><rect x="99.7079%" y="997" width="0.0714%" height="15" fill="rgb(211,127,1)" fg:x="306635769866" fg:w="219622062"/><text x="99.9579%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="981" width="0.0474%" height="15" fill="rgb(231,93,13)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="991.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="965" width="0.0474%" height="15" fill="rgb(218,83,4)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="949" width="0.0474%" height="15" fill="rgb(230,218,10)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="933" width="0.0474%" height="15" fill="rgb(235,127,18)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="917" width="0.0474%" height="15" fill="rgb(213,137,46)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="901" width="0.0474%" height="15" fill="rgb(235,179,24)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="911.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="885" width="0.0474%" height="15" fill="rgb(247,58,49)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="895.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="869" width="0.0474%" height="15" fill="rgb(242,222,5)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="879.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="853" width="0.0474%" height="15" fill="rgb(230,16,48)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="863.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="837" width="0.0474%" height="15" fill="rgb(241,192,16)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="847.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="821" width="0.0474%" height="15" fill="rgb(209,25,37)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="805" width="0.0474%" height="15" fill="rgb(229,215,13)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="789" width="0.0474%" height="15" fill="rgb(213,199,8)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="773" width="0.0474%" height="15" fill="rgb(226,151,19)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="783.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="757" width="0.0474%" height="15" fill="rgb(254,183,12)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="741" width="0.0474%" height="15" fill="rgb(245,8,3)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="751.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="725" width="0.0474%" height="15" fill="rgb(229,159,35)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="735.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (145,868,816 samples, 0.05%)</title><rect x="99.7319%" y="709" width="0.0474%" height="15" fill="rgb(209,145,1)" fg:x="306709523112" fg:w="145868816"/><text x="99.9819%" y="719.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="693" width="0.0364%" height="15" fill="rgb(228,183,16)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="703.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="677" width="0.0364%" height="15" fill="rgb(222,68,0)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="687.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="661" width="0.0364%" height="15" fill="rgb(209,130,50)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="645" width="0.0364%" height="15" fill="rgb(228,176,44)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="629" width="0.0364%" height="15" fill="rgb(221,164,2)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="613" width="0.0364%" height="15" fill="rgb(249,199,49)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="597" width="0.0364%" height="15" fill="rgb(228,205,53)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="607.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="581" width="0.0364%" height="15" fill="rgb(235,77,20)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="565" width="0.0364%" height="15" fill="rgb(227,147,34)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="575.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="549" width="0.0364%" height="15" fill="rgb(226,203,52)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="533" width="0.0364%" height="15" fill="rgb(226,186,23)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="517" width="0.0364%" height="15" fill="rgb(236,13,30)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="501" width="0.0364%" height="15" fill="rgb(228,121,22)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="485" width="0.0364%" height="15" fill="rgb(248,222,26)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="495.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="469" width="0.0364%" height="15" fill="rgb(251,72,25)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="479.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="453" width="0.0364%" height="15" fill="rgb(223,114,24)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="463.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="437" width="0.0364%" height="15" fill="rgb(232,190,43)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="447.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="421" width="0.0364%" height="15" fill="rgb(208,90,0)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="431.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="405" width="0.0364%" height="15" fill="rgb(234,149,31)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="389" width="0.0364%" height="15" fill="rgb(235,188,36)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="399.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="373" width="0.0364%" height="15" fill="rgb(219,59,51)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="357" width="0.0364%" height="15" fill="rgb(236,101,40)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="367.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="341" width="0.0364%" height="15" fill="rgb(235,33,7)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="351.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="325" width="0.0364%" height="15" fill="rgb(213,169,26)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="335.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="309" width="0.0364%" height="15" fill="rgb(218,99,34)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="319.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="293" width="0.0364%" height="15" fill="rgb(210,57,24)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="303.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="277" width="0.0364%" height="15" fill="rgb(231,181,54)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="287.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (112,055,710 samples, 0.04%)</title><rect x="99.7429%" y="261" width="0.0364%" height="15" fill="rgb(251,188,48)" fg:x="306743336218" fg:w="112055710"/><text x="99.9929%" y="271.50"></text></g><g><title>std::rt::lang_start_internal (233,078,373 samples, 0.08%)</title><rect x="99.7039%" y="2053" width="0.0758%" height="15" fill="rgb(243,12,45)" fg:x="306623474216" fg:w="233078373"/><text x="99.9539%" y="2063.50"></text></g><g><title>std::rt::lang_start::{{closure}} (233,078,373 samples, 0.08%)</title><rect x="99.7039%" y="2037" width="0.0758%" height="15" fill="rgb(250,197,9)" fg:x="306623474216" fg:w="233078373"/><text x="99.9539%" y="2047.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (233,078,373 samples, 0.08%)</title><rect x="99.7039%" y="2021" width="0.0758%" height="15" fill="rgb(235,149,35)" fg:x="306623474216" fg:w="233078373"/><text x="99.9539%" y="2031.50"></text></g><g><title>zed::main (233,078,373 samples, 0.08%)</title><rect x="99.7039%" y="2005" width="0.0758%" height="15" fill="rgb(219,27,19)" fg:x="306623474216" fg:w="233078373"/><text x="99.9539%" y="2015.50"></text></g><g><title>gpui::app::Application::run (233,078,373 samples, 0.08%)</title><rect x="99.7039%" y="1989" width="0.0758%" height="15" fill="rgb(244,78,31)" fg:x="306623474216" fg:w="233078373"/><text x="99.9539%" y="1999.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (233,078,373 samples, 0.08%)</title><rect x="99.7039%" y="1973" width="0.0758%" height="15" fill="rgb(241,13,4)" fg:x="306623474216" fg:w="233078373"/><text x="99.9539%" y="1983.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (233,078,373 samples, 0.08%)</title><rect x="99.7039%" y="1957" width="0.0758%" height="15" fill="rgb(212,194,26)" fg:x="306623474216" fg:w="233078373"/><text x="99.9539%" y="1967.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (233,078,373 samples, 0.08%)</title><rect x="99.7039%" y="1941" width="0.0758%" height="15" fill="rgb(236,80,11)" fg:x="306623474216" fg:w="233078373"/><text x="99.9539%" y="1951.50"></text></g><g><title>wayland_client::event_queue::queue_callback (233,078,373 samples, 0.08%)</title><rect x="99.7039%" y="1925" width="0.0758%" height="15" fill="rgb(206,1,24)" fg:x="306623474216" fg:w="233078373"/><text x="99.9539%" y="1935.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (68,224,802 samples, 0.02%)</title><rect x="99.7832%" y="181" width="0.0222%" height="15" fill="rgb(238,215,50)" fg:x="306867388721" fg:w="68224802"/><text x="100.0332%" y="191.50"></text></g><g><title>gpui::window::Window::compute_layout (45,529,196 samples, 0.01%)</title><rect x="99.7906%" y="165" width="0.0148%" height="15" fill="rgb(254,126,32)" fg:x="306890084327" fg:w="45529196"/><text x="100.0406%" y="175.50"></text></g><g><title>stacksafe::internal::with_protected::_{{closure}} (45,529,196 samples, 0.01%)</title><rect x="99.7906%" y="149" width="0.0148%" height="15" fill="rgb(206,111,53)" fg:x="306890084327" fg:w="45529196"/><text x="100.0406%" y="159.50"></text></g><g><title>&lt;taffy::tree::taffy_tree::TaffyView&lt;NodeContext,MeasureFunction&gt; as taffy::tree::traits::LayoutPartialTree&gt;::compute_child_layout::_{{closure}} (45,529,196 samples, 0.01%)</title><rect x="99.7906%" y="133" width="0.0148%" height="15" fill="rgb(218,72,44)" fg:x="306890084327" fg:w="45529196"/><text x="100.0406%" y="143.50"></text></g><g><title>taffy::compute::flexbox::compute_preliminary (45,529,196 samples, 0.01%)</title><rect x="99.7906%" y="117" width="0.0148%" height="15" fill="rgb(238,25,3)" fg:x="306890084327" fg:w="45529196"/><text x="100.0406%" y="127.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="1013" width="0.0262%" height="15" fill="rgb(250,191,7)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="1023.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="997" width="0.0262%" height="15" fill="rgb(238,56,30)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="1007.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="981" width="0.0262%" height="15" fill="rgb(210,27,45)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="965" width="0.0262%" height="15" fill="rgb(207,10,50)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="949" width="0.0262%" height="15" fill="rgb(249,30,23)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="933" width="0.0262%" height="15" fill="rgb(250,80,12)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="943.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="917" width="0.0262%" height="15" fill="rgb(210,221,37)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="927.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="901" width="0.0262%" height="15" fill="rgb(205,96,24)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="911.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="885" width="0.0262%" height="15" fill="rgb(247,104,22)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="895.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="869" width="0.0262%" height="15" fill="rgb(222,61,53)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="853" width="0.0262%" height="15" fill="rgb(241,11,53)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="837" width="0.0262%" height="15" fill="rgb(230,111,47)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="821" width="0.0262%" height="15" fill="rgb(218,187,29)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="805" width="0.0262%" height="15" fill="rgb(210,121,46)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="815.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="789" width="0.0262%" height="15" fill="rgb(250,43,19)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="799.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="773" width="0.0262%" height="15" fill="rgb(238,61,12)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="783.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (80,426,291 samples, 0.03%)</title><rect x="99.7804%" y="757" width="0.0262%" height="15" fill="rgb(251,198,9)" fg:x="306858551007" fg:w="80426291"/><text x="100.0304%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="741" width="0.0258%" height="15" fill="rgb(214,192,38)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="751.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="725" width="0.0258%" height="15" fill="rgb(214,73,19)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="735.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="709" width="0.0258%" height="15" fill="rgb(249,222,49)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="693" width="0.0258%" height="15" fill="rgb(231,181,54)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="677" width="0.0258%" height="15" fill="rgb(240,1,13)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="661" width="0.0258%" height="15" fill="rgb(225,21,16)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="645" width="0.0258%" height="15" fill="rgb(246,176,50)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="655.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="629" width="0.0258%" height="15" fill="rgb(208,96,50)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="639.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="613" width="0.0258%" height="15" fill="rgb(240,219,19)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="623.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="597" width="0.0258%" height="15" fill="rgb(234,73,5)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="607.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="581" width="0.0258%" height="15" fill="rgb(225,52,53)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="591.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="565" width="0.0258%" height="15" fill="rgb(250,12,14)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="549" width="0.0258%" height="15" fill="rgb(242,185,54)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="533" width="0.0258%" height="15" fill="rgb(211,206,31)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="517" width="0.0258%" height="15" fill="rgb(252,10,33)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="527.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="501" width="0.0258%" height="15" fill="rgb(216,26,7)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="511.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="485" width="0.0258%" height="15" fill="rgb(228,112,40)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="469" width="0.0258%" height="15" fill="rgb(212,21,16)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="479.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="453" width="0.0258%" height="15" fill="rgb(249,3,29)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="437" width="0.0258%" height="15" fill="rgb(221,42,51)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="421" width="0.0258%" height="15" fill="rgb(225,90,21)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="405" width="0.0258%" height="15" fill="rgb(242,131,5)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="389" width="0.0258%" height="15" fill="rgb(220,187,28)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="399.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="373" width="0.0258%" height="15" fill="rgb(210,75,48)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="383.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="357" width="0.0258%" height="15" fill="rgb(211,91,40)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="367.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="341" width="0.0258%" height="15" fill="rgb(205,43,18)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="325" width="0.0258%" height="15" fill="rgb(207,123,11)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="309" width="0.0258%" height="15" fill="rgb(235,89,39)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="293" width="0.0258%" height="15" fill="rgb(245,217,27)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="303.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="277" width="0.0258%" height="15" fill="rgb(216,55,17)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="287.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (79,227,977 samples, 0.03%)</title><rect x="99.7808%" y="261" width="0.0258%" height="15" fill="rgb(252,116,44)" fg:x="306859749321" fg:w="79227977"/><text x="100.0308%" y="271.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (71,588,577 samples, 0.02%)</title><rect x="99.7832%" y="245" width="0.0233%" height="15" fill="rgb(229,153,4)" fg:x="306867388721" fg:w="71588577"/><text x="100.0332%" y="255.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (71,588,577 samples, 0.02%)</title><rect x="99.7832%" y="229" width="0.0233%" height="15" fill="rgb(222,24,35)" fg:x="306867388721" fg:w="71588577"/><text x="100.0332%" y="239.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (71,588,577 samples, 0.02%)</title><rect x="99.7832%" y="213" width="0.0233%" height="15" fill="rgb(214,26,20)" fg:x="306867388721" fg:w="71588577"/><text x="100.0332%" y="223.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (71,588,577 samples, 0.02%)</title><rect x="99.7832%" y="197" width="0.0233%" height="15" fill="rgb(215,14,45)" fg:x="306867388721" fg:w="71588577"/><text x="100.0332%" y="207.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="2053" width="0.0466%" height="15" fill="rgb(217,212,50)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="2063.50"></text></g><g><title>zed::main (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="2037" width="0.0466%" height="15" fill="rgb(230,172,52)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="2047.50"></text></g><g><title>gpui::app::Application::run (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="2021" width="0.0466%" height="15" fill="rgb(210,48,36)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="2031.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="2005" width="0.0466%" height="15" fill="rgb(216,213,32)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="2015.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="1989" width="0.0466%" height="15" fill="rgb(237,202,41)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="1999.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="1973" width="0.0466%" height="15" fill="rgb(209,14,29)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="1983.50"></text></g><g><title>wayland_client::event_queue::queue_callback (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="1957" width="0.0466%" height="15" fill="rgb(219,29,3)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="1967.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="1941" width="0.0466%" height="15" fill="rgb(229,13,49)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="1951.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="1925" width="0.0466%" height="15" fill="rgb(210,206,2)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="1935.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="1909" width="0.0466%" height="15" fill="rgb(216,154,46)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="1919.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="1893" width="0.0466%" height="15" fill="rgb(211,170,52)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="1903.50"></text></g><g><title>gpui::window::Window::draw (143,299,927 samples, 0.05%)</title><rect x="99.7797%" y="1877" width="0.0466%" height="15" fill="rgb(233,109,47)" fg:x="306856552589" fg:w="143299927"/><text x="100.0297%" y="1887.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1861" width="0.0459%" height="15" fill="rgb(208,212,30)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1871.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1845" width="0.0459%" height="15" fill="rgb(215,190,19)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1855.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1829" width="0.0459%" height="15" fill="rgb(207,164,53)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1839.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1813" width="0.0459%" height="15" fill="rgb(213,87,49)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1823.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1797" width="0.0459%" height="15" fill="rgb(241,216,24)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1807.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1781" width="0.0459%" height="15" fill="rgb(241,123,45)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1765" width="0.0459%" height="15" fill="rgb(220,36,15)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1749" width="0.0459%" height="15" fill="rgb(215,202,9)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1733" width="0.0459%" height="15" fill="rgb(252,71,26)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1743.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1717" width="0.0459%" height="15" fill="rgb(243,195,19)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1727.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1701" width="0.0459%" height="15" fill="rgb(207,167,27)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1711.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1685" width="0.0459%" height="15" fill="rgb(250,146,54)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1695.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1669" width="0.0459%" height="15" fill="rgb(245,79,9)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1653" width="0.0459%" height="15" fill="rgb(234,197,22)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1637" width="0.0459%" height="15" fill="rgb(221,52,48)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1621" width="0.0459%" height="15" fill="rgb(235,80,0)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1631.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1605" width="0.0459%" height="15" fill="rgb(221,117,53)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1615.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1589" width="0.0459%" height="15" fill="rgb(239,48,47)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1599.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1573" width="0.0459%" height="15" fill="rgb(227,191,52)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1583.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1557" width="0.0459%" height="15" fill="rgb(241,118,1)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1541" width="0.0459%" height="15" fill="rgb(240,85,3)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1525" width="0.0459%" height="15" fill="rgb(237,68,37)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1509" width="0.0459%" height="15" fill="rgb(212,9,20)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1519.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1493" width="0.0459%" height="15" fill="rgb(218,84,17)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1503.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1477" width="0.0459%" height="15" fill="rgb(235,147,20)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1487.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1461" width="0.0459%" height="15" fill="rgb(208,224,1)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1471.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1445" width="0.0459%" height="15" fill="rgb(232,97,50)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1429" width="0.0459%" height="15" fill="rgb(238,15,45)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1413" width="0.0459%" height="15" fill="rgb(231,46,18)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1397" width="0.0459%" height="15" fill="rgb(254,169,10)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1407.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1381" width="0.0459%" height="15" fill="rgb(243,169,30)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1391.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1365" width="0.0459%" height="15" fill="rgb(236,90,49)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1375.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1349" width="0.0459%" height="15" fill="rgb(218,80,15)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1359.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1333" width="0.0459%" height="15" fill="rgb(222,115,37)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1317" width="0.0459%" height="15" fill="rgb(227,0,6)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1301" width="0.0459%" height="15" fill="rgb(217,189,13)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1285" width="0.0459%" height="15" fill="rgb(220,74,19)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1295.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1269" width="0.0459%" height="15" fill="rgb(224,81,18)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1279.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1253" width="0.0459%" height="15" fill="rgb(245,178,48)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1263.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1237" width="0.0459%" height="15" fill="rgb(207,78,24)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1247.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1221" width="0.0459%" height="15" fill="rgb(223,222,30)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1205" width="0.0459%" height="15" fill="rgb(234,101,12)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1189" width="0.0459%" height="15" fill="rgb(209,80,46)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1173" width="0.0459%" height="15" fill="rgb(228,79,14)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1157" width="0.0459%" height="15" fill="rgb(220,219,34)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1167.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1141" width="0.0459%" height="15" fill="rgb(207,80,21)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1151.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1125" width="0.0459%" height="15" fill="rgb(210,154,44)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1135.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1109" width="0.0459%" height="15" fill="rgb(246,44,39)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1093" width="0.0459%" height="15" fill="rgb(252,175,13)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1077" width="0.0459%" height="15" fill="rgb(211,50,39)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1061" width="0.0459%" height="15" fill="rgb(231,204,27)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1071.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1045" width="0.0459%" height="15" fill="rgb(253,26,34)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1055.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (141,301,509 samples, 0.05%)</title><rect x="99.7804%" y="1029" width="0.0459%" height="15" fill="rgb(207,139,38)" fg:x="306858551007" fg:w="141301509"/><text x="100.0304%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="1013" width="0.0198%" height="15" fill="rgb(248,54,27)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="1023.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="997" width="0.0198%" height="15" fill="rgb(234,25,33)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="981" width="0.0198%" height="15" fill="rgb(249,107,47)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="965" width="0.0198%" height="15" fill="rgb(230,190,31)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="949" width="0.0198%" height="15" fill="rgb(238,173,45)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="933" width="0.0198%" height="15" fill="rgb(222,16,50)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="943.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="917" width="0.0198%" height="15" fill="rgb(251,204,47)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="927.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="901" width="0.0198%" height="15" fill="rgb(225,12,3)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="911.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="885" width="0.0198%" height="15" fill="rgb(214,208,22)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="895.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="869" width="0.0198%" height="15" fill="rgb(240,57,32)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="879.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="853" width="0.0198%" height="15" fill="rgb(243,113,48)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="837" width="0.0198%" height="15" fill="rgb(225,135,30)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="821" width="0.0198%" height="15" fill="rgb(222,3,53)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="805" width="0.0198%" height="15" fill="rgb(243,142,2)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="815.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="789" width="0.0198%" height="15" fill="rgb(233,67,14)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="799.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="773" width="0.0198%" height="15" fill="rgb(245,125,36)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="783.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="757" width="0.0198%" height="15" fill="rgb(225,199,6)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="767.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (60,875,218 samples, 0.02%)</title><rect x="99.8065%" y="741" width="0.0198%" height="15" fill="rgb(244,71,6)" fg:x="306938977298" fg:w="60875218"/><text x="100.0565%" y="751.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="725" width="0.0161%" height="15" fill="rgb(225,62,9)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="735.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="709" width="0.0161%" height="15" fill="rgb(246,139,53)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="719.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="693" width="0.0161%" height="15" fill="rgb(243,161,46)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="677" width="0.0161%" height="15" fill="rgb(236,153,7)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="661" width="0.0161%" height="15" fill="rgb(248,42,35)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="645" width="0.0161%" height="15" fill="rgb(250,17,31)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="655.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="629" width="0.0161%" height="15" fill="rgb(248,138,14)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="639.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="613" width="0.0161%" height="15" fill="rgb(228,161,3)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="597" width="0.0161%" height="15" fill="rgb(248,116,17)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="607.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="581" width="0.0161%" height="15" fill="rgb(207,78,24)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="565" width="0.0161%" height="15" fill="rgb(234,99,48)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="549" width="0.0161%" height="15" fill="rgb(242,22,26)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="533" width="0.0161%" height="15" fill="rgb(227,78,32)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="517" width="0.0161%" height="15" fill="rgb(226,189,43)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="527.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="501" width="0.0161%" height="15" fill="rgb(227,218,35)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="511.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="485" width="0.0161%" height="15" fill="rgb(206,111,40)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="495.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="469" width="0.0161%" height="15" fill="rgb(208,217,22)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="453" width="0.0161%" height="15" fill="rgb(248,20,20)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="463.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="437" width="0.0161%" height="15" fill="rgb(239,155,16)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="421" width="0.0161%" height="15" fill="rgb(238,171,46)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="405" width="0.0161%" height="15" fill="rgb(248,11,36)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="389" width="0.0161%" height="15" fill="rgb(220,148,37)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="373" width="0.0161%" height="15" fill="rgb(218,144,42)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="383.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="357" width="0.0161%" height="15" fill="rgb(245,20,20)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="367.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="341" width="0.0161%" height="15" fill="rgb(240,111,48)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="351.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="325" width="0.0161%" height="15" fill="rgb(237,225,32)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="335.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="309" width="0.0161%" height="15" fill="rgb(228,161,46)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="319.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (49,474,475 samples, 0.02%)</title><rect x="99.8102%" y="293" width="0.0161%" height="15" fill="rgb(235,196,21)" fg:x="306950378041" fg:w="49474475"/><text x="100.0602%" y="303.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}}::_{{closure}} (35,292,171 samples, 0.01%)</title><rect x="99.8271%" y="37" width="0.0115%" height="15" fill="rgb(250,133,21)" fg:x="307002207057" fg:w="35292171"/><text x="100.0771%" y="47.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint::_{{closure}} (39,787,172 samples, 0.01%)</title><rect x="99.8271%" y="53" width="0.0129%" height="15" fill="rgb(236,94,32)" fg:x="307002207057" fg:w="39787172"/><text x="100.0771%" y="63.50"></text></g><g><title>&lt;gpui::app::entity_map::AnyEntity as core::clone::Clone&gt;::clone (60,325,543 samples, 0.02%)</title><rect x="99.8407%" y="37" width="0.0196%" height="15" fill="rgb(219,176,25)" fg:x="307044179188" fg:w="60325543"/><text x="100.0907%" y="47.50"></text></g><g><title>&lt;gpui::app::entity_map::AnyEntity as core::ops::drop::Drop&gt;::drop (137,654,508 samples, 0.04%)</title><rect x="99.8603%" y="37" width="0.0448%" height="15" fill="rgb(211,17,43)" fg:x="307104504731" fg:w="137654508"/><text x="100.1103%" y="47.50"></text></g><g><title>editor::rust_analyzer_ext::is_rust_language (33,517,019 samples, 0.01%)</title><rect x="99.9147%" y="37" width="0.0109%" height="15" fill="rgb(220,75,23)" fg:x="307271553055" fg:w="33517019"/><text x="100.1647%" y="47.50"></text></g><g><title>editor::element::EditorElement::register_actions (281,029,453 samples, 0.09%)</title><rect x="99.8407%" y="53" width="0.0914%" height="15" fill="rgb(215,122,32)" fg:x="307044179188" fg:w="281029453"/><text x="100.0907%" y="63.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1957" width="0.1074%" height="15" fill="rgb(218,57,38)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1967.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1941" width="0.1074%" height="15" fill="rgb(233,208,46)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1951.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1925" width="0.1074%" height="15" fill="rgb(221,35,50)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1935.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1909" width="0.1074%" height="15" fill="rgb(229,213,29)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1919.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1893" width="0.1074%" height="15" fill="rgb(229,110,40)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1903.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1877" width="0.1074%" height="15" fill="rgb(247,206,19)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1861" width="0.1074%" height="15" fill="rgb(216,229,45)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1845" width="0.1074%" height="15" fill="rgb(205,184,31)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1829" width="0.1074%" height="15" fill="rgb(213,91,10)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1839.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1813" width="0.1074%" height="15" fill="rgb(250,49,8)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1823.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1797" width="0.1074%" height="15" fill="rgb(207,26,8)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1807.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1781" width="0.1074%" height="15" fill="rgb(224,2,13)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1791.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1765" width="0.1074%" height="15" fill="rgb(219,108,27)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1775.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1749" width="0.1074%" height="15" fill="rgb(240,89,32)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1733" width="0.1074%" height="15" fill="rgb(248,205,3)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1717" width="0.1074%" height="15" fill="rgb(236,197,47)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1727.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1701" width="0.1074%" height="15" fill="rgb(244,185,52)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1711.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1685" width="0.1074%" height="15" fill="rgb(210,206,23)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1669" width="0.1074%" height="15" fill="rgb(251,177,30)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1653" width="0.1074%" height="15" fill="rgb(243,27,45)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1663.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1637" width="0.1074%" height="15" fill="rgb(248,141,51)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1621" width="0.1074%" height="15" fill="rgb(235,102,15)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1631.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1605" width="0.1074%" height="15" fill="rgb(214,164,53)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1589" width="0.1074%" height="15" fill="rgb(228,18,51)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1599.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1573" width="0.1074%" height="15" fill="rgb(205,211,11)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1557" width="0.1074%" height="15" fill="rgb(208,63,6)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1541" width="0.1074%" height="15" fill="rgb(245,76,14)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1525" width="0.1074%" height="15" fill="rgb(234,176,34)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1509" width="0.1074%" height="15" fill="rgb(243,156,42)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1519.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1493" width="0.1074%" height="15" fill="rgb(237,182,10)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1477" width="0.1074%" height="15" fill="rgb(244,117,0)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1487.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1461" width="0.1074%" height="15" fill="rgb(239,91,50)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1445" width="0.1074%" height="15" fill="rgb(206,38,9)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1429" width="0.1074%" height="15" fill="rgb(205,25,10)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1413" width="0.1074%" height="15" fill="rgb(206,224,7)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1397" width="0.1074%" height="15" fill="rgb(227,157,10)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1381" width="0.1074%" height="15" fill="rgb(214,157,37)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1391.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1365" width="0.1074%" height="15" fill="rgb(209,180,35)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1375.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1349" width="0.1074%" height="15" fill="rgb(216,174,49)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1333" width="0.1074%" height="15" fill="rgb(205,96,20)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1343.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1317" width="0.1074%" height="15" fill="rgb(214,220,39)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1327.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1301" width="0.1074%" height="15" fill="rgb(245,126,30)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1285" width="0.1074%" height="15" fill="rgb(215,88,33)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1269" width="0.1074%" height="15" fill="rgb(210,1,49)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1279.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1253" width="0.1074%" height="15" fill="rgb(207,133,3)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1263.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1237" width="0.1074%" height="15" fill="rgb(231,47,43)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1221" width="0.1074%" height="15" fill="rgb(245,64,1)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1231.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1205" width="0.1074%" height="15" fill="rgb(253,145,20)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1215.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1189" width="0.1074%" height="15" fill="rgb(211,39,18)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1199.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1173" width="0.1074%" height="15" fill="rgb(223,225,18)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1183.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1157" width="0.1074%" height="15" fill="rgb(210,202,44)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1167.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1141" width="0.1074%" height="15" fill="rgb(231,138,36)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1151.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1125" width="0.1074%" height="15" fill="rgb(237,115,25)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1109" width="0.1074%" height="15" fill="rgb(215,53,48)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1093" width="0.1074%" height="15" fill="rgb(243,193,24)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1077" width="0.1074%" height="15" fill="rgb(210,106,28)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1087.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1061" width="0.1074%" height="15" fill="rgb(249,192,0)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1071.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1045" width="0.1074%" height="15" fill="rgb(224,96,21)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1055.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1029" width="0.1074%" height="15" fill="rgb(243,160,19)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="1013" width="0.1074%" height="15" fill="rgb(219,205,50)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="997" width="0.1074%" height="15" fill="rgb(218,175,44)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="981" width="0.1074%" height="15" fill="rgb(251,84,47)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="965" width="0.1074%" height="15" fill="rgb(241,14,16)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="949" width="0.1074%" height="15" fill="rgb(207,142,28)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="933" width="0.1074%" height="15" fill="rgb(208,116,22)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="943.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (330,151,882 samples, 0.11%)</title><rect x="99.8263%" y="917" width="0.1074%" height="15" fill="rgb(210,0,43)" fg:x="306999852516" fg:w="330151882"/><text x="100.0763%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="901" width="0.1066%" height="15" fill="rgb(246,33,21)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="911.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="885" width="0.1066%" height="15" fill="rgb(208,158,54)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="895.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="869" width="0.1066%" height="15" fill="rgb(218,99,29)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="853" width="0.1066%" height="15" fill="rgb(226,29,7)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="837" width="0.1066%" height="15" fill="rgb(206,178,46)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="821" width="0.1066%" height="15" fill="rgb(205,169,32)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="831.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="805" width="0.1066%" height="15" fill="rgb(217,4,13)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="789" width="0.1066%" height="15" fill="rgb(210,140,37)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="799.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="773" width="0.1066%" height="15" fill="rgb(229,80,10)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="783.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="757" width="0.1066%" height="15" fill="rgb(212,175,34)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="767.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="741" width="0.1066%" height="15" fill="rgb(216,207,24)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="751.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="725" width="0.1066%" height="15" fill="rgb(234,163,3)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="735.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="709" width="0.1066%" height="15" fill="rgb(248,101,16)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="693" width="0.1066%" height="15" fill="rgb(209,152,54)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="677" width="0.1066%" height="15" fill="rgb(229,124,51)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="661" width="0.1066%" height="15" fill="rgb(219,83,18)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="645" width="0.1066%" height="15" fill="rgb(206,29,38)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="629" width="0.1066%" height="15" fill="rgb(245,123,23)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="639.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="613" width="0.1066%" height="15" fill="rgb(238,50,33)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="623.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="597" width="0.1066%" height="15" fill="rgb(234,165,23)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="607.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="581" width="0.1066%" height="15" fill="rgb(211,82,31)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="591.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="565" width="0.1066%" height="15" fill="rgb(224,166,46)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="575.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="549" width="0.1066%" height="15" fill="rgb(211,13,8)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="559.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="533" width="0.1066%" height="15" fill="rgb(212,7,42)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="517" width="0.1066%" height="15" fill="rgb(249,102,19)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="501" width="0.1066%" height="15" fill="rgb(225,41,13)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="511.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="485" width="0.1066%" height="15" fill="rgb(220,65,27)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="495.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="469" width="0.1066%" height="15" fill="rgb(206,4,41)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="453" width="0.1066%" height="15" fill="rgb(219,60,39)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="437" width="0.1066%" height="15" fill="rgb(226,4,38)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="447.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="421" width="0.1066%" height="15" fill="rgb(250,52,3)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="405" width="0.1066%" height="15" fill="rgb(234,93,0)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="415.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="389" width="0.1066%" height="15" fill="rgb(251,47,47)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="373" width="0.1066%" height="15" fill="rgb(205,166,47)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="383.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="357" width="0.1066%" height="15" fill="rgb(231,148,8)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="341" width="0.1066%" height="15" fill="rgb(244,185,19)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="325" width="0.1066%" height="15" fill="rgb(224,201,45)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="309" width="0.1066%" height="15" fill="rgb(240,77,39)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="293" width="0.1066%" height="15" fill="rgb(248,211,29)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="303.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="277" width="0.1066%" height="15" fill="rgb(232,214,46)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="287.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="261" width="0.1066%" height="15" fill="rgb(213,99,54)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="271.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="245" width="0.1066%" height="15" fill="rgb(240,19,46)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="255.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="229" width="0.1066%" height="15" fill="rgb(243,89,10)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="239.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="213" width="0.1066%" height="15" fill="rgb(249,28,32)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="223.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="197" width="0.1066%" height="15" fill="rgb(253,30,9)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="207.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="181" width="0.1066%" height="15" fill="rgb(217,2,26)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="191.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="165" width="0.1066%" height="15" fill="rgb(220,28,10)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="175.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="149" width="0.1066%" height="15" fill="rgb(228,167,49)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="159.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="133" width="0.1066%" height="15" fill="rgb(238,212,3)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="143.50"></text></g><g><title>gpui::elements::div::Interactivity::paint::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="117" width="0.1066%" height="15" fill="rgb(229,134,44)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="127.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="101" width="0.1066%" height="15" fill="rgb(208,71,4)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="111.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="85" width="0.1066%" height="15" fill="rgb(221,205,45)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="95.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::paint (327,797,341 samples, 0.11%)</title><rect x="99.8271%" y="69" width="0.1066%" height="15" fill="rgb(215,132,38)" fg:x="307002207057" fg:w="327797341"/><text x="100.0771%" y="79.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (49,285,632 samples, 0.02%)</title><rect x="99.9340%" y="69" width="0.0160%" height="15" fill="rgb(227,158,6)" fg:x="307330995151" fg:w="49285632"/><text x="100.1840%" y="79.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="261" width="0.0167%" height="15" fill="rgb(250,10,38)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="271.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="245" width="0.0167%" height="15" fill="rgb(225,171,40)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="255.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="229" width="0.0167%" height="15" fill="rgb(238,17,43)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="239.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="213" width="0.0167%" height="15" fill="rgb(208,145,4)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="223.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="197" width="0.0167%" height="15" fill="rgb(232,82,7)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="207.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="181" width="0.0167%" height="15" fill="rgb(205,166,38)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="191.50"></text></g><g><title>gpui::element::Drawable&lt;E&gt;::request_layout (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="165" width="0.0167%" height="15" fill="rgb(240,228,4)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="175.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="149" width="0.0167%" height="15" fill="rgb(233,121,40)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="159.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="133" width="0.0167%" height="15" fill="rgb(243,84,30)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="143.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}} (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="117" width="0.0167%" height="15" fill="rgb(235,81,48)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="127.50"></text></g><g><title>gpui::elements::div::Interactivity::request_layout::_{{closure}} (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="101" width="0.0167%" height="15" fill="rgb(218,137,0)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="111.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::request_layout::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (51,303,624 samples, 0.02%)</title><rect x="99.9340%" y="85" width="0.0167%" height="15" fill="rgb(223,151,48)" fg:x="307330995151" fg:w="51303624"/><text x="100.1840%" y="95.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (52,262,777 samples, 0.02%)</title><rect x="99.9340%" y="277" width="0.0170%" height="15" fill="rgb(247,30,19)" fg:x="307330995151" fg:w="52262777"/><text x="100.1840%" y="287.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="1109" width="0.0206%" height="15" fill="rgb(205,129,29)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="1119.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="1093" width="0.0206%" height="15" fill="rgb(222,29,2)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="1103.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="1077" width="0.0206%" height="15" fill="rgb(232,145,33)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="1087.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="1061" width="0.0206%" height="15" fill="rgb(217,30,31)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="1071.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="1045" width="0.0206%" height="15" fill="rgb(243,22,52)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="1055.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="1029" width="0.0206%" height="15" fill="rgb(254,228,14)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="1013" width="0.0206%" height="15" fill="rgb(231,45,50)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="1023.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="997" width="0.0206%" height="15" fill="rgb(248,125,3)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="1007.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="981" width="0.0206%" height="15" fill="rgb(213,76,9)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="991.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="965" width="0.0206%" height="15" fill="rgb(238,108,21)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="949" width="0.0206%" height="15" fill="rgb(229,214,19)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="959.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="933" width="0.0206%" height="15" fill="rgb(252,201,5)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="943.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="917" width="0.0206%" height="15" fill="rgb(233,165,49)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="901" width="0.0206%" height="15" fill="rgb(208,165,19)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="911.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="885" width="0.0206%" height="15" fill="rgb(216,220,31)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="895.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="869" width="0.0206%" height="15" fill="rgb(214,8,31)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="879.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="853" width="0.0206%" height="15" fill="rgb(220,32,32)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="863.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="837" width="0.0206%" height="15" fill="rgb(237,172,34)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="821" width="0.0206%" height="15" fill="rgb(240,209,5)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="831.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="805" width="0.0206%" height="15" fill="rgb(221,219,1)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="815.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="789" width="0.0206%" height="15" fill="rgb(237,90,36)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="799.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="773" width="0.0206%" height="15" fill="rgb(245,14,51)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="783.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="757" width="0.0206%" height="15" fill="rgb(211,71,49)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="767.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="741" width="0.0206%" height="15" fill="rgb(230,223,9)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="751.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="725" width="0.0206%" height="15" fill="rgb(212,33,31)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="735.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="709" width="0.0206%" height="15" fill="rgb(218,141,5)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="719.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="693" width="0.0206%" height="15" fill="rgb(239,194,8)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="703.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="677" width="0.0206%" height="15" fill="rgb(225,119,29)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="687.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="661" width="0.0206%" height="15" fill="rgb(233,32,3)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="671.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="645" width="0.0206%" height="15" fill="rgb(248,126,40)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="655.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="629" width="0.0206%" height="15" fill="rgb(213,102,53)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="639.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="613" width="0.0206%" height="15" fill="rgb(212,69,15)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="597" width="0.0206%" height="15" fill="rgb(253,39,34)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="607.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="581" width="0.0206%" height="15" fill="rgb(205,189,54)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="591.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="565" width="0.0206%" height="15" fill="rgb(234,229,45)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="575.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="549" width="0.0206%" height="15" fill="rgb(243,79,48)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="533" width="0.0206%" height="15" fill="rgb(206,71,50)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="543.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="517" width="0.0206%" height="15" fill="rgb(209,32,17)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="527.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="501" width="0.0206%" height="15" fill="rgb(219,229,6)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="485" width="0.0206%" height="15" fill="rgb(226,25,27)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="495.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="469" width="0.0206%" height="15" fill="rgb(218,185,23)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="479.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="453" width="0.0206%" height="15" fill="rgb(242,123,5)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="463.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="437" width="0.0206%" height="15" fill="rgb(215,53,19)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="421" width="0.0206%" height="15" fill="rgb(233,20,30)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="405" width="0.0206%" height="15" fill="rgb(209,67,20)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="415.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="389" width="0.0206%" height="15" fill="rgb(227,181,50)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="373" width="0.0206%" height="15" fill="rgb(252,75,38)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="383.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (63,438,914 samples, 0.02%)</title><rect x="99.9337%" y="357" width="0.0206%" height="15" fill="rgb(235,9,33)" fg:x="307330004398" fg:w="63438914"/><text x="100.1837%" y="367.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (62,448,161 samples, 0.02%)</title><rect x="99.9340%" y="341" width="0.0203%" height="15" fill="rgb(208,87,30)" fg:x="307330995151" fg:w="62448161"/><text x="100.1840%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (62,448,161 samples, 0.02%)</title><rect x="99.9340%" y="325" width="0.0203%" height="15" fill="rgb(215,199,39)" fg:x="307330995151" fg:w="62448161"/><text x="100.1840%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (62,448,161 samples, 0.02%)</title><rect x="99.9340%" y="309" width="0.0203%" height="15" fill="rgb(246,208,12)" fg:x="307330995151" fg:w="62448161"/><text x="100.1840%" y="319.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (62,448,161 samples, 0.02%)</title><rect x="99.9340%" y="293" width="0.0203%" height="15" fill="rgb(206,195,10)" fg:x="307330995151" fg:w="62448161"/><text x="100.1840%" y="303.50"></text></g><g><title>wayland_client::event_queue::queue_callback (413,874,849 samples, 0.13%)</title><rect x="99.8263%" y="2053" width="0.1346%" height="15" fill="rgb(244,1,30)" fg:x="306999852516" fg:w="413874849"/><text x="100.0763%" y="2063.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (413,874,849 samples, 0.13%)</title><rect x="99.8263%" y="2037" width="0.1346%" height="15" fill="rgb(230,83,5)" fg:x="306999852516" fg:w="413874849"/><text x="100.0763%" y="2047.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (413,874,849 samples, 0.13%)</title><rect x="99.8263%" y="2021" width="0.1346%" height="15" fill="rgb(239,62,17)" fg:x="306999852516" fg:w="413874849"/><text x="100.0763%" y="2031.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (413,874,849 samples, 0.13%)</title><rect x="99.8263%" y="2005" width="0.1346%" height="15" fill="rgb(252,193,41)" fg:x="306999852516" fg:w="413874849"/><text x="100.0763%" y="2015.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (413,874,849 samples, 0.13%)</title><rect x="99.8263%" y="1989" width="0.1346%" height="15" fill="rgb(216,142,19)" fg:x="306999852516" fg:w="413874849"/><text x="100.0763%" y="1999.50"></text></g><g><title>gpui::window::Window::draw (413,874,849 samples, 0.13%)</title><rect x="99.8263%" y="1973" width="0.1346%" height="15" fill="rgb(240,81,38)" fg:x="306999852516" fg:w="413874849"/><text x="100.0763%" y="1983.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1957" width="0.0272%" height="15" fill="rgb(240,109,40)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1967.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1941" width="0.0272%" height="15" fill="rgb(230,123,10)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1951.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1925" width="0.0272%" height="15" fill="rgb(253,42,32)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1935.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1909" width="0.0272%" height="15" fill="rgb(218,154,8)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1919.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1893" width="0.0272%" height="15" fill="rgb(216,197,10)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1903.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1877" width="0.0272%" height="15" fill="rgb(223,107,12)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1887.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1861" width="0.0272%" height="15" fill="rgb(241,174,42)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1871.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1845" width="0.0272%" height="15" fill="rgb(231,78,20)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1855.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1829" width="0.0272%" height="15" fill="rgb(230,208,49)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1839.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1813" width="0.0272%" height="15" fill="rgb(238,11,34)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1823.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1797" width="0.0272%" height="15" fill="rgb(210,130,26)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1807.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1781" width="0.0272%" height="15" fill="rgb(242,131,11)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1791.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1765" width="0.0272%" height="15" fill="rgb(237,38,28)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1749" width="0.0272%" height="15" fill="rgb(244,180,43)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1759.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1733" width="0.0272%" height="15" fill="rgb(214,171,19)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1743.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1717" width="0.0272%" height="15" fill="rgb(252,101,45)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1727.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1701" width="0.0272%" height="15" fill="rgb(211,96,33)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1711.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1685" width="0.0272%" height="15" fill="rgb(207,80,25)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1695.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1669" width="0.0272%" height="15" fill="rgb(225,15,35)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1679.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1653" width="0.0272%" height="15" fill="rgb(214,93,43)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1637" width="0.0272%" height="15" fill="rgb(248,42,37)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1647.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1621" width="0.0272%" height="15" fill="rgb(217,135,32)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1631.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1605" width="0.0272%" height="15" fill="rgb(216,74,28)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1589" width="0.0272%" height="15" fill="rgb(247,108,16)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1599.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1573" width="0.0272%" height="15" fill="rgb(205,219,30)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1583.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1557" width="0.0272%" height="15" fill="rgb(241,122,9)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1567.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1541" width="0.0272%" height="15" fill="rgb(216,148,50)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1525" width="0.0272%" height="15" fill="rgb(226,154,2)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1535.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1509" width="0.0272%" height="15" fill="rgb(220,128,1)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1519.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1493" width="0.0272%" height="15" fill="rgb(245,185,29)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1477" width="0.0272%" height="15" fill="rgb(243,161,2)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1487.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1461" width="0.0272%" height="15" fill="rgb(249,215,17)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1471.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1445" width="0.0272%" height="15" fill="rgb(237,67,11)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1455.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1429" width="0.0272%" height="15" fill="rgb(239,17,24)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1413" width="0.0272%" height="15" fill="rgb(215,97,29)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1423.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1397" width="0.0272%" height="15" fill="rgb(253,228,42)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1407.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1381" width="0.0272%" height="15" fill="rgb(240,85,2)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1391.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1365" width="0.0272%" height="15" fill="rgb(214,155,4)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1375.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1349" width="0.0272%" height="15" fill="rgb(247,120,22)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1359.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1333" width="0.0272%" height="15" fill="rgb(211,208,6)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1343.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1317" width="0.0272%" height="15" fill="rgb(235,99,41)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1301" width="0.0272%" height="15" fill="rgb(223,28,8)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1311.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1285" width="0.0272%" height="15" fill="rgb(212,71,20)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1295.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1269" width="0.0272%" height="15" fill="rgb(206,85,3)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1253" width="0.0272%" height="15" fill="rgb(244,180,11)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1263.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1237" width="0.0272%" height="15" fill="rgb(223,16,21)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1247.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1221" width="0.0272%" height="15" fill="rgb(238,85,42)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1231.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1205" width="0.0272%" height="15" fill="rgb(205,85,8)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1189" width="0.0272%" height="15" fill="rgb(217,190,15)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1199.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1173" width="0.0272%" height="15" fill="rgb(243,192,23)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1183.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1157" width="0.0272%" height="15" fill="rgb(223,220,37)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1167.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1141" width="0.0272%" height="15" fill="rgb(208,41,17)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1151.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (83,722,967 samples, 0.03%)</title><rect x="99.9337%" y="1125" width="0.0272%" height="15" fill="rgb(224,188,7)" fg:x="307330004398" fg:w="83722967"/><text x="100.1837%" y="1135.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::layout_as_root (41,638,170 samples, 0.01%)</title><rect x="99.9668%" y="197" width="0.0135%" height="15" fill="rgb(236,16,50)" fg:x="307431966578" fg:w="41638170"/><text x="100.2168%" y="207.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="1029" width="0.0202%" height="15" fill="rgb(238,6,24)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="1039.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="1013" width="0.0202%" height="15" fill="rgb(253,67,45)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="1023.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="997" width="0.0202%" height="15" fill="rgb(210,89,32)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="981" width="0.0202%" height="15" fill="rgb(208,89,9)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="965" width="0.0202%" height="15" fill="rgb(222,180,44)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="975.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="949" width="0.0202%" height="15" fill="rgb(250,181,46)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="959.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="933" width="0.0202%" height="15" fill="rgb(210,190,26)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="943.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="917" width="0.0202%" height="15" fill="rgb(253,49,13)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="927.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="901" width="0.0202%" height="15" fill="rgb(240,184,42)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="911.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="885" width="0.0202%" height="15" fill="rgb(246,59,37)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="895.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="869" width="0.0202%" height="15" fill="rgb(207,134,54)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="853" width="0.0202%" height="15" fill="rgb(250,122,24)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="837" width="0.0202%" height="15" fill="rgb(239,206,3)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="847.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="821" width="0.0202%" height="15" fill="rgb(253,220,32)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="831.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="805" width="0.0202%" height="15" fill="rgb(209,217,48)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="815.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="789" width="0.0202%" height="15" fill="rgb(242,91,39)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="799.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (61,991,243 samples, 0.02%)</title><rect x="99.9616%" y="773" width="0.0202%" height="15" fill="rgb(228,4,13)" fg:x="307415859986" fg:w="61991243"/><text x="100.2116%" y="783.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="757" width="0.0186%" height="15" fill="rgb(223,133,4)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="767.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="741" width="0.0186%" height="15" fill="rgb(215,105,30)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="751.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="725" width="0.0186%" height="15" fill="rgb(230,9,4)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="735.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="709" width="0.0186%" height="15" fill="rgb(248,15,2)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="693" width="0.0186%" height="15" fill="rgb(208,210,22)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="677" width="0.0186%" height="15" fill="rgb(208,112,41)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="687.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="661" width="0.0186%" height="15" fill="rgb(232,83,14)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="671.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="645" width="0.0186%" height="15" fill="rgb(229,65,11)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="655.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="629" width="0.0186%" height="15" fill="rgb(228,126,24)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="639.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="613" width="0.0186%" height="15" fill="rgb(218,66,33)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="623.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="597" width="0.0186%" height="15" fill="rgb(251,49,52)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="607.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="581" width="0.0186%" height="15" fill="rgb(219,46,37)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="565" width="0.0186%" height="15" fill="rgb(213,53,49)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="549" width="0.0186%" height="15" fill="rgb(214,134,1)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="559.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="533" width="0.0186%" height="15" fill="rgb(208,139,43)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="543.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="517" width="0.0186%" height="15" fill="rgb(231,105,35)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="527.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="501" width="0.0186%" height="15" fill="rgb(247,189,9)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="511.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="485" width="0.0186%" height="15" fill="rgb(252,48,51)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="495.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="469" width="0.0186%" height="15" fill="rgb(209,121,1)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="479.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="453" width="0.0186%" height="15" fill="rgb(231,40,26)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="437" width="0.0186%" height="15" fill="rgb(251,8,13)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="421" width="0.0186%" height="15" fill="rgb(231,110,2)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="431.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="405" width="0.0186%" height="15" fill="rgb(216,153,22)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="415.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="389" width="0.0186%" height="15" fill="rgb(249,116,49)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="399.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="373" width="0.0186%" height="15" fill="rgb(230,89,2)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="383.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="357" width="0.0186%" height="15" fill="rgb(231,125,23)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="367.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="341" width="0.0186%" height="15" fill="rgb(212,217,18)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="351.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="325" width="0.0186%" height="15" fill="rgb(210,21,33)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="335.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="309" width="0.0186%" height="15" fill="rgb(241,97,9)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="319.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="293" width="0.0186%" height="15" fill="rgb(221,35,31)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="303.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (57,288,396 samples, 0.02%)</title><rect x="99.9631%" y="277" width="0.0186%" height="15" fill="rgb(251,23,23)" fg:x="307420562833" fg:w="57288396"/><text x="100.2131%" y="287.50"></text></g><g><title>&lt;gpui::elements::uniform_list::UniformList as gpui::element::Element&gt;::prepaint (45,884,651 samples, 0.01%)</title><rect x="99.9668%" y="261" width="0.0149%" height="15" fill="rgb(227,165,2)" fg:x="307431966578" fg:w="45884651"/><text x="100.2168%" y="271.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (45,884,651 samples, 0.01%)</title><rect x="99.9668%" y="245" width="0.0149%" height="15" fill="rgb(242,24,2)" fg:x="307431966578" fg:w="45884651"/><text x="100.2168%" y="255.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (45,884,651 samples, 0.01%)</title><rect x="99.9668%" y="229" width="0.0149%" height="15" fill="rgb(242,138,51)" fg:x="307431966578" fg:w="45884651"/><text x="100.2168%" y="239.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (45,884,651 samples, 0.01%)</title><rect x="99.9668%" y="213" width="0.0149%" height="15" fill="rgb(220,219,5)" fg:x="307431966578" fg:w="45884651"/><text x="100.2168%" y="223.50"></text></g><g><title>zed (87,731,050,761 samples, 28.53%)</title><rect x="71.4690%" y="2069" width="28.5273%" height="15" fill="rgb(247,53,29)" fg:x="219791418060" fg:w="87731050761"/><text x="71.7190%" y="2079.50">zed</text></g><g><title>zed::main (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="2053" width="0.0354%" height="15" fill="rgb(233,43,39)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="2063.50"></text></g><g><title>gpui::app::Application::run (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="2037" width="0.0354%" height="15" fill="rgb(230,128,54)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="2047.50"></text></g><g><title>gpui::platform::linux::platform::&lt;impl gpui::platform::Platform for P&gt;::run (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="2021" width="0.0354%" height="15" fill="rgb(218,20,12)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="2031.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClient as gpui::platform::linux::platform::LinuxClient&gt;::run (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="2005" width="0.0354%" height="15" fill="rgb(206,51,14)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="2015.50"></text></g><g><title>&lt;core::cell::RefCell&lt;calloop::sources::DispatcherInner&lt;S,F&gt;&gt; as calloop::sources::EventDispatcher&lt;Data&gt;&gt;::process_events (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="1989" width="0.0354%" height="15" fill="rgb(223,16,35)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="1999.50"></text></g><g><title>wayland_client::event_queue::queue_callback (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="1973" width="0.0354%" height="15" fill="rgb(226,165,37)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="1983.50"></text></g><g><title>&lt;gpui::platform::linux::wayland::client::WaylandClientStatePtr as wayland_client::event_queue::Dispatch&lt;wayland_client::protocol::wl_callback::WlCallback,wayland_backend::sys::client::ObjectId&gt;&gt;::event (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="1957" width="0.0354%" height="15" fill="rgb(240,26,21)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="1967.50"></text></g><g><title>gpui::platform::linux::wayland::window::WaylandWindowStatePtr::frame (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="1941" width="0.0354%" height="15" fill="rgb(240,72,46)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="1951.50"></text></g><g><title>gpui::window::Window::new::_{{closure}} (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="1925" width="0.0354%" height="15" fill="rgb(211,33,41)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="1935.50"></text></g><g><title>gpui::window::Window::new::_{{closure}}::_{{closure}} (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="1909" width="0.0354%" height="15" fill="rgb(224,157,46)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="1919.50"></text></g><g><title>gpui::window::Window::draw (108,741,456 samples, 0.04%)</title><rect x="99.9609%" y="1893" width="0.0354%" height="15" fill="rgb(223,59,19)" fg:x="307413727365" fg:w="108741456"/><text x="100.2109%" y="1903.50"></text></g><g><title>gpui::element::AnyElement::prepaint_as_root (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1877" width="0.0347%" height="15" fill="rgb(239,187,1)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1887.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1861" width="0.0347%" height="15" fill="rgb(226,95,9)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1871.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1845" width="0.0347%" height="15" fill="rgb(234,61,54)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1855.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1829" width="0.0347%" height="15" fill="rgb(205,209,47)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1839.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1813" width="0.0347%" height="15" fill="rgb(228,7,43)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1823.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1797" width="0.0347%" height="15" fill="rgb(240,217,52)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1807.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1781" width="0.0347%" height="15" fill="rgb(211,178,21)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1791.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1765" width="0.0347%" height="15" fill="rgb(205,25,34)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1775.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1749" width="0.0347%" height="15" fill="rgb(209,57,11)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1759.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1733" width="0.0347%" height="15" fill="rgb(221,99,2)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1743.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1717" width="0.0347%" height="15" fill="rgb(232,79,22)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1727.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1701" width="0.0347%" height="15" fill="rgb(221,145,32)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1711.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1685" width="0.0347%" height="15" fill="rgb(236,133,36)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1695.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1669" width="0.0347%" height="15" fill="rgb(208,224,44)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1679.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1653" width="0.0347%" height="15" fill="rgb(235,143,15)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1663.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1637" width="0.0347%" height="15" fill="rgb(249,83,27)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1647.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1621" width="0.0347%" height="15" fill="rgb(238,226,19)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1631.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1605" width="0.0347%" height="15" fill="rgb(226,206,27)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1615.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1589" width="0.0347%" height="15" fill="rgb(251,182,9)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1599.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1573" width="0.0347%" height="15" fill="rgb(212,140,41)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1583.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1557" width="0.0347%" height="15" fill="rgb(220,106,18)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1567.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1541" width="0.0347%" height="15" fill="rgb(252,46,41)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1551.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1525" width="0.0347%" height="15" fill="rgb(209,222,15)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1535.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1509" width="0.0347%" height="15" fill="rgb(233,83,50)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1519.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1493" width="0.0347%" height="15" fill="rgb(205,212,0)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1503.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1477" width="0.0347%" height="15" fill="rgb(235,117,51)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1487.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1461" width="0.0347%" height="15" fill="rgb(233,133,48)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1471.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1445" width="0.0347%" height="15" fill="rgb(219,3,2)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1455.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1429" width="0.0347%" height="15" fill="rgb(225,80,52)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1439.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1413" width="0.0347%" height="15" fill="rgb(235,195,42)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1423.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1397" width="0.0347%" height="15" fill="rgb(240,207,46)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1407.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1381" width="0.0347%" height="15" fill="rgb(236,112,50)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1391.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1365" width="0.0347%" height="15" fill="rgb(249,151,27)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1375.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1349" width="0.0347%" height="15" fill="rgb(253,223,52)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1359.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1333" width="0.0347%" height="15" fill="rgb(215,55,33)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1343.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1317" width="0.0347%" height="15" fill="rgb(207,24,17)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1327.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1301" width="0.0347%" height="15" fill="rgb(218,169,32)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1311.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1285" width="0.0347%" height="15" fill="rgb(209,210,6)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1295.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1269" width="0.0347%" height="15" fill="rgb(225,208,8)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1279.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1253" width="0.0347%" height="15" fill="rgb(238,14,32)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1263.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1237" width="0.0347%" height="15" fill="rgb(211,137,3)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1247.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1221" width="0.0347%" height="15" fill="rgb(207,171,19)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1231.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1205" width="0.0347%" height="15" fill="rgb(250,80,8)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1215.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1189" width="0.0347%" height="15" fill="rgb(209,103,53)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1199.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1173" width="0.0347%" height="15" fill="rgb(233,198,10)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1183.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1157" width="0.0347%" height="15" fill="rgb(236,125,25)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1167.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1141" width="0.0347%" height="15" fill="rgb(254,182,48)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1151.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1125" width="0.0347%" height="15" fill="rgb(216,108,44)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1135.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1109" width="0.0347%" height="15" fill="rgb(222,72,39)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1119.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1093" width="0.0347%" height="15" fill="rgb(252,70,39)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1103.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1077" width="0.0347%" height="15" fill="rgb(243,99,34)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1087.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1061" width="0.0347%" height="15" fill="rgb(252,109,12)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1071.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (106,608,835 samples, 0.03%)</title><rect x="99.9616%" y="1045" width="0.0347%" height="15" fill="rgb(211,186,10)" fg:x="307415859986" fg:w="106608835"/><text x="100.2116%" y="1055.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="1029" width="0.0145%" height="15" fill="rgb(246,90,8)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="1039.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="1013" width="0.0145%" height="15" fill="rgb(226,91,24)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="1023.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="997" width="0.0145%" height="15" fill="rgb(216,28,44)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="1007.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="981" width="0.0145%" height="15" fill="rgb(229,36,0)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="991.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="965" width="0.0145%" height="15" fill="rgb(245,97,18)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="975.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="949" width="0.0145%" height="15" fill="rgb(241,97,54)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="959.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="933" width="0.0145%" height="15" fill="rgb(234,125,17)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="943.50"></text></g><g><title>&lt;gpui::element::AnyElement as gpui::element::Element&gt;::prepaint (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="917" width="0.0145%" height="15" fill="rgb(228,172,39)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="927.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="901" width="0.0145%" height="15" fill="rgb(227,169,1)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="911.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="885" width="0.0145%" height="15" fill="rgb(206,13,35)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="895.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="869" width="0.0145%" height="15" fill="rgb(211,117,30)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="879.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="853" width="0.0145%" height="15" fill="rgb(230,198,4)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="863.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="837" width="0.0145%" height="15" fill="rgb(213,87,54)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="847.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="821" width="0.0145%" height="15" fill="rgb(248,43,22)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="831.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="805" width="0.0145%" height="15" fill="rgb(213,175,48)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="815.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="789" width="0.0145%" height="15" fill="rgb(252,55,9)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="799.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="773" width="0.0145%" height="15" fill="rgb(231,72,33)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="783.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}} (44,617,592 samples, 0.01%)</title><rect x="99.9817%" y="757" width="0.0145%" height="15" fill="rgb(213,2,54)" fg:x="307477851229" fg:w="44617592"/><text x="100.2317%" y="767.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="741" width="0.0123%" height="15" fill="rgb(208,88,25)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="751.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="725" width="0.0123%" height="15" fill="rgb(215,117,13)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="735.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="709" width="0.0123%" height="15" fill="rgb(243,147,21)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="719.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="693" width="0.0123%" height="15" fill="rgb(208,215,36)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="703.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="677" width="0.0123%" height="15" fill="rgb(238,187,24)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="687.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="661" width="0.0123%" height="15" fill="rgb(214,173,11)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="671.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="645" width="0.0123%" height="15" fill="rgb(222,71,20)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="655.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="629" width="0.0123%" height="15" fill="rgb(242,125,4)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="639.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="613" width="0.0123%" height="15" fill="rgb(217,101,52)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="623.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="597" width="0.0123%" height="15" fill="rgb(223,2,50)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="607.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="581" width="0.0123%" height="15" fill="rgb(225,197,9)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="591.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="565" width="0.0123%" height="15" fill="rgb(234,76,27)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="575.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="549" width="0.0123%" height="15" fill="rgb(213,161,26)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="559.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="533" width="0.0123%" height="15" fill="rgb(210,228,2)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="543.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (37,822,670 samples, 0.01%)</title><rect x="99.9839%" y="517" width="0.0123%" height="15" fill="rgb(235,4,16)" fg:x="307484646151" fg:w="37822670"/><text x="100.2339%" y="527.50"></text></g><g><title>&lt;gpui::view::AnyView as gpui::element::Element&gt;::prepaint (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="501" width="0.0120%" height="15" fill="rgb(235,83,42)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="511.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="485" width="0.0120%" height="15" fill="rgb(207,116,39)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="495.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="469" width="0.0120%" height="15" fill="rgb(253,206,9)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="479.50"></text></g><g><title>stacksafe::internal::with_protected::{{closure}} (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="453" width="0.0120%" height="15" fill="rgb(234,32,47)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="463.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}} (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="437" width="0.0120%" height="15" fill="rgb(247,40,39)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="447.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}} (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="421" width="0.0120%" height="15" fill="rgb(236,199,13)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="431.50"></text></g><g><title>gpui::elements::div::Interactivity::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="405" width="0.0120%" height="15" fill="rgb(240,127,44)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="415.50"></text></g><g><title>&lt;gpui::elements::div::Div as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="389" width="0.0120%" height="15" fill="rgb(248,220,47)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="399.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="373" width="0.0120%" height="15" fill="rgb(240,78,9)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="383.50"></text></g><g><title>&lt;gpui::element::Drawable&lt;E&gt; as gpui::element::ElementObject&gt;::prepaint (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="357" width="0.0120%" height="15" fill="rgb(245,119,5)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="367.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="341" width="0.0120%" height="15" fill="rgb(238,175,31)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="351.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}} (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="325" width="0.0120%" height="15" fill="rgb(232,140,42)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="335.50"></text></g><g><title>&lt;editor::element::EditorElement as gpui::element::Element&gt;::prepaint::_{{closure}}::_{{closure}}::_{{closure}} (36,759,030 samples, 0.01%)</title><rect x="99.9843%" y="309" width="0.0120%" height="15" fill="rgb(218,179,7)" fg:x="307485709791" fg:w="36759030"/><text x="100.2343%" y="319.50"></text></g><g><title>all (307,534,007,314 samples, 100%)</title><rect x="0.0000%" y="2085" width="100.0000%" height="15" fill="rgb(232,79,27)" fg:x="0" fg:w="307534007314"/><text x="0.2500%" y="2095.50"></text></g></svg></svg>