Skip to content

Instantly share code, notes, and snippets.

@ekzhang
Created July 6, 2025 18:30
Show Gist options
  • Select an option

  • Save ekzhang/01c72db3c76387918c4d95db7d6df0d3 to your computer and use it in GitHub Desktop.

Select an option

Save ekzhang/01c72db3c76387918c4d95db7d6df0d3 to your computer and use it in GitHub Desktop.
uv flamegraphs on macos
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="2310" onload="init(evt)" viewBox="0 0 1200 2310" 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="2310" 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="2293.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="2293.00"> </text><svg id="frames" x="10" width="1180" total_samples="8419"><g><title>0x107b6e80b (1 samples, 0.01%)</title><rect x="0.0000%" y="2245" width="0.0119%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="1"/><text x="0.2500%" y="2255.50"></text></g><g><title>0x107bb673f (1 samples, 0.01%)</title><rect x="0.0000%" y="2229" width="0.0119%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="1"/><text x="0.2500%" y="2239.50"></text></g><g><title>0x107bbfe6f (1 samples, 0.01%)</title><rect x="0.0000%" y="2213" width="0.0119%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="1"/><text x="0.2500%" y="2223.50"></text></g><g><title>0x107be5a57 (1 samples, 0.01%)</title><rect x="0.0000%" y="2197" width="0.0119%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="1"/><text x="0.2500%" y="2207.50"></text></g><g><title>0x107be4317 (1 samples, 0.01%)</title><rect x="0.0000%" y="2181" width="0.0119%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="1"/><text x="0.2500%" y="2191.50"></text></g><g><title>0x107be758b (1 samples, 0.01%)</title><rect x="0.0000%" y="2165" width="0.0119%" height="15" fill="rgb(232,128,0)" fg:x="0" fg:w="1"/><text x="0.2500%" y="2175.50"></text></g><g><title>0x107b69f11 (1 samples, 0.01%)</title><rect x="0.0000%" y="2149" width="0.0119%" height="15" fill="rgb(207,160,47)" fg:x="0" fg:w="1"/><text x="0.2500%" y="2159.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&amp;) const (1 samples, 0.01%)</title><rect x="0.0119%" y="2181" width="0.0119%" height="15" fill="rgb(228,23,34)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2191.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&amp;) const::$_0::operator()() const (1 samples, 0.01%)</title><rect x="0.0119%" y="2165" width="0.0119%" height="15" fill="rgb(218,30,26)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2175.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;) const (1 samples, 0.01%)</title><rect x="0.0119%" y="2149" width="0.0119%" height="15" fill="rgb(220,122,19)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2159.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;) const (1 samples, 0.01%)</title><rect x="0.0119%" y="2133" width="0.0119%" height="15" fill="rgb(250,228,42)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2143.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;) const (1 samples, 0.01%)</title><rect x="0.0119%" y="2117" width="0.0119%" height="15" fill="rgb(240,193,28)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2127.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;) const (1 samples, 0.01%)</title><rect x="0.0119%" y="2101" width="0.0119%" height="15" fill="rgb(216,20,37)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2111.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;) const (1 samples, 0.01%)</title><rect x="0.0119%" y="2085" width="0.0119%" height="15" fill="rgb(206,188,39)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2095.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;) const (1 samples, 0.01%)</title><rect x="0.0119%" y="2069" width="0.0119%" height="15" fill="rgb(217,207,13)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2079.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;) const (1 samples, 0.01%)</title><rect x="0.0119%" y="2053" width="0.0119%" height="15" fill="rgb(231,73,38)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2063.50"></text></g><g><title>dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;, dyld3::Array&lt;dyld4::Loader const*&gt;&amp;) const (1 samples, 0.01%)</title><rect x="0.0119%" y="2037" width="0.0119%" height="15" fill="rgb(225,20,46)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2047.50"></text></g><g><title>dyld4::RuntimeState::notifyObjCInit(dyld4::Loader const*) (1 samples, 0.01%)</title><rect x="0.0119%" y="2021" width="0.0119%" height="15" fill="rgb(210,31,41)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2031.50"></text></g><g><title>load_images (1 samples, 0.01%)</title><rect x="0.0119%" y="2005" width="0.0119%" height="15" fill="rgb(221,200,47)" fg:x="1" fg:w="1"/><text x="0.2619%" y="2015.50"></text></g><g><title>_NSInitializePlatform (1 samples, 0.01%)</title><rect x="0.0119%" y="1989" width="0.0119%" height="15" fill="rgb(226,26,5)" fg:x="1" fg:w="1"/><text x="0.2619%" y="1999.50"></text></g><g><title>_NSThreadGet0 (1 samples, 0.01%)</title><rect x="0.0119%" y="1973" width="0.0119%" height="15" fill="rgb(249,33,26)" fg:x="1" fg:w="1"/><text x="0.2619%" y="1983.50"></text></g><g><title>_dispatch_once_callout (1 samples, 0.01%)</title><rect x="0.0119%" y="1957" width="0.0119%" height="15" fill="rgb(235,183,28)" fg:x="1" fg:w="1"/><text x="0.2619%" y="1967.50"></text></g><g><title>_dispatch_client_callout (1 samples, 0.01%)</title><rect x="0.0119%" y="1941" width="0.0119%" height="15" fill="rgb(221,5,38)" fg:x="1" fg:w="1"/><text x="0.2619%" y="1951.50"></text></g><g><title>____mainNSThread_block_invoke (1 samples, 0.01%)</title><rect x="0.0119%" y="1925" width="0.0119%" height="15" fill="rgb(247,18,42)" fg:x="1" fg:w="1"/><text x="0.2619%" y="1935.50"></text></g><g><title>-[NSThread init] (1 samples, 0.01%)</title><rect x="0.0119%" y="1909" width="0.0119%" height="15" fill="rgb(241,131,45)" fg:x="1" fg:w="1"/><text x="0.2619%" y="1919.50"></text></g><g><title>objc_msgSendSuper2 (1 samples, 0.01%)</title><rect x="0.0119%" y="1893" width="0.0119%" height="15" fill="rgb(249,31,29)" fg:x="1" fg:w="1"/><text x="0.2619%" y="1903.50"></text></g><g><title>dyld4::APIs::runAllInitializersForMain() (2 samples, 0.02%)</title><rect x="0.0119%" y="2197" width="0.0238%" height="15" fill="rgb(225,111,53)" fg:x="1" fg:w="2"/><text x="0.2619%" y="2207.50"></text></g><g><title>dyld4::PrebuiltLoader::runInitializers(dyld4::RuntimeState&amp;) const (1 samples, 0.01%)</title><rect x="0.0238%" y="2181" width="0.0119%" height="15" fill="rgb(238,160,17)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2191.50"></text></g><g><title>dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&amp;) const (1 samples, 0.01%)</title><rect x="0.0238%" y="2165" width="0.0119%" height="15" fill="rgb(214,148,48)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2175.50"></text></g><g><title>dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&amp;, dyld3::MachOAnalyzer::VMAddrConverter const&amp;, void (unsigned int) block_pointer, void const*) const (1 samples, 0.01%)</title><rect x="0.0238%" y="2149" width="0.0119%" height="15" fill="rgb(232,36,49)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2159.50"></text></g><g><title>mach_o::Header::forEachSection(void (mach_o::Header::SectionInfo const&amp;, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0238%" y="2133" width="0.0119%" height="15" fill="rgb(209,103,24)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2143.50"></text></g><g><title>mach_o::Header::forEachLoadCommand(void (load_command const*, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0238%" y="2117" width="0.0119%" height="15" fill="rgb(229,88,8)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2127.50"></text></g><g><title>invocation function for block in mach_o::Header::forEachSection(void (mach_o::Header::SectionInfo const&amp;, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0238%" y="2101" width="0.0119%" height="15" fill="rgb(213,181,19)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2111.50"></text></g><g><title>invocation function for block in dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&amp;, dyld3::MachOAnalyzer::VMAddrConverter const&amp;, void (unsigned int) block_pointer, void const*) const (1 samples, 0.01%)</title><rect x="0.0238%" y="2085" width="0.0119%" height="15" fill="rgb(254,191,54)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2095.50"></text></g><g><title>invocation function for block in dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&amp;) const (1 samples, 0.01%)</title><rect x="0.0238%" y="2069" width="0.0119%" height="15" fill="rgb(241,83,37)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2079.50"></text></g><g><title>libSystem_initializer (1 samples, 0.01%)</title><rect x="0.0238%" y="2053" width="0.0119%" height="15" fill="rgb(233,36,39)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2063.50"></text></g><g><title>__malloc_init (1 samples, 0.01%)</title><rect x="0.0238%" y="2037" width="0.0119%" height="15" fill="rgb(226,3,54)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2047.50"></text></g><g><title>nano_common_init (1 samples, 0.01%)</title><rect x="0.0238%" y="2021" width="0.0119%" height="15" fill="rgb(245,192,40)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2031.50"></text></g><g><title>nanov2_init (1 samples, 0.01%)</title><rect x="0.0238%" y="2005" width="0.0119%" height="15" fill="rgb(238,167,29)" fg:x="2" fg:w="1"/><text x="0.2738%" y="2015.50"></text></g><g><title>_platform_strlen (1 samples, 0.01%)</title><rect x="0.0238%" y="1989" width="0.0119%" height="15" fill="rgb(232,182,51)" fg:x="2" fg:w="1"/><text x="0.2738%" y="1999.50"></text></g><g><title>dyld4::Loader::applyFixupsGeneric(Diagnostics&amp;, dyld4::RuntimeState&amp;, unsigned long long, dyld3::Array&lt;void const*&gt; const&amp;, dyld3::Array&lt;void const*&gt; const&amp;, bool, dyld3::Array&lt;dyld4::Loader::MissingFlatLazySymbol&gt; const&amp;) const (1 samples, 0.01%)</title><rect x="0.0356%" y="2181" width="0.0119%" height="15" fill="rgb(231,60,39)" fg:x="3" fg:w="1"/><text x="0.2856%" y="2191.50"></text></g><g><title>dyld3::MachOAnalyzer::forEachRebaseLocation_Opcodes(Diagnostics&amp;, void (unsigned long long, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0356%" y="2165" width="0.0119%" height="15" fill="rgb(208,69,12)" fg:x="3" fg:w="1"/><text x="0.2856%" y="2175.50"></text></g><g><title>dyld3::MachOAnalyzer::forEachRebase_Opcodes(Diagnostics&amp;, dyld3::MachOLoaded::LinkEditInfo const&amp;, mach_o::Header::SegmentInfo const*, void (char const*, dyld3::MachOLoaded::LinkEditInfo const&amp;, mach_o::Header::SegmentInfo const*, bool, unsigned int, unsigned char, unsigned long long, dyld3::MachOAnalyzer::Rebase, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0356%" y="2149" width="0.0119%" height="15" fill="rgb(235,93,37)" fg:x="3" fg:w="1"/><text x="0.2856%" y="2159.50"></text></g><g><title>invocation function for block in dyld4::Loader::applyFixupsGeneric(Diagnostics&amp;, dyld4::RuntimeState&amp;, unsigned long long, dyld3::Array&lt;void const*&gt; const&amp;, dyld3::Array&lt;void const*&gt; const&amp;, bool, dyld3::Array&lt;dyld4::Loader::MissingFlatLazySymbol&gt; const&amp;) const (1 samples, 0.01%)</title><rect x="0.0356%" y="2133" width="0.0119%" height="15" fill="rgb(213,116,39)" fg:x="3" fg:w="1"/><text x="0.2856%" y="2143.50"></text></g><g><title>dyld4::JustInTimeLoader::applyFixups(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::DyldCacheDataConstLazyScopedWriter&amp;, bool, lsl::Vector&lt;std::__1::pair&lt;dyld4::Loader const*, char const*&gt;&gt;*) const (2 samples, 0.02%)</title><rect x="0.0356%" y="2197" width="0.0238%" height="15" fill="rgb(222,207,29)" fg:x="3" fg:w="2"/><text x="0.2856%" y="2207.50"></text></g><g><title>dyld4::Loader::forEachBindTarget(Diagnostics&amp;, dyld4::RuntimeState&amp;, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&amp;) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2181" width="0.0119%" height="15" fill="rgb(206,96,30)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2191.50"></text></g><g><title>dyld3::MachOAnalyzer::withVMLayout(Diagnostics&amp;, void (mach_o::Layout const&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2165" width="0.0119%" height="15" fill="rgb(218,138,4)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2175.50"></text></g><g><title>invocation function for block in dyld4::Loader::forEachBindTarget(Diagnostics&amp;, dyld4::RuntimeState&amp;, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&amp;) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2149" width="0.0119%" height="15" fill="rgb(250,191,14)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2159.50"></text></g><g><title>mach_o::Fixups::forEachBindTarget_Opcodes(Diagnostics&amp;, bool, void (mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer, void (mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2133" width="0.0119%" height="15" fill="rgb(239,60,40)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2143.50"></text></g><g><title>mach_o::Fixups::forEachBindUnified_Opcodes(Diagnostics&amp;, bool, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2117" width="0.0119%" height="15" fill="rgb(206,27,48)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2127.50"></text></g><g><title>mach_o::Fixups::forEachBind_OpcodesLazy(Diagnostics&amp;, void (char const*, bool, bool, unsigned int, int, unsigned int, unsigned int, unsigned long long, unsigned char, char const*, bool, bool, unsigned long long, bool, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2101" width="0.0119%" height="15" fill="rgb(225,35,8)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2111.50"></text></g><g><title>invocation function for block in mach_o::Fixups::forEachBindTarget_Opcodes(Diagnostics&amp;, bool, void (mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer, void (mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2085" width="0.0119%" height="15" fill="rgb(250,213,24)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2095.50"></text></g><g><title>invocation function for block in dyld4::Loader::forEachBindTarget(Diagnostics&amp;, dyld4::RuntimeState&amp;, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&amp;) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2069" width="0.0119%" height="15" fill="rgb(247,123,22)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2079.50"></text></g><g><title>dyld4::Loader::resolveSymbol(Diagnostics&amp;, dyld4::RuntimeState&amp;, int, char const*, bool, bool, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&amp;) block_pointer, bool) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2053" width="0.0119%" height="15" fill="rgb(231,138,38)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2063.50"></text></g><g><title>dyld4::Loader::hasExportedSymbol(Diagnostics&amp;, dyld4::RuntimeState&amp;, char const*, dyld4::Loader::ExportedSymbolMode, dyld4::Loader::ResolverMode, dyld4::Loader::ResolvedSymbol*, dyld3::Array&lt;dyld4::Loader const*&gt;*) const (1 samples, 0.01%)</title><rect x="0.0475%" y="2037" width="0.0119%" height="15" fill="rgb(231,145,46)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2047.50"></text></g><g><title>dyld3::MachOFile::trieWalk(Diagnostics&amp;, unsigned char const*, unsigned char const*, char const*) (1 samples, 0.01%)</title><rect x="0.0475%" y="2021" width="0.0119%" height="15" fill="rgb(251,118,11)" fg:x="4" fg:w="1"/><text x="0.2975%" y="2031.50"></text></g><g><title>dyld4::start(dyld4::KernelArgs*, void*, void*)::$_0::operator()() const (5 samples, 0.06%)</title><rect x="0.0119%" y="2229" width="0.0594%" height="15" fill="rgb(217,147,25)" fg:x="1" fg:w="5"/><text x="0.2619%" y="2239.50"></text></g><g><title>dyld4::prepare(dyld4::APIs&amp;, mach_o::Header const*) (5 samples, 0.06%)</title><rect x="0.0119%" y="2213" width="0.0594%" height="15" fill="rgb(247,81,37)" fg:x="1" fg:w="5"/><text x="0.2619%" y="2223.50"></text></g><g><title>dyld4::JustInTimeLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2197" width="0.0119%" height="15" fill="rgb(209,12,38)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2207.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2181" width="0.0119%" height="15" fill="rgb(227,1,9)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2191.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2165" width="0.0119%" height="15" fill="rgb(248,47,43)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2175.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2149" width="0.0119%" height="15" fill="rgb(221,10,30)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2159.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2133" width="0.0119%" height="15" fill="rgb(210,229,1)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2143.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2117" width="0.0119%" height="15" fill="rgb(222,148,37)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2127.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2101" width="0.0119%" height="15" fill="rgb(234,67,33)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2111.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2085" width="0.0119%" height="15" fill="rgb(247,98,35)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2095.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2069" width="0.0119%" height="15" fill="rgb(247,138,52)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2079.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2053" width="0.0119%" height="15" fill="rgb(213,79,30)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2063.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2037" width="0.0119%" height="15" fill="rgb(246,177,23)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2047.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2021" width="0.0119%" height="15" fill="rgb(230,62,27)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2031.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="2005" width="0.0119%" height="15" fill="rgb(216,154,8)" fg:x="5" fg:w="1"/><text x="0.3094%" y="2015.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="1989" width="0.0119%" height="15" fill="rgb(244,35,45)" fg:x="5" fg:w="1"/><text x="0.3094%" y="1999.50"></text></g><g><title>dyld4::PrebuiltLoader::loadDependents(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::Loader::LoadOptions const&amp;) (1 samples, 0.01%)</title><rect x="0.0594%" y="1973" width="0.0119%" height="15" fill="rgb(251,115,12)" fg:x="5" fg:w="1"/><text x="0.3094%" y="1983.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T&gt; as clap_builder::derive::Subcommand&gt;::augment_subcommands (1 samples, 0.01%)</title><rect x="0.0713%" y="2021" width="0.0119%" height="15" fill="rgb(240,54,50)" fg:x="6" fg:w="1"/><text x="0.3213%" y="2031.50"></text></g><g><title>&lt;uv_cli::ProjectCommand as clap_builder::derive::Subcommand&gt;::augment_subcommands (1 samples, 0.01%)</title><rect x="0.0713%" y="2005" width="0.0119%" height="15" fill="rgb(233,84,52)" fg:x="6" fg:w="1"/><text x="0.3213%" y="2015.50"></text></g><g><title>&lt;uv_cli::RunArgs as clap_builder::derive::Args&gt;::augment_args (1 samples, 0.01%)</title><rect x="0.0713%" y="1989" width="0.0119%" height="15" fill="rgb(207,117,47)" fg:x="6" fg:w="1"/><text x="0.3213%" y="1999.50"></text></g><g><title>clap_builder::builder::arg::Arg::conflicts_with_all (1 samples, 0.01%)</title><rect x="0.0713%" y="1973" width="0.0119%" height="15" fill="rgb(249,43,39)" fg:x="6" fg:w="1"/><text x="0.3213%" y="1983.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::iter::traits::collect::Extend&lt;T&gt;&gt;::extend (1 samples, 0.01%)</title><rect x="0.0713%" y="1957" width="0.0119%" height="15" fill="rgb(209,38,44)" fg:x="6" fg:w="1"/><text x="0.3213%" y="1967.50"></text></g><g><title>&lt;uv_cli::Cli as clap_builder::derive::CommandFactory&gt;::command (2 samples, 0.02%)</title><rect x="0.0713%" y="2085" width="0.0238%" height="15" fill="rgb(236,212,23)" fg:x="6" fg:w="2"/><text x="0.3213%" y="2095.50"></text></g><g><title>&lt;uv_cli::Cli as clap_builder::derive::Args&gt;::augment_args (2 samples, 0.02%)</title><rect x="0.0713%" y="2069" width="0.0238%" height="15" fill="rgb(242,79,21)" fg:x="6" fg:w="2"/><text x="0.3213%" y="2079.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T&gt; as clap_builder::derive::Subcommand&gt;::augment_subcommands (2 samples, 0.02%)</title><rect x="0.0713%" y="2053" width="0.0238%" height="15" fill="rgb(211,96,35)" fg:x="6" fg:w="2"/><text x="0.3213%" y="2063.50"></text></g><g><title>&lt;uv_cli::Commands as clap_builder::derive::Subcommand&gt;::augment_subcommands (2 samples, 0.02%)</title><rect x="0.0713%" y="2037" width="0.0238%" height="15" fill="rgb(253,215,40)" fg:x="6" fg:w="2"/><text x="0.3213%" y="2047.50"></text></g><g><title>&lt;uv_cli::ToolNamespace as clap_builder::derive::Args&gt;::augment_args (1 samples, 0.01%)</title><rect x="0.0831%" y="2021" width="0.0119%" height="15" fill="rgb(211,81,21)" fg:x="7" fg:w="1"/><text x="0.3331%" y="2031.50"></text></g><g><title>&lt;uv_cli::ToolCommand as clap_builder::derive::Subcommand&gt;::augment_subcommands (1 samples, 0.01%)</title><rect x="0.0831%" y="2005" width="0.0119%" height="15" fill="rgb(208,190,38)" fg:x="7" fg:w="1"/><text x="0.3331%" y="2015.50"></text></g><g><title>clap_builder::builder::command::Command::about (1 samples, 0.01%)</title><rect x="0.0831%" y="1989" width="0.0119%" height="15" fill="rgb(235,213,38)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1999.50"></text></g><g><title>&lt;I as clap_builder::builder::resettable::IntoResettable&lt;clap_builder::builder::styled_str::StyledStr&gt;&gt;::into_resettable (1 samples, 0.01%)</title><rect x="0.0831%" y="1973" width="0.0119%" height="15" fill="rgb(237,122,38)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1983.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.01%)</title><rect x="0.0831%" y="1957" width="0.0119%" height="15" fill="rgb(244,218,35)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1967.50"></text></g><g><title>&lt;clap_builder::builder::styled_str::StyledStr as core::convert::From&lt;&amp;str&gt;&gt;::from (1 samples, 0.01%)</title><rect x="0.0831%" y="1941" width="0.0119%" height="15" fill="rgb(240,68,47)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1951.50"></text></g><g><title>clap_builder::builder::styled_str::StyledStr::push_str (1 samples, 0.01%)</title><rect x="0.0831%" y="1925" width="0.0119%" height="15" fill="rgb(210,16,53)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1935.50"></text></g><g><title>alloc::string::String::push_str (1 samples, 0.01%)</title><rect x="0.0831%" y="1909" width="0.0119%" height="15" fill="rgb(235,124,12)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1919.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (1 samples, 0.01%)</title><rect x="0.0831%" y="1893" width="0.0119%" height="15" fill="rgb(224,169,11)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1903.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (1 samples, 0.01%)</title><rect x="0.0831%" y="1877" width="0.0119%" height="15" fill="rgb(250,166,2)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1887.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.01%)</title><rect x="0.0831%" y="1861" width="0.0119%" height="15" fill="rgb(242,216,29)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1871.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.01%)</title><rect x="0.0831%" y="1845" width="0.0119%" height="15" fill="rgb(230,116,27)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1855.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="0.0831%" y="1829" width="0.0119%" height="15" fill="rgb(228,99,48)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1839.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="0.0831%" y="1813" width="0.0119%" height="15" fill="rgb(253,11,6)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1823.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="0.0831%" y="1797" width="0.0119%" height="15" fill="rgb(247,143,39)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1807.50"></text></g><g><title>_rjem_je_malloc_default (1 samples, 0.01%)</title><rect x="0.0831%" y="1781" width="0.0119%" height="15" fill="rgb(236,97,10)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1791.50"></text></g><g><title>_rjem_je_tcache_alloc_small_hard (1 samples, 0.01%)</title><rect x="0.0831%" y="1765" width="0.0119%" height="15" fill="rgb(233,208,19)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1775.50"></text></g><g><title>_rjem_je_arena_cache_bin_fill_small (1 samples, 0.01%)</title><rect x="0.0831%" y="1749" width="0.0119%" height="15" fill="rgb(216,164,2)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1759.50"></text></g><g><title>arena_slab_reg_alloc_batch (1 samples, 0.01%)</title><rect x="0.0831%" y="1733" width="0.0119%" height="15" fill="rgb(220,129,5)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1743.50"></text></g><g><title>bitmap_sfu (1 samples, 0.01%)</title><rect x="0.0831%" y="1717" width="0.0119%" height="15" fill="rgb(242,17,10)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1727.50"></text></g><g><title>bitmap_set (1 samples, 0.01%)</title><rect x="0.0831%" y="1701" width="0.0119%" height="15" fill="rgb(242,107,0)" fg:x="7" fg:w="1"/><text x="0.3331%" y="1711.50"></text></g><g><title>clap_builder::builder::arg::Arg::get_id (1 samples, 0.01%)</title><rect x="0.0950%" y="1957" width="0.0119%" height="15" fill="rgb(251,28,31)" fg:x="8" fg:w="1"/><text x="0.3450%" y="1967.50"></text></g><g><title>clap_builder::builder::command::Command::_build_self (2 samples, 0.02%)</title><rect x="0.0950%" y="2037" width="0.0238%" height="15" fill="rgb(233,223,10)" fg:x="8" fg:w="2"/><text x="0.3450%" y="2047.50"></text></g><g><title>clap_builder::builder::command::Command::_propagate_global_args (2 samples, 0.02%)</title><rect x="0.0950%" y="2021" width="0.0238%" height="15" fill="rgb(215,21,27)" fg:x="8" fg:w="2"/><text x="0.3450%" y="2031.50"></text></g><g><title>clap_builder::builder::command::Command::find (2 samples, 0.02%)</title><rect x="0.0950%" y="2005" width="0.0238%" height="15" fill="rgb(232,23,21)" fg:x="8" fg:w="2"/><text x="0.3450%" y="2015.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::find (2 samples, 0.02%)</title><rect x="0.0950%" y="1989" width="0.0238%" height="15" fill="rgb(244,5,23)" fg:x="8" fg:w="2"/><text x="0.3450%" y="1999.50"></text></g><g><title>clap_builder::builder::command::Command::find::_{{closure}} (2 samples, 0.02%)</title><rect x="0.0950%" y="1973" width="0.0238%" height="15" fill="rgb(226,81,46)" fg:x="8" fg:w="2"/><text x="0.3450%" y="1983.50"></text></g><g><title>core::cmp::impls::_&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.01%)</title><rect x="0.1069%" y="1957" width="0.0119%" height="15" fill="rgb(247,70,30)" fg:x="9" fg:w="1"/><text x="0.3569%" y="1967.50"></text></g><g><title>&lt;clap_builder::util::id::Id as core::cmp::PartialEq&gt;::eq (1 samples, 0.01%)</title><rect x="0.1069%" y="1941" width="0.0119%" height="15" fill="rgb(212,68,19)" fg:x="9" fg:w="1"/><text x="0.3569%" y="1951.50"></text></g><g><title>&lt;clap_builder::builder::str::Str as core::cmp::PartialEq&gt;::eq (1 samples, 0.01%)</title><rect x="0.1069%" y="1925" width="0.0119%" height="15" fill="rgb(240,187,13)" fg:x="9" fg:w="1"/><text x="0.3569%" y="1935.50"></text></g><g><title>clap_builder::builder::str::_&lt;impl core::cmp::PartialEq for clap_builder::builder::str::inner::Inner&gt;::eq (1 samples, 0.01%)</title><rect x="0.1069%" y="1909" width="0.0119%" height="15" fill="rgb(223,113,26)" fg:x="9" fg:w="1"/><text x="0.3569%" y="1919.50"></text></g><g><title>core::cmp::impls::_&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.01%)</title><rect x="0.1069%" y="1893" width="0.0119%" height="15" fill="rgb(206,192,2)" fg:x="9" fg:w="1"/><text x="0.3569%" y="1903.50"></text></g><g><title>core::str::traits::_&lt;impl core::cmp::PartialEq for str&gt;::eq (1 samples, 0.01%)</title><rect x="0.1069%" y="1877" width="0.0119%" height="15" fill="rgb(241,108,4)" fg:x="9" fg:w="1"/><text x="0.3569%" y="1887.50"></text></g><g><title>clap_builder::parser::arg_matcher::ArgMatcher::propagate_globals (1 samples, 0.01%)</title><rect x="0.1188%" y="2037" width="0.0119%" height="15" fill="rgb(247,173,49)" fg:x="10" fg:w="1"/><text x="0.3688%" y="2047.50"></text></g><g><title>clap_builder::parser::arg_matcher::ArgMatcher::fill_in_global_values (1 samples, 0.01%)</title><rect x="0.1188%" y="2021" width="0.0119%" height="15" fill="rgb(224,114,35)" fg:x="10" fg:w="1"/><text x="0.3688%" y="2031.50"></text></g><g><title>clap_builder::parser::arg_matcher::ArgMatcher::fill_in_global_values (1 samples, 0.01%)</title><rect x="0.1188%" y="2005" width="0.0119%" height="15" fill="rgb(245,159,27)" fg:x="10" fg:w="1"/><text x="0.3688%" y="2015.50"></text></g><g><title>clap_builder::util::flat_map::FlatMap&lt;K,V&gt;::insert (1 samples, 0.01%)</title><rect x="0.1188%" y="1989" width="0.0119%" height="15" fill="rgb(245,172,44)" fg:x="10" fg:w="1"/><text x="0.3688%" y="1999.50"></text></g><g><title>clap_builder::builder::command::Command::_build_subcommand (1 samples, 0.01%)</title><rect x="0.1307%" y="1989" width="0.0119%" height="15" fill="rgb(236,23,11)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1999.50"></text></g><g><title>clap_builder::builder::command::Command::_build_self (1 samples, 0.01%)</title><rect x="0.1307%" y="1973" width="0.0119%" height="15" fill="rgb(205,117,38)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1983.50"></text></g><g><title>clap_builder::builder::command::Command::_propagate_global_args (1 samples, 0.01%)</title><rect x="0.1307%" y="1957" width="0.0119%" height="15" fill="rgb(237,72,25)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1967.50"></text></g><g><title>clap_builder::builder::command::Command::find (1 samples, 0.01%)</title><rect x="0.1307%" y="1941" width="0.0119%" height="15" fill="rgb(244,70,9)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1951.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::find (1 samples, 0.01%)</title><rect x="0.1307%" y="1925" width="0.0119%" height="15" fill="rgb(217,125,39)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1935.50"></text></g><g><title>clap_builder::builder::command::Command::find::_{{closure}} (1 samples, 0.01%)</title><rect x="0.1307%" y="1909" width="0.0119%" height="15" fill="rgb(235,36,10)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1919.50"></text></g><g><title>core::cmp::impls::_&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.01%)</title><rect x="0.1307%" y="1893" width="0.0119%" height="15" fill="rgb(251,123,47)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1903.50"></text></g><g><title>&lt;clap_builder::util::id::Id as core::cmp::PartialEq&gt;::eq (1 samples, 0.01%)</title><rect x="0.1307%" y="1877" width="0.0119%" height="15" fill="rgb(221,13,13)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1887.50"></text></g><g><title>&lt;clap_builder::builder::str::Str as core::cmp::PartialEq&gt;::eq (1 samples, 0.01%)</title><rect x="0.1307%" y="1861" width="0.0119%" height="15" fill="rgb(238,131,9)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1871.50"></text></g><g><title>clap_builder::builder::str::_&lt;impl core::cmp::PartialEq for clap_builder::builder::str::inner::Inner&gt;::eq (1 samples, 0.01%)</title><rect x="0.1307%" y="1845" width="0.0119%" height="15" fill="rgb(211,50,8)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1855.50"></text></g><g><title>core::cmp::impls::_&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.01%)</title><rect x="0.1307%" y="1829" width="0.0119%" height="15" fill="rgb(245,182,24)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1839.50"></text></g><g><title>core::str::traits::_&lt;impl core::cmp::PartialEq for str&gt;::eq (1 samples, 0.01%)</title><rect x="0.1307%" y="1813" width="0.0119%" height="15" fill="rgb(242,14,37)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1823.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.01%)</title><rect x="0.1307%" y="1797" width="0.0119%" height="15" fill="rgb(246,228,12)" fg:x="11" fg:w="1"/><text x="0.3807%" y="1807.50"></text></g><g><title>clap_builder::builder::command::Command::try_get_matches_from_mut (5 samples, 0.06%)</title><rect x="0.0950%" y="2069" width="0.0594%" height="15" fill="rgb(213,55,15)" fg:x="8" fg:w="5"/><text x="0.3450%" y="2079.50"></text></g><g><title>clap_builder::builder::command::Command::_do_parse (5 samples, 0.06%)</title><rect x="0.0950%" y="2053" width="0.0594%" height="15" fill="rgb(209,9,3)" fg:x="8" fg:w="5"/><text x="0.3450%" y="2063.50"></text></g><g><title>clap_builder::parser::parser::Parser::get_matches_with (2 samples, 0.02%)</title><rect x="0.1307%" y="2037" width="0.0238%" height="15" fill="rgb(230,59,30)" fg:x="11" fg:w="2"/><text x="0.3807%" y="2047.50"></text></g><g><title>clap_builder::parser::parser::Parser::parse (2 samples, 0.02%)</title><rect x="0.1307%" y="2021" width="0.0238%" height="15" fill="rgb(209,121,21)" fg:x="11" fg:w="2"/><text x="0.3807%" y="2031.50"></text></g><g><title>clap_builder::parser::parser::Parser::parse_subcommand (2 samples, 0.02%)</title><rect x="0.1307%" y="2005" width="0.0238%" height="15" fill="rgb(220,109,13)" fg:x="11" fg:w="2"/><text x="0.3807%" y="2015.50"></text></g><g><title>clap_builder::parser::parser::Parser::get_matches_with (1 samples, 0.01%)</title><rect x="0.1425%" y="1989" width="0.0119%" height="15" fill="rgb(232,18,1)" fg:x="12" fg:w="1"/><text x="0.3925%" y="1999.50"></text></g><g><title>clap_builder::parser::parser::Parser::parse (1 samples, 0.01%)</title><rect x="0.1425%" y="1973" width="0.0119%" height="15" fill="rgb(215,41,42)" fg:x="12" fg:w="1"/><text x="0.3925%" y="1983.50"></text></g><g><title>clap_builder::parser::parser::Parser::parse_subcommand (1 samples, 0.01%)</title><rect x="0.1425%" y="1957" width="0.0119%" height="15" fill="rgb(224,123,36)" fg:x="12" fg:w="1"/><text x="0.3925%" y="1967.50"></text></g><g><title>clap_builder::parser::parser::Parser::get_matches_with (1 samples, 0.01%)</title><rect x="0.1425%" y="1941" width="0.0119%" height="15" fill="rgb(240,125,3)" fg:x="12" fg:w="1"/><text x="0.3925%" y="1951.50"></text></g><g><title>clap_builder::parser::parser::Parser::add_defaults (1 samples, 0.01%)</title><rect x="0.1425%" y="1925" width="0.0119%" height="15" fill="rgb(205,98,50)" fg:x="12" fg:w="1"/><text x="0.3925%" y="1935.50"></text></g><g><title>start (13 samples, 0.15%)</title><rect x="0.0119%" y="2245" width="0.1544%" height="15" fill="rgb(205,185,37)" fg:x="1" fg:w="13"/><text x="0.2619%" y="2255.50"></text></g><g><title>main (8 samples, 0.10%)</title><rect x="0.0713%" y="2229" width="0.0950%" height="15" fill="rgb(238,207,15)" fg:x="6" fg:w="8"/><text x="0.3213%" y="2239.50"></text></g><g><title>std::rt::lang_start (8 samples, 0.10%)</title><rect x="0.0713%" y="2213" width="0.0950%" height="15" fill="rgb(213,199,42)" fg:x="6" fg:w="8"/><text x="0.3213%" y="2223.50"></text></g><g><title>std::rt::lang_start_internal (8 samples, 0.10%)</title><rect x="0.0713%" y="2197" width="0.0950%" height="15" fill="rgb(235,201,11)" fg:x="6" fg:w="8"/><text x="0.3213%" y="2207.50"></text></g><g><title>std::rt::lang_start::_{{closure}} (8 samples, 0.10%)</title><rect x="0.0713%" y="2181" width="0.0950%" height="15" fill="rgb(207,46,11)" fg:x="6" fg:w="8"/><text x="0.3213%" y="2191.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (8 samples, 0.10%)</title><rect x="0.0713%" y="2165" width="0.0950%" height="15" fill="rgb(241,35,35)" fg:x="6" fg:w="8"/><text x="0.3213%" y="2175.50"></text></g><g><title>core::ops::function::FnOnce::call_once (8 samples, 0.10%)</title><rect x="0.0713%" y="2149" width="0.0950%" height="15" fill="rgb(243,32,47)" fg:x="6" fg:w="8"/><text x="0.3213%" y="2159.50"></text></g><g><title>uv::main (8 samples, 0.10%)</title><rect x="0.0713%" y="2133" width="0.0950%" height="15" fill="rgb(247,202,23)" fg:x="6" fg:w="8"/><text x="0.3213%" y="2143.50"></text></g><g><title>uv::main (8 samples, 0.10%)</title><rect x="0.0713%" y="2117" width="0.0950%" height="15" fill="rgb(219,102,11)" fg:x="6" fg:w="8"/><text x="0.3213%" y="2127.50"></text></g><g><title>clap_builder::derive::Parser::try_parse_from (8 samples, 0.10%)</title><rect x="0.0713%" y="2101" width="0.0950%" height="15" fill="rgb(243,110,44)" fg:x="6" fg:w="8"/><text x="0.3213%" y="2111.50"></text></g><g><title>clap_builder::builder::command::Command::try_get_matches_from (6 samples, 0.07%)</title><rect x="0.0950%" y="2085" width="0.0713%" height="15" fill="rgb(222,74,54)" fg:x="8" fg:w="6"/><text x="0.3450%" y="2095.50"></text></g><g><title>core::ptr::drop_in_place&lt;clap_builder::builder::command::Command&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="2069" width="0.0119%" height="15" fill="rgb(216,99,12)" fg:x="13" fg:w="1"/><text x="0.4044%" y="2079.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;clap_builder::builder::command::Command&gt;&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="2053" width="0.0119%" height="15" fill="rgb(226,22,26)" fg:x="13" fg:w="1"/><text x="0.4044%" y="2063.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="0.1544%" y="2037" width="0.0119%" height="15" fill="rgb(217,163,10)" fg:x="13" fg:w="1"/><text x="0.4044%" y="2047.50"></text></g><g><title>core::ptr::drop_in_place&lt;[clap_builder::builder::command::Command]&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="2021" width="0.0119%" height="15" fill="rgb(213,25,53)" fg:x="13" fg:w="1"/><text x="0.4044%" y="2031.50"></text></g><g><title>core::ptr::drop_in_place&lt;clap_builder::builder::command::Command&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="2005" width="0.0119%" height="15" fill="rgb(252,105,26)" fg:x="13" fg:w="1"/><text x="0.4044%" y="2015.50"></text></g><g><title>core::ptr::drop_in_place&lt;clap_builder::mkeymap::MKeyMap&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="1989" width="0.0119%" height="15" fill="rgb(220,39,43)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1999.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;clap_builder::builder::arg::Arg&gt;&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="1973" width="0.0119%" height="15" fill="rgb(229,68,48)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1983.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="0.1544%" y="1957" width="0.0119%" height="15" fill="rgb(252,8,32)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1967.50"></text></g><g><title>core::ptr::drop_in_place&lt;[clap_builder::builder::arg::Arg]&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="1941" width="0.0119%" height="15" fill="rgb(223,20,43)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1951.50"></text></g><g><title>core::ptr::drop_in_place&lt;clap_builder::builder::arg::Arg&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="1925" width="0.0119%" height="15" fill="rgb(229,81,49)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1935.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;clap_builder::builder::str::Str&gt;&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="1909" width="0.0119%" height="15" fill="rgb(236,28,36)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1919.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;clap_builder::builder::str::Str&gt;&gt; (1 samples, 0.01%)</title><rect x="0.1544%" y="1893" width="0.0119%" height="15" fill="rgb(249,185,26)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1903.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="0.1544%" y="1877" width="0.0119%" height="15" fill="rgb(249,174,33)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1887.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="0.1544%" y="1861" width="0.0119%" height="15" fill="rgb(233,201,37)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1871.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="0.1544%" y="1845" width="0.0119%" height="15" fill="rgb(221,78,26)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1855.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="0.1544%" y="1829" width="0.0119%" height="15" fill="rgb(250,127,30)" fg:x="13" fg:w="1"/><text x="0.4044%" y="1839.50"></text></g><g><title>pac_decay_stashed (1 samples, 0.01%)</title><rect x="0.1663%" y="2021" width="0.0119%" height="15" fill="rgb(230,49,44)" fg:x="14" fg:w="1"/><text x="0.4163%" y="2031.50"></text></g><g><title>_rjem_je_extent_dalloc_wrapper (1 samples, 0.01%)</title><rect x="0.1663%" y="2005" width="0.0119%" height="15" fill="rgb(229,67,23)" fg:x="14" fg:w="1"/><text x="0.4163%" y="2015.50"></text></g><g><title>extent_dalloc_wrapper_try (1 samples, 0.01%)</title><rect x="0.1663%" y="1989" width="0.0119%" height="15" fill="rgb(249,83,47)" fg:x="14" fg:w="1"/><text x="0.4163%" y="1999.50"></text></g><g><title>ehooks_dalloc (1 samples, 0.01%)</title><rect x="0.1663%" y="1973" width="0.0119%" height="15" fill="rgb(215,43,3)" fg:x="14" fg:w="1"/><text x="0.4163%" y="1983.50"></text></g><g><title>_rjem_je_ehooks_default_dalloc_impl (1 samples, 0.01%)</title><rect x="0.1663%" y="1957" width="0.0119%" height="15" fill="rgb(238,154,13)" fg:x="14" fg:w="1"/><text x="0.4163%" y="1967.50"></text></g><g><title>_rjem_je_extent_dalloc_mmap (1 samples, 0.01%)</title><rect x="0.1663%" y="1941" width="0.0119%" height="15" fill="rgb(219,56,2)" fg:x="14" fg:w="1"/><text x="0.4163%" y="1951.50"></text></g><g><title>_rjem_je_pages_unmap (1 samples, 0.01%)</title><rect x="0.1663%" y="1925" width="0.0119%" height="15" fill="rgb(233,0,4)" fg:x="14" fg:w="1"/><text x="0.4163%" y="1935.50"></text></g><g><title>__munmap (1 samples, 0.01%)</title><rect x="0.1663%" y="1909" width="0.0119%" height="15" fill="rgb(235,30,7)" fg:x="14" fg:w="1"/><text x="0.4163%" y="1919.50"></text></g><g><title>_pthread_exit (2 samples, 0.02%)</title><rect x="0.1663%" y="2213" width="0.0238%" height="15" fill="rgb(250,79,13)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2223.50"></text></g><g><title>_pthread_tsd_cleanup (2 samples, 0.02%)</title><rect x="0.1663%" y="2197" width="0.0238%" height="15" fill="rgb(211,146,34)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2207.50"></text></g><g><title>tsd_cleanup_wrapper (2 samples, 0.02%)</title><rect x="0.1663%" y="2181" width="0.0238%" height="15" fill="rgb(228,22,38)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2191.50"></text></g><g><title>_rjem_je_tsd_cleanup (2 samples, 0.02%)</title><rect x="0.1663%" y="2165" width="0.0238%" height="15" fill="rgb(235,168,5)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2175.50"></text></g><g><title>tsd_do_data_cleanup (2 samples, 0.02%)</title><rect x="0.1663%" y="2149" width="0.0238%" height="15" fill="rgb(221,155,16)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2159.50"></text></g><g><title>_rjem_je_tcache_cleanup (2 samples, 0.02%)</title><rect x="0.1663%" y="2133" width="0.0238%" height="15" fill="rgb(215,215,53)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2143.50"></text></g><g><title>tcache_destroy (2 samples, 0.02%)</title><rect x="0.1663%" y="2117" width="0.0238%" height="15" fill="rgb(223,4,10)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2127.50"></text></g><g><title>_rjem_je_arena_decay (2 samples, 0.02%)</title><rect x="0.1663%" y="2101" width="0.0238%" height="15" fill="rgb(234,103,6)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2111.50"></text></g><g><title>arena_decay_dirty (2 samples, 0.02%)</title><rect x="0.1663%" y="2085" width="0.0238%" height="15" fill="rgb(227,97,0)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2095.50"></text></g><g><title>arena_decay_impl (2 samples, 0.02%)</title><rect x="0.1663%" y="2069" width="0.0238%" height="15" fill="rgb(234,150,53)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2079.50"></text></g><g><title>_rjem_je_pac_decay_all (2 samples, 0.02%)</title><rect x="0.1663%" y="2053" width="0.0238%" height="15" fill="rgb(228,201,54)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2063.50"></text></g><g><title>pac_decay_to_limit (2 samples, 0.02%)</title><rect x="0.1663%" y="2037" width="0.0238%" height="15" fill="rgb(222,22,37)" fg:x="14" fg:w="2"/><text x="0.4163%" y="2047.50"></text></g><g><title>pac_stash_decayed (1 samples, 0.01%)</title><rect x="0.1782%" y="2021" width="0.0119%" height="15" fill="rgb(237,53,32)" fg:x="15" fg:w="1"/><text x="0.4282%" y="2031.50"></text></g><g><title>_rjem_je_ecache_evict (1 samples, 0.01%)</title><rect x="0.1782%" y="2005" width="0.0119%" height="15" fill="rgb(233,25,53)" fg:x="15" fg:w="1"/><text x="0.4282%" y="2015.50"></text></g><g><title>extent_try_delayed_coalesce (1 samples, 0.01%)</title><rect x="0.1782%" y="1989" width="0.0119%" height="15" fill="rgb(210,40,34)" fg:x="15" fg:w="1"/><text x="0.4282%" y="1999.50"></text></g><g><title>extent_try_coalesce (1 samples, 0.01%)</title><rect x="0.1782%" y="1973" width="0.0119%" height="15" fill="rgb(241,220,44)" fg:x="15" fg:w="1"/><text x="0.4282%" y="1983.50"></text></g><g><title>extent_try_coalesce_impl (1 samples, 0.01%)</title><rect x="0.1782%" y="1957" width="0.0119%" height="15" fill="rgb(235,28,35)" fg:x="15" fg:w="1"/><text x="0.4282%" y="1967.50"></text></g><g><title>_rjem_je_emap_try_acquire_edata_neighbor (1 samples, 0.01%)</title><rect x="0.1782%" y="1941" width="0.0119%" height="15" fill="rgb(210,56,17)" fg:x="15" fg:w="1"/><text x="0.4282%" y="1951.50"></text></g><g><title>emap_try_acquire_edata_neighbor_impl (1 samples, 0.01%)</title><rect x="0.1782%" y="1925" width="0.0119%" height="15" fill="rgb(224,130,29)" fg:x="15" fg:w="1"/><text x="0.4282%" y="1935.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="0.2257%" y="1845" width="0.0119%" height="15" fill="rgb(235,212,8)" fg:x="19" fg:w="1"/><text x="0.4757%" y="1855.50"></text></g><g><title>core::iter::range::_&lt;impl core::iter::traits::iterator::Iterator for core::ops::range::Range&lt;A&gt;&gt;::next (1 samples, 0.01%)</title><rect x="0.2376%" y="1845" width="0.0119%" height="15" fill="rgb(223,33,50)" fg:x="20" fg:w="1"/><text x="0.4876%" y="1855.50"></text></g><g><title>&lt;core::ops::range::Range&lt;T&gt; as core::iter::range::RangeIteratorImpl&gt;::spec_next (1 samples, 0.01%)</title><rect x="0.2376%" y="1829" width="0.0119%" height="15" fill="rgb(219,149,13)" fg:x="20" fg:w="1"/><text x="0.4876%" y="1839.50"></text></g><g><title>&lt;u32 as core::iter::range::Step&gt;::forward_unchecked (1 samples, 0.01%)</title><rect x="0.2376%" y="1813" width="0.0119%" height="15" fill="rgb(250,156,29)" fg:x="20" fg:w="1"/><text x="0.4876%" y="1823.50"></text></g><g><title>core::num::_&lt;impl u32&gt;::unchecked_add::precondition_check (1 samples, 0.01%)</title><rect x="0.2376%" y="1797" width="0.0119%" height="15" fill="rgb(216,193,19)" fg:x="20" fg:w="1"/><text x="0.4876%" y="1807.50"></text></g><g><title>DYLD-STUB$$mach_absolute_time (1 samples, 0.01%)</title><rect x="0.2732%" y="1765" width="0.0119%" height="15" fill="rgb(216,135,14)" fg:x="23" fg:w="1"/><text x="0.5232%" y="1775.50"></text></g><g><title>std::time::Instant::elapsed (4 samples, 0.05%)</title><rect x="0.2494%" y="1829" width="0.0475%" height="15" fill="rgb(241,47,5)" fg:x="21" fg:w="4"/><text x="0.4994%" y="1839.50"></text></g><g><title>std::sys::pal::unix::time::Timespec::now (4 samples, 0.05%)</title><rect x="0.2494%" y="1813" width="0.0475%" height="15" fill="rgb(233,42,35)" fg:x="21" fg:w="4"/><text x="0.4994%" y="1823.50"></text></g><g><title>clock_gettime (4 samples, 0.05%)</title><rect x="0.2494%" y="1797" width="0.0475%" height="15" fill="rgb(231,13,6)" fg:x="21" fg:w="4"/><text x="0.4994%" y="1807.50"></text></g><g><title>clock_gettime_nsec_np (3 samples, 0.04%)</title><rect x="0.2613%" y="1781" width="0.0356%" height="15" fill="rgb(207,181,40)" fg:x="22" fg:w="3"/><text x="0.5113%" y="1791.50"></text></g><g><title>DYLD-STUB$$mach_timebase_info (1 samples, 0.01%)</title><rect x="0.2851%" y="1765" width="0.0119%" height="15" fill="rgb(254,173,49)" fg:x="24" fg:w="1"/><text x="0.5351%" y="1775.50"></text></g><g><title>tokio::runtime::metrics::batch::MetricsBatch::end_processing_scheduled_tasks (5 samples, 0.06%)</title><rect x="0.2494%" y="1845" width="0.0594%" height="15" fill="rgb(221,1,38)" fg:x="21" fg:w="5"/><text x="0.4994%" y="1855.50"></text></g><g><title>tokio::runtime::metrics::batch::duration_as_u64 (1 samples, 0.01%)</title><rect x="0.2969%" y="1829" width="0.0119%" height="15" fill="rgb(206,124,46)" fg:x="25" fg:w="1"/><text x="0.5469%" y="1839.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::unwrap_or (1 samples, 0.01%)</title><rect x="0.2969%" y="1813" width="0.0119%" height="15" fill="rgb(249,21,11)" fg:x="25" fg:w="1"/><text x="0.5469%" y="1823.50"></text></g><g><title>tokio::runtime::metrics::batch::MetricsBatch::start_processing_scheduled_tasks (1 samples, 0.01%)</title><rect x="0.3088%" y="1845" width="0.0119%" height="15" fill="rgb(222,201,40)" fg:x="26" fg:w="1"/><text x="0.5588%" y="1855.50"></text></g><g><title>tokio::runtime::metrics::batch::now (1 samples, 0.01%)</title><rect x="0.3088%" y="1829" width="0.0119%" height="15" fill="rgb(235,61,29)" fg:x="26" fg:w="1"/><text x="0.5588%" y="1839.50"></text></g><g><title>std::sys::pal::unix::time::Timespec::now (1 samples, 0.01%)</title><rect x="0.3088%" y="1813" width="0.0119%" height="15" fill="rgb(219,207,3)" fg:x="26" fg:w="1"/><text x="0.5588%" y="1823.50"></text></g><g><title>DYLD-STUB$$clock_gettime (1 samples, 0.01%)</title><rect x="0.3088%" y="1797" width="0.0119%" height="15" fill="rgb(222,56,46)" fg:x="26" fg:w="1"/><text x="0.5588%" y="1807.50"></text></g><g><title>core::option::Option&lt;T&gt;::expect (1 samples, 0.01%)</title><rect x="0.3207%" y="1829" width="0.0119%" height="15" fill="rgb(239,76,54)" fg:x="27" fg:w="1"/><text x="0.5707%" y="1839.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::RefMut&lt;core::option::Option&lt;alloc::boxed::Box&lt;tokio::runtime::scheduler::current_thread::Core&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="0.3326%" y="1829" width="0.0119%" height="15" fill="rgb(231,124,27)" fg:x="28" fg:w="1"/><text x="0.5826%" y="1839.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::BorrowRefMut&gt; (1 samples, 0.01%)</title><rect x="0.3326%" y="1813" width="0.0119%" height="15" fill="rgb(249,195,6)" fg:x="28" fg:w="1"/><text x="0.5826%" y="1823.50"></text></g><g><title>tokio::runtime::context::budget (1 samples, 0.01%)</title><rect x="0.3445%" y="1813" width="0.0119%" height="15" fill="rgb(237,174,47)" fg:x="29" fg:w="1"/><text x="0.5945%" y="1823.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.01%)</title><rect x="0.3445%" y="1797" width="0.0119%" height="15" fill="rgb(206,201,31)" fg:x="29" fg:w="1"/><text x="0.5945%" y="1807.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="0.3445%" y="1781" width="0.0119%" height="15" fill="rgb(231,57,52)" fg:x="29" fg:w="1"/><text x="0.5945%" y="1791.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.01%)</title><rect x="0.6295%" y="1733" width="0.0119%" height="15" fill="rgb(248,177,22)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1743.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="0.6295%" y="1717" width="0.0119%" height="15" fill="rgb(215,211,37)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1727.50"></text></g><g><title>core::iter::adapters::try_process (1 samples, 0.01%)</title><rect x="0.6295%" y="1701" width="0.0119%" height="15" fill="rgb(241,128,51)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1711.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter::_{{closure}} (1 samples, 0.01%)</title><rect x="0.6295%" y="1685" width="0.0119%" height="15" fill="rgb(227,165,31)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1695.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.01%)</title><rect x="0.6295%" y="1669" width="0.0119%" height="15" fill="rgb(228,167,24)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1679.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="0.6295%" y="1653" width="0.0119%" height="15" fill="rgb(228,143,12)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1663.50"></text></g><g><title>alloc::vec::in_place_collect::_&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="0.6295%" y="1637" width="0.0119%" height="15" fill="rgb(249,149,8)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1647.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter{{reify.shim}} (1 samples, 0.01%)</title><rect x="0.6295%" y="1621" width="0.0119%" height="15" fill="rgb(243,35,44)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1631.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="0.6295%" y="1605" width="0.0119%" height="15" fill="rgb(246,89,9)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1615.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_for_each (1 samples, 0.01%)</title><rect x="0.6295%" y="1589" width="0.0119%" height="15" fill="rgb(233,213,13)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1599.50"></text></g><g><title>&lt;core::iter::adapters::GenericShunt&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1 samples, 0.01%)</title><rect x="0.6295%" y="1573" width="0.0119%" height="15" fill="rgb(233,141,41)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1583.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1 samples, 0.01%)</title><rect x="0.6295%" y="1557" width="0.0119%" height="15" fill="rgb(239,167,4)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1567.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1 samples, 0.01%)</title><rect x="0.6295%" y="1541" width="0.0119%" height="15" fill="rgb(209,217,16)" fg:x="53" fg:w="1"/><text x="0.8795%" y="1551.50"></text></g><g><title>openat (1 samples, 0.01%)</title><rect x="0.6652%" y="1541" width="0.0119%" height="15" fill="rgb(219,88,35)" fg:x="56" fg:w="1"/><text x="0.9152%" y="1551.50"></text></g><g><title>__openat (1 samples, 0.01%)</title><rect x="0.6652%" y="1525" width="0.0119%" height="15" fill="rgb(220,193,23)" fg:x="56" fg:w="1"/><text x="0.9152%" y="1535.50"></text></g><g><title>openat (1 samples, 0.01%)</title><rect x="0.6770%" y="1525" width="0.0119%" height="15" fill="rgb(230,90,52)" fg:x="57" fg:w="1"/><text x="0.9270%" y="1535.50"></text></g><g><title>__openat (1 samples, 0.01%)</title><rect x="0.6770%" y="1509" width="0.0119%" height="15" fill="rgb(252,106,19)" fg:x="57" fg:w="1"/><text x="0.9270%" y="1519.50"></text></g><g><title>openat (3 samples, 0.04%)</title><rect x="0.6889%" y="1509" width="0.0356%" height="15" fill="rgb(206,74,20)" fg:x="58" fg:w="3"/><text x="0.9389%" y="1519.50"></text></g><g><title>__openat (3 samples, 0.04%)</title><rect x="0.6889%" y="1493" width="0.0356%" height="15" fill="rgb(230,138,44)" fg:x="58" fg:w="3"/><text x="0.9389%" y="1503.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.01%)</title><rect x="0.7246%" y="1493" width="0.0119%" height="15" fill="rgb(235,182,43)" fg:x="61" fg:w="1"/><text x="0.9746%" y="1503.50"></text></g><g><title>&lt;std::sys::fs::unix::Dir as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="0.7246%" y="1477" width="0.0119%" height="15" fill="rgb(242,16,51)" fg:x="61" fg:w="1"/><text x="0.9746%" y="1487.50"></text></g><g><title>__close_nocancel (1 samples, 0.01%)</title><rect x="0.7246%" y="1461" width="0.0119%" height="15" fill="rgb(248,9,4)" fg:x="61" fg:w="1"/><text x="0.9746%" y="1471.50"></text></g><g><title>fdopendir (1 samples, 0.01%)</title><rect x="0.7364%" y="1493" width="0.0119%" height="15" fill="rgb(210,31,22)" fg:x="62" fg:w="1"/><text x="0.9864%" y="1503.50"></text></g><g><title>__opendir_common (1 samples, 0.01%)</title><rect x="0.7364%" y="1477" width="0.0119%" height="15" fill="rgb(239,54,39)" fg:x="62" fg:w="1"/><text x="0.9864%" y="1487.50"></text></g><g><title>__getdirentries64 (1 samples, 0.01%)</title><rect x="0.7364%" y="1461" width="0.0119%" height="15" fill="rgb(230,99,41)" fg:x="62" fg:w="1"/><text x="0.9864%" y="1471.50"></text></g><g><title>openat (1 samples, 0.01%)</title><rect x="0.7483%" y="1493" width="0.0119%" height="15" fill="rgb(253,106,12)" fg:x="63" fg:w="1"/><text x="0.9983%" y="1503.50"></text></g><g><title>__openat (1 samples, 0.01%)</title><rect x="0.7483%" y="1477" width="0.0119%" height="15" fill="rgb(213,46,41)" fg:x="63" fg:w="1"/><text x="0.9983%" y="1487.50"></text></g><g><title>&lt;std::sys::fs::unix::ReadDir as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="0.7602%" y="1477" width="0.0119%" height="15" fill="rgb(215,133,35)" fg:x="64" fg:w="1"/><text x="1.0102%" y="1487.50"></text></g><g><title>readdir_r (1 samples, 0.01%)</title><rect x="0.7602%" y="1461" width="0.0119%" height="15" fill="rgb(213,28,5)" fg:x="64" fg:w="1"/><text x="1.0102%" y="1471.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="0.7602%" y="1445" width="0.0119%" height="15" fill="rgb(215,77,49)" fg:x="64" fg:w="1"/><text x="1.0102%" y="1455.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.01%)</title><rect x="0.7721%" y="1477" width="0.0119%" height="15" fill="rgb(248,100,22)" fg:x="65" fg:w="1"/><text x="1.0221%" y="1487.50"></text></g><g><title>&lt;std::sys::fs::unix::Dir as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="0.7721%" y="1461" width="0.0119%" height="15" fill="rgb(208,67,9)" fg:x="65" fg:w="1"/><text x="1.0221%" y="1471.50"></text></g><g><title>__close_nocancel (1 samples, 0.01%)</title><rect x="0.7721%" y="1445" width="0.0119%" height="15" fill="rgb(219,133,21)" fg:x="65" fg:w="1"/><text x="1.0221%" y="1455.50"></text></g><g><title>fdopendir (1 samples, 0.01%)</title><rect x="0.7839%" y="1477" width="0.0119%" height="15" fill="rgb(246,46,29)" fg:x="66" fg:w="1"/><text x="1.0339%" y="1487.50"></text></g><g><title>__opendir_common (1 samples, 0.01%)</title><rect x="0.7839%" y="1461" width="0.0119%" height="15" fill="rgb(246,185,52)" fg:x="66" fg:w="1"/><text x="1.0339%" y="1471.50"></text></g><g><title>fstatfs (1 samples, 0.01%)</title><rect x="0.7839%" y="1445" width="0.0119%" height="15" fill="rgb(252,136,11)" fg:x="66" fg:w="1"/><text x="1.0339%" y="1455.50"></text></g><g><title>openat (6 samples, 0.07%)</title><rect x="0.7958%" y="1477" width="0.0713%" height="15" fill="rgb(219,138,53)" fg:x="67" fg:w="6"/><text x="1.0458%" y="1487.50"></text></g><g><title>__openat (6 samples, 0.07%)</title><rect x="0.7958%" y="1461" width="0.0713%" height="15" fill="rgb(211,51,23)" fg:x="67" fg:w="6"/><text x="1.0458%" y="1471.50"></text></g><g><title>&lt;std::sys::fs::unix::ReadDir as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="0.8671%" y="1461" width="0.0119%" height="15" fill="rgb(247,221,28)" fg:x="73" fg:w="1"/><text x="1.1171%" y="1471.50"></text></g><g><title>readdir_r (1 samples, 0.01%)</title><rect x="0.8671%" y="1445" width="0.0119%" height="15" fill="rgb(251,222,45)" fg:x="73" fg:w="1"/><text x="1.1171%" y="1455.50"></text></g><g><title>_readdir_unlocked (1 samples, 0.01%)</title><rect x="0.8671%" y="1429" width="0.0119%" height="15" fill="rgb(217,162,53)" fg:x="73" fg:w="1"/><text x="1.1171%" y="1439.50"></text></g><g><title>__getdirentries64 (1 samples, 0.01%)</title><rect x="0.8671%" y="1413" width="0.0119%" height="15" fill="rgb(229,93,14)" fg:x="73" fg:w="1"/><text x="1.1171%" y="1423.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (2 samples, 0.02%)</title><rect x="0.8790%" y="1461" width="0.0238%" height="15" fill="rgb(209,67,49)" fg:x="74" fg:w="2"/><text x="1.1290%" y="1471.50"></text></g><g><title>&lt;std::sys::fs::unix::Dir as core::ops::drop::Drop&gt;::drop (2 samples, 0.02%)</title><rect x="0.8790%" y="1445" width="0.0238%" height="15" fill="rgb(213,87,29)" fg:x="74" fg:w="2"/><text x="1.1290%" y="1455.50"></text></g><g><title>__close_nocancel (2 samples, 0.02%)</title><rect x="0.8790%" y="1429" width="0.0238%" height="15" fill="rgb(205,151,52)" fg:x="74" fg:w="2"/><text x="1.1290%" y="1439.50"></text></g><g><title>fdopendir (1 samples, 0.01%)</title><rect x="0.9027%" y="1461" width="0.0119%" height="15" fill="rgb(253,215,39)" fg:x="76" fg:w="1"/><text x="1.1527%" y="1471.50"></text></g><g><title>__opendir_common (1 samples, 0.01%)</title><rect x="0.9027%" y="1445" width="0.0119%" height="15" fill="rgb(221,220,41)" fg:x="76" fg:w="1"/><text x="1.1527%" y="1455.50"></text></g><g><title>__getdirentries64 (1 samples, 0.01%)</title><rect x="0.9027%" y="1429" width="0.0119%" height="15" fill="rgb(218,133,21)" fg:x="76" fg:w="1"/><text x="1.1527%" y="1439.50"></text></g><g><title>openat (4 samples, 0.05%)</title><rect x="0.9146%" y="1461" width="0.0475%" height="15" fill="rgb(221,193,43)" fg:x="77" fg:w="4"/><text x="1.1646%" y="1471.50"></text></g><g><title>__openat (4 samples, 0.05%)</title><rect x="0.9146%" y="1445" width="0.0475%" height="15" fill="rgb(240,128,52)" fg:x="77" fg:w="4"/><text x="1.1646%" y="1455.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.01%)</title><rect x="0.9621%" y="1445" width="0.0119%" height="15" fill="rgb(253,114,12)" fg:x="81" fg:w="1"/><text x="1.2121%" y="1455.50"></text></g><g><title>&lt;std::sys::fs::unix::Dir as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="0.9621%" y="1429" width="0.0119%" height="15" fill="rgb(215,223,47)" fg:x="81" fg:w="1"/><text x="1.2121%" y="1439.50"></text></g><g><title>__close_nocancel (1 samples, 0.01%)</title><rect x="0.9621%" y="1413" width="0.0119%" height="15" fill="rgb(248,225,23)" fg:x="81" fg:w="1"/><text x="1.2121%" y="1423.50"></text></g><g><title>readdir_r (1 samples, 0.01%)</title><rect x="0.9740%" y="1445" width="0.0119%" height="15" fill="rgb(250,108,0)" fg:x="82" fg:w="1"/><text x="1.2240%" y="1455.50"></text></g><g><title>fdopendir (1 samples, 0.01%)</title><rect x="0.9859%" y="1429" width="0.0119%" height="15" fill="rgb(228,208,7)" fg:x="83" fg:w="1"/><text x="1.2359%" y="1439.50"></text></g><g><title>__opendir_common (1 samples, 0.01%)</title><rect x="0.9859%" y="1413" width="0.0119%" height="15" fill="rgb(244,45,10)" fg:x="83" fg:w="1"/><text x="1.2359%" y="1423.50"></text></g><g><title>__getdirentries64 (1 samples, 0.01%)</title><rect x="0.9859%" y="1397" width="0.0119%" height="15" fill="rgb(207,125,25)" fg:x="83" fg:w="1"/><text x="1.2359%" y="1407.50"></text></g><g><title>openat (2 samples, 0.02%)</title><rect x="0.9977%" y="1429" width="0.0238%" height="15" fill="rgb(210,195,18)" fg:x="84" fg:w="2"/><text x="1.2477%" y="1439.50"></text></g><g><title>__openat (2 samples, 0.02%)</title><rect x="0.9977%" y="1413" width="0.0238%" height="15" fill="rgb(249,80,12)" fg:x="84" fg:w="2"/><text x="1.2477%" y="1423.50"></text></g><g><title>openat (1 samples, 0.01%)</title><rect x="1.0215%" y="1413" width="0.0119%" height="15" fill="rgb(221,65,9)" fg:x="86" fg:w="1"/><text x="1.2715%" y="1423.50"></text></g><g><title>__openat (1 samples, 0.01%)</title><rect x="1.0215%" y="1397" width="0.0119%" height="15" fill="rgb(235,49,36)" fg:x="86" fg:w="1"/><text x="1.2715%" y="1407.50"></text></g><g><title>&lt;std::sys::fs::unix::ReadDir as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="1.0334%" y="1397" width="0.0119%" height="15" fill="rgb(225,32,20)" fg:x="87" fg:w="1"/><text x="1.2834%" y="1407.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="1.0334%" y="1381" width="0.0119%" height="15" fill="rgb(215,141,46)" fg:x="87" fg:w="1"/><text x="1.2834%" y="1391.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (1 samples, 0.01%)</title><rect x="1.0453%" y="1381" width="0.0119%" height="15" fill="rgb(250,160,47)" fg:x="88" fg:w="1"/><text x="1.2953%" y="1391.50"></text></g><g><title>unlinkat (1 samples, 0.01%)</title><rect x="1.0453%" y="1365" width="0.0119%" height="15" fill="rgb(216,222,40)" fg:x="88" fg:w="1"/><text x="1.2953%" y="1375.50"></text></g><g><title>__unlinkat (1 samples, 0.01%)</title><rect x="1.0453%" y="1349" width="0.0119%" height="15" fill="rgb(234,217,39)" fg:x="88" fg:w="1"/><text x="1.2953%" y="1359.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (4 samples, 0.05%)</title><rect x="1.0453%" y="1397" width="0.0475%" height="15" fill="rgb(207,178,40)" fg:x="88" fg:w="4"/><text x="1.2953%" y="1407.50"></text></g><g><title>unlinkat (3 samples, 0.04%)</title><rect x="1.0571%" y="1381" width="0.0356%" height="15" fill="rgb(221,136,13)" fg:x="89" fg:w="3"/><text x="1.3071%" y="1391.50"></text></g><g><title>__unlinkat (3 samples, 0.04%)</title><rect x="1.0571%" y="1365" width="0.0356%" height="15" fill="rgb(249,199,10)" fg:x="89" fg:w="3"/><text x="1.3071%" y="1375.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (8 samples, 0.10%)</title><rect x="1.0334%" y="1413" width="0.0950%" height="15" fill="rgb(249,222,13)" fg:x="87" fg:w="8"/><text x="1.2834%" y="1423.50"></text></g><g><title>unlinkat (3 samples, 0.04%)</title><rect x="1.0928%" y="1397" width="0.0356%" height="15" fill="rgb(244,185,38)" fg:x="92" fg:w="3"/><text x="1.3428%" y="1407.50"></text></g><g><title>__unlinkat (3 samples, 0.04%)</title><rect x="1.0928%" y="1381" width="0.0356%" height="15" fill="rgb(236,202,9)" fg:x="92" fg:w="3"/><text x="1.3428%" y="1391.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (14 samples, 0.17%)</title><rect x="1.0215%" y="1429" width="0.1663%" height="15" fill="rgb(250,229,37)" fg:x="86" fg:w="14"/><text x="1.2715%" y="1439.50"></text></g><g><title>unlinkat (5 samples, 0.06%)</title><rect x="1.1284%" y="1413" width="0.0594%" height="15" fill="rgb(206,174,23)" fg:x="95" fg:w="5"/><text x="1.3784%" y="1423.50"></text></g><g><title>__unlinkat (5 samples, 0.06%)</title><rect x="1.1284%" y="1397" width="0.0594%" height="15" fill="rgb(211,33,43)" fg:x="95" fg:w="5"/><text x="1.3784%" y="1407.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (44 samples, 0.52%)</title><rect x="0.9859%" y="1445" width="0.5226%" height="15" fill="rgb(245,58,50)" fg:x="83" fg:w="44"/><text x="1.2359%" y="1455.50"></text></g><g><title>unlinkat (27 samples, 0.32%)</title><rect x="1.1878%" y="1429" width="0.3207%" height="15" fill="rgb(244,68,36)" fg:x="100" fg:w="27"/><text x="1.4378%" y="1439.50"></text></g><g><title>__unlinkat (27 samples, 0.32%)</title><rect x="1.1878%" y="1413" width="0.3207%" height="15" fill="rgb(232,229,15)" fg:x="100" fg:w="27"/><text x="1.4378%" y="1423.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (75 samples, 0.89%)</title><rect x="0.9621%" y="1461" width="0.8908%" height="15" fill="rgb(254,30,23)" fg:x="81" fg:w="75"/><text x="1.2121%" y="1471.50"></text></g><g><title>unlinkat (29 samples, 0.34%)</title><rect x="1.5085%" y="1445" width="0.3445%" height="15" fill="rgb(235,160,14)" fg:x="127" fg:w="29"/><text x="1.7585%" y="1455.50"></text></g><g><title>__unlinkat (29 samples, 0.34%)</title><rect x="1.5085%" y="1429" width="0.3445%" height="15" fill="rgb(212,155,44)" fg:x="127" fg:w="29"/><text x="1.7585%" y="1439.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (475 samples, 5.64%)</title><rect x="0.8671%" y="1477" width="5.6420%" height="15" fill="rgb(226,2,50)" fg:x="73" fg:w="475"/><text x="1.1171%" y="1487.50">std::sy..</text></g><g><title>unlinkat (392 samples, 4.66%)</title><rect x="1.8530%" y="1461" width="4.6561%" height="15" fill="rgb(234,177,6)" fg:x="156" fg:w="392"/><text x="2.1030%" y="1471.50">unlin..</text></g><g><title>__unlinkat (392 samples, 4.66%)</title><rect x="1.8530%" y="1445" width="4.6561%" height="15" fill="rgb(217,24,9)" fg:x="156" fg:w="392"/><text x="2.1030%" y="1455.50">__unl..</text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (583 samples, 6.92%)</title><rect x="0.7602%" y="1493" width="6.9248%" height="15" fill="rgb(220,13,46)" fg:x="64" fg:w="583"/><text x="1.0102%" y="1503.50">std::sys:..</text></g><g><title>unlinkat (99 samples, 1.18%)</title><rect x="6.5091%" y="1477" width="1.1759%" height="15" fill="rgb(239,221,27)" fg:x="548" fg:w="99"/><text x="6.7591%" y="1487.50"></text></g><g><title>__unlinkat (99 samples, 1.18%)</title><rect x="6.5091%" y="1461" width="1.1759%" height="15" fill="rgb(222,198,25)" fg:x="548" fg:w="99"/><text x="6.7591%" y="1471.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (663 samples, 7.88%)</title><rect x="0.7246%" y="1509" width="7.8750%" height="15" fill="rgb(211,99,13)" fg:x="61" fg:w="663"/><text x="0.9746%" y="1519.50">std::sys::f..</text></g><g><title>unlinkat (77 samples, 0.91%)</title><rect x="7.6850%" y="1493" width="0.9146%" height="15" fill="rgb(232,111,31)" fg:x="647" fg:w="77"/><text x="7.9350%" y="1503.50"></text></g><g><title>__unlinkat (77 samples, 0.91%)</title><rect x="7.6850%" y="1477" width="0.9146%" height="15" fill="rgb(245,82,37)" fg:x="647" fg:w="77"/><text x="7.9350%" y="1487.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (679 samples, 8.07%)</title><rect x="0.6889%" y="1525" width="8.0651%" height="15" fill="rgb(227,149,46)" fg:x="58" fg:w="679"/><text x="0.9389%" y="1535.50">std::sys::f..</text></g><g><title>unlinkat (13 samples, 0.15%)</title><rect x="8.5996%" y="1509" width="0.1544%" height="15" fill="rgb(218,36,50)" fg:x="724" fg:w="13"/><text x="8.8496%" y="1519.50"></text></g><g><title>__unlinkat (13 samples, 0.15%)</title><rect x="8.5996%" y="1493" width="0.1544%" height="15" fill="rgb(226,80,48)" fg:x="724" fg:w="13"/><text x="8.8496%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_cache::Cache&gt; (682 samples, 8.10%)</title><rect x="0.6652%" y="1717" width="8.1007%" height="15" fill="rgb(238,224,15)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1727.50">core::ptr::..</text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;alloc::sync::Arc&lt;tempfile::dir::TempDir&gt;&gt;&gt; (682 samples, 8.10%)</title><rect x="0.6652%" y="1701" width="8.1007%" height="15" fill="rgb(241,136,10)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1711.50">core::ptr::..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;tempfile::dir::TempDir&gt;&gt; (682 samples, 8.10%)</title><rect x="0.6652%" y="1685" width="8.1007%" height="15" fill="rgb(208,32,45)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1695.50">core::ptr::..</text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (682 samples, 8.10%)</title><rect x="0.6652%" y="1669" width="8.1007%" height="15" fill="rgb(207,135,9)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1679.50">&lt;alloc::syn..</text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (682 samples, 8.10%)</title><rect x="0.6652%" y="1653" width="8.1007%" height="15" fill="rgb(206,86,44)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1663.50">alloc::sync..</text></g><g><title>core::ptr::drop_in_place&lt;tempfile::dir::TempDir&gt; (682 samples, 8.10%)</title><rect x="0.6652%" y="1637" width="8.1007%" height="15" fill="rgb(245,177,15)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1647.50">core::ptr::..</text></g><g><title>&lt;tempfile::dir::TempDir as core::ops::drop::Drop&gt;::drop (682 samples, 8.10%)</title><rect x="0.6652%" y="1621" width="8.1007%" height="15" fill="rgb(206,64,50)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1631.50">&lt;tempfile::..</text></g><g><title>std::fs::remove_dir_all (682 samples, 8.10%)</title><rect x="0.6652%" y="1605" width="8.1007%" height="15" fill="rgb(234,36,40)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1615.50">std::fs::re..</text></g><g><title>std::sys::fs::remove_dir_all (682 samples, 8.10%)</title><rect x="0.6652%" y="1589" width="8.1007%" height="15" fill="rgb(213,64,8)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1599.50">std::sys::f..</text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (682 samples, 8.10%)</title><rect x="0.6652%" y="1573" width="8.1007%" height="15" fill="rgb(210,75,36)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1583.50">std::sys::f..</text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (682 samples, 8.10%)</title><rect x="0.6652%" y="1557" width="8.1007%" height="15" fill="rgb(229,88,21)" fg:x="56" fg:w="682"/><text x="0.9152%" y="1567.50">std::sys::f..</text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (681 samples, 8.09%)</title><rect x="0.6770%" y="1541" width="8.0888%" height="15" fill="rgb(252,204,47)" fg:x="57" fg:w="681"/><text x="0.9270%" y="1551.50">std::sys::f..</text></g><g><title>unlinkat (1 samples, 0.01%)</title><rect x="8.7540%" y="1525" width="0.0119%" height="15" fill="rgb(208,77,27)" fg:x="737" fg:w="1"/><text x="9.0040%" y="1535.50"></text></g><g><title>__unlinkat (1 samples, 0.01%)</title><rect x="8.7540%" y="1509" width="0.0119%" height="15" fill="rgb(221,76,26)" fg:x="737" fg:w="1"/><text x="9.0040%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_dispatch::SharedState&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1717" width="0.0119%" height="15" fill="rgb(225,139,18)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_resolver::resolver::index::InMemoryIndex&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1701" width="0.0119%" height="15" fill="rgb(230,137,11)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;uv_resolver::resolver::index::SharedInMemoryIndex&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1685" width="0.0119%" height="15" fill="rgb(212,28,1)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1695.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="1669" width="0.0119%" height="15" fill="rgb(248,164,17)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1679.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.01%)</title><rect x="8.7659%" y="1653" width="0.0119%" height="15" fill="rgb(222,171,42)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_resolver::resolver::index::SharedInMemoryIndex&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1637" width="0.0119%" height="15" fill="rgb(243,84,45)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_once_map::OnceMap&lt;uv_normalize::package_name::PackageName,alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;,core::hash::BuildHasherDefault&lt;rustc_hash::FxHasher&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1621" width="0.0119%" height="15" fill="rgb(252,49,23)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;dashmap::DashMap&lt;uv_normalize::package_name::PackageName,uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;,core::hash::BuildHasherDefault&lt;rustc_hash::FxHasher&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1605" width="0.0119%" height="15" fill="rgb(215,19,7)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;[crossbeam_utils::cache_padded::CachePadded&lt;lock_api::rwlock::RwLock&lt;dashmap::lock::RawRwLock,hashbrown::raw::inner::RawTable&lt;(uv_normalize::package_name::PackageName,dashmap::util::SharedValue&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt;)&gt;&gt;&gt;]&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1589" width="0.0119%" height="15" fill="rgb(238,81,41)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;[crossbeam_utils::cache_padded::CachePadded&lt;lock_api::rwlock::RwLock&lt;dashmap::lock::RawRwLock,hashbrown::raw::inner::RawTable&lt;(uv_normalize::package_name::PackageName,dashmap::util::SharedValue&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt;)&gt;&gt;&gt;]&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1573" width="0.0119%" height="15" fill="rgb(210,199,37)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;crossbeam_utils::cache_padded::CachePadded&lt;lock_api::rwlock::RwLock&lt;dashmap::lock::RawRwLock,hashbrown::raw::inner::RawTable&lt;(uv_normalize::package_name::PackageName,dashmap::util::SharedValue&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt;)&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1557" width="0.0119%" height="15" fill="rgb(244,192,49)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;lock_api::rwlock::RwLock&lt;dashmap::lock::RawRwLock,hashbrown::raw::inner::RawTable&lt;(uv_normalize::package_name::PackageName,dashmap::util::SharedValue&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt;)&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1541" width="0.0119%" height="15" fill="rgb(226,211,11)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;hashbrown::raw::inner::RawTable&lt;(uv_normalize::package_name::PackageName,dashmap::util::SharedValue&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt;)&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1525" width="0.0119%" height="15" fill="rgb(236,162,54)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::inner::RawTable&lt;(uv_normalize::package_name::PackageName,dashmap::util::SharedValue&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt;)&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1509" width="0.0119%" height="15" fill="rgb(220,229,9)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1519.50"></text></g><g><title>&lt;hashbrown::raw::inner::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="1493" width="0.0119%" height="15" fill="rgb(250,87,22)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1503.50"></text></g><g><title>hashbrown::raw::inner::RawTableInner::drop_inner_table (1 samples, 0.01%)</title><rect x="8.7659%" y="1477" width="0.0119%" height="15" fill="rgb(239,43,17)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1487.50"></text></g><g><title>hashbrown::raw::inner::RawTableInner::drop_elements (1 samples, 0.01%)</title><rect x="8.7659%" y="1461" width="0.0119%" height="15" fill="rgb(231,177,25)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1471.50"></text></g><g><title>hashbrown::raw::inner::Bucket&lt;T&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="1445" width="0.0119%" height="15" fill="rgb(219,179,1)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;(uv_normalize::package_name::PackageName,dashmap::util::SharedValue&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt;)&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1429" width="0.0119%" height="15" fill="rgb(238,219,53)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;dashmap::util::SharedValue&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1413" width="0.0119%" height="15" fill="rgb(232,167,36)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1423.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1397" width="0.0119%" height="15" fill="rgb(244,19,51)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_once_map::Value&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1381" width="0.0119%" height="15" fill="rgb(224,6,22)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;uv_resolver::resolver::provider::VersionsResponse&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1365" width="0.0119%" height="15" fill="rgb(224,145,5)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1375.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="1349" width="0.0119%" height="15" fill="rgb(234,130,49)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1359.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.01%)</title><rect x="8.7659%" y="1333" width="0.0119%" height="15" fill="rgb(254,6,2)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_resolver::resolver::provider::VersionsResponse&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1317" width="0.0119%" height="15" fill="rgb(208,96,46)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;uv_resolver::version_map::VersionMap&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1301" width="0.0119%" height="15" fill="rgb(239,3,39)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="1285" width="0.0119%" height="15" fill="rgb(233,210,1)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;[uv_resolver::version_map::VersionMap]&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1269" width="0.0119%" height="15" fill="rgb(244,137,37)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_resolver::version_map::VersionMap&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1253" width="0.0119%" height="15" fill="rgb(240,136,2)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_resolver::version_map::VersionMapInner&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1237" width="0.0119%" height="15" fill="rgb(239,18,37)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_resolver::version_map::VersionMapLazy&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1221" width="0.0119%" height="15" fill="rgb(218,185,22)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::BTreeMap&lt;uv_pep440::version::Version,uv_resolver::version_map::LazyPrioritizedDist&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1205" width="0.0119%" height="15" fill="rgb(225,218,4)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1215.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="1189" width="0.0119%" height="15" fill="rgb(230,182,32)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::IntoIter&lt;uv_pep440::version::Version,uv_resolver::version_map::LazyPrioritizedDist&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1173" width="0.0119%" height="15" fill="rgb(242,56,43)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1183.50"></text></g><g><title>&lt;alloc::collections::btree::map::IntoIter&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="1157" width="0.0119%" height="15" fill="rgb(233,99,24)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1167.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,NodeType&gt;,alloc::collections::btree::node::marker::KV&gt;::drop_key_val (1 samples, 0.01%)</title><rect x="8.7659%" y="1141" width="0.0119%" height="15" fill="rgb(234,209,42)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,NodeType&gt;,alloc::collections::btree::node::marker::KV&gt;::drop_key_val::Dropper&lt;uv_resolver::version_map::LazyPrioritizedDist&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1125" width="0.0119%" height="15" fill="rgb(227,7,12)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1135.50"></text></g><g><title>&lt;alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,NodeType&gt;,alloc::collections::btree::node::marker::KV&gt;::drop_key_val::Dropper&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="1109" width="0.0119%" height="15" fill="rgb(245,203,43)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_resolver::version_map::LazyPrioritizedDist&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1093" width="0.0119%" height="15" fill="rgb(238,205,33)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_resolver::version_map::SimplePrioritizedDist&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1077" width="0.0119%" height="15" fill="rgb(231,56,7)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sync::once_lock::OnceLock&lt;core::option::Option&lt;uv_distribution_types::prioritized_distribution::PrioritizedDist&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1061" width="0.0119%" height="15" fill="rgb(244,186,29)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1071.50"></text></g><g><title>&lt;std::sync::once_lock::OnceLock&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="1045" width="0.0119%" height="15" fill="rgb(234,111,31)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;uv_distribution_types::prioritized_distribution::PrioritizedDist&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1029" width="0.0119%" height="15" fill="rgb(241,149,10)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_distribution_types::prioritized_distribution::PrioritizedDist&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="1013" width="0.0119%" height="15" fill="rgb(249,206,44)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;uv_distribution_types::prioritized_distribution::PrioritizedDistInner&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="997" width="0.0119%" height="15" fill="rgb(251,153,30)" fg:x="738" fg:w="1"/><text x="9.0159%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_distribution_types::prioritized_distribution::PrioritizedDistInner&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="981" width="0.0119%" height="15" fill="rgb(239,152,38)" fg:x="738" fg:w="1"/><text x="9.0159%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;(uv_distribution_types::RegistryBuiltWheel,uv_distribution_types::prioritized_distribution::WheelCompatibility)&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="965" width="0.0119%" height="15" fill="rgb(249,139,47)" fg:x="738" fg:w="1"/><text x="9.0159%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="949" width="0.0119%" height="15" fill="rgb(244,64,35)" fg:x="738" fg:w="1"/><text x="9.0159%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;[(uv_distribution_types::RegistryBuiltWheel,uv_distribution_types::prioritized_distribution::WheelCompatibility)]&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="933" width="0.0119%" height="15" fill="rgb(216,46,15)" fg:x="738" fg:w="1"/><text x="9.0159%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;(uv_distribution_types::RegistryBuiltWheel,uv_distribution_types::prioritized_distribution::WheelCompatibility)&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="917" width="0.0119%" height="15" fill="rgb(250,74,19)" fg:x="738" fg:w="1"/><text x="9.0159%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_distribution_types::RegistryBuiltWheel&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="901" width="0.0119%" height="15" fill="rgb(249,42,33)" fg:x="738" fg:w="1"/><text x="9.0159%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;uv_distribution_types::file::File&gt;&gt; (1 samples, 0.01%)</title><rect x="8.7659%" y="885" width="0.0119%" height="15" fill="rgb(242,149,17)" fg:x="738" fg:w="1"/><text x="9.0159%" y="895.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="8.7659%" y="869" width="0.0119%" height="15" fill="rgb(244,29,21)" fg:x="738" fg:w="1"/><text x="9.0159%" y="879.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.01%)</title><rect x="8.7659%" y="853" width="0.0119%" height="15" fill="rgb(220,130,37)" fg:x="738" fg:w="1"/><text x="9.0159%" y="863.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="8.7659%" y="837" width="0.0119%" height="15" fill="rgb(211,67,2)" fg:x="738" fg:w="1"/><text x="9.0159%" y="847.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="8.7659%" y="821" width="0.0119%" height="15" fill="rgb(235,68,52)" fg:x="738" fg:w="1"/><text x="9.0159%" y="831.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="8.7659%" y="805" width="0.0119%" height="15" fill="rgb(246,142,3)" fg:x="738" fg:w="1"/><text x="9.0159%" y="815.50"></text></g><g><title>_rjem_je_sdallocx_default (1 samples, 0.01%)</title><rect x="8.7659%" y="789" width="0.0119%" height="15" fill="rgb(241,25,7)" fg:x="738" fg:w="1"/><text x="9.0159%" y="799.50"></text></g><g><title>_rjem_je_tcache_bin_flush_small (1 samples, 0.01%)</title><rect x="8.7659%" y="773" width="0.0119%" height="15" fill="rgb(242,119,39)" fg:x="738" fg:w="1"/><text x="9.0159%" y="783.50"></text></g><g><title>tcache_bin_flush_edatas_lookup (1 samples, 0.01%)</title><rect x="8.7659%" y="757" width="0.0119%" height="15" fill="rgb(241,98,45)" fg:x="738" fg:w="1"/><text x="9.0159%" y="767.50"></text></g><g><title>&lt;core::pin::Pin&lt;Ptr&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="8.8728%" y="1621" width="0.0119%" height="15" fill="rgb(254,28,30)" fg:x="747" fg:w="1"/><text x="9.1228%" y="1631.50"></text></g><g><title>&lt;futures_util::stream::futures_unordered::task::waker_ref::WakerRef as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="8.8847%" y="1621" width="0.0119%" height="15" fill="rgb(241,142,54)" fg:x="748" fg:w="1"/><text x="9.1347%" y="1631.50"></text></g><g><title>core::pin::Pin&lt;Ptr&gt;::as_ref (2 samples, 0.02%)</title><rect x="8.8965%" y="1621" width="0.0238%" height="15" fill="rgb(222,85,15)" fg:x="749" fg:w="2"/><text x="9.1465%" y="1631.50"></text></g><g><title>&lt;&amp;mut T as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="8.9084%" y="1605" width="0.0119%" height="15" fill="rgb(210,85,47)" fg:x="750" fg:w="1"/><text x="9.1584%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;&lt;futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt; as futures_core::stream::Stream&gt;::poll_next::Bomb&lt;uv_installer::preparer::Preparer&lt;uv_dispatch::BuildDispatch&gt;::prepare_stream::{{closure}}::{{closure}}&gt;&gt; (2 samples, 0.02%)</title><rect x="8.9203%" y="1621" width="0.0238%" height="15" fill="rgb(224,206,25)" fg:x="751" fg:w="2"/><text x="9.1703%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;alloc::sync::Arc&lt;futures_util::stream::futures_unordered::task::Task&lt;uv_installer::preparer::Preparer&lt;uv_dispatch::BuildDispatch&gt;::prepare_stream::{{closure}}::{{closure}}&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="8.9322%" y="1605" width="0.0119%" height="15" fill="rgb(243,201,19)" fg:x="752" fg:w="1"/><text x="9.1822%" y="1615.50"></text></g><g><title>core::sync::atomic::atomic_swap (1 samples, 0.01%)</title><rect x="8.9441%" y="1621" width="0.0119%" height="15" fill="rgb(236,59,4)" fg:x="753" fg:w="1"/><text x="9.1941%" y="1631.50"></text></g><g><title>core::task::wake::Context::waker (1 samples, 0.01%)</title><rect x="8.9559%" y="1621" width="0.0119%" height="15" fill="rgb(254,179,45)" fg:x="754" fg:w="1"/><text x="9.2059%" y="1631.50"></text></g><g><title>core::intrinsics::write_bytes::precondition_check (1 samples, 0.01%)</title><rect x="8.9678%" y="1477" width="0.0119%" height="15" fill="rgb(226,14,10)" fg:x="755" fg:w="1"/><text x="9.2178%" y="1487.50"></text></g><g><title>core::task::wake::Waker::wake_by_ref (15 samples, 0.18%)</title><rect x="8.9678%" y="1621" width="0.1782%" height="15" fill="rgb(244,27,41)" fg:x="755" fg:w="15"/><text x="9.2178%" y="1631.50"></text></g><g><title>tokio::util::wake::wake_by_ref_arc_raw (15 samples, 0.18%)</title><rect x="8.9678%" y="1605" width="0.1782%" height="15" fill="rgb(235,35,32)" fg:x="755" fg:w="15"/><text x="9.2178%" y="1615.50"></text></g><g><title>&lt;tokio::runtime::scheduler::current_thread::Handle as tokio::util::wake::Wake&gt;::wake_by_ref (15 samples, 0.18%)</title><rect x="8.9678%" y="1589" width="0.1782%" height="15" fill="rgb(218,68,31)" fg:x="755" fg:w="15"/><text x="9.2178%" y="1599.50"></text></g><g><title>tokio::runtime::driver::Handle::unpark (15 samples, 0.18%)</title><rect x="8.9678%" y="1573" width="0.1782%" height="15" fill="rgb(207,120,37)" fg:x="755" fg:w="15"/><text x="9.2178%" y="1583.50"></text></g><g><title>tokio::runtime::driver::IoHandle::unpark (15 samples, 0.18%)</title><rect x="8.9678%" y="1557" width="0.1782%" height="15" fill="rgb(227,98,0)" fg:x="755" fg:w="15"/><text x="9.2178%" y="1567.50"></text></g><g><title>tokio::runtime::io::driver::Handle::unpark (15 samples, 0.18%)</title><rect x="8.9678%" y="1541" width="0.1782%" height="15" fill="rgb(207,7,3)" fg:x="755" fg:w="15"/><text x="9.2178%" y="1551.50"></text></g><g><title>mio::waker::Waker::wake (15 samples, 0.18%)</title><rect x="8.9678%" y="1525" width="0.1782%" height="15" fill="rgb(206,98,19)" fg:x="755" fg:w="15"/><text x="9.2178%" y="1535.50"></text></g><g><title>mio::sys::unix::waker::Waker::wake (15 samples, 0.18%)</title><rect x="8.9678%" y="1509" width="0.1782%" height="15" fill="rgb(217,5,26)" fg:x="755" fg:w="15"/><text x="9.2178%" y="1519.50"></text></g><g><title>mio::sys::unix::selector::Selector::wake (15 samples, 0.18%)</title><rect x="8.9678%" y="1493" width="0.1782%" height="15" fill="rgb(235,190,38)" fg:x="755" fg:w="15"/><text x="9.2178%" y="1503.50"></text></g><g><title>kevent (14 samples, 0.17%)</title><rect x="8.9797%" y="1477" width="0.1663%" height="15" fill="rgb(247,86,24)" fg:x="756" fg:w="14"/><text x="9.2297%" y="1487.50"></text></g><g><title>core::sync::atomic::AtomicUsize::compare_exchange (2 samples, 0.02%)</title><rect x="9.1579%" y="1605" width="0.0238%" height="15" fill="rgb(205,101,16)" fg:x="771" fg:w="2"/><text x="9.4079%" y="1615.50"></text></g><g><title>core::sync::atomic::atomic_compare_exchange (2 samples, 0.02%)</title><rect x="9.1579%" y="1589" width="0.0238%" height="15" fill="rgb(246,168,33)" fg:x="771" fg:w="2"/><text x="9.4079%" y="1599.50"></text></g><g><title>futures_core::task::__internal::atomic_waker::AtomicWaker::register (4 samples, 0.05%)</title><rect x="9.1460%" y="1621" width="0.0475%" height="15" fill="rgb(231,114,1)" fg:x="770" fg:w="4"/><text x="9.3960%" y="1631.50"></text></g><g><title>core::sync::atomic::atomic_compare_exchange (1 samples, 0.01%)</title><rect x="9.1816%" y="1605" width="0.0119%" height="15" fill="rgb(207,184,53)" fg:x="773" fg:w="1"/><text x="9.4316%" y="1615.50"></text></g><g><title>futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt;::len (1 samples, 0.01%)</title><rect x="9.1935%" y="1621" width="0.0119%" height="15" fill="rgb(224,95,51)" fg:x="774" fg:w="1"/><text x="9.4435%" y="1631.50"></text></g><g><title>futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt;::atomic_load_head_and_len_all (1 samples, 0.01%)</title><rect x="9.1935%" y="1605" width="0.0119%" height="15" fill="rgb(212,188,45)" fg:x="774" fg:w="1"/><text x="9.4435%" y="1615.50"></text></g><g><title>futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt;::pending_next_all (1 samples, 0.01%)</title><rect x="9.1935%" y="1589" width="0.0119%" height="15" fill="rgb(223,154,38)" fg:x="774" fg:w="1"/><text x="9.4435%" y="1599.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="9.1935%" y="1573" width="0.0119%" height="15" fill="rgb(251,22,52)" fg:x="774" fg:w="1"/><text x="9.4435%" y="1583.50"></text></g><g><title>futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt;::link (3 samples, 0.04%)</title><rect x="9.2054%" y="1621" width="0.0356%" height="15" fill="rgb(229,209,22)" fg:x="775" fg:w="3"/><text x="9.4554%" y="1631.50"></text></g><g><title>futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt;::pending_next_all (1 samples, 0.01%)</title><rect x="9.2291%" y="1605" width="0.0119%" height="15" fill="rgb(234,138,34)" fg:x="777" fg:w="1"/><text x="9.4791%" y="1615.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::as_ptr (1 samples, 0.01%)</title><rect x="9.2291%" y="1589" width="0.0119%" height="15" fill="rgb(212,95,11)" fg:x="777" fg:w="1"/><text x="9.4791%" y="1599.50"></text></g><g><title>futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt;::unlink (2 samples, 0.02%)</title><rect x="9.2410%" y="1621" width="0.0238%" height="15" fill="rgb(240,179,47)" fg:x="778" fg:w="2"/><text x="9.4910%" y="1631.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::from_raw (1 samples, 0.01%)</title><rect x="9.2529%" y="1605" width="0.0119%" height="15" fill="rgb(240,163,11)" fg:x="779" fg:w="1"/><text x="9.5029%" y="1615.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::from_raw_in (1 samples, 0.01%)</title><rect x="9.2529%" y="1589" width="0.0119%" height="15" fill="rgb(236,37,12)" fg:x="779" fg:w="1"/><text x="9.5029%" y="1599.50"></text></g><g><title>alloc::sync::data_offset_align (1 samples, 0.01%)</title><rect x="9.2529%" y="1573" width="0.0119%" height="15" fill="rgb(232,164,16)" fg:x="779" fg:w="1"/><text x="9.5029%" y="1583.50"></text></g><g><title>core::ptr::alignment::Alignment::new (1 samples, 0.01%)</title><rect x="9.2529%" y="1557" width="0.0119%" height="15" fill="rgb(244,205,15)" fg:x="779" fg:w="1"/><text x="9.5029%" y="1567.50"></text></g><g><title>futures_util::stream::futures_unordered::ready_to_run_queue::ReadyToRunQueue&lt;Fut&gt;::dequeue (2 samples, 0.02%)</title><rect x="9.2648%" y="1621" width="0.0238%" height="15" fill="rgb(223,117,47)" fg:x="780" fg:w="2"/><text x="9.5148%" y="1631.50"></text></g><g><title>core::sync::atomic::AtomicPtr&lt;T&gt;::load (1 samples, 0.01%)</title><rect x="9.2766%" y="1605" width="0.0119%" height="15" fill="rgb(244,107,35)" fg:x="781" fg:w="1"/><text x="9.5266%" y="1615.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="9.2766%" y="1589" width="0.0119%" height="15" fill="rgb(205,140,8)" fg:x="781" fg:w="1"/><text x="9.5266%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;tracing::span::Entered&gt; (1 samples, 0.01%)</title><rect x="9.5736%" y="1221" width="0.0119%" height="15" fill="rgb(228,84,46)" fg:x="806" fg:w="1"/><text x="9.8236%" y="1231.50"></text></g><g><title>indicatif::progress_bar::ProgressBar::set_style (1 samples, 0.01%)</title><rect x="9.6092%" y="1109" width="0.0119%" height="15" fill="rgb(254,188,9)" fg:x="809" fg:w="1"/><text x="9.8592%" y="1119.50"></text></g><g><title>indicatif::state::BarState::set_style (1 samples, 0.01%)</title><rect x="9.6092%" y="1093" width="0.0119%" height="15" fill="rgb(206,112,54)" fg:x="809" fg:w="1"/><text x="9.8592%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;indicatif::style::ProgressStyle&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="1077" width="0.0119%" height="15" fill="rgb(216,84,49)" fg:x="809" fg:w="1"/><text x="9.8592%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;indicatif::style::Template&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="1061" width="0.0119%" height="15" fill="rgb(214,194,35)" fg:x="809" fg:w="1"/><text x="9.8592%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;indicatif::style::TemplatePart&gt;&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="1045" width="0.0119%" height="15" fill="rgb(249,28,3)" fg:x="809" fg:w="1"/><text x="9.8592%" y="1055.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="9.6092%" y="1029" width="0.0119%" height="15" fill="rgb(222,56,52)" fg:x="809" fg:w="1"/><text x="9.8592%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;[indicatif::style::TemplatePart]&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="1013" width="0.0119%" height="15" fill="rgb(245,217,50)" fg:x="809" fg:w="1"/><text x="9.8592%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;indicatif::style::TemplatePart&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="997" width="0.0119%" height="15" fill="rgb(213,201,24)" fg:x="809" fg:w="1"/><text x="9.8592%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;console::utils::Style&gt;&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="981" width="0.0119%" height="15" fill="rgb(248,116,28)" fg:x="809" fg:w="1"/><text x="9.8592%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;console::utils::Style&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="965" width="0.0119%" height="15" fill="rgb(219,72,43)" fg:x="809" fg:w="1"/><text x="9.8592%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::set::BTreeSet&lt;console::utils::Attribute&gt;&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="949" width="0.0119%" height="15" fill="rgb(209,138,14)" fg:x="809" fg:w="1"/><text x="9.8592%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::BTreeMap&lt;console::utils::Attribute,alloc::collections::btree::set_val::SetValZST&gt;&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="933" width="0.0119%" height="15" fill="rgb(222,18,33)" fg:x="809" fg:w="1"/><text x="9.8592%" y="943.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="9.6092%" y="917" width="0.0119%" height="15" fill="rgb(213,199,7)" fg:x="809" fg:w="1"/><text x="9.8592%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::IntoIter&lt;console::utils::Attribute,alloc::collections::btree::set_val::SetValZST&gt;&gt; (1 samples, 0.01%)</title><rect x="9.6092%" y="901" width="0.0119%" height="15" fill="rgb(250,110,10)" fg:x="809" fg:w="1"/><text x="9.8592%" y="911.50"></text></g><g><title>&lt;alloc::collections::btree::map::IntoIter&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="9.6092%" y="885" width="0.0119%" height="15" fill="rgb(248,123,6)" fg:x="809" fg:w="1"/><text x="9.8592%" y="895.50"></text></g><g><title>alloc::collections::btree::map::IntoIter&lt;K,V,A&gt;::dying_next (1 samples, 0.01%)</title><rect x="9.6092%" y="869" width="0.0119%" height="15" fill="rgb(206,91,31)" fg:x="809" fg:w="1"/><text x="9.8592%" y="879.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (2 samples, 0.02%)</title><rect x="9.6092%" y="1205" width="0.0238%" height="15" fill="rgb(211,154,13)" fg:x="809" fg:w="2"/><text x="9.8592%" y="1215.50"></text></g><g><title>uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::stream_wheel::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (2 samples, 0.02%)</title><rect x="9.6092%" y="1189" width="0.0238%" height="15" fill="rgb(225,148,7)" fg:x="809" fg:w="2"/><text x="9.8592%" y="1199.50"></text></g><g><title>&lt;uv_installer::preparer::Facade as uv_distribution::reporter::Reporter&gt;::on_download_start (2 samples, 0.02%)</title><rect x="9.6092%" y="1173" width="0.0238%" height="15" fill="rgb(220,160,43)" fg:x="809" fg:w="2"/><text x="9.8592%" y="1183.50"></text></g><g><title>&lt;uv::commands::reporters::PrepareReporter as uv_installer::preparer::Reporter&gt;::on_download_start (2 samples, 0.02%)</title><rect x="9.6092%" y="1157" width="0.0238%" height="15" fill="rgb(213,52,39)" fg:x="809" fg:w="2"/><text x="9.8592%" y="1167.50"></text></g><g><title>uv::commands::reporters::ProgressReporter::on_download_start (2 samples, 0.02%)</title><rect x="9.6092%" y="1141" width="0.0238%" height="15" fill="rgb(243,137,7)" fg:x="809" fg:w="2"/><text x="9.8592%" y="1151.50"></text></g><g><title>uv::commands::reporters::ProgressReporter::on_request_start (2 samples, 0.02%)</title><rect x="9.6092%" y="1125" width="0.0238%" height="15" fill="rgb(230,79,13)" fg:x="809" fg:w="2"/><text x="9.8592%" y="1135.50"></text></g><g><title>uv::printer::Printer::target (1 samples, 0.01%)</title><rect x="9.6211%" y="1109" width="0.0119%" height="15" fill="rgb(247,105,23)" fg:x="810" fg:w="1"/><text x="9.8711%" y="1119.50"></text></g><g><title>indicatif::draw_target::ProgressDrawTarget::stderr (1 samples, 0.01%)</title><rect x="9.6211%" y="1093" width="0.0119%" height="15" fill="rgb(223,179,41)" fg:x="810" fg:w="1"/><text x="9.8711%" y="1103.50"></text></g><g><title>console::term::Term::buffered_stderr (1 samples, 0.01%)</title><rect x="9.6211%" y="1077" width="0.0119%" height="15" fill="rgb(218,9,34)" fg:x="810" fg:w="1"/><text x="9.8711%" y="1087.50"></text></g><g><title>console::term::Term::with_inner (1 samples, 0.01%)</title><rect x="9.6211%" y="1061" width="0.0119%" height="15" fill="rgb(222,106,8)" fg:x="810" fg:w="1"/><text x="9.8711%" y="1071.50"></text></g><g><title>console::term::TermFeatures::is_attended (1 samples, 0.01%)</title><rect x="9.6211%" y="1045" width="0.0119%" height="15" fill="rgb(211,220,0)" fg:x="810" fg:w="1"/><text x="9.8711%" y="1055.50"></text></g><g><title>console::unix_term::is_a_terminal (1 samples, 0.01%)</title><rect x="9.6211%" y="1029" width="0.0119%" height="15" fill="rgb(229,52,16)" fg:x="810" fg:w="1"/><text x="9.8711%" y="1039.50"></text></g><g><title>isatty (1 samples, 0.01%)</title><rect x="9.6211%" y="1013" width="0.0119%" height="15" fill="rgb(212,155,18)" fg:x="810" fg:w="1"/><text x="9.8711%" y="1023.50"></text></g><g><title>ioctl (1 samples, 0.01%)</title><rect x="9.6211%" y="997" width="0.0119%" height="15" fill="rgb(242,21,14)" fg:x="810" fg:w="1"/><text x="9.8711%" y="1007.50"></text></g><g><title>__ioctl (1 samples, 0.01%)</title><rect x="9.6211%" y="981" width="0.0119%" height="15" fill="rgb(222,19,48)" fg:x="810" fg:w="1"/><text x="9.8711%" y="991.50"></text></g><g><title>uv_cache::Cache::create_link (1 samples, 0.01%)</title><rect x="9.6330%" y="1189" width="0.0119%" height="15" fill="rgb(232,45,27)" fg:x="811" fg:w="1"/><text x="9.8830%" y="1199.50"></text></g><g><title>fs_err::os::unix::fs::symlink (1 samples, 0.01%)</title><rect x="9.6330%" y="1173" width="0.0119%" height="15" fill="rgb(249,103,42)" fg:x="811" fg:w="1"/><text x="9.8830%" y="1183.50"></text></g><g><title>std::os::unix::fs::symlink (1 samples, 0.01%)</title><rect x="9.6330%" y="1157" width="0.0119%" height="15" fill="rgb(246,81,33)" fg:x="811" fg:w="1"/><text x="9.8830%" y="1167.50"></text></g><g><title>std::sys::fs::symlink (1 samples, 0.01%)</title><rect x="9.6330%" y="1141" width="0.0119%" height="15" fill="rgb(252,33,42)" fg:x="811" fg:w="1"/><text x="9.8830%" y="1151.50"></text></g><g><title>symlink (1 samples, 0.01%)</title><rect x="9.6330%" y="1125" width="0.0119%" height="15" fill="rgb(209,212,41)" fg:x="811" fg:w="1"/><text x="9.8830%" y="1135.50"></text></g><g><title>uv_cache::Cache::persist::_{{closure}} (2 samples, 0.02%)</title><rect x="9.6330%" y="1205" width="0.0238%" height="15" fill="rgb(207,154,6)" fg:x="811" fg:w="2"/><text x="9.8830%" y="1215.50"></text></g><g><title>uv_cache::archive::ArchiveId::new (1 samples, 0.01%)</title><rect x="9.6449%" y="1189" width="0.0119%" height="15" fill="rgb(223,64,47)" fg:x="812" fg:w="1"/><text x="9.8949%" y="1199.50"></text></g><g><title>nanoid::format (1 samples, 0.01%)</title><rect x="9.6449%" y="1173" width="0.0119%" height="15" fill="rgb(211,161,38)" fg:x="812" fg:w="1"/><text x="9.8949%" y="1183.50"></text></g><g><title>&lt;&amp;alloc::vec::Vec&lt;T,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (1 samples, 0.01%)</title><rect x="9.6449%" y="1157" width="0.0119%" height="15" fill="rgb(219,138,40)" fg:x="812" fg:w="1"/><text x="9.8949%" y="1167.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="9.6449%" y="1141" width="0.0119%" height="15" fill="rgb(241,228,46)" fg:x="812" fg:w="1"/><text x="9.8949%" y="1151.50"></text></g><g><title>&lt;F as core::future::into_future::IntoFuture&gt;::into_future (6 samples, 0.07%)</title><rect x="9.7161%" y="1189" width="0.0713%" height="15" fill="rgb(223,209,38)" fg:x="818" fg:w="6"/><text x="9.9661%" y="1199.50"></text></g><g><title>_platform_memmove (3 samples, 0.04%)</title><rect x="9.7518%" y="1173" width="0.0356%" height="15" fill="rgb(236,164,45)" fg:x="821" fg:w="3"/><text x="10.0018%" y="1183.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.01%)</title><rect x="9.7874%" y="1189" width="0.0119%" height="15" fill="rgb(231,15,5)" fg:x="824" fg:w="1"/><text x="10.0374%" y="1199.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="9.7874%" y="1173" width="0.0119%" height="15" fill="rgb(252,35,15)" fg:x="824" fg:w="1"/><text x="10.0374%" y="1183.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::consume (1 samples, 0.01%)</title><rect x="9.7993%" y="1109" width="0.0119%" height="15" fill="rgb(248,181,18)" fg:x="825" fg:w="1"/><text x="10.0493%" y="1119.50"></text></g><g><title>core::cmp::min (1 samples, 0.01%)</title><rect x="9.7993%" y="1093" width="0.0119%" height="15" fill="rgb(233,39,42)" fg:x="825" fg:w="1"/><text x="10.0493%" y="1103.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="9.7993%" y="1077" width="0.0119%" height="15" fill="rgb(238,110,33)" fg:x="825" fg:w="1"/><text x="10.0493%" y="1087.50"></text></g><g><title>core::cmp::min (1 samples, 0.01%)</title><rect x="9.8111%" y="1109" width="0.0119%" height="15" fill="rgb(233,195,10)" fg:x="826" fg:w="1"/><text x="10.0611%" y="1119.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="9.8111%" y="1093" width="0.0119%" height="15" fill="rgb(254,105,3)" fg:x="826" fg:w="1"/><text x="10.0611%" y="1103.50"></text></g><g><title>&lt;futures_lite::io::ReadExactFuture&lt;R&gt; as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="9.7993%" y="1173" width="0.0356%" height="15" fill="rgb(221,225,9)" fg:x="825" fg:w="3"/><text x="10.0493%" y="1183.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="9.7993%" y="1157" width="0.0356%" height="15" fill="rgb(224,227,45)" fg:x="825" fg:w="3"/><text x="10.0493%" y="1167.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="9.7993%" y="1141" width="0.0356%" height="15" fill="rgb(229,198,43)" fg:x="825" fg:w="3"/><text x="10.0493%" y="1151.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="9.7993%" y="1125" width="0.0356%" height="15" fill="rgb(206,209,35)" fg:x="825" fg:w="3"/><text x="10.0493%" y="1135.50"></text></g><g><title>std::io::impls::_&lt;impl std::io::Read for &amp;[u8]&gt;::read (1 samples, 0.01%)</title><rect x="9.8230%" y="1109" width="0.0119%" height="15" fill="rgb(245,195,53)" fg:x="827" fg:w="1"/><text x="10.0730%" y="1119.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::copy_from_slice (1 samples, 0.01%)</title><rect x="9.8230%" y="1093" width="0.0119%" height="15" fill="rgb(240,92,26)" fg:x="827" fg:w="1"/><text x="10.0730%" y="1103.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="9.8230%" y="1077" width="0.0119%" height="15" fill="rgb(207,40,23)" fg:x="827" fg:w="1"/><text x="10.0730%" y="1087.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="9.8349%" y="1173" width="0.0119%" height="15" fill="rgb(223,111,35)" fg:x="828" fg:w="1"/><text x="10.0849%" y="1183.50"></text></g><g><title>async_zip::base::read::detect_filename (1 samples, 0.01%)</title><rect x="9.8468%" y="1173" width="0.0119%" height="15" fill="rgb(229,147,28)" fg:x="829" fg:w="1"/><text x="10.0968%" y="1183.50"></text></g><g><title>core::slice::ascii::_&lt;impl [u8]&gt;::is_ascii (1 samples, 0.01%)</title><rect x="9.8468%" y="1157" width="0.0119%" height="15" fill="rgb(211,29,28)" fg:x="829" fg:w="1"/><text x="10.0968%" y="1167.50"></text></g><g><title>core::slice::ascii::is_ascii::runtime (1 samples, 0.01%)</title><rect x="9.8468%" y="1141" width="0.0119%" height="15" fill="rgb(228,72,33)" fg:x="829" fg:w="1"/><text x="10.0968%" y="1151.50"></text></g><g><title>core::ptr::read_unaligned (1 samples, 0.01%)</title><rect x="9.8468%" y="1125" width="0.0119%" height="15" fill="rgb(205,214,31)" fg:x="829" fg:w="1"/><text x="10.0968%" y="1135.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="9.8468%" y="1109" width="0.0119%" height="15" fill="rgb(224,111,15)" fg:x="829" fg:w="1"/><text x="10.0968%" y="1119.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (1 samples, 0.01%)</title><rect x="9.8468%" y="1093" width="0.0119%" height="15" fill="rgb(253,21,26)" fg:x="829" fg:w="1"/><text x="10.0968%" y="1103.50"></text></g><g><title>&lt;F as core::future::into_future::IntoFuture&gt;::into_future (1 samples, 0.01%)</title><rect x="9.8705%" y="1157" width="0.0119%" height="15" fill="rgb(245,139,43)" fg:x="831" fg:w="1"/><text x="10.1205%" y="1167.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (2 samples, 0.02%)</title><rect x="9.8943%" y="1029" width="0.0238%" height="15" fill="rgb(252,170,7)" fg:x="833" fg:w="2"/><text x="10.1443%" y="1039.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="9.8824%" y="1125" width="0.0475%" height="15" fill="rgb(231,118,14)" fg:x="832" fg:w="4"/><text x="10.1324%" y="1135.50"></text></g><g><title>&lt;futures_lite::io::Take&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="9.8824%" y="1109" width="0.0475%" height="15" fill="rgb(238,83,0)" fg:x="832" fg:w="4"/><text x="10.1324%" y="1119.50"></text></g><g><title>futures_lite::io::take_read_internal (4 samples, 0.05%)</title><rect x="9.8824%" y="1093" width="0.0475%" height="15" fill="rgb(221,39,39)" fg:x="832" fg:w="4"/><text x="10.1324%" y="1103.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="9.8943%" y="1077" width="0.0356%" height="15" fill="rgb(222,119,46)" fg:x="833" fg:w="3"/><text x="10.1443%" y="1087.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="9.8943%" y="1061" width="0.0356%" height="15" fill="rgb(222,165,49)" fg:x="833" fg:w="3"/><text x="10.1443%" y="1071.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="9.8943%" y="1045" width="0.0356%" height="15" fill="rgb(219,113,52)" fg:x="833" fg:w="3"/><text x="10.1443%" y="1055.50"></text></g><g><title>std::io::impls::_&lt;impl std::io::Read for &amp;[u8]&gt;::read (1 samples, 0.01%)</title><rect x="9.9180%" y="1029" width="0.0119%" height="15" fill="rgb(214,7,15)" fg:x="835" fg:w="1"/><text x="10.1680%" y="1039.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::copy_from_slice (1 samples, 0.01%)</title><rect x="9.9180%" y="1013" width="0.0119%" height="15" fill="rgb(235,32,4)" fg:x="835" fg:w="1"/><text x="10.1680%" y="1023.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="9.9180%" y="997" width="0.0119%" height="15" fill="rgb(238,90,54)" fg:x="835" fg:w="1"/><text x="10.1680%" y="1007.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (1 samples, 0.01%)</title><rect x="9.9180%" y="981" width="0.0119%" height="15" fill="rgb(213,208,19)" fg:x="835" fg:w="1"/><text x="10.1680%" y="991.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (3 samples, 0.04%)</title><rect x="9.9418%" y="1061" width="0.0356%" height="15" fill="rgb(233,156,4)" fg:x="837" fg:w="3"/><text x="10.1918%" y="1071.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3 samples, 0.04%)</title><rect x="9.9418%" y="1045" width="0.0356%" height="15" fill="rgb(207,194,5)" fg:x="837" fg:w="3"/><text x="10.1918%" y="1055.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.02%)</title><rect x="9.9537%" y="1029" width="0.0238%" height="15" fill="rgb(206,111,30)" fg:x="838" fg:w="2"/><text x="10.2037%" y="1039.50"></text></g><g><title>__rustc::__rust_alloc (2 samples, 0.02%)</title><rect x="9.9537%" y="1013" width="0.0238%" height="15" fill="rgb(243,70,54)" fg:x="838" fg:w="2"/><text x="10.2037%" y="1023.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="9.9656%" y="997" width="0.0119%" height="15" fill="rgb(242,28,8)" fg:x="839" fg:w="1"/><text x="10.2156%" y="1007.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="9.9656%" y="981" width="0.0119%" height="15" fill="rgb(219,106,18)" fg:x="839" fg:w="1"/><text x="10.2156%" y="991.50"></text></g><g><title>_rjem_je_arena_ralloc (1 samples, 0.01%)</title><rect x="10.0012%" y="965" width="0.0119%" height="15" fill="rgb(244,222,10)" fg:x="842" fg:w="1"/><text x="10.2512%" y="975.50"></text></g><g><title>_rjem_je_arena_ralloc_no_move (1 samples, 0.01%)</title><rect x="10.0012%" y="949" width="0.0119%" height="15" fill="rgb(236,179,52)" fg:x="842" fg:w="1"/><text x="10.2512%" y="959.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (8 samples, 0.10%)</title><rect x="9.9299%" y="1125" width="0.0950%" height="15" fill="rgb(213,23,39)" fg:x="836" fg:w="8"/><text x="10.1799%" y="1135.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (8 samples, 0.10%)</title><rect x="9.9299%" y="1109" width="0.0950%" height="15" fill="rgb(238,48,10)" fg:x="836" fg:w="8"/><text x="10.1799%" y="1119.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (8 samples, 0.10%)</title><rect x="9.9299%" y="1093" width="0.0950%" height="15" fill="rgb(251,196,23)" fg:x="836" fg:w="8"/><text x="10.1799%" y="1103.50"></text></g><g><title>alloc::raw_vec::finish_grow (7 samples, 0.08%)</title><rect x="9.9418%" y="1077" width="0.0831%" height="15" fill="rgb(250,152,24)" fg:x="837" fg:w="7"/><text x="10.1918%" y="1087.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (4 samples, 0.05%)</title><rect x="9.9774%" y="1061" width="0.0475%" height="15" fill="rgb(209,150,17)" fg:x="840" fg:w="4"/><text x="10.2274%" y="1071.50"></text></g><g><title>alloc::alloc::Global::grow_impl (4 samples, 0.05%)</title><rect x="9.9774%" y="1045" width="0.0475%" height="15" fill="rgb(234,202,34)" fg:x="840" fg:w="4"/><text x="10.2274%" y="1055.50"></text></g><g><title>__rustc::__rust_realloc (2 samples, 0.02%)</title><rect x="10.0012%" y="1029" width="0.0238%" height="15" fill="rgb(253,148,53)" fg:x="842" fg:w="2"/><text x="10.2512%" y="1039.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (2 samples, 0.02%)</title><rect x="10.0012%" y="1013" width="0.0238%" height="15" fill="rgb(218,129,16)" fg:x="842" fg:w="2"/><text x="10.2512%" y="1023.50"></text></g><g><title>_rjem_realloc (2 samples, 0.02%)</title><rect x="10.0012%" y="997" width="0.0238%" height="15" fill="rgb(216,85,19)" fg:x="842" fg:w="2"/><text x="10.2512%" y="1007.50"></text></g><g><title>do_rallocx (2 samples, 0.02%)</title><rect x="10.0012%" y="981" width="0.0238%" height="15" fill="rgb(235,228,7)" fg:x="842" fg:w="2"/><text x="10.2512%" y="991.50"></text></g><g><title>rtree_metadata_read (1 samples, 0.01%)</title><rect x="10.0131%" y="965" width="0.0119%" height="15" fill="rgb(245,175,0)" fg:x="843" fg:w="1"/><text x="10.2631%" y="975.50"></text></g><g><title>&lt;futures_lite::io::ReadToEndFuture&lt;R&gt; as core::future::future::Future&gt;::poll (21 samples, 0.25%)</title><rect x="9.8824%" y="1157" width="0.2494%" height="15" fill="rgb(208,168,36)" fg:x="832" fg:w="21"/><text x="10.1324%" y="1167.50"></text></g><g><title>futures_lite::io::read_to_end_internal (21 samples, 0.25%)</title><rect x="9.8824%" y="1141" width="0.2494%" height="15" fill="rgb(246,171,24)" fg:x="832" fg:w="21"/><text x="10.1324%" y="1151.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::resize (9 samples, 0.11%)</title><rect x="10.0249%" y="1125" width="0.1069%" height="15" fill="rgb(215,142,24)" fg:x="844" fg:w="9"/><text x="10.2749%" y="1135.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_with (8 samples, 0.10%)</title><rect x="10.0368%" y="1109" width="0.0950%" height="15" fill="rgb(250,187,7)" fg:x="845" fg:w="8"/><text x="10.2868%" y="1119.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::unchecked_add::precondition_check (2 samples, 0.02%)</title><rect x="10.1081%" y="1093" width="0.0238%" height="15" fill="rgb(228,66,33)" fg:x="851" fg:w="2"/><text x="10.3581%" y="1103.50"></text></g><g><title>async_zip::base::read::io::read_bytes::_{{closure}} (25 samples, 0.30%)</title><rect x="9.8587%" y="1173" width="0.2969%" height="15" fill="rgb(234,215,21)" fg:x="830" fg:w="25"/><text x="10.1087%" y="1183.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (2 samples, 0.02%)</title><rect x="10.1318%" y="1157" width="0.0238%" height="15" fill="rgb(222,191,20)" fg:x="853" fg:w="2"/><text x="10.3818%" y="1167.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (2 samples, 0.02%)</title><rect x="10.1318%" y="1141" width="0.0238%" height="15" fill="rgb(245,79,54)" fg:x="853" fg:w="2"/><text x="10.3818%" y="1151.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (2 samples, 0.02%)</title><rect x="10.1318%" y="1125" width="0.0238%" height="15" fill="rgb(240,10,37)" fg:x="853" fg:w="2"/><text x="10.3818%" y="1135.50"></text></g><g><title>__rustc::__rust_alloc (2 samples, 0.02%)</title><rect x="10.1318%" y="1109" width="0.0238%" height="15" fill="rgb(214,192,32)" fg:x="853" fg:w="2"/><text x="10.3818%" y="1119.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (2 samples, 0.02%)</title><rect x="10.1318%" y="1093" width="0.0238%" height="15" fill="rgb(209,36,54)" fg:x="853" fg:w="2"/><text x="10.3818%" y="1103.50"></text></g><g><title>_rjem_malloc (2 samples, 0.02%)</title><rect x="10.1318%" y="1077" width="0.0238%" height="15" fill="rgb(220,10,11)" fg:x="853" fg:w="2"/><text x="10.3818%" y="1087.50"></text></g><g><title>&lt;futures_lite::io::ReadExactFuture&lt;R&gt; as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="10.1675%" y="1157" width="0.0356%" height="15" fill="rgb(221,106,17)" fg:x="856" fg:w="3"/><text x="10.4175%" y="1167.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="10.1675%" y="1141" width="0.0356%" height="15" fill="rgb(251,142,44)" fg:x="856" fg:w="3"/><text x="10.4175%" y="1151.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="10.1675%" y="1125" width="0.0356%" height="15" fill="rgb(238,13,15)" fg:x="856" fg:w="3"/><text x="10.4175%" y="1135.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="10.1675%" y="1109" width="0.0356%" height="15" fill="rgb(208,107,27)" fg:x="856" fg:w="3"/><text x="10.4175%" y="1119.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::poll_fill_buf (3 samples, 0.04%)</title><rect x="10.1675%" y="1093" width="0.0356%" height="15" fill="rgb(205,136,37)" fg:x="856" fg:w="3"/><text x="10.4175%" y="1103.50"></text></g><g><title>&lt;tokio_util::compat::Compat&lt;T&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="10.1912%" y="1077" width="0.0119%" height="15" fill="rgb(250,205,27)" fg:x="858" fg:w="1"/><text x="10.4412%" y="1087.50"></text></g><g><title>&lt;&amp;mut T as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="10.1912%" y="1061" width="0.0119%" height="15" fill="rgb(210,80,43)" fg:x="858" fg:w="1"/><text x="10.4412%" y="1071.50"></text></g><g><title>&lt;uv_distribution::distribution_database::ProgressReader&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="10.1912%" y="1045" width="0.0119%" height="15" fill="rgb(247,160,36)" fg:x="858" fg:w="1"/><text x="10.4412%" y="1055.50"></text></g><g><title>&lt;&amp;mut T as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="10.1912%" y="1029" width="0.0119%" height="15" fill="rgb(234,13,49)" fg:x="858" fg:w="1"/><text x="10.4412%" y="1039.50"></text></g><g><title>&lt;uv_extract::hash::HashReader&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="10.1912%" y="1013" width="0.0119%" height="15" fill="rgb(234,122,0)" fg:x="858" fg:w="1"/><text x="10.4412%" y="1023.50"></text></g><g><title>&lt;tokio_util::compat::Compat&lt;T&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="10.1912%" y="997" width="0.0119%" height="15" fill="rgb(207,146,38)" fg:x="858" fg:w="1"/><text x="10.4412%" y="1007.50"></text></g><g><title>&lt;futures_util::stream::try_stream::into_async_read::IntoAsyncRead&lt;St&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="10.1912%" y="981" width="0.0119%" height="15" fill="rgb(207,177,25)" fg:x="858" fg:w="1"/><text x="10.4412%" y="991.50"></text></g><g><title>&lt;S as futures_core::stream::TryStream&gt;::try_poll_next (1 samples, 0.01%)</title><rect x="10.1912%" y="965" width="0.0119%" height="15" fill="rgb(211,178,42)" fg:x="858" fg:w="1"/><text x="10.4412%" y="975.50"></text></g><g><title>&lt;futures_util::stream::try_stream::MapErr&lt;St,F&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="10.1912%" y="949" width="0.0119%" height="15" fill="rgb(230,69,54)" fg:x="858" fg:w="1"/><text x="10.4412%" y="959.50"></text></g><g><title>&lt;futures_util::stream::stream::map::Map&lt;St,F&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="10.1912%" y="933" width="0.0119%" height="15" fill="rgb(214,135,41)" fg:x="858" fg:w="1"/><text x="10.4412%" y="943.50"></text></g><g><title>&lt;futures_util::stream::try_stream::into_stream::IntoStream&lt;St&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="10.1912%" y="917" width="0.0119%" height="15" fill="rgb(237,67,25)" fg:x="858" fg:w="1"/><text x="10.4412%" y="927.50"></text></g><g><title>&lt;S as futures_core::stream::TryStream&gt;::try_poll_next (1 samples, 0.01%)</title><rect x="10.1912%" y="901" width="0.0119%" height="15" fill="rgb(222,189,50)" fg:x="858" fg:w="1"/><text x="10.4412%" y="911.50"></text></g><g><title>&lt;reqwest::async_impl::body::DataStream&lt;B&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="10.1912%" y="885" width="0.0119%" height="15" fill="rgb(245,148,34)" fg:x="858" fg:w="1"/><text x="10.4412%" y="895.50"></text></g><g><title>&lt;reqwest::async_impl::decoder::Decoder as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="10.1912%" y="869" width="0.0119%" height="15" fill="rgb(222,29,6)" fg:x="858" fg:w="1"/><text x="10.4412%" y="879.50"></text></g><g><title>&lt;http_body_util::combinators::box_body::BoxBody&lt;D,E&gt; as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="10.1912%" y="853" width="0.0119%" height="15" fill="rgb(221,189,43)" fg:x="858" fg:w="1"/><text x="10.4412%" y="863.50"></text></g><g><title>&lt;http_body_util::combinators::map_err::MapErr&lt;B,F&gt; as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="10.1912%" y="837" width="0.0119%" height="15" fill="rgb(207,36,27)" fg:x="858" fg:w="1"/><text x="10.4412%" y="847.50"></text></g><g><title>&lt;reqwest::async_impl::body::ReadTimeoutBody&lt;B&gt; as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="10.1912%" y="821" width="0.0119%" height="15" fill="rgb(217,90,24)" fg:x="858" fg:w="1"/><text x="10.4412%" y="831.50"></text></g><g><title>&lt;http_body_util::combinators::box_body::BoxBody&lt;D,E&gt; as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="10.1912%" y="805" width="0.0119%" height="15" fill="rgb(224,66,35)" fg:x="858" fg:w="1"/><text x="10.4412%" y="815.50"></text></g><g><title>&lt;http_body_util::combinators::map_err::MapErr&lt;B,F&gt; as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="10.1912%" y="789" width="0.0119%" height="15" fill="rgb(221,13,50)" fg:x="858" fg:w="1"/><text x="10.4412%" y="799.50"></text></g><g><title>&lt;hyper::body::incoming::Incoming as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="10.1912%" y="773" width="0.0119%" height="15" fill="rgb(236,68,49)" fg:x="858" fg:w="1"/><text x="10.4412%" y="783.50"></text></g><g><title>h2::share::RecvStream::poll_data (1 samples, 0.01%)</title><rect x="10.1912%" y="757" width="0.0119%" height="15" fill="rgb(229,146,28)" fg:x="858" fg:w="1"/><text x="10.4412%" y="767.50"></text></g><g><title>h2::proto::streams::streams::OpaqueStreamRef::poll_data (1 samples, 0.01%)</title><rect x="10.1912%" y="741" width="0.0119%" height="15" fill="rgb(225,31,38)" fg:x="858" fg:w="1"/><text x="10.4412%" y="751.50"></text></g><g><title>h2::proto::streams::recv::Recv::poll_data (1 samples, 0.01%)</title><rect x="10.1912%" y="725" width="0.0119%" height="15" fill="rgb(250,208,3)" fg:x="858" fg:w="1"/><text x="10.4412%" y="735.50"></text></g><g><title>h2::proto::streams::buffer::Deque::pop_front (1 samples, 0.01%)</title><rect x="10.1912%" y="709" width="0.0119%" height="15" fill="rgb(246,54,23)" fg:x="858" fg:w="1"/><text x="10.4412%" y="719.50"></text></g><g><title>slab::Slab&lt;T&gt;::remove (1 samples, 0.01%)</title><rect x="10.1912%" y="693" width="0.0119%" height="15" fill="rgb(243,76,11)" fg:x="858" fg:w="1"/><text x="10.4412%" y="703.50"></text></g><g><title>slab::Slab&lt;T&gt;::try_remove (1 samples, 0.01%)</title><rect x="10.1912%" y="677" width="0.0119%" height="15" fill="rgb(245,21,50)" fg:x="858" fg:w="1"/><text x="10.4412%" y="687.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.01%)</title><rect x="10.1912%" y="661" width="0.0119%" height="15" fill="rgb(228,9,43)" fg:x="858" fg:w="1"/><text x="10.4412%" y="671.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::convert::From&lt;T&gt;&gt;::from (1 samples, 0.01%)</title><rect x="10.1912%" y="645" width="0.0119%" height="15" fill="rgb(208,100,47)" fg:x="858" fg:w="1"/><text x="10.4412%" y="655.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="10.1912%" y="629" width="0.0119%" height="15" fill="rgb(232,26,8)" fg:x="858" fg:w="1"/><text x="10.4412%" y="639.50"></text></g><g><title>&lt;T as core::convert::TryInto&lt;U&gt;&gt;::try_into (2 samples, 0.02%)</title><rect x="10.2150%" y="1125" width="0.0238%" height="15" fill="rgb(216,166,38)" fg:x="860" fg:w="2"/><text x="10.4650%" y="1135.50"></text></g><g><title>core::array::_&lt;impl core::convert::TryFrom&lt;&amp;[T]&gt; for [T (2 samples, 0.02%)</title><rect x="10.2150%" y="1109" width="0.0238%" height="15" fill="rgb(251,202,51)" fg:x="860" fg:w="2"/><text x="10.4650%" y="1119.50"></text></g><g><title> N]&gt;::try_from (2 samples, 0.02%)</title><rect x="10.2150%" y="1093" width="0.0238%" height="15" fill="rgb(254,216,34)" fg:x="860" fg:w="2"/><text x="10.4650%" y="1103.50"></text></g><g><title>async_zip::spec::parse::_&lt;impl async_zip::spec::header::CentralDirectoryRecord&gt;::from_reader::_{{closure}} (9 samples, 0.11%)</title><rect x="10.1556%" y="1173" width="0.1069%" height="15" fill="rgb(251,32,27)" fg:x="855" fg:w="9"/><text x="10.4056%" y="1183.50"></text></g><g><title>async_zip::spec::parse::_&lt;impl core::convert::From&lt;[u8 (5 samples, 0.06%)</title><rect x="10.2031%" y="1157" width="0.0594%" height="15" fill="rgb(208,127,28)" fg:x="859" fg:w="5"/><text x="10.4531%" y="1167.50"></text></g><g><title> 42]&gt; for async_zip::spec::header::CentralDirectoryRecord&gt;::from (5 samples, 0.06%)</title><rect x="10.2031%" y="1141" width="0.0594%" height="15" fill="rgb(224,137,22)" fg:x="859" fg:w="5"/><text x="10.4531%" y="1151.50"></text></g><g><title>core::array::_&lt;impl core::ops::index::Index&lt;I&gt; for [T (2 samples, 0.02%)</title><rect x="10.2387%" y="1125" width="0.0238%" height="15" fill="rgb(254,70,32)" fg:x="862" fg:w="2"/><text x="10.4887%" y="1135.50"></text></g><g><title> N]&gt;::index (2 samples, 0.02%)</title><rect x="10.2387%" y="1109" width="0.0238%" height="15" fill="rgb(229,75,37)" fg:x="862" fg:w="2"/><text x="10.4887%" y="1119.50"></text></g><g><title>async_zip::base::read::cd::CentralDirectoryReader&lt;R&gt;::next::_{{closure}} (40 samples, 0.48%)</title><rect x="9.7993%" y="1189" width="0.4751%" height="15" fill="rgb(252,64,23)" fg:x="825" fg:w="40"/><text x="10.0493%" y="1199.50"></text></g><g><title>async_zip::spec::parse::parse_extra_fields (1 samples, 0.01%)</title><rect x="10.2625%" y="1173" width="0.0119%" height="15" fill="rgb(232,162,48)" fg:x="864" fg:w="1"/><text x="10.5125%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="10.2625%" y="1157" width="0.0119%" height="15" fill="rgb(246,160,12)" fg:x="864" fg:w="1"/><text x="10.5125%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="10.2625%" y="1141" width="0.0119%" height="15" fill="rgb(247,166,0)" fg:x="864" fg:w="1"/><text x="10.5125%" y="1151.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="10.2625%" y="1125" width="0.0119%" height="15" fill="rgb(249,219,21)" fg:x="864" fg:w="1"/><text x="10.5125%" y="1135.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="10.2625%" y="1109" width="0.0119%" height="15" fill="rgb(205,209,3)" fg:x="864" fg:w="1"/><text x="10.5125%" y="1119.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="10.2625%" y="1093" width="0.0119%" height="15" fill="rgb(243,44,1)" fg:x="864" fg:w="1"/><text x="10.5125%" y="1103.50"></text></g><g><title>cache_bin_assert_earlier (1 samples, 0.01%)</title><rect x="10.2625%" y="1077" width="0.0119%" height="15" fill="rgb(206,159,16)" fg:x="864" fg:w="1"/><text x="10.5125%" y="1087.50"></text></g><g><title>async_zip::base::read::io::entry::ZipEntryReader&lt;R,E&gt;::compute_hash (1 samples, 0.01%)</title><rect x="10.2744%" y="1189" width="0.0119%" height="15" fill="rgb(244,77,30)" fg:x="865" fg:w="1"/><text x="10.5244%" y="1199.50"></text></g><g><title>async_zip::base::read::io::hashed::HashedReader&lt;R&gt;::swap_and_compute_hash (1 samples, 0.01%)</title><rect x="10.2744%" y="1173" width="0.0119%" height="15" fill="rgb(218,69,12)" fg:x="865" fg:w="1"/><text x="10.5244%" y="1183.50"></text></g><g><title>core::mem::take (1 samples, 0.01%)</title><rect x="10.2744%" y="1157" width="0.0119%" height="15" fill="rgb(212,87,7)" fg:x="865" fg:w="1"/><text x="10.5244%" y="1167.50"></text></g><g><title>&lt;crc32fast::Hasher as core::default::Default&gt;::default (1 samples, 0.01%)</title><rect x="10.2744%" y="1141" width="0.0119%" height="15" fill="rgb(245,114,25)" fg:x="865" fg:w="1"/><text x="10.5244%" y="1151.50"></text></g><g><title>crc32fast::Hasher::new (1 samples, 0.01%)</title><rect x="10.2744%" y="1125" width="0.0119%" height="15" fill="rgb(210,61,42)" fg:x="865" fg:w="1"/><text x="10.5244%" y="1135.50"></text></g><g><title>async_zip::base::read::stream::ZipFileReader&lt;async_zip::base::read::stream::Reading&lt;R,E&gt;&gt;::reader (1 samples, 0.01%)</title><rect x="10.2863%" y="1189" width="0.0119%" height="15" fill="rgb(211,52,33)" fg:x="866" fg:w="1"/><text x="10.5363%" y="1199.50"></text></g><g><title>async_zip::base::read::stream::ZipFileReader&lt;async_zip::base::read::stream::Reading&lt;R,E&gt;&gt;::reader_mut (1 samples, 0.01%)</title><rect x="10.2981%" y="1189" width="0.0119%" height="15" fill="rgb(234,58,33)" fg:x="867" fg:w="1"/><text x="10.5481%" y="1199.50"></text></g><g><title>async_compression::futures::bufread::generic::decoder::Decoder&lt;R,D&gt;::do_poll_read (3 samples, 0.04%)</title><rect x="10.3100%" y="1061" width="0.0356%" height="15" fill="rgb(220,115,36)" fg:x="868" fg:w="3"/><text x="10.5600%" y="1071.50"></text></g><g><title>async_compression::futures::bufread::generic::decoder::_::_&lt;impl async_compression::futures::bufread::generic::decoder::Decoder&lt;R,D&gt;&gt;::project (1 samples, 0.01%)</title><rect x="10.3338%" y="1045" width="0.0119%" height="15" fill="rgb(243,153,54)" fg:x="870" fg:w="1"/><text x="10.5838%" y="1055.50"></text></g><g><title>&lt;futures_lite::io::ReadFuture&lt;R&gt; as core::future::future::Future&gt;::poll (5 samples, 0.06%)</title><rect x="10.3100%" y="1173" width="0.0594%" height="15" fill="rgb(251,47,18)" fg:x="868" fg:w="5"/><text x="10.5600%" y="1183.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (5 samples, 0.06%)</title><rect x="10.3100%" y="1157" width="0.0594%" height="15" fill="rgb(242,102,42)" fg:x="868" fg:w="5"/><text x="10.5600%" y="1167.50"></text></g><g><title>&lt;async_zip::base::read::io::entry::ZipEntryReader&lt;R,E&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (5 samples, 0.06%)</title><rect x="10.3100%" y="1141" width="0.0594%" height="15" fill="rgb(234,31,38)" fg:x="868" fg:w="5"/><text x="10.5600%" y="1151.50"></text></g><g><title>&lt;async_zip::base::read::io::hashed::HashedReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (5 samples, 0.06%)</title><rect x="10.3100%" y="1125" width="0.0594%" height="15" fill="rgb(221,117,51)" fg:x="868" fg:w="5"/><text x="10.5600%" y="1135.50"></text></g><g><title>&lt;async_zip::base::read::io::compressed::CompressedReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (5 samples, 0.06%)</title><rect x="10.3100%" y="1109" width="0.0594%" height="15" fill="rgb(212,20,18)" fg:x="868" fg:w="5"/><text x="10.5600%" y="1119.50"></text></g><g><title>&lt;async_compression::futures::bufread::DeflateDecoder&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (5 samples, 0.06%)</title><rect x="10.3100%" y="1093" width="0.0594%" height="15" fill="rgb(245,133,36)" fg:x="868" fg:w="5"/><text x="10.5600%" y="1103.50"></text></g><g><title>&lt;async_compression::futures::bufread::generic::decoder::Decoder&lt;R,D&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (5 samples, 0.06%)</title><rect x="10.3100%" y="1077" width="0.0594%" height="15" fill="rgb(212,6,19)" fg:x="868" fg:w="5"/><text x="10.5600%" y="1087.50"></text></g><g><title>async_compression::util::PartialBuffer&lt;B&gt;::written (2 samples, 0.02%)</title><rect x="10.3456%" y="1061" width="0.0238%" height="15" fill="rgb(218,1,36)" fg:x="871" fg:w="2"/><text x="10.5956%" y="1071.50"></text></g><g><title>&lt;&amp;mut T as core::convert::AsRef&lt;U&gt;&gt;::as_ref (1 samples, 0.01%)</title><rect x="10.3575%" y="1045" width="0.0119%" height="15" fill="rgb(246,84,54)" fg:x="872" fg:w="1"/><text x="10.6075%" y="1055.50"></text></g><g><title>core::mem::replace (1 samples, 0.01%)</title><rect x="10.3932%" y="965" width="0.0119%" height="15" fill="rgb(242,110,6)" fg:x="875" fg:w="1"/><text x="10.6432%" y="975.50"></text></g><g><title>DYLD-STUB$$free (1 samples, 0.01%)</title><rect x="10.4169%" y="917" width="0.0119%" height="15" fill="rgb(214,47,5)" fg:x="877" fg:w="1"/><text x="10.6669%" y="927.50"></text></g><g><title>zlib_rs::allocate::Allocator::deallocate (3 samples, 0.04%)</title><rect x="10.4050%" y="965" width="0.0356%" height="15" fill="rgb(218,159,25)" fg:x="876" fg:w="3"/><text x="10.6550%" y="975.50"></text></g><g><title>zlib_rs::allocate::zfree_rust (2 samples, 0.02%)</title><rect x="10.4169%" y="949" width="0.0238%" height="15" fill="rgb(215,211,28)" fg:x="877" fg:w="2"/><text x="10.6669%" y="959.50"></text></g><g><title>std::sys::alloc::unix::_&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (2 samples, 0.02%)</title><rect x="10.4169%" y="933" width="0.0238%" height="15" fill="rgb(238,59,32)" fg:x="877" fg:w="2"/><text x="10.6669%" y="943.50"></text></g><g><title>_free (1 samples, 0.01%)</title><rect x="10.4288%" y="917" width="0.0119%" height="15" fill="rgb(226,82,3)" fg:x="878" fg:w="1"/><text x="10.6788%" y="927.50"></text></g><g><title>&lt;flate2::ffi::c::Stream&lt;D&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 0.06%)</title><rect x="10.3932%" y="1029" width="0.0594%" height="15" fill="rgb(240,164,32)" fg:x="875" fg:w="5"/><text x="10.6432%" y="1039.50"></text></g><g><title>&lt;flate2::ffi::c::DirDecompress as flate2::ffi::c::Direction&gt;::destroy (5 samples, 0.06%)</title><rect x="10.3932%" y="1013" width="0.0594%" height="15" fill="rgb(232,46,7)" fg:x="875" fg:w="5"/><text x="10.6432%" y="1023.50"></text></g><g><title>libz_rs_sys::inflateEnd (5 samples, 0.06%)</title><rect x="10.3932%" y="997" width="0.0594%" height="15" fill="rgb(229,129,53)" fg:x="875" fg:w="5"/><text x="10.6432%" y="1007.50"></text></g><g><title>zlib_rs::inflate::end (5 samples, 0.06%)</title><rect x="10.3932%" y="981" width="0.0594%" height="15" fill="rgb(234,188,29)" fg:x="875" fg:w="5"/><text x="10.6432%" y="991.50"></text></g><g><title>zlib_rs::inflate::InflateStream::as_z_stream_mut (1 samples, 0.01%)</title><rect x="10.4407%" y="965" width="0.0119%" height="15" fill="rgb(246,141,4)" fg:x="879" fg:w="1"/><text x="10.6907%" y="975.50"></text></g><g><title>async_zip::base::read::io::compressed::CompressedReader&lt;R&gt;::into_inner (8 samples, 0.10%)</title><rect x="10.3694%" y="1157" width="0.0950%" height="15" fill="rgb(229,23,39)" fg:x="873" fg:w="8"/><text x="10.6194%" y="1167.50"></text></g><g><title>async_compression::futures::bufread::DeflateDecoder&lt;R&gt;::into_inner (7 samples, 0.08%)</title><rect x="10.3813%" y="1141" width="0.0831%" height="15" fill="rgb(206,12,3)" fg:x="874" fg:w="7"/><text x="10.6313%" y="1151.50"></text></g><g><title>async_compression::futures::bufread::generic::decoder::Decoder&lt;R,D&gt;::into_inner (7 samples, 0.08%)</title><rect x="10.3813%" y="1125" width="0.0831%" height="15" fill="rgb(252,226,20)" fg:x="874" fg:w="7"/><text x="10.6313%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;async_compression::codec::deflate::decoder::DeflateDecoder&gt; (7 samples, 0.08%)</title><rect x="10.3813%" y="1109" width="0.0831%" height="15" fill="rgb(216,123,35)" fg:x="874" fg:w="7"/><text x="10.6313%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;async_compression::codec::flate::decoder::FlateDecoder&gt; (6 samples, 0.07%)</title><rect x="10.3932%" y="1093" width="0.0713%" height="15" fill="rgb(212,68,40)" fg:x="875" fg:w="6"/><text x="10.6432%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;flate2::mem::Decompress&gt; (6 samples, 0.07%)</title><rect x="10.3932%" y="1077" width="0.0713%" height="15" fill="rgb(254,125,32)" fg:x="875" fg:w="6"/><text x="10.6432%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;flate2::ffi::c::Inflate&gt; (6 samples, 0.07%)</title><rect x="10.3932%" y="1061" width="0.0713%" height="15" fill="rgb(253,97,22)" fg:x="875" fg:w="6"/><text x="10.6432%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;flate2::ffi::c::Stream&lt;flate2::ffi::c::DirDecompress&gt;&gt; (6 samples, 0.07%)</title><rect x="10.3932%" y="1045" width="0.0713%" height="15" fill="rgb(241,101,14)" fg:x="875" fg:w="6"/><text x="10.6432%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;flate2::ffi::c::StreamWrapper&gt; (1 samples, 0.01%)</title><rect x="10.4525%" y="1029" width="0.0119%" height="15" fill="rgb(238,103,29)" fg:x="880" fg:w="1"/><text x="10.7025%" y="1039.50"></text></g><g><title>&lt;flate2::ffi::c::StreamWrapper as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="10.4525%" y="1013" width="0.0119%" height="15" fill="rgb(233,195,47)" fg:x="880" fg:w="1"/><text x="10.7025%" y="1023.50"></text></g><g><title>core::mem::drop (1 samples, 0.01%)</title><rect x="10.4525%" y="997" width="0.0119%" height="15" fill="rgb(246,218,30)" fg:x="880" fg:w="1"/><text x="10.7025%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;zlib_rs::c_api::z_stream&gt;&gt; (1 samples, 0.01%)</title><rect x="10.4525%" y="981" width="0.0119%" height="15" fill="rgb(219,145,47)" fg:x="880" fg:w="1"/><text x="10.7025%" y="991.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="10.4525%" y="965" width="0.0119%" height="15" fill="rgb(243,12,26)" fg:x="880" fg:w="1"/><text x="10.7025%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (2 samples, 0.02%)</title><rect x="10.4763%" y="1093" width="0.0238%" height="15" fill="rgb(214,87,16)" fg:x="882" fg:w="2"/><text x="10.7263%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (2 samples, 0.02%)</title><rect x="10.4763%" y="1077" width="0.0238%" height="15" fill="rgb(208,99,42)" fg:x="882" fg:w="2"/><text x="10.7263%" y="1087.50"></text></g><g><title>__rustc::__rust_dealloc (2 samples, 0.02%)</title><rect x="10.4763%" y="1061" width="0.0238%" height="15" fill="rgb(253,99,2)" fg:x="882" fg:w="2"/><text x="10.7263%" y="1071.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (2 samples, 0.02%)</title><rect x="10.4763%" y="1045" width="0.0238%" height="15" fill="rgb(220,168,23)" fg:x="882" fg:w="2"/><text x="10.7263%" y="1055.50"></text></g><g><title>_rjem_sdallocx (2 samples, 0.02%)</title><rect x="10.4763%" y="1029" width="0.0238%" height="15" fill="rgb(242,38,24)" fg:x="882" fg:w="2"/><text x="10.7263%" y="1039.50"></text></g><g><title>async_zip::base::read::stream::ZipFileReader&lt;async_zip::base::read::stream::Reading&lt;R,E&gt;&gt;::skip::_{{closure}} (17 samples, 0.20%)</title><rect x="10.3100%" y="1189" width="0.2019%" height="15" fill="rgb(225,182,9)" fg:x="868" fg:w="17"/><text x="10.5600%" y="1199.50"></text></g><g><title>async_zip::base::read::io::entry::ZipEntryReader&lt;R,E&gt;::into_inner (12 samples, 0.14%)</title><rect x="10.3694%" y="1173" width="0.1425%" height="15" fill="rgb(243,178,37)" fg:x="873" fg:w="12"/><text x="10.6194%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;async_zip::base::read::io::entry::WithEntry&gt; (4 samples, 0.05%)</title><rect x="10.4644%" y="1157" width="0.0475%" height="15" fill="rgb(232,139,19)" fg:x="881" fg:w="4"/><text x="10.7144%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;async_zip::base::read::io::entry::OwnedEntry&gt; (3 samples, 0.04%)</title><rect x="10.4763%" y="1141" width="0.0356%" height="15" fill="rgb(225,201,24)" fg:x="882" fg:w="3"/><text x="10.7263%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;async_zip::entry::ZipEntry&gt; (3 samples, 0.04%)</title><rect x="10.4763%" y="1125" width="0.0356%" height="15" fill="rgb(221,47,46)" fg:x="882" fg:w="3"/><text x="10.7263%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;async_zip::string::ZipString&gt; (3 samples, 0.04%)</title><rect x="10.4763%" y="1109" width="0.0356%" height="15" fill="rgb(249,23,13)" fg:x="882" fg:w="3"/><text x="10.7263%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;alloc::vec::Vec&lt;u8&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="10.5001%" y="1093" width="0.0119%" height="15" fill="rgb(219,9,5)" fg:x="884" fg:w="1"/><text x="10.7501%" y="1103.50"></text></g><g><title>async_zip::base::read::io::entry::ZipEntryReader&lt;R,async_zip::base::read::io::entry::WithoutEntry&gt;::into_with_entry_owned (2 samples, 0.02%)</title><rect x="10.5119%" y="1173" width="0.0238%" height="15" fill="rgb(254,171,16)" fg:x="885" fg:w="2"/><text x="10.7619%" y="1183.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="10.5238%" y="1157" width="0.0119%" height="15" fill="rgb(230,171,20)" fg:x="886" fg:w="1"/><text x="10.7738%" y="1167.50"></text></g><g><title>&lt;flate2::ffi::c::StreamWrapper as core::default::Default&gt;::default (3 samples, 0.04%)</title><rect x="10.5357%" y="1061" width="0.0356%" height="15" fill="rgb(210,71,41)" fg:x="887" fg:w="3"/><text x="10.7857%" y="1071.50"></text></g><g><title>alloc::alloc::exchange_malloc (3 samples, 0.04%)</title><rect x="10.5357%" y="1045" width="0.0356%" height="15" fill="rgb(206,173,20)" fg:x="887" fg:w="3"/><text x="10.7857%" y="1055.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.02%)</title><rect x="10.5476%" y="1029" width="0.0238%" height="15" fill="rgb(233,88,34)" fg:x="888" fg:w="2"/><text x="10.7976%" y="1039.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.02%)</title><rect x="10.5476%" y="1013" width="0.0238%" height="15" fill="rgb(223,209,46)" fg:x="888" fg:w="2"/><text x="10.7976%" y="1023.50"></text></g><g><title>__rustc::__rust_alloc (2 samples, 0.02%)</title><rect x="10.5476%" y="997" width="0.0238%" height="15" fill="rgb(250,43,18)" fg:x="888" fg:w="2"/><text x="10.7976%" y="1007.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (2 samples, 0.02%)</title><rect x="10.5476%" y="981" width="0.0238%" height="15" fill="rgb(208,13,10)" fg:x="888" fg:w="2"/><text x="10.7976%" y="991.50"></text></g><g><title>_rjem_malloc (2 samples, 0.02%)</title><rect x="10.5476%" y="965" width="0.0238%" height="15" fill="rgb(212,200,36)" fg:x="888" fg:w="2"/><text x="10.7976%" y="975.50"></text></g><g><title>DYLD-STUB$$pthread_getspecific (1 samples, 0.01%)</title><rect x="10.5594%" y="949" width="0.0119%" height="15" fill="rgb(225,90,30)" fg:x="889" fg:w="1"/><text x="10.8094%" y="959.50"></text></g><g><title>_platform_memmove (9 samples, 0.11%)</title><rect x="10.5951%" y="997" width="0.1069%" height="15" fill="rgb(236,182,39)" fg:x="892" fg:w="9"/><text x="10.8451%" y="1007.50"></text></g><g><title>zlib_rs::allocate::Allocator::allocate_raw (1 samples, 0.01%)</title><rect x="10.7020%" y="997" width="0.0119%" height="15" fill="rgb(212,144,35)" fg:x="901" fg:w="1"/><text x="10.9520%" y="1007.50"></text></g><g><title>zlib_rs::allocate::Allocator::allocate_layout (1 samples, 0.01%)</title><rect x="10.7020%" y="981" width="0.0119%" height="15" fill="rgb(228,63,44)" fg:x="901" fg:w="1"/><text x="10.9520%" y="991.50"></text></g><g><title>zlib_rs::allocate::zalloc_rust (1 samples, 0.01%)</title><rect x="10.7020%" y="965" width="0.0119%" height="15" fill="rgb(228,109,6)" fg:x="901" fg:w="1"/><text x="10.9520%" y="975.50"></text></g><g><title>std::sys::alloc::unix::_&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.01%)</title><rect x="10.7020%" y="949" width="0.0119%" height="15" fill="rgb(238,117,24)" fg:x="901" fg:w="1"/><text x="10.9520%" y="959.50"></text></g><g><title>std::sys::alloc::unix::aligned_malloc (1 samples, 0.01%)</title><rect x="10.7020%" y="933" width="0.0119%" height="15" fill="rgb(242,26,26)" fg:x="901" fg:w="1"/><text x="10.9520%" y="943.50"></text></g><g><title>_posix_memalign (1 samples, 0.01%)</title><rect x="10.7020%" y="917" width="0.0119%" height="15" fill="rgb(221,92,48)" fg:x="901" fg:w="1"/><text x="10.9520%" y="927.50"></text></g><g><title>_malloc_zone_memalign (1 samples, 0.01%)</title><rect x="10.7020%" y="901" width="0.0119%" height="15" fill="rgb(209,209,32)" fg:x="901" fg:w="1"/><text x="10.9520%" y="911.50"></text></g><g><title>szone_malloc_should_clear (1 samples, 0.01%)</title><rect x="10.7020%" y="885" width="0.0119%" height="15" fill="rgb(221,70,22)" fg:x="901" fg:w="1"/><text x="10.9520%" y="895.50"></text></g><g><title>small_malloc_should_clear (1 samples, 0.01%)</title><rect x="10.7020%" y="869" width="0.0119%" height="15" fill="rgb(248,145,5)" fg:x="901" fg:w="1"/><text x="10.9520%" y="879.50"></text></g><g><title>DYLD-STUB$$bzero (1 samples, 0.01%)</title><rect x="12.2817%" y="981" width="0.0119%" height="15" fill="rgb(226,116,26)" fg:x="1034" fg:w="1"/><text x="12.5317%" y="991.50"></text></g><g><title>zlib_rs::inflate::State::new (142 samples, 1.69%)</title><rect x="10.7139%" y="997" width="1.6867%" height="15" fill="rgb(244,5,17)" fg:x="902" fg:w="142"/><text x="10.9639%" y="1007.50"></text></g><g><title>_platform_memmove (9 samples, 0.11%)</title><rect x="12.2936%" y="981" width="0.1069%" height="15" fill="rgb(252,159,33)" fg:x="1035" fg:w="9"/><text x="12.5436%" y="991.50"></text></g><g><title>zlib_rs::inflate::reset_keep (1 samples, 0.01%)</title><rect x="12.4005%" y="965" width="0.0119%" height="15" fill="rgb(206,71,0)" fg:x="1044" fg:w="1"/><text x="12.6505%" y="975.50"></text></g><g><title>async_zip::base::read::io::compressed::CompressedReader&lt;R&gt;::new (159 samples, 1.89%)</title><rect x="10.5357%" y="1157" width="1.8886%" height="15" fill="rgb(233,118,54)" fg:x="887" fg:w="159"/><text x="10.7857%" y="1167.50">a..</text></g><g><title>async_compression::futures::bufread::DeflateDecoder&lt;R&gt;::new (159 samples, 1.89%)</title><rect x="10.5357%" y="1141" width="1.8886%" height="15" fill="rgb(234,83,48)" fg:x="887" fg:w="159"/><text x="10.7857%" y="1151.50">a..</text></g><g><title>async_compression::codec::deflate::decoder::DeflateDecoder::new (159 samples, 1.89%)</title><rect x="10.5357%" y="1125" width="1.8886%" height="15" fill="rgb(228,3,54)" fg:x="887" fg:w="159"/><text x="10.7857%" y="1135.50">a..</text></g><g><title>async_compression::codec::flate::decoder::FlateDecoder::new (159 samples, 1.89%)</title><rect x="10.5357%" y="1109" width="1.8886%" height="15" fill="rgb(226,155,13)" fg:x="887" fg:w="159"/><text x="10.7857%" y="1119.50">a..</text></g><g><title>flate2::mem::Decompress::new (159 samples, 1.89%)</title><rect x="10.5357%" y="1093" width="1.8886%" height="15" fill="rgb(241,28,37)" fg:x="887" fg:w="159"/><text x="10.7857%" y="1103.50">f..</text></g><g><title>&lt;flate2::ffi::c::Inflate as flate2::ffi::InflateBackend&gt;::make (159 samples, 1.89%)</title><rect x="10.5357%" y="1077" width="1.8886%" height="15" fill="rgb(233,93,10)" fg:x="887" fg:w="159"/><text x="10.7857%" y="1087.50">&lt;..</text></g><g><title>flate2::ffi::c::c_backend::mz_inflateInit2 (156 samples, 1.85%)</title><rect x="10.5713%" y="1061" width="1.8530%" height="15" fill="rgb(225,113,19)" fg:x="890" fg:w="156"/><text x="10.8213%" y="1071.50">f..</text></g><g><title>libz_rs_sys::inflateInit2_ (155 samples, 1.84%)</title><rect x="10.5832%" y="1045" width="1.8411%" height="15" fill="rgb(241,2,18)" fg:x="891" fg:w="155"/><text x="10.8332%" y="1055.50">l..</text></g><g><title>libz_rs_sys::inflateInit2 (155 samples, 1.84%)</title><rect x="10.5832%" y="1029" width="1.8411%" height="15" fill="rgb(228,207,21)" fg:x="891" fg:w="155"/><text x="10.8332%" y="1039.50">l..</text></g><g><title>zlib_rs::inflate::init (155 samples, 1.84%)</title><rect x="10.5832%" y="1013" width="1.8411%" height="15" fill="rgb(213,211,35)" fg:x="891" fg:w="155"/><text x="10.8332%" y="1023.50">z..</text></g><g><title>zlib_rs::inflate::reset_with_config (2 samples, 0.02%)</title><rect x="12.4005%" y="997" width="0.0238%" height="15" fill="rgb(209,83,10)" fg:x="1044" fg:w="2"/><text x="12.6505%" y="1007.50"></text></g><g><title>zlib_rs::inflate::reset (2 samples, 0.02%)</title><rect x="12.4005%" y="981" width="0.0238%" height="15" fill="rgb(209,164,1)" fg:x="1044" fg:w="2"/><text x="12.6505%" y="991.50"></text></g><g><title>zlib_rs::inflate::window::Window::clear (1 samples, 0.01%)</title><rect x="12.4124%" y="965" width="0.0119%" height="15" fill="rgb(213,184,43)" fg:x="1045" fg:w="1"/><text x="12.6624%" y="975.50"></text></g><g><title>async_zip::base::read::io::entry::ZipEntryReader&lt;R,async_zip::base::read::io::entry::WithoutEntry&gt;::new_with_owned (160 samples, 1.90%)</title><rect x="10.5357%" y="1173" width="1.9005%" height="15" fill="rgb(231,61,34)" fg:x="887" fg:w="160"/><text x="10.7857%" y="1183.50">a..</text></g><g><title>async_zip::base::read::io::hashed::HashedReader&lt;R&gt;::new (1 samples, 0.01%)</title><rect x="12.4243%" y="1157" width="0.0119%" height="15" fill="rgb(235,75,3)" fg:x="1046" fg:w="1"/><text x="12.6743%" y="1167.50"></text></g><g><title>&lt;crc32fast::Hasher as core::default::Default&gt;::default (1 samples, 0.01%)</title><rect x="12.4243%" y="1141" width="0.0119%" height="15" fill="rgb(220,106,47)" fg:x="1046" fg:w="1"/><text x="12.6743%" y="1151.50"></text></g><g><title>crc32fast::Hasher::new (1 samples, 0.01%)</title><rect x="12.4243%" y="1125" width="0.0119%" height="15" fill="rgb(210,196,33)" fg:x="1046" fg:w="1"/><text x="12.6743%" y="1135.50"></text></g><g><title>crc32fast::Hasher::new_with_initial (1 samples, 0.01%)</title><rect x="12.4243%" y="1109" width="0.0119%" height="15" fill="rgb(229,154,42)" fg:x="1046" fg:w="1"/><text x="12.6743%" y="1119.50"></text></g><g><title>crc32fast::Hasher::new_with_initial_len (1 samples, 0.01%)</title><rect x="12.4243%" y="1093" width="0.0119%" height="15" fill="rgb(228,114,26)" fg:x="1046" fg:w="1"/><text x="12.6743%" y="1103.50"></text></g><g><title>core::option::Option&lt;T&gt;::unwrap_or_else (1 samples, 0.01%)</title><rect x="12.4243%" y="1077" width="0.0119%" height="15" fill="rgb(208,144,1)" fg:x="1046" fg:w="1"/><text x="12.6743%" y="1087.50"></text></g><g><title>crc32fast::Hasher::new_with_initial_len::_{{closure}} (1 samples, 0.01%)</title><rect x="12.4243%" y="1061" width="0.0119%" height="15" fill="rgb(239,112,37)" fg:x="1046" fg:w="1"/><text x="12.6743%" y="1071.50"></text></g><g><title>crc32fast::Hasher::internal_new_baseline (1 samples, 0.01%)</title><rect x="12.4243%" y="1045" width="0.0119%" height="15" fill="rgb(210,96,50)" fg:x="1046" fg:w="1"/><text x="12.6743%" y="1055.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (3 samples, 0.04%)</title><rect x="12.4362%" y="1157" width="0.0356%" height="15" fill="rgb(222,178,2)" fg:x="1047" fg:w="3"/><text x="12.6862%" y="1167.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::poll_fill_buf (1 samples, 0.01%)</title><rect x="12.4837%" y="1077" width="0.0119%" height="15" fill="rgb(226,74,18)" fg:x="1051" fg:w="1"/><text x="12.7337%" y="1087.50"></text></g><g><title>&lt;tokio_util::compat::Compat&lt;T&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.4837%" y="1061" width="0.0119%" height="15" fill="rgb(225,67,54)" fg:x="1051" fg:w="1"/><text x="12.7337%" y="1071.50"></text></g><g><title>tokio::io::read_buf::ReadBuf::new (1 samples, 0.01%)</title><rect x="12.4837%" y="1045" width="0.0119%" height="15" fill="rgb(251,92,32)" fg:x="1051" fg:w="1"/><text x="12.7337%" y="1055.50"></text></g><g><title>tokio::io::read_buf::slice_to_uninit_mut (1 samples, 0.01%)</title><rect x="12.4837%" y="1029" width="0.0119%" height="15" fill="rgb(228,149,22)" fg:x="1051" fg:w="1"/><text x="12.7337%" y="1039.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="12.4718%" y="1141" width="0.0356%" height="15" fill="rgb(243,54,13)" fg:x="1050" fg:w="3"/><text x="12.7218%" y="1151.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="12.4718%" y="1125" width="0.0356%" height="15" fill="rgb(243,180,28)" fg:x="1050" fg:w="3"/><text x="12.7218%" y="1135.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="12.4718%" y="1109" width="0.0356%" height="15" fill="rgb(208,167,24)" fg:x="1050" fg:w="3"/><text x="12.7218%" y="1119.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (3 samples, 0.04%)</title><rect x="12.4718%" y="1093" width="0.0356%" height="15" fill="rgb(245,73,45)" fg:x="1050" fg:w="3"/><text x="12.7218%" y="1103.50"></text></g><g><title>core::cmp::min (1 samples, 0.01%)</title><rect x="12.4955%" y="1077" width="0.0119%" height="15" fill="rgb(237,203,48)" fg:x="1052" fg:w="1"/><text x="12.7455%" y="1087.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="12.4955%" y="1061" width="0.0119%" height="15" fill="rgb(211,197,16)" fg:x="1052" fg:w="1"/><text x="12.7455%" y="1071.50"></text></g><g><title>&lt;futures_lite::io::ReadExactFuture&lt;R&gt; as core::future::future::Future&gt;::poll (4 samples, 0.05%)</title><rect x="12.4718%" y="1157" width="0.0475%" height="15" fill="rgb(243,99,51)" fg:x="1050" fg:w="4"/><text x="12.7218%" y="1167.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_mut (1 samples, 0.01%)</title><rect x="12.5074%" y="1141" width="0.0119%" height="15" fill="rgb(215,123,29)" fg:x="1053" fg:w="1"/><text x="12.7574%" y="1151.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_mut_unchecked (1 samples, 0.01%)</title><rect x="12.5074%" y="1125" width="0.0119%" height="15" fill="rgb(239,186,37)" fg:x="1053" fg:w="1"/><text x="12.7574%" y="1135.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut::precondition_check (1 samples, 0.01%)</title><rect x="12.5074%" y="1109" width="0.0119%" height="15" fill="rgb(252,136,39)" fg:x="1053" fg:w="1"/><text x="12.7574%" y="1119.50"></text></g><g><title>async_zip::base::read::detect_filename (3 samples, 0.04%)</title><rect x="12.5193%" y="1157" width="0.0356%" height="15" fill="rgb(223,213,32)" fg:x="1054" fg:w="3"/><text x="12.7693%" y="1167.50"></text></g><g><title>core::slice::ascii::_&lt;impl [u8]&gt;::is_ascii (3 samples, 0.04%)</title><rect x="12.5193%" y="1141" width="0.0356%" height="15" fill="rgb(233,115,5)" fg:x="1054" fg:w="3"/><text x="12.7693%" y="1151.50"></text></g><g><title>core::slice::ascii::is_ascii::runtime (3 samples, 0.04%)</title><rect x="12.5193%" y="1125" width="0.0356%" height="15" fill="rgb(207,226,44)" fg:x="1054" fg:w="3"/><text x="12.7693%" y="1135.50"></text></g><g><title>core::ptr::read_unaligned (2 samples, 0.02%)</title><rect x="12.5312%" y="1109" width="0.0238%" height="15" fill="rgb(208,126,0)" fg:x="1055" fg:w="2"/><text x="12.7812%" y="1119.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (2 samples, 0.02%)</title><rect x="12.5312%" y="1093" width="0.0238%" height="15" fill="rgb(244,66,21)" fg:x="1055" fg:w="2"/><text x="12.7812%" y="1103.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (1 samples, 0.01%)</title><rect x="12.5431%" y="1077" width="0.0119%" height="15" fill="rgb(222,97,12)" fg:x="1056" fg:w="1"/><text x="12.7931%" y="1087.50"></text></g><g><title>async_zip::base::read::get_zip64_extra_field (1 samples, 0.01%)</title><rect x="12.5549%" y="1157" width="0.0119%" height="15" fill="rgb(219,213,19)" fg:x="1057" fg:w="1"/><text x="12.8049%" y="1167.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="12.5549%" y="1141" width="0.0119%" height="15" fill="rgb(252,169,30)" fg:x="1057" fg:w="1"/><text x="12.8049%" y="1151.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::consume (2 samples, 0.02%)</title><rect x="12.5787%" y="997" width="0.0238%" height="15" fill="rgb(206,32,51)" fg:x="1059" fg:w="2"/><text x="12.8287%" y="1007.50"></text></g><g><title>core::cmp::min (2 samples, 0.02%)</title><rect x="12.5787%" y="981" width="0.0238%" height="15" fill="rgb(250,172,42)" fg:x="1059" fg:w="2"/><text x="12.8287%" y="991.50"></text></g><g><title>core::cmp::Ord::min (2 samples, 0.02%)</title><rect x="12.5787%" y="965" width="0.0238%" height="15" fill="rgb(209,34,43)" fg:x="1059" fg:w="2"/><text x="12.8287%" y="975.50"></text></g><g><title>&lt;futures_lite::io::Take&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (5 samples, 0.06%)</title><rect x="12.5668%" y="1093" width="0.0594%" height="15" fill="rgb(223,11,35)" fg:x="1058" fg:w="5"/><text x="12.8168%" y="1103.50"></text></g><g><title>futures_lite::io::take_read_internal (5 samples, 0.06%)</title><rect x="12.5668%" y="1077" width="0.0594%" height="15" fill="rgb(251,219,26)" fg:x="1058" fg:w="5"/><text x="12.8168%" y="1087.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="12.5787%" y="1061" width="0.0475%" height="15" fill="rgb(231,119,3)" fg:x="1059" fg:w="4"/><text x="12.8287%" y="1071.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="12.5787%" y="1045" width="0.0475%" height="15" fill="rgb(216,97,11)" fg:x="1059" fg:w="4"/><text x="12.8287%" y="1055.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="12.5787%" y="1029" width="0.0475%" height="15" fill="rgb(223,59,9)" fg:x="1059" fg:w="4"/><text x="12.8287%" y="1039.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="12.5787%" y="1013" width="0.0475%" height="15" fill="rgb(233,93,31)" fg:x="1059" fg:w="4"/><text x="12.8287%" y="1023.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::poll_fill_buf (2 samples, 0.02%)</title><rect x="12.6024%" y="997" width="0.0238%" height="15" fill="rgb(239,81,33)" fg:x="1061" fg:w="2"/><text x="12.8524%" y="1007.50"></text></g><g><title>&lt;tokio_util::compat::Compat&lt;T&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.6143%" y="981" width="0.0119%" height="15" fill="rgb(213,120,34)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="991.50"></text></g><g><title>&lt;&amp;mut T as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.6143%" y="965" width="0.0119%" height="15" fill="rgb(243,49,53)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="975.50"></text></g><g><title>&lt;uv_distribution::distribution_database::ProgressReader&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.6143%" y="949" width="0.0119%" height="15" fill="rgb(247,216,33)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="959.50"></text></g><g><title>core::task::poll::Poll&lt;core::result::Result&lt;T,E&gt;&gt;::map_ok (1 samples, 0.01%)</title><rect x="12.6143%" y="933" width="0.0119%" height="15" fill="rgb(226,26,14)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="943.50"></text></g><g><title>&lt;uv_distribution::distribution_database::ProgressReader&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read::_{{closure}} (1 samples, 0.01%)</title><rect x="12.6143%" y="917" width="0.0119%" height="15" fill="rgb(215,49,53)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="927.50"></text></g><g><title>&lt;uv_installer::preparer::Facade as uv_distribution::reporter::Reporter&gt;::on_download_progress (1 samples, 0.01%)</title><rect x="12.6143%" y="901" width="0.0119%" height="15" fill="rgb(245,162,40)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="911.50"></text></g><g><title>&lt;uv::commands::reporters::PrepareReporter as uv_installer::preparer::Reporter&gt;::on_download_progress (1 samples, 0.01%)</title><rect x="12.6143%" y="885" width="0.0119%" height="15" fill="rgb(229,68,17)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="895.50"></text></g><g><title>uv::commands::reporters::ProgressReporter::on_download_progress (1 samples, 0.01%)</title><rect x="12.6143%" y="869" width="0.0119%" height="15" fill="rgb(213,182,10)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="879.50"></text></g><g><title>uv::commands::reporters::ProgressReporter::on_request_progress (1 samples, 0.01%)</title><rect x="12.6143%" y="853" width="0.0119%" height="15" fill="rgb(245,125,30)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::ops::index::Index&lt;&amp;Q&gt;&gt;::index (1 samples, 0.01%)</title><rect x="12.6143%" y="837" width="0.0119%" height="15" fill="rgb(232,202,2)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="847.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_inner (1 samples, 0.01%)</title><rect x="12.6143%" y="821" width="0.0119%" height="15" fill="rgb(237,140,51)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="831.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (1 samples, 0.01%)</title><rect x="12.6143%" y="805" width="0.0119%" height="15" fill="rgb(236,157,25)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="815.50"></text></g><g><title>core::core_arch::aarch64::neon::generated::vld1_u8 (1 samples, 0.01%)</title><rect x="12.6143%" y="789" width="0.0119%" height="15" fill="rgb(219,209,0)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="799.50"></text></g><g><title>core::ptr::read_unaligned (1 samples, 0.01%)</title><rect x="12.6143%" y="773" width="0.0119%" height="15" fill="rgb(240,116,54)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="783.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="12.6143%" y="757" width="0.0119%" height="15" fill="rgb(216,10,36)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="767.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (1 samples, 0.01%)</title><rect x="12.6143%" y="741" width="0.0119%" height="15" fill="rgb(222,72,44)" fg:x="1062" fg:w="1"/><text x="12.8643%" y="751.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (6 samples, 0.07%)</title><rect x="12.5668%" y="1109" width="0.0713%" height="15" fill="rgb(232,159,9)" fg:x="1058" fg:w="6"/><text x="12.8168%" y="1119.50"></text></g><g><title>core::pin::Pin&lt;Ptr&gt;::as_mut (1 samples, 0.01%)</title><rect x="12.6262%" y="1093" width="0.0119%" height="15" fill="rgb(210,39,32)" fg:x="1063" fg:w="1"/><text x="12.8762%" y="1103.50"></text></g><g><title>&lt;&amp;mut T as core::ops::deref::DerefMut&gt;::deref_mut (1 samples, 0.01%)</title><rect x="12.6262%" y="1077" width="0.0119%" height="15" fill="rgb(216,194,45)" fg:x="1063" fg:w="1"/><text x="12.8762%" y="1087.50"></text></g><g><title>_rjem_je_arena_ralloc_no_move (2 samples, 0.02%)</title><rect x="12.6856%" y="933" width="0.0238%" height="15" fill="rgb(218,18,35)" fg:x="1068" fg:w="2"/><text x="12.9356%" y="943.50"></text></g><g><title>rtree_read (2 samples, 0.02%)</title><rect x="12.6856%" y="917" width="0.0238%" height="15" fill="rgb(207,83,51)" fg:x="1068" fg:w="2"/><text x="12.9356%" y="927.50"></text></g><g><title>_rjem_je_hook_invoke_dalloc (1 samples, 0.01%)</title><rect x="12.7093%" y="933" width="0.0119%" height="15" fill="rgb(225,63,43)" fg:x="1070" fg:w="1"/><text x="12.9593%" y="943.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (7 samples, 0.08%)</title><rect x="12.6500%" y="997" width="0.0831%" height="15" fill="rgb(207,57,36)" fg:x="1065" fg:w="7"/><text x="12.9000%" y="1007.50"></text></g><g><title>_rjem_realloc (7 samples, 0.08%)</title><rect x="12.6500%" y="981" width="0.0831%" height="15" fill="rgb(216,99,33)" fg:x="1065" fg:w="7"/><text x="12.9000%" y="991.50"></text></g><g><title>do_rallocx (7 samples, 0.08%)</title><rect x="12.6500%" y="965" width="0.0831%" height="15" fill="rgb(225,42,16)" fg:x="1065" fg:w="7"/><text x="12.9000%" y="975.50"></text></g><g><title>_rjem_je_arena_ralloc (4 samples, 0.05%)</title><rect x="12.6856%" y="949" width="0.0475%" height="15" fill="rgb(220,201,45)" fg:x="1068" fg:w="4"/><text x="12.9356%" y="959.50"></text></g><g><title>arena_ralloc_move_helper (1 samples, 0.01%)</title><rect x="12.7212%" y="933" width="0.0119%" height="15" fill="rgb(225,33,4)" fg:x="1071" fg:w="1"/><text x="12.9712%" y="943.50"></text></g><g><title>alloc::raw_vec::finish_grow (9 samples, 0.11%)</title><rect x="12.6381%" y="1061" width="0.1069%" height="15" fill="rgb(224,33,50)" fg:x="1064" fg:w="9"/><text x="12.8881%" y="1071.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (9 samples, 0.11%)</title><rect x="12.6381%" y="1045" width="0.1069%" height="15" fill="rgb(246,198,51)" fg:x="1064" fg:w="9"/><text x="12.8881%" y="1055.50"></text></g><g><title>alloc::alloc::Global::grow_impl (9 samples, 0.11%)</title><rect x="12.6381%" y="1029" width="0.1069%" height="15" fill="rgb(205,22,4)" fg:x="1064" fg:w="9"/><text x="12.8881%" y="1039.50"></text></g><g><title>__rustc::__rust_realloc (8 samples, 0.10%)</title><rect x="12.6500%" y="1013" width="0.0950%" height="15" fill="rgb(206,3,8)" fg:x="1065" fg:w="8"/><text x="12.9000%" y="1023.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked (1 samples, 0.01%)</title><rect x="12.7331%" y="997" width="0.0119%" height="15" fill="rgb(251,23,15)" fg:x="1072" fg:w="1"/><text x="12.9831%" y="1007.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="12.7331%" y="981" width="0.0119%" height="15" fill="rgb(252,88,28)" fg:x="1072" fg:w="1"/><text x="12.9831%" y="991.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (10 samples, 0.12%)</title><rect x="12.6381%" y="1109" width="0.1188%" height="15" fill="rgb(212,127,14)" fg:x="1064" fg:w="10"/><text x="12.8881%" y="1119.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (10 samples, 0.12%)</title><rect x="12.6381%" y="1093" width="0.1188%" height="15" fill="rgb(247,145,37)" fg:x="1064" fg:w="10"/><text x="12.8881%" y="1103.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (10 samples, 0.12%)</title><rect x="12.6381%" y="1077" width="0.1188%" height="15" fill="rgb(209,117,53)" fg:x="1064" fg:w="10"/><text x="12.8881%" y="1087.50"></text></g><g><title>core::alloc::layout::Layout::repeat (1 samples, 0.01%)</title><rect x="12.7450%" y="1061" width="0.0119%" height="15" fill="rgb(212,90,42)" fg:x="1073" fg:w="1"/><text x="12.9950%" y="1071.50"></text></g><g><title>core::alloc::layout::Layout::repeat_packed (1 samples, 0.01%)</title><rect x="12.7450%" y="1045" width="0.0119%" height="15" fill="rgb(218,164,37)" fg:x="1073" fg:w="1"/><text x="12.9950%" y="1055.50"></text></g><g><title>&lt;futures_lite::io::ReadToEndFuture&lt;R&gt; as core::future::future::Future&gt;::poll (24 samples, 0.29%)</title><rect x="12.5668%" y="1141" width="0.2851%" height="15" fill="rgb(246,65,34)" fg:x="1058" fg:w="24"/><text x="12.8168%" y="1151.50"></text></g><g><title>futures_lite::io::read_to_end_internal (24 samples, 0.29%)</title><rect x="12.5668%" y="1125" width="0.2851%" height="15" fill="rgb(231,100,33)" fg:x="1058" fg:w="24"/><text x="12.8168%" y="1135.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::resize (8 samples, 0.10%)</title><rect x="12.7569%" y="1109" width="0.0950%" height="15" fill="rgb(228,126,14)" fg:x="1074" fg:w="8"/><text x="13.0069%" y="1119.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_with (8 samples, 0.10%)</title><rect x="12.7569%" y="1093" width="0.0950%" height="15" fill="rgb(215,173,21)" fg:x="1074" fg:w="8"/><text x="13.0069%" y="1103.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::unchecked_add::precondition_check (4 samples, 0.05%)</title><rect x="12.8044%" y="1077" width="0.0475%" height="15" fill="rgb(210,6,40)" fg:x="1078" fg:w="4"/><text x="13.0544%" y="1087.50"></text></g><g><title>async_zip::base::read::io::read_bytes::_{{closure}} (25 samples, 0.30%)</title><rect x="12.5668%" y="1157" width="0.2969%" height="15" fill="rgb(212,48,18)" fg:x="1058" fg:w="25"/><text x="12.8168%" y="1167.50"></text></g><g><title>futures_lite::io::AsyncReadExt::take (1 samples, 0.01%)</title><rect x="12.8519%" y="1141" width="0.0119%" height="15" fill="rgb(230,214,11)" fg:x="1082" fg:w="1"/><text x="13.1019%" y="1151.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (2 samples, 0.02%)</title><rect x="12.8756%" y="1061" width="0.0238%" height="15" fill="rgb(254,105,39)" fg:x="1084" fg:w="2"/><text x="13.1256%" y="1071.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::poll_fill_buf (1 samples, 0.01%)</title><rect x="12.8994%" y="1061" width="0.0119%" height="15" fill="rgb(245,158,5)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="1071.50"></text></g><g><title>&lt;tokio_util::compat::Compat&lt;T&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.8994%" y="1045" width="0.0119%" height="15" fill="rgb(249,208,11)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="1055.50"></text></g><g><title>&lt;&amp;mut T as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.8994%" y="1029" width="0.0119%" height="15" fill="rgb(210,39,28)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="1039.50"></text></g><g><title>&lt;uv_distribution::distribution_database::ProgressReader&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.8994%" y="1013" width="0.0119%" height="15" fill="rgb(211,56,53)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="1023.50"></text></g><g><title>&lt;&amp;mut T as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.8994%" y="997" width="0.0119%" height="15" fill="rgb(226,201,30)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="1007.50"></text></g><g><title>&lt;uv_extract::hash::HashReader&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.8994%" y="981" width="0.0119%" height="15" fill="rgb(239,101,34)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="991.50"></text></g><g><title>&lt;tokio_util::compat::Compat&lt;T&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.8994%" y="965" width="0.0119%" height="15" fill="rgb(226,209,5)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="975.50"></text></g><g><title>&lt;futures_util::stream::try_stream::into_async_read::IntoAsyncRead&lt;St&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="12.8994%" y="949" width="0.0119%" height="15" fill="rgb(250,105,47)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="959.50"></text></g><g><title>&lt;S as futures_core::stream::TryStream&gt;::try_poll_next (1 samples, 0.01%)</title><rect x="12.8994%" y="933" width="0.0119%" height="15" fill="rgb(230,72,3)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="943.50"></text></g><g><title>&lt;futures_util::stream::try_stream::MapErr&lt;St,F&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="12.8994%" y="917" width="0.0119%" height="15" fill="rgb(232,218,39)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="927.50"></text></g><g><title>&lt;futures_util::stream::stream::map::Map&lt;St,F&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="12.8994%" y="901" width="0.0119%" height="15" fill="rgb(248,166,6)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="911.50"></text></g><g><title>&lt;futures_util::stream::try_stream::into_stream::IntoStream&lt;St&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="12.8994%" y="885" width="0.0119%" height="15" fill="rgb(247,89,20)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="895.50"></text></g><g><title>&lt;S as futures_core::stream::TryStream&gt;::try_poll_next (1 samples, 0.01%)</title><rect x="12.8994%" y="869" width="0.0119%" height="15" fill="rgb(248,130,54)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="879.50"></text></g><g><title>&lt;reqwest::async_impl::body::DataStream&lt;B&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="12.8994%" y="853" width="0.0119%" height="15" fill="rgb(234,196,4)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="863.50"></text></g><g><title>&lt;reqwest::async_impl::decoder::Decoder as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="12.8994%" y="837" width="0.0119%" height="15" fill="rgb(250,143,31)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="847.50"></text></g><g><title>&lt;http_body_util::combinators::box_body::BoxBody&lt;D,E&gt; as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="12.8994%" y="821" width="0.0119%" height="15" fill="rgb(211,110,34)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="831.50"></text></g><g><title>&lt;http_body_util::combinators::map_err::MapErr&lt;B,F&gt; as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="12.8994%" y="805" width="0.0119%" height="15" fill="rgb(215,124,48)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="815.50"></text></g><g><title>&lt;reqwest::async_impl::body::ReadTimeoutBody&lt;B&gt; as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="12.8994%" y="789" width="0.0119%" height="15" fill="rgb(216,46,13)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;tokio::time::sleep::Sleep&gt;&gt; (1 samples, 0.01%)</title><rect x="12.8994%" y="773" width="0.0119%" height="15" fill="rgb(205,184,25)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::time::sleep::Sleep&gt; (1 samples, 0.01%)</title><rect x="12.8994%" y="757" width="0.0119%" height="15" fill="rgb(228,1,10)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::time::entry::TimerEntry&gt; (1 samples, 0.01%)</title><rect x="12.8994%" y="741" width="0.0119%" height="15" fill="rgb(213,116,27)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="751.50"></text></g><g><title>&lt;tokio::runtime::time::entry::TimerEntry as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="12.8994%" y="725" width="0.0119%" height="15" fill="rgb(241,95,50)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="735.50"></text></g><g><title>tokio::runtime::time::entry::TimerEntry::cancel (1 samples, 0.01%)</title><rect x="12.8994%" y="709" width="0.0119%" height="15" fill="rgb(238,48,32)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="719.50"></text></g><g><title>tokio::runtime::time::_&lt;impl tokio::runtime::time::handle::Handle&gt;::clear_entry (1 samples, 0.01%)</title><rect x="12.8994%" y="693" width="0.0119%" height="15" fill="rgb(235,113,49)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;core::task::wake::Waker&gt;&gt; (1 samples, 0.01%)</title><rect x="12.8994%" y="677" width="0.0119%" height="15" fill="rgb(205,127,43)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::task::wake::Waker&gt; (1 samples, 0.01%)</title><rect x="12.8994%" y="661" width="0.0119%" height="15" fill="rgb(250,162,2)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="671.50"></text></g><g><title>&lt;core::task::wake::Waker as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="12.8994%" y="645" width="0.0119%" height="15" fill="rgb(220,13,41)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="655.50"></text></g><g><title>futures_util::stream::futures_unordered::task::waker_ref::drop_arc_raw (1 samples, 0.01%)</title><rect x="12.8994%" y="629" width="0.0119%" height="15" fill="rgb(249,221,25)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="639.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::from_raw (1 samples, 0.01%)</title><rect x="12.8994%" y="613" width="0.0119%" height="15" fill="rgb(215,208,19)" fg:x="1086" fg:w="1"/><text x="13.1494%" y="623.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="12.8756%" y="1125" width="0.0475%" height="15" fill="rgb(236,175,2)" fg:x="1084" fg:w="4"/><text x="13.1256%" y="1135.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="12.8756%" y="1109" width="0.0475%" height="15" fill="rgb(241,52,2)" fg:x="1084" fg:w="4"/><text x="13.1256%" y="1119.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="12.8756%" y="1093" width="0.0475%" height="15" fill="rgb(248,140,14)" fg:x="1084" fg:w="4"/><text x="13.1256%" y="1103.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (4 samples, 0.05%)</title><rect x="12.8756%" y="1077" width="0.0475%" height="15" fill="rgb(253,22,42)" fg:x="1084" fg:w="4"/><text x="13.1256%" y="1087.50"></text></g><g><title>core::cmp::min (1 samples, 0.01%)</title><rect x="12.9113%" y="1061" width="0.0119%" height="15" fill="rgb(234,61,47)" fg:x="1087" fg:w="1"/><text x="13.1613%" y="1071.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="12.9113%" y="1045" width="0.0119%" height="15" fill="rgb(208,226,15)" fg:x="1087" fg:w="1"/><text x="13.1613%" y="1055.50"></text></g><g><title>&lt;futures_lite::io::ReadExactFuture&lt;R&gt; as core::future::future::Future&gt;::poll (6 samples, 0.07%)</title><rect x="12.8756%" y="1141" width="0.0713%" height="15" fill="rgb(217,221,4)" fg:x="1084" fg:w="6"/><text x="13.1256%" y="1151.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_mut (2 samples, 0.02%)</title><rect x="12.9232%" y="1125" width="0.0238%" height="15" fill="rgb(212,174,34)" fg:x="1088" fg:w="2"/><text x="13.1732%" y="1135.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_mut_unchecked (1 samples, 0.01%)</title><rect x="12.9350%" y="1109" width="0.0119%" height="15" fill="rgb(253,83,4)" fg:x="1089" fg:w="1"/><text x="13.1850%" y="1119.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut::precondition_check (1 samples, 0.01%)</title><rect x="12.9350%" y="1093" width="0.0119%" height="15" fill="rgb(250,195,49)" fg:x="1089" fg:w="1"/><text x="13.1850%" y="1103.50"></text></g><g><title>core::array::_&lt;impl core::ops::index::Index&lt;I&gt; for [T (1 samples, 0.01%)</title><rect x="12.9469%" y="1109" width="0.0119%" height="15" fill="rgb(241,192,25)" fg:x="1090" fg:w="1"/><text x="13.1969%" y="1119.50"></text></g><g><title> N]&gt;::index (1 samples, 0.01%)</title><rect x="12.9469%" y="1093" width="0.0119%" height="15" fill="rgb(208,124,10)" fg:x="1090" fg:w="1"/><text x="13.1969%" y="1103.50"></text></g><g><title>async_zip::spec::parse::_&lt;impl async_zip::spec::header::LocalFileHeader&gt;::from_reader::_{{closure}} (9 samples, 0.11%)</title><rect x="12.8638%" y="1157" width="0.1069%" height="15" fill="rgb(222,33,0)" fg:x="1083" fg:w="9"/><text x="13.1138%" y="1167.50"></text></g><g><title>async_zip::spec::parse::_&lt;impl core::convert::From&lt;[u8 (2 samples, 0.02%)</title><rect x="12.9469%" y="1141" width="0.0238%" height="15" fill="rgb(234,209,28)" fg:x="1090" fg:w="2"/><text x="13.1969%" y="1151.50"></text></g><g><title> 26]&gt; for async_zip::spec::header::LocalFileHeader&gt;::from (2 samples, 0.02%)</title><rect x="12.9469%" y="1125" width="0.0238%" height="15" fill="rgb(224,11,23)" fg:x="1090" fg:w="2"/><text x="13.1969%" y="1135.50"></text></g><g><title>core::num::_&lt;impl u16&gt;::from_le_bytes (1 samples, 0.01%)</title><rect x="12.9588%" y="1109" width="0.0119%" height="15" fill="rgb(232,99,1)" fg:x="1091" fg:w="1"/><text x="13.2088%" y="1119.50"></text></g><g><title>async_zip::spec::parse::parse_extra_fields (1 samples, 0.01%)</title><rect x="12.9707%" y="1157" width="0.0119%" height="15" fill="rgb(237,95,45)" fg:x="1092" fg:w="1"/><text x="13.2207%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="12.9707%" y="1141" width="0.0119%" height="15" fill="rgb(208,109,11)" fg:x="1092" fg:w="1"/><text x="13.2207%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="12.9707%" y="1125" width="0.0119%" height="15" fill="rgb(216,190,48)" fg:x="1092" fg:w="1"/><text x="13.2207%" y="1135.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="12.9707%" y="1109" width="0.0119%" height="15" fill="rgb(251,171,36)" fg:x="1092" fg:w="1"/><text x="13.2207%" y="1119.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="12.9707%" y="1093" width="0.0119%" height="15" fill="rgb(230,62,22)" fg:x="1092" fg:w="1"/><text x="13.2207%" y="1103.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="12.9707%" y="1077" width="0.0119%" height="15" fill="rgb(225,114,35)" fg:x="1092" fg:w="1"/><text x="13.2207%" y="1087.50"></text></g><g><title>async_zip::base::read::stream::ZipFileReader&lt;async_zip::base::read::stream::Ready&lt;R&gt;&gt;::next_with_entry::_{{closure}} (209 samples, 2.48%)</title><rect x="10.5119%" y="1189" width="2.4825%" height="15" fill="rgb(215,118,42)" fg:x="885" fg:w="209"/><text x="10.7619%" y="1199.50">as..</text></g><g><title>async_zip::base::read::lfh::_{{closure}} (47 samples, 0.56%)</title><rect x="12.4362%" y="1173" width="0.5583%" height="15" fill="rgb(243,119,21)" fg:x="1047" fg:w="47"/><text x="12.6862%" y="1183.50"></text></g><g><title>core::slice::raw::from_raw_parts (1 samples, 0.01%)</title><rect x="12.9825%" y="1157" width="0.0119%" height="15" fill="rgb(252,177,53)" fg:x="1093" fg:w="1"/><text x="13.2325%" y="1167.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="12.9825%" y="1141" width="0.0119%" height="15" fill="rgb(237,209,29)" fg:x="1093" fg:w="1"/><text x="13.2325%" y="1151.50"></text></g><g><title>async_zip::entry::ZipEntry::dir (1 samples, 0.01%)</title><rect x="12.9944%" y="1189" width="0.0119%" height="15" fill="rgb(212,65,23)" fg:x="1094" fg:w="1"/><text x="13.2444%" y="1199.50"></text></g><g><title>core::str::_&lt;impl str&gt;::ends_with (1 samples, 0.01%)</title><rect x="12.9944%" y="1173" width="0.0119%" height="15" fill="rgb(230,222,46)" fg:x="1094" fg:w="1"/><text x="13.2444%" y="1183.50"></text></g><g><title>&lt;char as core::str::pattern::Pattern&gt;::is_suffix_of (1 samples, 0.01%)</title><rect x="12.9944%" y="1157" width="0.0119%" height="15" fill="rgb(215,135,32)" fg:x="1094" fg:w="1"/><text x="13.2444%" y="1167.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.01%)</title><rect x="12.9944%" y="1141" width="0.0119%" height="15" fill="rgb(246,101,22)" fg:x="1094" fg:w="1"/><text x="13.2444%" y="1151.50"></text></g><g><title>_platform_memcmp (1 samples, 0.01%)</title><rect x="12.9944%" y="1125" width="0.0119%" height="15" fill="rgb(206,107,13)" fg:x="1094" fg:w="1"/><text x="13.2444%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;async_zip::base::read::cd::CentralDirectoryEntry&gt; (1 samples, 0.01%)</title><rect x="13.0063%" y="1189" width="0.0119%" height="15" fill="rgb(250,100,44)" fg:x="1095" fg:w="1"/><text x="13.2563%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;async_zip::string::ZipString&gt; (1 samples, 0.01%)</title><rect x="13.0063%" y="1173" width="0.0119%" height="15" fill="rgb(231,147,38)" fg:x="1095" fg:w="1"/><text x="13.2563%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="13.0063%" y="1157" width="0.0119%" height="15" fill="rgb(229,8,40)" fg:x="1095" fg:w="1"/><text x="13.2563%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="13.0063%" y="1141" width="0.0119%" height="15" fill="rgb(221,135,30)" fg:x="1095" fg:w="1"/><text x="13.2563%" y="1151.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="13.0063%" y="1125" width="0.0119%" height="15" fill="rgb(249,193,18)" fg:x="1095" fg:w="1"/><text x="13.2563%" y="1135.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="13.0063%" y="1109" width="0.0119%" height="15" fill="rgb(209,133,39)" fg:x="1095" fg:w="1"/><text x="13.2563%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::path::PathBuf&gt; (1 samples, 0.01%)</title><rect x="13.0182%" y="1189" width="0.0119%" height="15" fill="rgb(232,100,14)" fg:x="1096" fg:w="1"/><text x="13.2682%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::ffi::os_str::OsString&gt; (1 samples, 0.01%)</title><rect x="13.0182%" y="1173" width="0.0119%" height="15" fill="rgb(224,185,1)" fg:x="1096" fg:w="1"/><text x="13.2682%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys::os_str::bytes::Buf&gt; (1 samples, 0.01%)</title><rect x="13.0182%" y="1157" width="0.0119%" height="15" fill="rgb(223,139,8)" fg:x="1096" fg:w="1"/><text x="13.2682%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="13.0182%" y="1141" width="0.0119%" height="15" fill="rgb(232,213,38)" fg:x="1096" fg:w="1"/><text x="13.2682%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="13.0182%" y="1125" width="0.0119%" height="15" fill="rgb(207,94,22)" fg:x="1096" fg:w="1"/><text x="13.2682%" y="1135.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="13.0182%" y="1109" width="0.0119%" height="15" fill="rgb(219,183,54)" fg:x="1096" fg:w="1"/><text x="13.2682%" y="1119.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="13.0182%" y="1093" width="0.0119%" height="15" fill="rgb(216,185,54)" fg:x="1096" fg:w="1"/><text x="13.2682%" y="1103.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="13.0182%" y="1077" width="0.0119%" height="15" fill="rgb(254,217,39)" fg:x="1096" fg:w="1"/><text x="13.2682%" y="1087.50"></text></g><g><title>malloc_mutex_unlock (1 samples, 0.01%)</title><rect x="13.0657%" y="997" width="0.0119%" height="15" fill="rgb(240,178,23)" fg:x="1100" fg:w="1"/><text x="13.3157%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (4 samples, 0.05%)</title><rect x="13.0419%" y="1173" width="0.0475%" height="15" fill="rgb(218,11,47)" fg:x="1098" fg:w="4"/><text x="13.2919%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (4 samples, 0.05%)</title><rect x="13.0419%" y="1157" width="0.0475%" height="15" fill="rgb(218,51,51)" fg:x="1098" fg:w="4"/><text x="13.2919%" y="1167.50"></text></g><g><title>__rustc::__rust_dealloc (3 samples, 0.04%)</title><rect x="13.0538%" y="1141" width="0.0356%" height="15" fill="rgb(238,126,27)" fg:x="1099" fg:w="3"/><text x="13.3038%" y="1151.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (3 samples, 0.04%)</title><rect x="13.0538%" y="1125" width="0.0356%" height="15" fill="rgb(249,202,22)" fg:x="1099" fg:w="3"/><text x="13.3038%" y="1135.50"></text></g><g><title>_rjem_sdallocx (3 samples, 0.04%)</title><rect x="13.0538%" y="1109" width="0.0356%" height="15" fill="rgb(254,195,49)" fg:x="1099" fg:w="3"/><text x="13.3038%" y="1119.50"></text></g><g><title>_rjem_je_sdallocx_default (3 samples, 0.04%)</title><rect x="13.0538%" y="1093" width="0.0356%" height="15" fill="rgb(208,123,14)" fg:x="1099" fg:w="3"/><text x="13.3038%" y="1103.50"></text></g><g><title>_rjem_je_te_event_trigger (2 samples, 0.02%)</title><rect x="13.0657%" y="1077" width="0.0238%" height="15" fill="rgb(224,200,8)" fg:x="1100" fg:w="2"/><text x="13.3157%" y="1087.50"></text></g><g><title>_rjem_je_tcache_gc_dalloc_event_handler (2 samples, 0.02%)</title><rect x="13.0657%" y="1061" width="0.0238%" height="15" fill="rgb(217,61,36)" fg:x="1100" fg:w="2"/><text x="13.3157%" y="1071.50"></text></g><g><title>tcache_event (2 samples, 0.02%)</title><rect x="13.0657%" y="1045" width="0.0238%" height="15" fill="rgb(206,35,45)" fg:x="1100" fg:w="2"/><text x="13.3157%" y="1055.50"></text></g><g><title>tcache_gc_small (2 samples, 0.02%)</title><rect x="13.0657%" y="1029" width="0.0238%" height="15" fill="rgb(217,65,33)" fg:x="1100" fg:w="2"/><text x="13.3157%" y="1039.50"></text></g><g><title>_rjem_je_tcache_bin_flush_small (2 samples, 0.02%)</title><rect x="13.0657%" y="1013" width="0.0238%" height="15" fill="rgb(222,158,48)" fg:x="1100" fg:w="2"/><text x="13.3157%" y="1023.50"></text></g><g><title>tcache_bin_flush_edatas_lookup (1 samples, 0.01%)</title><rect x="13.0776%" y="997" width="0.0119%" height="15" fill="rgb(254,2,54)" fg:x="1101" fg:w="1"/><text x="13.3276%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::path::PathBuf&gt; (2 samples, 0.02%)</title><rect x="13.0894%" y="1157" width="0.0238%" height="15" fill="rgb(250,143,38)" fg:x="1102" fg:w="2"/><text x="13.3394%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::ffi::os_str::OsString&gt; (2 samples, 0.02%)</title><rect x="13.0894%" y="1141" width="0.0238%" height="15" fill="rgb(248,25,0)" fg:x="1102" fg:w="2"/><text x="13.3394%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys::os_str::bytes::Buf&gt; (2 samples, 0.02%)</title><rect x="13.0894%" y="1125" width="0.0238%" height="15" fill="rgb(206,152,27)" fg:x="1102" fg:w="2"/><text x="13.3394%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (2 samples, 0.02%)</title><rect x="13.0894%" y="1109" width="0.0238%" height="15" fill="rgb(240,77,30)" fg:x="1102" fg:w="2"/><text x="13.3394%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="13.1013%" y="1093" width="0.0119%" height="15" fill="rgb(231,5,3)" fg:x="1103" fg:w="1"/><text x="13.3513%" y="1103.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="13.1013%" y="1077" width="0.0119%" height="15" fill="rgb(207,226,32)" fg:x="1103" fg:w="1"/><text x="13.3513%" y="1087.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="13.1013%" y="1061" width="0.0119%" height="15" fill="rgb(222,207,47)" fg:x="1103" fg:w="1"/><text x="13.3513%" y="1071.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="13.1013%" y="1045" width="0.0119%" height="15" fill="rgb(229,115,45)" fg:x="1103" fg:w="1"/><text x="13.3513%" y="1055.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="13.1251%" y="997" width="0.0119%" height="15" fill="rgb(224,191,6)" fg:x="1105" fg:w="1"/><text x="13.3751%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Weak&lt;std::fs::File,&amp;alloc::alloc::Global&gt;&gt; (4 samples, 0.05%)</title><rect x="13.1132%" y="1093" width="0.0475%" height="15" fill="rgb(230,227,24)" fg:x="1104" fg:w="4"/><text x="13.3632%" y="1103.50"></text></g><g><title>&lt;alloc::sync::Weak&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (4 samples, 0.05%)</title><rect x="13.1132%" y="1077" width="0.0475%" height="15" fill="rgb(228,80,19)" fg:x="1104" fg:w="4"/><text x="13.3632%" y="1087.50"></text></g><g><title>&lt;&amp;A as core::alloc::Allocator&gt;::deallocate (4 samples, 0.05%)</title><rect x="13.1132%" y="1061" width="0.0475%" height="15" fill="rgb(247,229,0)" fg:x="1104" fg:w="4"/><text x="13.3632%" y="1071.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (4 samples, 0.05%)</title><rect x="13.1132%" y="1045" width="0.0475%" height="15" fill="rgb(237,194,15)" fg:x="1104" fg:w="4"/><text x="13.3632%" y="1055.50"></text></g><g><title>__rustc::__rust_dealloc (3 samples, 0.04%)</title><rect x="13.1251%" y="1029" width="0.0356%" height="15" fill="rgb(219,203,20)" fg:x="1105" fg:w="3"/><text x="13.3751%" y="1039.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (3 samples, 0.04%)</title><rect x="13.1251%" y="1013" width="0.0356%" height="15" fill="rgb(234,128,8)" fg:x="1105" fg:w="3"/><text x="13.3751%" y="1023.50"></text></g><g><title>core::alloc::layout::Layout::size (2 samples, 0.02%)</title><rect x="13.1370%" y="997" width="0.0238%" height="15" fill="rgb(248,202,8)" fg:x="1106" fg:w="2"/><text x="13.3870%" y="1007.50"></text></g><g><title>close (192 samples, 2.28%)</title><rect x="13.1607%" y="1013" width="2.2806%" height="15" fill="rgb(206,104,37)" fg:x="1108" fg:w="192"/><text x="13.4107%" y="1023.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;std::fs::File&gt;&gt; (198 samples, 2.35%)</title><rect x="13.1132%" y="1141" width="2.3518%" height="15" fill="rgb(223,8,27)" fg:x="1104" fg:w="198"/><text x="13.3632%" y="1151.50">c..</text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (198 samples, 2.35%)</title><rect x="13.1132%" y="1125" width="2.3518%" height="15" fill="rgb(216,217,28)" fg:x="1104" fg:w="198"/><text x="13.3632%" y="1135.50">&lt;..</text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (198 samples, 2.35%)</title><rect x="13.1132%" y="1109" width="2.3518%" height="15" fill="rgb(249,199,1)" fg:x="1104" fg:w="198"/><text x="13.3632%" y="1119.50">a..</text></g><g><title>core::ptr::drop_in_place&lt;std::fs::File&gt; (194 samples, 2.30%)</title><rect x="13.1607%" y="1093" width="2.3043%" height="15" fill="rgb(240,85,17)" fg:x="1108" fg:w="194"/><text x="13.4107%" y="1103.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;std::sys::fs::unix::File&gt; (194 samples, 2.30%)</title><rect x="13.1607%" y="1077" width="2.3043%" height="15" fill="rgb(206,108,45)" fg:x="1108" fg:w="194"/><text x="13.4107%" y="1087.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;std::sys::fd::unix::FileDesc&gt; (194 samples, 2.30%)</title><rect x="13.1607%" y="1061" width="2.3043%" height="15" fill="rgb(245,210,41)" fg:x="1108" fg:w="194"/><text x="13.4107%" y="1071.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;std::os::fd::owned::OwnedFd&gt; (194 samples, 2.30%)</title><rect x="13.1607%" y="1045" width="2.3043%" height="15" fill="rgb(206,13,37)" fg:x="1108" fg:w="194"/><text x="13.4107%" y="1055.50">c..</text></g><g><title>&lt;std::os::fd::owned::OwnedFd as core::ops::drop::Drop&gt;::drop (194 samples, 2.30%)</title><rect x="13.1607%" y="1029" width="2.3043%" height="15" fill="rgb(250,61,18)" fg:x="1108" fg:w="194"/><text x="13.4107%" y="1039.50">&lt;..</text></g><g><title>std::sys::fs::unix::debug_assert_fd_is_open (2 samples, 0.02%)</title><rect x="15.4413%" y="1013" width="0.0238%" height="15" fill="rgb(235,172,48)" fg:x="1300" fg:w="2"/><text x="15.6913%" y="1023.50"></text></g><g><title>fcntl (2 samples, 0.02%)</title><rect x="15.4413%" y="997" width="0.0238%" height="15" fill="rgb(249,201,17)" fg:x="1300" fg:w="2"/><text x="15.6913%" y="1007.50"></text></g><g><title>__fcntl (2 samples, 0.02%)</title><rect x="15.4413%" y="981" width="0.0238%" height="15" fill="rgb(219,208,6)" fg:x="1300" fg:w="2"/><text x="15.6913%" y="991.50"></text></g><g><title>_rjem_je_large_dalloc (1 samples, 0.01%)</title><rect x="15.4888%" y="949" width="0.0119%" height="15" fill="rgb(248,31,23)" fg:x="1304" fg:w="1"/><text x="15.7388%" y="959.50"></text></g><g><title>arena_get_from_edata (1 samples, 0.01%)</title><rect x="15.4888%" y="933" width="0.0119%" height="15" fill="rgb(245,15,42)" fg:x="1304" fg:w="1"/><text x="15.7388%" y="943.50"></text></g><g><title>_rjem_sdallocx (5 samples, 0.06%)</title><rect x="15.4650%" y="981" width="0.0594%" height="15" fill="rgb(222,217,39)" fg:x="1302" fg:w="5"/><text x="15.7150%" y="991.50"></text></g><g><title>_rjem_je_sdallocx_default (4 samples, 0.05%)</title><rect x="15.4769%" y="965" width="0.0475%" height="15" fill="rgb(210,219,27)" fg:x="1303" fg:w="4"/><text x="15.7269%" y="975.50"></text></g><g><title>_rjem_je_te_event_trigger (2 samples, 0.02%)</title><rect x="15.5007%" y="949" width="0.0238%" height="15" fill="rgb(252,166,36)" fg:x="1305" fg:w="2"/><text x="15.7507%" y="959.50"></text></g><g><title>_rjem_je_tcache_gc_dalloc_event_handler (1 samples, 0.01%)</title><rect x="15.5125%" y="933" width="0.0119%" height="15" fill="rgb(245,132,34)" fg:x="1306" fg:w="1"/><text x="15.7625%" y="943.50"></text></g><g><title>tcache_event (1 samples, 0.01%)</title><rect x="15.5125%" y="917" width="0.0119%" height="15" fill="rgb(236,54,3)" fg:x="1306" fg:w="1"/><text x="15.7625%" y="927.50"></text></g><g><title>tcache_gc_small (1 samples, 0.01%)</title><rect x="15.5125%" y="901" width="0.0119%" height="15" fill="rgb(241,173,43)" fg:x="1306" fg:w="1"/><text x="15.7625%" y="911.50"></text></g><g><title>_rjem_je_tcache_bin_flush_small (1 samples, 0.01%)</title><rect x="15.5125%" y="885" width="0.0119%" height="15" fill="rgb(215,190,9)" fg:x="1306" fg:w="1"/><text x="15.7625%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::io::util::buf_writer::BufWriter&lt;fs_err::tokio::file::File&gt;&gt; (211 samples, 2.51%)</title><rect x="13.0301%" y="1189" width="2.5062%" height="15" fill="rgb(242,101,16)" fg:x="1097" fg:w="211"/><text x="13.2801%" y="1199.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;fs_err::tokio::file::File&gt; (206 samples, 2.45%)</title><rect x="13.0894%" y="1173" width="2.4468%" height="15" fill="rgb(223,190,21)" fg:x="1102" fg:w="206"/><text x="13.3394%" y="1183.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;tokio::fs::file::File&gt; (204 samples, 2.42%)</title><rect x="13.1132%" y="1157" width="2.4231%" height="15" fill="rgb(215,228,25)" fg:x="1104" fg:w="204"/><text x="13.3632%" y="1167.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;tokio::sync::mutex::Mutex&lt;tokio::fs::file::Inner&gt;&gt; (6 samples, 0.07%)</title><rect x="15.4650%" y="1141" width="0.0713%" height="15" fill="rgb(225,36,22)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;tokio::fs::file::Inner&gt;&gt; (6 samples, 0.07%)</title><rect x="15.4650%" y="1125" width="0.0713%" height="15" fill="rgb(251,106,46)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::fs::file::Inner&gt; (6 samples, 0.07%)</title><rect x="15.4650%" y="1109" width="0.0713%" height="15" fill="rgb(208,90,1)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::fs::file::State&gt; (6 samples, 0.07%)</title><rect x="15.4650%" y="1093" width="0.0713%" height="15" fill="rgb(243,10,4)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;tokio::io::blocking::Buf&gt;&gt; (6 samples, 0.07%)</title><rect x="15.4650%" y="1077" width="0.0713%" height="15" fill="rgb(212,137,27)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::io::blocking::Buf&gt; (6 samples, 0.07%)</title><rect x="15.4650%" y="1061" width="0.0713%" height="15" fill="rgb(231,220,49)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (6 samples, 0.07%)</title><rect x="15.4650%" y="1045" width="0.0713%" height="15" fill="rgb(237,96,20)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (6 samples, 0.07%)</title><rect x="15.4650%" y="1029" width="0.0713%" height="15" fill="rgb(239,229,30)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1039.50"></text></g><g><title>__rustc::__rust_dealloc (6 samples, 0.07%)</title><rect x="15.4650%" y="1013" width="0.0713%" height="15" fill="rgb(219,65,33)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1023.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (6 samples, 0.07%)</title><rect x="15.4650%" y="997" width="0.0713%" height="15" fill="rgb(243,134,7)" fg:x="1302" fg:w="6"/><text x="15.7150%" y="1007.50"></text></g><g><title>core::ptr::mut_ptr::_&lt;impl *mut T&gt;::is_null (1 samples, 0.01%)</title><rect x="15.5244%" y="981" width="0.0119%" height="15" fill="rgb(216,177,54)" fg:x="1307" fg:w="1"/><text x="15.7744%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::fs::asyncify&lt;tokio::fs::create_dir_all::create_dir_all&lt;&amp;std::path::Path&gt;::{{closure}}::{{closure}},()&gt;::{{closure}}&gt; (1 samples, 0.01%)</title><rect x="15.5363%" y="1157" width="0.0119%" height="15" fill="rgb(211,160,20)" fg:x="1308" fg:w="1"/><text x="15.7863%" y="1167.50"></text></g><g><title>pthread_cond_signal (2 samples, 0.02%)</title><rect x="15.5482%" y="1061" width="0.0238%" height="15" fill="rgb(239,85,39)" fg:x="1309" fg:w="2"/><text x="15.7982%" y="1071.50"></text></g><g><title>__psynch_cvsignal (2 samples, 0.02%)</title><rect x="15.5482%" y="1045" width="0.0238%" height="15" fill="rgb(232,125,22)" fg:x="1309" fg:w="2"/><text x="15.7982%" y="1055.50"></text></g><g><title>fs_err::tokio::create_dir_all::_{{closure}} (4 samples, 0.05%)</title><rect x="15.5363%" y="1189" width="0.0475%" height="15" fill="rgb(244,57,34)" fg:x="1308" fg:w="4"/><text x="15.7863%" y="1199.50"></text></g><g><title>tokio::fs::create_dir_all::create_dir_all::_{{closure}} (4 samples, 0.05%)</title><rect x="15.5363%" y="1173" width="0.0475%" height="15" fill="rgb(214,203,32)" fg:x="1308" fg:w="4"/><text x="15.7863%" y="1183.50"></text></g><g><title>tokio::fs::asyncify::_{{closure}} (3 samples, 0.04%)</title><rect x="15.5482%" y="1157" width="0.0356%" height="15" fill="rgb(207,58,43)" fg:x="1309" fg:w="3"/><text x="15.7982%" y="1167.50"></text></g><g><title>tokio::runtime::blocking::pool::spawn_blocking (3 samples, 0.04%)</title><rect x="15.5482%" y="1141" width="0.0356%" height="15" fill="rgb(215,193,15)" fg:x="1309" fg:w="3"/><text x="15.7982%" y="1151.50"></text></g><g><title>tokio::runtime::handle::Handle::spawn_blocking (3 samples, 0.04%)</title><rect x="15.5482%" y="1125" width="0.0356%" height="15" fill="rgb(232,15,44)" fg:x="1309" fg:w="3"/><text x="15.7982%" y="1135.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_blocking (3 samples, 0.04%)</title><rect x="15.5482%" y="1109" width="0.0356%" height="15" fill="rgb(212,3,48)" fg:x="1309" fg:w="3"/><text x="15.7982%" y="1119.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_blocking_inner (3 samples, 0.04%)</title><rect x="15.5482%" y="1093" width="0.0356%" height="15" fill="rgb(218,128,7)" fg:x="1309" fg:w="3"/><text x="15.7982%" y="1103.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_task (3 samples, 0.04%)</title><rect x="15.5482%" y="1077" width="0.0356%" height="15" fill="rgb(226,216,39)" fg:x="1309" fg:w="3"/><text x="15.7982%" y="1087.50"></text></g><g><title>tokio::loom::std::mutex::Mutex&lt;T&gt;::lock (1 samples, 0.01%)</title><rect x="15.5719%" y="1061" width="0.0119%" height="15" fill="rgb(243,47,51)" fg:x="1311" fg:w="1"/><text x="15.8219%" y="1071.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::lock (1 samples, 0.01%)</title><rect x="15.5719%" y="1045" width="0.0119%" height="15" fill="rgb(241,183,40)" fg:x="1311" fg:w="1"/><text x="15.8219%" y="1055.50"></text></g><g><title>std::sync::poison::map_result (1 samples, 0.01%)</title><rect x="15.5719%" y="1029" width="0.0119%" height="15" fill="rgb(231,217,32)" fg:x="1311" fg:w="1"/><text x="15.8219%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (1 samples, 0.01%)</title><rect x="15.5838%" y="1125" width="0.0119%" height="15" fill="rgb(229,61,38)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="1135.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (1 samples, 0.01%)</title><rect x="15.5838%" y="1109" width="0.0119%" height="15" fill="rgb(225,210,5)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="1119.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="15.5838%" y="1093" width="0.0119%" height="15" fill="rgb(231,79,45)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="1103.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="15.5838%" y="1077" width="0.0119%" height="15" fill="rgb(224,100,7)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="1087.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="15.5838%" y="1061" width="0.0119%" height="15" fill="rgb(241,198,18)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="1071.50"></text></g><g><title>_rjem_je_malloc_default (1 samples, 0.01%)</title><rect x="15.5838%" y="1045" width="0.0119%" height="15" fill="rgb(252,97,53)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="1055.50"></text></g><g><title>_rjem_je_te_event_trigger (1 samples, 0.01%)</title><rect x="15.5838%" y="1029" width="0.0119%" height="15" fill="rgb(220,88,7)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="1039.50"></text></g><g><title>_rjem_je_tcache_gc_event_handler (1 samples, 0.01%)</title><rect x="15.5838%" y="1013" width="0.0119%" height="15" fill="rgb(213,176,14)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="1023.50"></text></g><g><title>tcache_event (1 samples, 0.01%)</title><rect x="15.5838%" y="997" width="0.0119%" height="15" fill="rgb(246,73,7)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="1007.50"></text></g><g><title>cache_bin_low_water_get (1 samples, 0.01%)</title><rect x="15.5838%" y="981" width="0.0119%" height="15" fill="rgb(245,64,36)" fg:x="1312" fg:w="1"/><text x="15.8338%" y="991.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (2 samples, 0.02%)</title><rect x="15.5838%" y="1141" width="0.0238%" height="15" fill="rgb(245,80,10)" fg:x="1312" fg:w="2"/><text x="15.8338%" y="1151.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="15.5957%" y="1125" width="0.0119%" height="15" fill="rgb(232,107,50)" fg:x="1313" fg:w="1"/><text x="15.8457%" y="1135.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (5 samples, 0.06%)</title><rect x="15.5838%" y="1173" width="0.0594%" height="15" fill="rgb(253,3,0)" fg:x="1312" fg:w="5"/><text x="15.8338%" y="1183.50"></text></g><g><title>&lt;std::path::PathBuf as core::convert::From&lt;&amp;T&gt;&gt;::from (5 samples, 0.06%)</title><rect x="15.5838%" y="1157" width="0.0594%" height="15" fill="rgb(212,99,53)" fg:x="1312" fg:w="5"/><text x="15.8338%" y="1167.50"></text></g><g><title>&lt;std::path::PathBuf as core::convert::AsRef&lt;std::ffi::os_str::OsStr&gt;&gt;::as_ref (3 samples, 0.04%)</title><rect x="15.6076%" y="1141" width="0.0356%" height="15" fill="rgb(249,111,54)" fg:x="1314" fg:w="3"/><text x="15.8576%" y="1151.50"></text></g><g><title>&lt;std::ffi::os_str::OsString as core::ops::index::Index&lt;core::ops::range::RangeFull&gt;&gt;::index (3 samples, 0.04%)</title><rect x="15.6076%" y="1125" width="0.0356%" height="15" fill="rgb(249,55,30)" fg:x="1314" fg:w="3"/><text x="15.8576%" y="1135.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (2 samples, 0.02%)</title><rect x="15.6194%" y="1109" width="0.0238%" height="15" fill="rgb(237,47,42)" fg:x="1315" fg:w="2"/><text x="15.8694%" y="1119.50"></text></g><g><title>tokio::fs::file::File::create (1 samples, 0.01%)</title><rect x="15.6432%" y="1173" width="0.0119%" height="15" fill="rgb(211,20,18)" fg:x="1317" fg:w="1"/><text x="15.8932%" y="1183.50"></text></g><g><title>&lt;&amp;T as core::convert::AsRef&lt;U&gt;&gt;::as_ref (2 samples, 0.02%)</title><rect x="15.6551%" y="1157" width="0.0238%" height="15" fill="rgb(231,203,46)" fg:x="1318" fg:w="2"/><text x="15.9051%" y="1167.50"></text></g><g><title>&lt;std::path::PathBuf as core::convert::AsRef&lt;std::path::Path&gt;&gt;::as_ref (1 samples, 0.01%)</title><rect x="15.6669%" y="1141" width="0.0119%" height="15" fill="rgb(237,142,3)" fg:x="1319" fg:w="1"/><text x="15.9169%" y="1151.50"></text></g><g><title>&lt;std::ffi::os_str::OsString as core::ops::index::Index&lt;core::ops::range::RangeFull&gt;&gt;::index (1 samples, 0.01%)</title><rect x="15.6669%" y="1125" width="0.0119%" height="15" fill="rgb(241,107,1)" fg:x="1319" fg:w="1"/><text x="15.9169%" y="1135.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="15.6669%" y="1109" width="0.0119%" height="15" fill="rgb(229,83,13)" fg:x="1319" fg:w="1"/><text x="15.9169%" y="1119.50"></text></g><g><title>&lt;std::path::Path as alloc::borrow::ToOwned&gt;::to_owned (1 samples, 0.01%)</title><rect x="15.6788%" y="1157" width="0.0119%" height="15" fill="rgb(241,91,40)" fg:x="1320" fg:w="1"/><text x="15.9288%" y="1167.50"></text></g><g><title>std::sys::pal::unix::os::split_paths::bytes_to_path (1 samples, 0.01%)</title><rect x="15.6788%" y="1141" width="0.0119%" height="15" fill="rgb(225,3,45)" fg:x="1320" fg:w="1"/><text x="15.9288%" y="1151.50"></text></g><g><title>DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="15.6907%" y="1157" width="0.0119%" height="15" fill="rgb(244,223,14)" fg:x="1321" fg:w="1"/><text x="15.9407%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::task::coop::RestoreOnPending&gt; (1 samples, 0.01%)</title><rect x="15.7263%" y="1125" width="0.0119%" height="15" fill="rgb(224,124,37)" fg:x="1324" fg:w="1"/><text x="15.9763%" y="1135.50"></text></g><g><title>&lt;tokio::task::coop::RestoreOnPending as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="15.7263%" y="1109" width="0.0119%" height="15" fill="rgb(251,171,30)" fg:x="1324" fg:w="1"/><text x="15.9763%" y="1119.50"></text></g><g><title>tokio::runtime::context::budget (1 samples, 0.01%)</title><rect x="15.7263%" y="1093" width="0.0119%" height="15" fill="rgb(236,46,54)" fg:x="1324" fg:w="1"/><text x="15.9763%" y="1103.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.01%)</title><rect x="15.7263%" y="1077" width="0.0119%" height="15" fill="rgb(245,213,5)" fg:x="1324" fg:w="1"/><text x="15.9763%" y="1087.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::header (1 samples, 0.01%)</title><rect x="15.7382%" y="1077" width="0.0119%" height="15" fill="rgb(230,144,27)" fg:x="1325" fg:w="1"/><text x="15.9882%" y="1087.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::header_ptr (1 samples, 0.01%)</title><rect x="15.7382%" y="1061" width="0.0119%" height="15" fill="rgb(220,86,6)" fg:x="1325" fg:w="1"/><text x="15.9882%" y="1071.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::cast (1 samples, 0.01%)</title><rect x="15.7382%" y="1045" width="0.0119%" height="15" fill="rgb(240,20,13)" fg:x="1325" fg:w="1"/><text x="15.9882%" y="1055.50"></text></g><g><title>tokio::runtime::task::raw::RawTask::try_read_output (2 samples, 0.02%)</title><rect x="15.7382%" y="1125" width="0.0238%" height="15" fill="rgb(217,89,34)" fg:x="1325" fg:w="2"/><text x="15.9882%" y="1135.50"></text></g><g><title>tokio::runtime::task::raw::try_read_output (2 samples, 0.02%)</title><rect x="15.7382%" y="1109" width="0.0238%" height="15" fill="rgb(229,13,5)" fg:x="1325" fg:w="2"/><text x="15.9882%" y="1119.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::try_read_output (2 samples, 0.02%)</title><rect x="15.7382%" y="1093" width="0.0238%" height="15" fill="rgb(244,67,35)" fg:x="1325" fg:w="2"/><text x="15.9882%" y="1103.50"></text></g><g><title>tokio::runtime::task::harness::can_read_output (1 samples, 0.01%)</title><rect x="15.7501%" y="1077" width="0.0119%" height="15" fill="rgb(221,40,2)" fg:x="1326" fg:w="1"/><text x="16.0001%" y="1087.50"></text></g><g><title>tokio::runtime::task::harness::set_join_waker (1 samples, 0.01%)</title><rect x="15.7501%" y="1061" width="0.0119%" height="15" fill="rgb(237,157,21)" fg:x="1326" fg:w="1"/><text x="16.0001%" y="1071.50"></text></g><g><title>tokio::runtime::task::state::State::set_join_waker (1 samples, 0.01%)</title><rect x="15.7501%" y="1045" width="0.0119%" height="15" fill="rgb(222,94,11)" fg:x="1326" fg:w="1"/><text x="16.0001%" y="1055.50"></text></g><g><title>tokio::runtime::task::state::State::fetch_update (1 samples, 0.01%)</title><rect x="15.7501%" y="1029" width="0.0119%" height="15" fill="rgb(249,113,6)" fg:x="1326" fg:w="1"/><text x="16.0001%" y="1039.50"></text></g><g><title>tokio::task::coop::RestoreOnPending::made_progress (1 samples, 0.01%)</title><rect x="15.7620%" y="1125" width="0.0119%" height="15" fill="rgb(238,137,36)" fg:x="1327" fg:w="1"/><text x="16.0120%" y="1135.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::unwrap_or (1 samples, 0.01%)</title><rect x="15.7738%" y="1109" width="0.0119%" height="15" fill="rgb(210,102,26)" fg:x="1328" fg:w="1"/><text x="16.0238%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::task::poll::Poll&lt;tokio::task::coop::RestoreOnPending&gt;&gt; (1 samples, 0.01%)</title><rect x="15.7738%" y="1093" width="0.0119%" height="15" fill="rgb(218,30,30)" fg:x="1328" fg:w="1"/><text x="16.0238%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::task::coop::RestoreOnPending&gt; (1 samples, 0.01%)</title><rect x="15.7738%" y="1077" width="0.0119%" height="15" fill="rgb(214,67,26)" fg:x="1328" fg:w="1"/><text x="16.0238%" y="1087.50"></text></g><g><title>&lt;tokio::task::coop::RestoreOnPending as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="15.7738%" y="1061" width="0.0119%" height="15" fill="rgb(251,9,53)" fg:x="1328" fg:w="1"/><text x="16.0238%" y="1071.50"></text></g><g><title>tokio::task::coop::Budget::is_unconstrained (1 samples, 0.01%)</title><rect x="15.7738%" y="1045" width="0.0119%" height="15" fill="rgb(228,204,25)" fg:x="1328" fg:w="1"/><text x="16.0238%" y="1055.50"></text></g><g><title>core::option::Option&lt;T&gt;::is_none (1 samples, 0.01%)</title><rect x="15.7738%" y="1029" width="0.0119%" height="15" fill="rgb(207,153,8)" fg:x="1328" fg:w="1"/><text x="16.0238%" y="1039.50"></text></g><g><title>&lt;tokio::runtime::task::join::JoinHandle&lt;T&gt; as core::future::future::Future&gt;::poll (9 samples, 0.11%)</title><rect x="15.7026%" y="1141" width="0.1069%" height="15" fill="rgb(242,9,16)" fg:x="1322" fg:w="9"/><text x="15.9526%" y="1151.50"></text></g><g><title>tokio::task::coop::poll_proceed (3 samples, 0.04%)</title><rect x="15.7738%" y="1125" width="0.0356%" height="15" fill="rgb(217,211,10)" fg:x="1328" fg:w="3"/><text x="16.0238%" y="1135.50"></text></g><g><title>tokio::runtime::context::budget (2 samples, 0.02%)</title><rect x="15.7857%" y="1109" width="0.0238%" height="15" fill="rgb(219,228,52)" fg:x="1329" fg:w="2"/><text x="16.0357%" y="1119.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (2 samples, 0.02%)</title><rect x="15.7857%" y="1093" width="0.0238%" height="15" fill="rgb(231,92,29)" fg:x="1329" fg:w="2"/><text x="16.0357%" y="1103.50"></text></g><g><title>tokio::runtime::context::budget::_{{closure}} (1 samples, 0.01%)</title><rect x="15.7976%" y="1077" width="0.0119%" height="15" fill="rgb(232,8,23)" fg:x="1330" fg:w="1"/><text x="16.0476%" y="1087.50"></text></g><g><title>tokio::task::coop::poll_proceed::_{{closure}} (1 samples, 0.01%)</title><rect x="15.7976%" y="1061" width="0.0119%" height="15" fill="rgb(216,211,34)" fg:x="1330" fg:w="1"/><text x="16.0476%" y="1071.50"></text></g><g><title>tokio::task::coop::Budget::decrement (1 samples, 0.01%)</title><rect x="15.7976%" y="1045" width="0.0119%" height="15" fill="rgb(236,151,0)" fg:x="1330" fg:w="1"/><text x="16.0476%" y="1055.50"></text></g><g><title>std::panicking::try (3 samples, 0.04%)</title><rect x="15.8214%" y="1061" width="0.0356%" height="15" fill="rgb(209,168,3)" fg:x="1332" fg:w="3"/><text x="16.0714%" y="1071.50"></text></g><g><title>__rust_try (3 samples, 0.04%)</title><rect x="15.8214%" y="1045" width="0.0356%" height="15" fill="rgb(208,129,28)" fg:x="1332" fg:w="3"/><text x="16.0714%" y="1055.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.04%)</title><rect x="15.8214%" y="1029" width="0.0356%" height="15" fill="rgb(229,78,22)" fg:x="1332" fg:w="3"/><text x="16.0714%" y="1039.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (3 samples, 0.04%)</title><rect x="15.8214%" y="1013" width="0.0356%" height="15" fill="rgb(228,187,13)" fg:x="1332" fg:w="3"/><text x="16.0714%" y="1023.50"></text></g><g><title>core::ops::function::FnOnce::call_once (3 samples, 0.04%)</title><rect x="15.8214%" y="997" width="0.0356%" height="15" fill="rgb(240,119,24)" fg:x="1332" fg:w="3"/><text x="16.0714%" y="1007.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::drop_join_handle_slow::_{{closure}} (3 samples, 0.04%)</title><rect x="15.8214%" y="981" width="0.0356%" height="15" fill="rgb(209,194,42)" fg:x="1332" fg:w="3"/><text x="16.0714%" y="991.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::core (2 samples, 0.02%)</title><rect x="15.8332%" y="965" width="0.0238%" height="15" fill="rgb(247,200,46)" fg:x="1333" fg:w="2"/><text x="16.0832%" y="975.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="15.8689%" y="997" width="0.0119%" height="15" fill="rgb(218,76,16)" fg:x="1336" fg:w="1"/><text x="16.1189%" y="1007.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.01%)</title><rect x="15.8689%" y="981" width="0.0119%" height="15" fill="rgb(225,21,48)" fg:x="1336" fg:w="1"/><text x="16.1189%" y="991.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="15.8689%" y="965" width="0.0119%" height="15" fill="rgb(239,223,50)" fg:x="1336" fg:w="1"/><text x="16.1189%" y="975.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="15.8689%" y="949" width="0.0119%" height="15" fill="rgb(244,45,21)" fg:x="1336" fg:w="1"/><text x="16.1189%" y="959.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="15.8689%" y="933" width="0.0119%" height="15" fill="rgb(232,33,43)" fg:x="1336" fg:w="1"/><text x="16.1189%" y="943.50"></text></g><g><title>_rjem_je_sdallocx_default (1 samples, 0.01%)</title><rect x="15.8689%" y="917" width="0.0119%" height="15" fill="rgb(209,8,3)" fg:x="1336" fg:w="1"/><text x="16.1189%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::loom::std::unsafe_cell::UnsafeCell&lt;core::option::Option&lt;core::task::wake::Waker&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="15.8926%" y="965" width="0.0119%" height="15" fill="rgb(214,25,53)" fg:x="1338" fg:w="1"/><text x="16.1426%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;core::option::Option&lt;core::task::wake::Waker&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="15.8926%" y="949" width="0.0119%" height="15" fill="rgb(254,186,54)" fg:x="1338" fg:w="1"/><text x="16.1426%" y="959.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::dealloc (4 samples, 0.05%)</title><rect x="15.8689%" y="1045" width="0.0475%" height="15" fill="rgb(208,174,49)" fg:x="1336" fg:w="4"/><text x="16.1189%" y="1055.50"></text></g><g><title>core::mem::drop (4 samples, 0.05%)</title><rect x="15.8689%" y="1029" width="0.0475%" height="15" fill="rgb(233,191,51)" fg:x="1336" fg:w="4"/><text x="16.1189%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;tokio::runtime::task::core::Cell&lt;tokio::runtime::blocking::task::BlockingTask&lt;tokio::fs::file::File::create&lt;&amp;std::path::PathBuf&gt;::{{closure}}::{{closure}}&gt;,tokio::runtime::blocking::schedule::BlockingSchedule&gt;&gt;&gt; (4 samples, 0.05%)</title><rect x="15.8689%" y="1013" width="0.0475%" height="15" fill="rgb(222,134,10)" fg:x="1336" fg:w="4"/><text x="16.1189%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::task::core::Cell&lt;tokio::runtime::blocking::task::BlockingTask&lt;tokio::fs::file::File::create&lt;&amp;std::path::PathBuf&gt;::{{closure}}::{{closure}}&gt;,tokio::runtime::blocking::schedule::BlockingSchedule&gt;&gt; (3 samples, 0.04%)</title><rect x="15.8807%" y="997" width="0.0356%" height="15" fill="rgb(230,226,20)" fg:x="1337" fg:w="3"/><text x="16.1307%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::task::core::Trailer&gt; (2 samples, 0.02%)</title><rect x="15.8926%" y="981" width="0.0238%" height="15" fill="rgb(251,111,25)" fg:x="1338" fg:w="2"/><text x="16.1426%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::task::TaskHarnessScheduleHooks&gt; (1 samples, 0.01%)</title><rect x="15.9045%" y="965" width="0.0119%" height="15" fill="rgb(224,40,46)" fg:x="1339" fg:w="1"/><text x="16.1545%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;alloc::sync::Arc&lt;dyn core::ops::function::Fn&lt;(&amp;tokio::runtime::task_hooks::TaskMeta,)&gt;+Output = ()+core::marker::Send+core::marker::Sync&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="15.9045%" y="949" width="0.0119%" height="15" fill="rgb(236,108,47)" fg:x="1339" fg:w="1"/><text x="16.1545%" y="959.50"></text></g><g><title>tokio::runtime::task::raw::RawTask::drop_join_handle_slow (9 samples, 0.11%)</title><rect x="15.8214%" y="1109" width="0.1069%" height="15" fill="rgb(234,93,0)" fg:x="1332" fg:w="9"/><text x="16.0714%" y="1119.50"></text></g><g><title>tokio::runtime::task::raw::drop_join_handle_slow (9 samples, 0.11%)</title><rect x="15.8214%" y="1093" width="0.1069%" height="15" fill="rgb(224,213,32)" fg:x="1332" fg:w="9"/><text x="16.0714%" y="1103.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::drop_join_handle_slow (9 samples, 0.11%)</title><rect x="15.8214%" y="1077" width="0.1069%" height="15" fill="rgb(251,11,48)" fg:x="1332" fg:w="9"/><text x="16.0714%" y="1087.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::drop_reference (6 samples, 0.07%)</title><rect x="15.8570%" y="1061" width="0.0713%" height="15" fill="rgb(236,173,5)" fg:x="1335" fg:w="6"/><text x="16.1070%" y="1071.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::state (1 samples, 0.01%)</title><rect x="15.9164%" y="1045" width="0.0119%" height="15" fill="rgb(230,95,12)" fg:x="1340" fg:w="1"/><text x="16.1664%" y="1055.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::header (1 samples, 0.01%)</title><rect x="15.9164%" y="1029" width="0.0119%" height="15" fill="rgb(232,209,1)" fg:x="1340" fg:w="1"/><text x="16.1664%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::task::join::JoinHandle&lt;core::result::Result&lt;std::fs::File,std::io::error::Error&gt;&gt;&gt; (11 samples, 0.13%)</title><rect x="15.8095%" y="1141" width="0.1307%" height="15" fill="rgb(232,6,1)" fg:x="1331" fg:w="11"/><text x="16.0595%" y="1151.50"></text></g><g><title>&lt;tokio::runtime::task::join::JoinHandle&lt;T&gt; as core::ops::drop::Drop&gt;::drop (10 samples, 0.12%)</title><rect x="15.8214%" y="1125" width="0.1188%" height="15" fill="rgb(210,224,50)" fg:x="1332" fg:w="10"/><text x="16.0714%" y="1135.50"></text></g><g><title>tokio::runtime::task::state::State::drop_join_handle_fast (1 samples, 0.01%)</title><rect x="15.9283%" y="1109" width="0.0119%" height="15" fill="rgb(228,127,35)" fg:x="1341" fg:w="1"/><text x="16.1783%" y="1119.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::map (1 samples, 0.01%)</title><rect x="15.9283%" y="1093" width="0.0119%" height="15" fill="rgb(245,102,45)" fg:x="1341" fg:w="1"/><text x="16.1783%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::handle::Handle&gt; (1 samples, 0.01%)</title><rect x="15.9401%" y="1125" width="0.0119%" height="15" fill="rgb(214,1,49)" fg:x="1342" fg:w="1"/><text x="16.1901%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sync::poison::mutex::MutexGuard&lt;tokio::runtime::blocking::pool::Shared&gt;&gt; (1 samples, 0.01%)</title><rect x="15.9758%" y="1061" width="0.0119%" height="15" fill="rgb(226,163,40)" fg:x="1345" fg:w="1"/><text x="16.2258%" y="1071.50"></text></g><g><title>&lt;std::sync::poison::mutex::MutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="15.9758%" y="1045" width="0.0119%" height="15" fill="rgb(239,212,28)" fg:x="1345" fg:w="1"/><text x="16.2258%" y="1055.50"></text></g><g><title>std::sync::poison::Flag::done (1 samples, 0.01%)</title><rect x="15.9758%" y="1029" width="0.0119%" height="15" fill="rgb(220,20,13)" fg:x="1345" fg:w="1"/><text x="16.2258%" y="1039.50"></text></g><g><title>pthread_cond_signal (15 samples, 0.18%)</title><rect x="15.9876%" y="1061" width="0.1782%" height="15" fill="rgb(210,164,35)" fg:x="1346" fg:w="15"/><text x="16.2376%" y="1071.50"></text></g><g><title>__psynch_cvsignal (15 samples, 0.18%)</title><rect x="15.9876%" y="1045" width="0.1782%" height="15" fill="rgb(248,109,41)" fg:x="1346" fg:w="15"/><text x="16.2376%" y="1055.50"></text></g><g><title>std::sync::poison::map_result (1 samples, 0.01%)</title><rect x="16.1658%" y="1029" width="0.0119%" height="15" fill="rgb(238,23,50)" fg:x="1361" fg:w="1"/><text x="16.4158%" y="1039.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_task (18 samples, 0.21%)</title><rect x="15.9758%" y="1077" width="0.2138%" height="15" fill="rgb(211,48,49)" fg:x="1345" fg:w="18"/><text x="16.2258%" y="1087.50"></text></g><g><title>tokio::loom::std::mutex::Mutex&lt;T&gt;::lock (2 samples, 0.02%)</title><rect x="16.1658%" y="1061" width="0.0238%" height="15" fill="rgb(223,36,21)" fg:x="1361" fg:w="2"/><text x="16.4158%" y="1071.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::lock (2 samples, 0.02%)</title><rect x="16.1658%" y="1045" width="0.0238%" height="15" fill="rgb(207,123,46)" fg:x="1361" fg:w="2"/><text x="16.4158%" y="1055.50"></text></g><g><title>std::sys::sync::once_box::OnceBox&lt;T&gt;::get_or_init (1 samples, 0.01%)</title><rect x="16.1777%" y="1029" width="0.0119%" height="15" fill="rgb(240,218,32)" fg:x="1362" fg:w="1"/><text x="16.4277%" y="1039.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="16.1777%" y="1013" width="0.0119%" height="15" fill="rgb(252,5,43)" fg:x="1362" fg:w="1"/><text x="16.4277%" y="1023.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (2 samples, 0.02%)</title><rect x="16.2014%" y="949" width="0.0238%" height="15" fill="rgb(252,84,19)" fg:x="1364" fg:w="2"/><text x="16.4514%" y="959.50"></text></g><g><title>_rjem_mallocx (2 samples, 0.02%)</title><rect x="16.2014%" y="933" width="0.0238%" height="15" fill="rgb(243,152,39)" fg:x="1364" fg:w="2"/><text x="16.4514%" y="943.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (3 samples, 0.04%)</title><rect x="16.2014%" y="1029" width="0.0356%" height="15" fill="rgb(234,160,15)" fg:x="1364" fg:w="3"/><text x="16.4514%" y="1039.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (3 samples, 0.04%)</title><rect x="16.2014%" y="1013" width="0.0356%" height="15" fill="rgb(237,34,20)" fg:x="1364" fg:w="3"/><text x="16.4514%" y="1023.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3 samples, 0.04%)</title><rect x="16.2014%" y="997" width="0.0356%" height="15" fill="rgb(229,97,13)" fg:x="1364" fg:w="3"/><text x="16.4514%" y="1007.50"></text></g><g><title>alloc::alloc::alloc (3 samples, 0.04%)</title><rect x="16.2014%" y="981" width="0.0356%" height="15" fill="rgb(234,71,50)" fg:x="1364" fg:w="3"/><text x="16.4514%" y="991.50"></text></g><g><title>__rustc::__rust_alloc (3 samples, 0.04%)</title><rect x="16.2014%" y="965" width="0.0356%" height="15" fill="rgb(253,155,4)" fg:x="1364" fg:w="3"/><text x="16.4514%" y="975.50"></text></g><g><title>_rjem_mallocx (1 samples, 0.01%)</title><rect x="16.2252%" y="949" width="0.0119%" height="15" fill="rgb(222,185,37)" fg:x="1366" fg:w="1"/><text x="16.4752%" y="959.50"></text></g><g><title>tokio::fs::asyncify::_{{closure}} (48 samples, 0.57%)</title><rect x="15.7026%" y="1157" width="0.5701%" height="15" fill="rgb(251,177,13)" fg:x="1322" fg:w="48"/><text x="15.9526%" y="1167.50"></text></g><g><title>tokio::runtime::blocking::pool::spawn_blocking (28 samples, 0.33%)</title><rect x="15.9401%" y="1141" width="0.3326%" height="15" fill="rgb(250,179,40)" fg:x="1342" fg:w="28"/><text x="16.1901%" y="1151.50"></text></g><g><title>tokio::runtime::handle::Handle::spawn_blocking (27 samples, 0.32%)</title><rect x="15.9520%" y="1125" width="0.3207%" height="15" fill="rgb(242,44,2)" fg:x="1343" fg:w="27"/><text x="16.2020%" y="1135.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_blocking (27 samples, 0.32%)</title><rect x="15.9520%" y="1109" width="0.3207%" height="15" fill="rgb(216,177,13)" fg:x="1343" fg:w="27"/><text x="16.2020%" y="1119.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_blocking_inner (26 samples, 0.31%)</title><rect x="15.9639%" y="1093" width="0.3088%" height="15" fill="rgb(216,106,43)" fg:x="1344" fg:w="26"/><text x="16.2139%" y="1103.50"></text></g><g><title>tokio::runtime::task::unowned (7 samples, 0.08%)</title><rect x="16.1896%" y="1077" width="0.0831%" height="15" fill="rgb(216,183,2)" fg:x="1363" fg:w="7"/><text x="16.4396%" y="1087.50"></text></g><g><title>tokio::runtime::task::new_task (7 samples, 0.08%)</title><rect x="16.1896%" y="1061" width="0.0831%" height="15" fill="rgb(249,75,3)" fg:x="1363" fg:w="7"/><text x="16.4396%" y="1071.50"></text></g><g><title>tokio::runtime::task::raw::RawTask::new (7 samples, 0.08%)</title><rect x="16.1896%" y="1045" width="0.0831%" height="15" fill="rgb(219,67,39)" fg:x="1363" fg:w="7"/><text x="16.4396%" y="1055.50"></text></g><g><title>tokio::runtime::task::core::Cell&lt;T,S&gt;::new (3 samples, 0.04%)</title><rect x="16.2371%" y="1029" width="0.0356%" height="15" fill="rgb(253,228,2)" fg:x="1367" fg:w="3"/><text x="16.4871%" y="1039.50"></text></g><g><title>tokio::runtime::task::core::Trailer::new (1 samples, 0.01%)</title><rect x="16.2608%" y="1013" width="0.0119%" height="15" fill="rgb(235,138,27)" fg:x="1369" fg:w="1"/><text x="16.5108%" y="1023.50"></text></g><g><title>tokio::util::linked_list::Pointers&lt;T&gt;::new (1 samples, 0.01%)</title><rect x="16.2608%" y="997" width="0.0119%" height="15" fill="rgb(236,97,51)" fg:x="1369" fg:w="1"/><text x="16.5108%" y="1007.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::new (2 samples, 0.02%)</title><rect x="16.2727%" y="1141" width="0.0238%" height="15" fill="rgb(240,80,30)" fg:x="1370" fg:w="2"/><text x="16.5227%" y="1151.50"></text></g><g><title>alloc::alloc::exchange_malloc (2 samples, 0.02%)</title><rect x="16.2727%" y="1125" width="0.0238%" height="15" fill="rgb(230,178,19)" fg:x="1370" fg:w="2"/><text x="16.5227%" y="1135.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.02%)</title><rect x="16.2727%" y="1109" width="0.0238%" height="15" fill="rgb(210,190,27)" fg:x="1370" fg:w="2"/><text x="16.5227%" y="1119.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.01%)</title><rect x="16.2846%" y="1093" width="0.0119%" height="15" fill="rgb(222,107,31)" fg:x="1371" fg:w="1"/><text x="16.5346%" y="1103.50"></text></g><g><title>core::ptr::read_volatile::precondition_check (1 samples, 0.01%)</title><rect x="16.2846%" y="1077" width="0.0119%" height="15" fill="rgb(216,127,34)" fg:x="1371" fg:w="1"/><text x="16.5346%" y="1087.50"></text></g><g><title>tokio::io::blocking::Buf::with_capacity (1 samples, 0.01%)</title><rect x="16.2965%" y="1141" width="0.0119%" height="15" fill="rgb(234,116,52)" fg:x="1372" fg:w="1"/><text x="16.5465%" y="1151.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.01%)</title><rect x="16.2965%" y="1125" width="0.0119%" height="15" fill="rgb(222,124,15)" fg:x="1372" fg:w="1"/><text x="16.5465%" y="1135.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (1 samples, 0.01%)</title><rect x="16.2965%" y="1109" width="0.0119%" height="15" fill="rgb(231,179,28)" fg:x="1372" fg:w="1"/><text x="16.5465%" y="1119.50"></text></g><g><title>fs_err::tokio::file::File::create::_{{closure}} (63 samples, 0.75%)</title><rect x="15.5838%" y="1189" width="0.7483%" height="15" fill="rgb(226,93,45)" fg:x="1312" fg:w="63"/><text x="15.8338%" y="1199.50"></text></g><g><title>tokio::fs::file::File::create::_{{closure}} (57 samples, 0.68%)</title><rect x="15.6551%" y="1173" width="0.6770%" height="15" fill="rgb(215,8,51)" fg:x="1318" fg:w="57"/><text x="15.9051%" y="1183.50"></text></g><g><title>tokio::fs::file::File::from_std (5 samples, 0.06%)</title><rect x="16.2727%" y="1157" width="0.0594%" height="15" fill="rgb(223,106,5)" fg:x="1370" fg:w="5"/><text x="16.5227%" y="1167.50"></text></g><g><title>tokio::sync::mutex::Mutex&lt;T&gt;::new (2 samples, 0.02%)</title><rect x="16.3084%" y="1141" width="0.0238%" height="15" fill="rgb(250,191,5)" fg:x="1373" fg:w="2"/><text x="16.5584%" y="1151.50"></text></g><g><title>_platform_memmove (2 samples, 0.02%)</title><rect x="16.3084%" y="1125" width="0.0238%" height="15" fill="rgb(242,132,44)" fg:x="1373" fg:w="2"/><text x="16.5584%" y="1135.50"></text></g><g><title>core::num::_&lt;impl u32&gt;::from_le_bytes (1 samples, 0.01%)</title><rect x="16.4390%" y="1061" width="0.0119%" height="15" fill="rgb(251,152,29)" fg:x="1384" fg:w="1"/><text x="16.6890%" y="1071.50"></text></g><g><title>&lt;rustc_hash::FxHasher as core::hash::Hasher&gt;::write (5 samples, 0.06%)</title><rect x="16.4034%" y="1093" width="0.0594%" height="15" fill="rgb(218,179,5)" fg:x="1381" fg:w="5"/><text x="16.6534%" y="1103.50"></text></g><g><title>rustc_hash::hash_bytes (5 samples, 0.06%)</title><rect x="16.4034%" y="1077" width="0.0594%" height="15" fill="rgb(227,67,19)" fg:x="1381" fg:w="5"/><text x="16.6534%" y="1087.50"></text></g><g><title>rustc_hash::multiply_mix (1 samples, 0.01%)</title><rect x="16.4509%" y="1061" width="0.0119%" height="15" fill="rgb(233,119,31)" fg:x="1385" fg:w="1"/><text x="16.7009%" y="1071.50"></text></g><g><title>core::hash::BuildHasher::hash_one (12 samples, 0.14%)</title><rect x="16.3321%" y="1157" width="0.1425%" height="15" fill="rgb(241,120,22)" fg:x="1375" fg:w="12"/><text x="16.5821%" y="1167.50"></text></g><g><title>core::hash::impls::_&lt;impl core::hash::Hash for &amp;T&gt;::hash (12 samples, 0.14%)</title><rect x="16.3321%" y="1141" width="0.1425%" height="15" fill="rgb(224,102,30)" fg:x="1375" fg:w="12"/><text x="16.5821%" y="1151.50"></text></g><g><title>&lt;std::path::PathBuf as core::hash::Hash&gt;::hash (12 samples, 0.14%)</title><rect x="16.3321%" y="1125" width="0.1425%" height="15" fill="rgb(210,164,37)" fg:x="1375" fg:w="12"/><text x="16.5821%" y="1135.50"></text></g><g><title>&lt;std::path::Path as core::hash::Hash&gt;::hash (12 samples, 0.14%)</title><rect x="16.3321%" y="1109" width="0.1425%" height="15" fill="rgb(226,191,16)" fg:x="1375" fg:w="12"/><text x="16.5821%" y="1119.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::unchecked_add::precondition_check (1 samples, 0.01%)</title><rect x="16.4628%" y="1093" width="0.0119%" height="15" fill="rgb(214,40,45)" fg:x="1386" fg:w="1"/><text x="16.7128%" y="1103.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve (1 samples, 0.01%)</title><rect x="16.4746%" y="1141" width="0.0119%" height="15" fill="rgb(244,29,26)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1151.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (1 samples, 0.01%)</title><rect x="16.4746%" y="1125" width="0.0119%" height="15" fill="rgb(216,16,5)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1135.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash::_{{closure}} (1 samples, 0.01%)</title><rect x="16.4746%" y="1109" width="0.0119%" height="15" fill="rgb(249,76,35)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1119.50"></text></g><g><title>hashbrown::map::make_hasher::_{{closure}} (1 samples, 0.01%)</title><rect x="16.4746%" y="1093" width="0.0119%" height="15" fill="rgb(207,11,44)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1103.50"></text></g><g><title>core::hash::BuildHasher::hash_one (1 samples, 0.01%)</title><rect x="16.4746%" y="1077" width="0.0119%" height="15" fill="rgb(228,190,49)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1087.50"></text></g><g><title>core::hash::impls::_&lt;impl core::hash::Hash for &amp;T&gt;::hash (1 samples, 0.01%)</title><rect x="16.4746%" y="1061" width="0.0119%" height="15" fill="rgb(214,173,12)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1071.50"></text></g><g><title>&lt;std::path::PathBuf as core::hash::Hash&gt;::hash (1 samples, 0.01%)</title><rect x="16.4746%" y="1045" width="0.0119%" height="15" fill="rgb(218,26,35)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1055.50"></text></g><g><title>&lt;std::path::Path as core::hash::Hash&gt;::hash (1 samples, 0.01%)</title><rect x="16.4746%" y="1029" width="0.0119%" height="15" fill="rgb(220,200,19)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1039.50"></text></g><g><title>&lt;rustc_hash::FxHasher as core::hash::Hasher&gt;::write (1 samples, 0.01%)</title><rect x="16.4746%" y="1013" width="0.0119%" height="15" fill="rgb(239,95,49)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1023.50"></text></g><g><title>rustc_hash::hash_bytes (1 samples, 0.01%)</title><rect x="16.4746%" y="997" width="0.0119%" height="15" fill="rgb(235,85,53)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="1007.50"></text></g><g><title>&lt;T as core::convert::TryInto&lt;U&gt;&gt;::try_into (1 samples, 0.01%)</title><rect x="16.4746%" y="981" width="0.0119%" height="15" fill="rgb(233,133,31)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="991.50"></text></g><g><title>core::array::_&lt;impl core::convert::TryFrom&lt;&amp;[T]&gt; for [T (1 samples, 0.01%)</title><rect x="16.4746%" y="965" width="0.0119%" height="15" fill="rgb(218,25,20)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="975.50"></text></g><g><title> N]&gt;::try_from (1 samples, 0.01%)</title><rect x="16.4746%" y="949" width="0.0119%" height="15" fill="rgb(252,210,38)" fg:x="1387" fg:w="1"/><text x="16.7246%" y="959.50"></text></g><g><title>&lt;core::ops::control_flow::ControlFlow&lt;B,C&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.01%)</title><rect x="16.5103%" y="965" width="0.0119%" height="15" fill="rgb(242,134,21)" fg:x="1390" fg:w="1"/><text x="16.7603%" y="975.50"></text></g><g><title>&lt;std::path::Components as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (3 samples, 0.04%)</title><rect x="16.5222%" y="965" width="0.0356%" height="15" fill="rgb(213,28,48)" fg:x="1391" fg:w="3"/><text x="16.7722%" y="975.50"></text></g><g><title>std::path::Components::parse_next_component_back (3 samples, 0.04%)</title><rect x="16.5222%" y="949" width="0.0356%" height="15" fill="rgb(250,196,2)" fg:x="1391" fg:w="3"/><text x="16.7722%" y="959.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="16.5578%" y="965" width="0.0119%" height="15" fill="rgb(227,5,17)" fg:x="1394" fg:w="1"/><text x="16.8078%" y="975.50"></text></g><g><title>_platform_memmove (2 samples, 0.02%)</title><rect x="16.5697%" y="949" width="0.0238%" height="15" fill="rgb(221,226,24)" fg:x="1395" fg:w="2"/><text x="16.8197%" y="959.50"></text></g><g><title>&lt;core::iter::adapters::rev::Rev&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.05%)</title><rect x="16.5934%" y="933" width="0.0475%" height="15" fill="rgb(211,5,48)" fg:x="1397" fg:w="4"/><text x="16.8434%" y="943.50"></text></g><g><title>&lt;std::path::Components as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (4 samples, 0.05%)</title><rect x="16.5934%" y="917" width="0.0475%" height="15" fill="rgb(219,150,6)" fg:x="1397" fg:w="4"/><text x="16.8434%" y="927.50"></text></g><g><title>std::path::Components::parse_next_component_back (3 samples, 0.04%)</title><rect x="16.6053%" y="901" width="0.0356%" height="15" fill="rgb(251,46,16)" fg:x="1398" fg:w="3"/><text x="16.8553%" y="911.50"></text></g><g><title>std::path::Components::len_before_body (2 samples, 0.02%)</title><rect x="16.6172%" y="885" width="0.0238%" height="15" fill="rgb(220,204,40)" fg:x="1399" fg:w="2"/><text x="16.8672%" y="895.50"></text></g><g><title>_platform_memmove (3 samples, 0.04%)</title><rect x="16.6409%" y="933" width="0.0356%" height="15" fill="rgb(211,85,2)" fg:x="1401" fg:w="3"/><text x="16.8909%" y="943.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="16.6766%" y="917" width="0.0119%" height="15" fill="rgb(229,17,7)" fg:x="1404" fg:w="1"/><text x="16.9266%" y="927.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_for_each::call::_{{closure}} (11 samples, 0.13%)</title><rect x="16.5697%" y="965" width="0.1307%" height="15" fill="rgb(239,72,28)" fg:x="1395" fg:w="11"/><text x="16.8197%" y="975.50"></text></g><g><title>core::iter::traits::iterator::iter_compare::compare::_{{closure}} (9 samples, 0.11%)</title><rect x="16.5934%" y="949" width="0.1069%" height="15" fill="rgb(230,47,54)" fg:x="1397" fg:w="9"/><text x="16.8434%" y="959.50"></text></g><g><title>core::iter::traits::iterator::Iterator::eq_by::compare::_{{closure}} (2 samples, 0.02%)</title><rect x="16.6766%" y="933" width="0.0238%" height="15" fill="rgb(214,50,8)" fg:x="1404" fg:w="2"/><text x="16.9266%" y="943.50"></text></g><g><title>core::iter::traits::iterator::Iterator::eq::_{{closure}} (1 samples, 0.01%)</title><rect x="16.6884%" y="917" width="0.0119%" height="15" fill="rgb(216,198,43)" fg:x="1405" fg:w="1"/><text x="16.9384%" y="927.50"></text></g><g><title>&lt;std::path::Component as core::cmp::PartialEq&gt;::eq (1 samples, 0.01%)</title><rect x="16.6884%" y="901" width="0.0119%" height="15" fill="rgb(234,20,35)" fg:x="1405" fg:w="1"/><text x="16.9384%" y="911.50"></text></g><g><title>&lt;std::path::Components as core::cmp::PartialEq&gt;::eq (19 samples, 0.23%)</title><rect x="16.4865%" y="1061" width="0.2257%" height="15" fill="rgb(254,45,19)" fg:x="1388" fg:w="19"/><text x="16.7365%" y="1071.50"></text></g><g><title>core::iter::traits::iterator::Iterator::eq_by (19 samples, 0.23%)</title><rect x="16.4865%" y="1045" width="0.2257%" height="15" fill="rgb(219,14,44)" fg:x="1388" fg:w="19"/><text x="16.7365%" y="1055.50"></text></g><g><title>core::iter::traits::iterator::iter_compare (19 samples, 0.23%)</title><rect x="16.4865%" y="1029" width="0.2257%" height="15" fill="rgb(217,220,26)" fg:x="1388" fg:w="19"/><text x="16.7365%" y="1039.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_for_each (18 samples, 0.21%)</title><rect x="16.4984%" y="1013" width="0.2138%" height="15" fill="rgb(213,158,28)" fg:x="1389" fg:w="18"/><text x="16.7484%" y="1023.50"></text></g><g><title>&lt;core::iter::adapters::rev::Rev&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (18 samples, 0.21%)</title><rect x="16.4984%" y="997" width="0.2138%" height="15" fill="rgb(252,51,52)" fg:x="1389" fg:w="18"/><text x="16.7484%" y="1007.50"></text></g><g><title>core::iter::traits::double_ended::DoubleEndedIterator::try_rfold (17 samples, 0.20%)</title><rect x="16.5103%" y="981" width="0.2019%" height="15" fill="rgb(246,89,16)" fg:x="1390" fg:w="17"/><text x="16.7603%" y="991.50"></text></g><g><title>core::iter::traits::iterator::iter_compare::compare::_{{closure}} (1 samples, 0.01%)</title><rect x="16.7003%" y="965" width="0.0119%" height="15" fill="rgb(216,158,49)" fg:x="1406" fg:w="1"/><text x="16.9503%" y="975.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (33 samples, 0.39%)</title><rect x="16.3321%" y="1189" width="0.3920%" height="15" fill="rgb(236,107,19)" fg:x="1375" fg:w="33"/><text x="16.5821%" y="1199.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (33 samples, 0.39%)</title><rect x="16.3321%" y="1173" width="0.3920%" height="15" fill="rgb(228,185,30)" fg:x="1375" fg:w="33"/><text x="16.5821%" y="1183.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find_or_find_insert_slot (21 samples, 0.25%)</title><rect x="16.4746%" y="1157" width="0.2494%" height="15" fill="rgb(246,134,8)" fg:x="1387" fg:w="21"/><text x="16.7246%" y="1167.50"></text></g><g><title>hashbrown::raw::RawTableInner::find_or_find_insert_slot_inner (20 samples, 0.24%)</title><rect x="16.4865%" y="1141" width="0.2376%" height="15" fill="rgb(214,143,50)" fg:x="1388" fg:w="20"/><text x="16.7365%" y="1151.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find_or_find_insert_slot::_{{closure}} (20 samples, 0.24%)</title><rect x="16.4865%" y="1125" width="0.2376%" height="15" fill="rgb(228,75,8)" fg:x="1388" fg:w="20"/><text x="16.7365%" y="1135.50"></text></g><g><title>hashbrown::map::equivalent_key::_{{closure}} (20 samples, 0.24%)</title><rect x="16.4865%" y="1109" width="0.2376%" height="15" fill="rgb(207,175,4)" fg:x="1388" fg:w="20"/><text x="16.7365%" y="1119.50"></text></g><g><title>&lt;Q as hashbrown::Equivalent&lt;K&gt;&gt;::equivalent (20 samples, 0.24%)</title><rect x="16.4865%" y="1093" width="0.2376%" height="15" fill="rgb(205,108,24)" fg:x="1388" fg:w="20"/><text x="16.7365%" y="1103.50"></text></g><g><title>&lt;std::path::PathBuf as core::cmp::PartialEq&gt;::eq (20 samples, 0.24%)</title><rect x="16.4865%" y="1077" width="0.2376%" height="15" fill="rgb(244,120,49)" fg:x="1388" fg:w="20"/><text x="16.7365%" y="1087.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="16.7122%" y="1061" width="0.0119%" height="15" fill="rgb(223,47,38)" fg:x="1407" fg:w="1"/><text x="16.9622%" y="1071.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="16.7241%" y="1157" width="0.0119%" height="15" fill="rgb(229,179,11)" fg:x="1408" fg:w="1"/><text x="16.9741%" y="1167.50"></text></g><g><title>DYLD-STUB$$pthread_getspecific (1 samples, 0.01%)</title><rect x="16.7597%" y="1061" width="0.0119%" height="15" fill="rgb(231,122,1)" fg:x="1411" fg:w="1"/><text x="17.0097%" y="1071.50"></text></g><g><title>_rjem_je_arena_ralloc_no_move (1 samples, 0.01%)</title><rect x="16.7716%" y="1045" width="0.0119%" height="15" fill="rgb(245,119,9)" fg:x="1412" fg:w="1"/><text x="17.0216%" y="1055.50"></text></g><g><title>_rjem_je_hook_invoke_dalloc (1 samples, 0.01%)</title><rect x="16.7835%" y="1045" width="0.0119%" height="15" fill="rgb(241,163,25)" fg:x="1413" fg:w="1"/><text x="17.0335%" y="1055.50"></text></g><g><title>_rjem_je_arena_ralloc (5 samples, 0.06%)</title><rect x="16.7716%" y="1061" width="0.0594%" height="15" fill="rgb(217,214,3)" fg:x="1412" fg:w="5"/><text x="17.0216%" y="1071.50"></text></g><g><title>arena_ralloc_move_helper (3 samples, 0.04%)</title><rect x="16.7953%" y="1045" width="0.0356%" height="15" fill="rgb(240,86,28)" fg:x="1414" fg:w="3"/><text x="17.0453%" y="1055.50"></text></g><g><title>std::path::Path::join (11 samples, 0.13%)</title><rect x="16.7241%" y="1189" width="0.1307%" height="15" fill="rgb(215,47,9)" fg:x="1408" fg:w="11"/><text x="16.9741%" y="1199.50"></text></g><g><title>std::path::Path::_join (11 samples, 0.13%)</title><rect x="16.7241%" y="1173" width="0.1307%" height="15" fill="rgb(252,25,45)" fg:x="1408" fg:w="11"/><text x="16.9741%" y="1183.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (10 samples, 0.12%)</title><rect x="16.7360%" y="1157" width="0.1188%" height="15" fill="rgb(251,164,9)" fg:x="1409" fg:w="10"/><text x="16.9860%" y="1167.50"></text></g><g><title>alloc::raw_vec::finish_grow (10 samples, 0.12%)</title><rect x="16.7360%" y="1141" width="0.1188%" height="15" fill="rgb(233,194,0)" fg:x="1409" fg:w="10"/><text x="16.9860%" y="1151.50"></text></g><g><title>__rustc::__rust_realloc (10 samples, 0.12%)</title><rect x="16.7360%" y="1125" width="0.1188%" height="15" fill="rgb(249,111,24)" fg:x="1409" fg:w="10"/><text x="16.9860%" y="1135.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (10 samples, 0.12%)</title><rect x="16.7360%" y="1109" width="0.1188%" height="15" fill="rgb(250,223,3)" fg:x="1409" fg:w="10"/><text x="16.9860%" y="1119.50"></text></g><g><title>_rjem_realloc (10 samples, 0.12%)</title><rect x="16.7360%" y="1093" width="0.1188%" height="15" fill="rgb(236,178,37)" fg:x="1409" fg:w="10"/><text x="16.9860%" y="1103.50"></text></g><g><title>do_rallocx (10 samples, 0.12%)</title><rect x="16.7360%" y="1077" width="0.1188%" height="15" fill="rgb(241,158,50)" fg:x="1409" fg:w="10"/><text x="16.9860%" y="1087.50"></text></g><g><title>rtree_metadata_read (2 samples, 0.02%)</title><rect x="16.8310%" y="1061" width="0.0238%" height="15" fill="rgb(213,121,41)" fg:x="1417" fg:w="2"/><text x="17.0810%" y="1071.50"></text></g><g><title>&lt;std::path::Components as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (1 samples, 0.01%)</title><rect x="16.8547%" y="1173" width="0.0119%" height="15" fill="rgb(240,92,3)" fg:x="1419" fg:w="1"/><text x="17.1047%" y="1183.50"></text></g><g><title>std::path::Path::parent (2 samples, 0.02%)</title><rect x="16.8547%" y="1189" width="0.0238%" height="15" fill="rgb(205,123,3)" fg:x="1419" fg:w="2"/><text x="17.1047%" y="1199.50"></text></g><g><title>std::path::Components::as_path (1 samples, 0.01%)</title><rect x="16.8666%" y="1173" width="0.0119%" height="15" fill="rgb(205,97,47)" fg:x="1420" fg:w="1"/><text x="17.1166%" y="1183.50"></text></g><g><title>std::path::Components::parse_next_component_back (1 samples, 0.01%)</title><rect x="16.8666%" y="1157" width="0.0119%" height="15" fill="rgb(247,152,14)" fg:x="1420" fg:w="1"/><text x="17.1166%" y="1167.50"></text></g><g><title>std::path::Components::len_before_body (1 samples, 0.01%)</title><rect x="16.8666%" y="1141" width="0.0119%" height="15" fill="rgb(248,195,53)" fg:x="1420" fg:w="1"/><text x="17.1166%" y="1151.50"></text></g><g><title>DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="16.8785%" y="1173" width="0.0119%" height="15" fill="rgb(226,201,16)" fg:x="1421" fg:w="1"/><text x="17.1285%" y="1183.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (5 samples, 0.06%)</title><rect x="16.8904%" y="1141" width="0.0594%" height="15" fill="rgb(205,98,0)" fg:x="1422" fg:w="5"/><text x="17.1404%" y="1151.50"></text></g><g><title>__rustc::__rust_alloc (5 samples, 0.06%)</title><rect x="16.8904%" y="1125" width="0.0594%" height="15" fill="rgb(214,191,48)" fg:x="1422" fg:w="5"/><text x="17.1404%" y="1135.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (5 samples, 0.06%)</title><rect x="16.8904%" y="1109" width="0.0594%" height="15" fill="rgb(237,112,39)" fg:x="1422" fg:w="5"/><text x="17.1404%" y="1119.50"></text></g><g><title>_rjem_malloc (5 samples, 0.06%)</title><rect x="16.8904%" y="1093" width="0.0594%" height="15" fill="rgb(247,203,27)" fg:x="1422" fg:w="5"/><text x="17.1404%" y="1103.50"></text></g><g><title>_rjem_je_malloc_default (4 samples, 0.05%)</title><rect x="16.9022%" y="1077" width="0.0475%" height="15" fill="rgb(235,124,28)" fg:x="1423" fg:w="4"/><text x="17.1522%" y="1087.50"></text></g><g><title>_rjem_je_tcache_alloc_small_hard (3 samples, 0.04%)</title><rect x="16.9141%" y="1061" width="0.0356%" height="15" fill="rgb(208,207,46)" fg:x="1424" fg:w="3"/><text x="17.1641%" y="1071.50"></text></g><g><title>_rjem_je_arena_cache_bin_fill_small (3 samples, 0.04%)</title><rect x="16.9141%" y="1045" width="0.0356%" height="15" fill="rgb(234,176,4)" fg:x="1424" fg:w="3"/><text x="17.1641%" y="1055.50"></text></g><g><title>arena_slab_alloc (1 samples, 0.01%)</title><rect x="16.9379%" y="1029" width="0.0119%" height="15" fill="rgb(230,133,28)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="1039.50"></text></g><g><title>_rjem_je_pa_alloc (1 samples, 0.01%)</title><rect x="16.9379%" y="1013" width="0.0119%" height="15" fill="rgb(211,137,40)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="1023.50"></text></g><g><title>pai_alloc (1 samples, 0.01%)</title><rect x="16.9379%" y="997" width="0.0119%" height="15" fill="rgb(254,35,13)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="1007.50"></text></g><g><title>pac_alloc_impl (1 samples, 0.01%)</title><rect x="16.9379%" y="981" width="0.0119%" height="15" fill="rgb(225,49,51)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="991.50"></text></g><g><title>pac_alloc_real (1 samples, 0.01%)</title><rect x="16.9379%" y="965" width="0.0119%" height="15" fill="rgb(251,10,15)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="975.50"></text></g><g><title>_rjem_je_ecache_alloc (1 samples, 0.01%)</title><rect x="16.9379%" y="949" width="0.0119%" height="15" fill="rgb(228,207,15)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="959.50"></text></g><g><title>extent_recycle (1 samples, 0.01%)</title><rect x="16.9379%" y="933" width="0.0119%" height="15" fill="rgb(241,99,19)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="943.50"></text></g><g><title>extent_recycle_extract (1 samples, 0.01%)</title><rect x="16.9379%" y="917" width="0.0119%" height="15" fill="rgb(207,104,49)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="927.50"></text></g><g><title>extent_activate_locked (1 samples, 0.01%)</title><rect x="16.9379%" y="901" width="0.0119%" height="15" fill="rgb(234,99,18)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="911.50"></text></g><g><title>_rjem_je_eset_remove (1 samples, 0.01%)</title><rect x="16.9379%" y="885" width="0.0119%" height="15" fill="rgb(213,191,49)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="895.50"></text></g><g><title>_rjem_je_edata_heap_remove (1 samples, 0.01%)</title><rect x="16.9379%" y="869" width="0.0119%" height="15" fill="rgb(210,226,19)" fg:x="1426" fg:w="1"/><text x="17.1879%" y="879.50"></text></g><g><title>tokio::io::util::buf_writer::BufWriter&lt;W&gt;::with_capacity (7 samples, 0.08%)</title><rect x="16.8785%" y="1189" width="0.0831%" height="15" fill="rgb(229,97,18)" fg:x="1421" fg:w="7"/><text x="17.1285%" y="1199.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (6 samples, 0.07%)</title><rect x="16.8904%" y="1173" width="0.0713%" height="15" fill="rgb(211,167,15)" fg:x="1422" fg:w="6"/><text x="17.1404%" y="1183.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (6 samples, 0.07%)</title><rect x="16.8904%" y="1157" width="0.0713%" height="15" fill="rgb(210,169,34)" fg:x="1422" fg:w="6"/><text x="17.1404%" y="1167.50"></text></g><g><title>core::hint::assert_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="16.9498%" y="1141" width="0.0119%" height="15" fill="rgb(241,121,31)" fg:x="1427" fg:w="1"/><text x="17.1998%" y="1151.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.01%)</title><rect x="17.0210%" y="1125" width="0.0119%" height="15" fill="rgb(232,40,11)" fg:x="1433" fg:w="1"/><text x="17.2710%" y="1135.50"></text></g><g><title>&lt;core::pin::Pin&lt;Ptr&gt; as core::ops::deref::DerefMut&gt;::deref_mut (1 samples, 0.01%)</title><rect x="17.0329%" y="1093" width="0.0119%" height="15" fill="rgb(205,86,26)" fg:x="1434" fg:w="1"/><text x="17.2829%" y="1103.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.01%)</title><rect x="17.0448%" y="1077" width="0.0119%" height="15" fill="rgb(231,126,28)" fg:x="1435" fg:w="1"/><text x="17.2948%" y="1087.50"></text></g><g><title>tokio::runtime::task::core::Core&lt;T,S&gt;::take_output (1 samples, 0.01%)</title><rect x="17.0685%" y="1013" width="0.0119%" height="15" fill="rgb(219,221,18)" fg:x="1437" fg:w="1"/><text x="17.3185%" y="1023.50"></text></g><g><title>tokio::runtime::task::core::Core&lt;T,S&gt;::take_output::_{{closure}} (1 samples, 0.01%)</title><rect x="17.0685%" y="997" width="0.0119%" height="15" fill="rgb(211,40,0)" fg:x="1437" fg:w="1"/><text x="17.3185%" y="1007.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="17.0685%" y="981" width="0.0119%" height="15" fill="rgb(239,85,43)" fg:x="1437" fg:w="1"/><text x="17.3185%" y="991.50"></text></g><g><title>&lt;core::mem::manually_drop::ManuallyDrop&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.01%)</title><rect x="17.0804%" y="949" width="0.0119%" height="15" fill="rgb(231,55,21)" fg:x="1438" fg:w="1"/><text x="17.3304%" y="959.50"></text></g><g><title>core::sync::atomic::atomic_add (1 samples, 0.01%)</title><rect x="17.0804%" y="933" width="0.0119%" height="15" fill="rgb(225,184,43)" fg:x="1438" fg:w="1"/><text x="17.3304%" y="943.50"></text></g><g><title>tokio::runtime::task::raw::RawTask::try_read_output (4 samples, 0.05%)</title><rect x="17.0567%" y="1061" width="0.0475%" height="15" fill="rgb(251,158,41)" fg:x="1436" fg:w="4"/><text x="17.3067%" y="1071.50"></text></g><g><title>tokio::runtime::task::raw::try_read_output (4 samples, 0.05%)</title><rect x="17.0567%" y="1045" width="0.0475%" height="15" fill="rgb(234,159,37)" fg:x="1436" fg:w="4"/><text x="17.3067%" y="1055.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::try_read_output (3 samples, 0.04%)</title><rect x="17.0685%" y="1029" width="0.0356%" height="15" fill="rgb(216,204,22)" fg:x="1437" fg:w="3"/><text x="17.3185%" y="1039.50"></text></g><g><title>tokio::runtime::task::harness::can_read_output (2 samples, 0.02%)</title><rect x="17.0804%" y="1013" width="0.0238%" height="15" fill="rgb(214,17,3)" fg:x="1438" fg:w="2"/><text x="17.3304%" y="1023.50"></text></g><g><title>&lt;core::task::wake::Waker as core::clone::Clone&gt;::clone (2 samples, 0.02%)</title><rect x="17.0804%" y="997" width="0.0238%" height="15" fill="rgb(212,111,17)" fg:x="1438" fg:w="2"/><text x="17.3304%" y="1007.50"></text></g><g><title>futures_util::stream::futures_unordered::task::waker_ref::clone_arc_raw (2 samples, 0.02%)</title><rect x="17.0804%" y="981" width="0.0238%" height="15" fill="rgb(221,157,24)" fg:x="1438" fg:w="2"/><text x="17.3304%" y="991.50"></text></g><g><title>futures_util::stream::futures_unordered::task::waker_ref::increase_refcount (2 samples, 0.02%)</title><rect x="17.0804%" y="965" width="0.0238%" height="15" fill="rgb(252,16,13)" fg:x="1438" fg:w="2"/><text x="17.3304%" y="975.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::from_raw (1 samples, 0.01%)</title><rect x="17.0923%" y="949" width="0.0119%" height="15" fill="rgb(221,62,2)" fg:x="1439" fg:w="1"/><text x="17.3423%" y="959.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::from_raw_in (1 samples, 0.01%)</title><rect x="17.0923%" y="933" width="0.0119%" height="15" fill="rgb(247,87,22)" fg:x="1439" fg:w="1"/><text x="17.3423%" y="943.50"></text></g><g><title>alloc::sync::data_offset_align (1 samples, 0.01%)</title><rect x="17.0923%" y="917" width="0.0119%" height="15" fill="rgb(215,73,9)" fg:x="1439" fg:w="1"/><text x="17.3423%" y="927.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::count_ones (1 samples, 0.01%)</title><rect x="17.0923%" y="901" width="0.0119%" height="15" fill="rgb(207,175,33)" fg:x="1439" fg:w="1"/><text x="17.3423%" y="911.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::unwrap_or (1 samples, 0.01%)</title><rect x="17.1042%" y="1045" width="0.0119%" height="15" fill="rgb(243,129,54)" fg:x="1440" fg:w="1"/><text x="17.3542%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::task::poll::Poll&lt;tokio::task::coop::RestoreOnPending&gt;&gt; (1 samples, 0.01%)</title><rect x="17.1042%" y="1029" width="0.0119%" height="15" fill="rgb(227,119,45)" fg:x="1440" fg:w="1"/><text x="17.3542%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::task::coop::RestoreOnPending&gt; (1 samples, 0.01%)</title><rect x="17.1042%" y="1013" width="0.0119%" height="15" fill="rgb(205,109,36)" fg:x="1440" fg:w="1"/><text x="17.3542%" y="1023.50"></text></g><g><title>&lt;tokio::task::coop::RestoreOnPending as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="17.1042%" y="997" width="0.0119%" height="15" fill="rgb(205,6,39)" fg:x="1440" fg:w="1"/><text x="17.3542%" y="1007.50"></text></g><g><title>tokio::task::coop::Budget::is_unconstrained (1 samples, 0.01%)</title><rect x="17.1042%" y="981" width="0.0119%" height="15" fill="rgb(221,32,16)" fg:x="1440" fg:w="1"/><text x="17.3542%" y="991.50"></text></g><g><title>core::option::Option&lt;T&gt;::is_none (1 samples, 0.01%)</title><rect x="17.1042%" y="965" width="0.0119%" height="15" fill="rgb(228,144,50)" fg:x="1440" fg:w="1"/><text x="17.3542%" y="975.50"></text></g><g><title>&lt;tokio::runtime::task::join::JoinHandle&lt;T&gt; as core::future::future::Future&gt;::poll (6 samples, 0.07%)</title><rect x="17.0567%" y="1077" width="0.0713%" height="15" fill="rgb(229,201,53)" fg:x="1436" fg:w="6"/><text x="17.3067%" y="1087.50"></text></g><g><title>tokio::task::coop::poll_proceed (2 samples, 0.02%)</title><rect x="17.1042%" y="1061" width="0.0238%" height="15" fill="rgb(249,153,27)" fg:x="1440" fg:w="2"/><text x="17.3542%" y="1071.50"></text></g><g><title>tokio::runtime::context::budget (1 samples, 0.01%)</title><rect x="17.1160%" y="1045" width="0.0119%" height="15" fill="rgb(227,106,25)" fg:x="1441" fg:w="1"/><text x="17.3660%" y="1055.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.01%)</title><rect x="17.1160%" y="1029" width="0.0119%" height="15" fill="rgb(230,65,29)" fg:x="1441" fg:w="1"/><text x="17.3660%" y="1039.50"></text></g><g><title>tokio::runtime::task::core::Core&lt;T,S&gt;::set_stage::_{{closure}} (1 samples, 0.01%)</title><rect x="17.1517%" y="853" width="0.0119%" height="15" fill="rgb(221,57,46)" fg:x="1444" fg:w="1"/><text x="17.4017%" y="863.50"></text></g><g><title>DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="17.1517%" y="837" width="0.0119%" height="15" fill="rgb(229,161,17)" fg:x="1444" fg:w="1"/><text x="17.4017%" y="847.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.04%)</title><rect x="17.1398%" y="981" width="0.0356%" height="15" fill="rgb(222,213,11)" fg:x="1443" fg:w="3"/><text x="17.3898%" y="991.50"></text></g><g><title>__rust_try (2 samples, 0.02%)</title><rect x="17.1517%" y="965" width="0.0238%" height="15" fill="rgb(235,35,13)" fg:x="1444" fg:w="2"/><text x="17.4017%" y="975.50"></text></g><g><title>std::panicking::try::do_call (2 samples, 0.02%)</title><rect x="17.1517%" y="949" width="0.0238%" height="15" fill="rgb(233,158,34)" fg:x="1444" fg:w="2"/><text x="17.4017%" y="959.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (2 samples, 0.02%)</title><rect x="17.1517%" y="933" width="0.0238%" height="15" fill="rgb(215,151,48)" fg:x="1444" fg:w="2"/><text x="17.4017%" y="943.50"></text></g><g><title>core::ops::function::FnOnce::call_once (2 samples, 0.02%)</title><rect x="17.1517%" y="917" width="0.0238%" height="15" fill="rgb(229,84,14)" fg:x="1444" fg:w="2"/><text x="17.4017%" y="927.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::drop_join_handle_slow::_{{closure}} (2 samples, 0.02%)</title><rect x="17.1517%" y="901" width="0.0238%" height="15" fill="rgb(229,68,14)" fg:x="1444" fg:w="2"/><text x="17.4017%" y="911.50"></text></g><g><title>tokio::runtime::task::core::Core&lt;T,S&gt;::drop_future_or_output (2 samples, 0.02%)</title><rect x="17.1517%" y="885" width="0.0238%" height="15" fill="rgb(243,106,26)" fg:x="1444" fg:w="2"/><text x="17.4017%" y="895.50"></text></g><g><title>tokio::runtime::task::core::Core&lt;T,S&gt;::set_stage (2 samples, 0.02%)</title><rect x="17.1517%" y="869" width="0.0238%" height="15" fill="rgb(206,45,38)" fg:x="1444" fg:w="2"/><text x="17.4017%" y="879.50"></text></g><g><title>tokio::runtime::task::core::TaskIdGuard::enter (1 samples, 0.01%)</title><rect x="17.1636%" y="853" width="0.0119%" height="15" fill="rgb(226,6,15)" fg:x="1445" fg:w="1"/><text x="17.4136%" y="863.50"></text></g><g><title>tokio::runtime::context::set_current_task_id (1 samples, 0.01%)</title><rect x="17.1636%" y="837" width="0.0119%" height="15" fill="rgb(232,22,54)" fg:x="1445" fg:w="1"/><text x="17.4136%" y="847.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::unwrap_or (1 samples, 0.01%)</title><rect x="17.1636%" y="821" width="0.0119%" height="15" fill="rgb(229,222,32)" fg:x="1445" fg:w="1"/><text x="17.4136%" y="831.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (3 samples, 0.04%)</title><rect x="17.1754%" y="917" width="0.0356%" height="15" fill="rgb(228,62,29)" fg:x="1446" fg:w="3"/><text x="17.4254%" y="927.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (3 samples, 0.04%)</title><rect x="17.1754%" y="901" width="0.0356%" height="15" fill="rgb(251,103,34)" fg:x="1446" fg:w="3"/><text x="17.4254%" y="911.50"></text></g><g><title>__rustc::__rust_dealloc (3 samples, 0.04%)</title><rect x="17.1754%" y="885" width="0.0356%" height="15" fill="rgb(233,12,30)" fg:x="1446" fg:w="3"/><text x="17.4254%" y="895.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (3 samples, 0.04%)</title><rect x="17.1754%" y="869" width="0.0356%" height="15" fill="rgb(238,52,0)" fg:x="1446" fg:w="3"/><text x="17.4254%" y="879.50"></text></g><g><title>_rjem_sdallocx (2 samples, 0.02%)</title><rect x="17.1873%" y="853" width="0.0238%" height="15" fill="rgb(223,98,5)" fg:x="1447" fg:w="2"/><text x="17.4373%" y="863.50"></text></g><g><title>_rjem_je_sdallocx_default (2 samples, 0.02%)</title><rect x="17.1873%" y="837" width="0.0238%" height="15" fill="rgb(228,75,37)" fg:x="1447" fg:w="2"/><text x="17.4373%" y="847.50"></text></g><g><title>&lt;fs_err::tokio::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_flush (16 samples, 0.19%)</title><rect x="17.0329%" y="1125" width="0.1900%" height="15" fill="rgb(205,115,49)" fg:x="1434" fg:w="16"/><text x="17.2829%" y="1135.50"></text></g><g><title>&lt;tokio::fs::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_flush (16 samples, 0.19%)</title><rect x="17.0329%" y="1109" width="0.1900%" height="15" fill="rgb(250,154,43)" fg:x="1434" fg:w="16"/><text x="17.2829%" y="1119.50"></text></g><g><title>tokio::fs::file::Inner::poll_flush (15 samples, 0.18%)</title><rect x="17.0448%" y="1093" width="0.1782%" height="15" fill="rgb(226,43,29)" fg:x="1435" fg:w="15"/><text x="17.2948%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::fs::file::State&gt; (8 samples, 0.10%)</title><rect x="17.1279%" y="1077" width="0.0950%" height="15" fill="rgb(249,228,39)" fg:x="1442" fg:w="8"/><text x="17.3779%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::task::join::JoinHandle&lt;(tokio::fs::file::Operation,tokio::io::blocking::Buf)&gt;&gt; (8 samples, 0.10%)</title><rect x="17.1279%" y="1061" width="0.0950%" height="15" fill="rgb(216,79,43)" fg:x="1442" fg:w="8"/><text x="17.3779%" y="1071.50"></text></g><g><title>&lt;tokio::runtime::task::join::JoinHandle&lt;T&gt; as core::ops::drop::Drop&gt;::drop (8 samples, 0.10%)</title><rect x="17.1279%" y="1045" width="0.0950%" height="15" fill="rgb(228,95,12)" fg:x="1442" fg:w="8"/><text x="17.3779%" y="1055.50"></text></g><g><title>tokio::runtime::task::raw::RawTask::drop_join_handle_slow (8 samples, 0.10%)</title><rect x="17.1279%" y="1029" width="0.0950%" height="15" fill="rgb(249,221,15)" fg:x="1442" fg:w="8"/><text x="17.3779%" y="1039.50"></text></g><g><title>tokio::runtime::task::raw::drop_join_handle_slow (8 samples, 0.10%)</title><rect x="17.1279%" y="1013" width="0.0950%" height="15" fill="rgb(233,34,13)" fg:x="1442" fg:w="8"/><text x="17.3779%" y="1023.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::drop_join_handle_slow (8 samples, 0.10%)</title><rect x="17.1279%" y="997" width="0.0950%" height="15" fill="rgb(214,103,39)" fg:x="1442" fg:w="8"/><text x="17.3779%" y="1007.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::drop_reference (4 samples, 0.05%)</title><rect x="17.1754%" y="981" width="0.0475%" height="15" fill="rgb(251,126,39)" fg:x="1446" fg:w="4"/><text x="17.4254%" y="991.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::dealloc (4 samples, 0.05%)</title><rect x="17.1754%" y="965" width="0.0475%" height="15" fill="rgb(214,216,36)" fg:x="1446" fg:w="4"/><text x="17.4254%" y="975.50"></text></g><g><title>core::mem::drop (4 samples, 0.05%)</title><rect x="17.1754%" y="949" width="0.0475%" height="15" fill="rgb(220,221,8)" fg:x="1446" fg:w="4"/><text x="17.4254%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;tokio::runtime::task::core::Cell&lt;tokio::runtime::blocking::task::BlockingTask&lt;&lt;tokio::fs::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write::{{closure}}&gt;,tokio::runtime::blocking::schedule::BlockingSchedule&gt;&gt;&gt; (4 samples, 0.05%)</title><rect x="17.1754%" y="933" width="0.0475%" height="15" fill="rgb(240,216,3)" fg:x="1446" fg:w="4"/><text x="17.4254%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::task::core::Cell&lt;tokio::runtime::blocking::task::BlockingTask&lt;&lt;tokio::fs::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write::{{closure}}&gt;,tokio::runtime::blocking::schedule::BlockingSchedule&gt;&gt; (1 samples, 0.01%)</title><rect x="17.2111%" y="917" width="0.0119%" height="15" fill="rgb(232,218,17)" fg:x="1449" fg:w="1"/><text x="17.4611%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::task::core::Core&lt;tokio::runtime::blocking::task::BlockingTask&lt;&lt;tokio::fs::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write::{{closure}}&gt;,tokio::runtime::blocking::schedule::BlockingSchedule&gt;&gt; (1 samples, 0.01%)</title><rect x="17.2111%" y="901" width="0.0119%" height="15" fill="rgb(229,163,45)" fg:x="1449" fg:w="1"/><text x="17.4611%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::task::core::CoreStage&lt;tokio::runtime::blocking::task::BlockingTask&lt;&lt;tokio::fs::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write::{{closure}}&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="17.2111%" y="885" width="0.0119%" height="15" fill="rgb(231,110,42)" fg:x="1449" fg:w="1"/><text x="17.4611%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::loom::std::unsafe_cell::UnsafeCell&lt;tokio::runtime::task::core::Stage&lt;tokio::runtime::blocking::task::BlockingTask&lt;&lt;tokio::fs::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write::{{closure}}&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="17.2111%" y="869" width="0.0119%" height="15" fill="rgb(208,170,48)" fg:x="1449" fg:w="1"/><text x="17.4611%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.01%)</title><rect x="17.2229%" y="1109" width="0.0119%" height="15" fill="rgb(239,116,25)" fg:x="1450" fg:w="1"/><text x="17.4729%" y="1119.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="17.2229%" y="1093" width="0.0119%" height="15" fill="rgb(219,200,50)" fg:x="1450" fg:w="1"/><text x="17.4729%" y="1103.50"></text></g><g><title>_platform_memmove (2 samples, 0.02%)</title><rect x="17.2348%" y="1029" width="0.0238%" height="15" fill="rgb(245,200,0)" fg:x="1451" fg:w="2"/><text x="17.4848%" y="1039.50"></text></g><g><title>_rjem_je_arena_malloc_hard (2 samples, 0.02%)</title><rect x="17.2586%" y="917" width="0.0238%" height="15" fill="rgb(245,119,33)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="927.50"></text></g><g><title>_rjem_je_large_malloc (2 samples, 0.02%)</title><rect x="17.2586%" y="901" width="0.0238%" height="15" fill="rgb(231,125,12)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="911.50"></text></g><g><title>_rjem_je_large_palloc (2 samples, 0.02%)</title><rect x="17.2586%" y="885" width="0.0238%" height="15" fill="rgb(216,96,41)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="895.50"></text></g><g><title>_rjem_je_arena_extent_alloc_large (2 samples, 0.02%)</title><rect x="17.2586%" y="869" width="0.0238%" height="15" fill="rgb(248,43,45)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="879.50"></text></g><g><title>_rjem_je_pa_alloc (2 samples, 0.02%)</title><rect x="17.2586%" y="853" width="0.0238%" height="15" fill="rgb(217,222,7)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="863.50"></text></g><g><title>pai_alloc (2 samples, 0.02%)</title><rect x="17.2586%" y="837" width="0.0238%" height="15" fill="rgb(233,28,6)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="847.50"></text></g><g><title>pac_alloc_impl (2 samples, 0.02%)</title><rect x="17.2586%" y="821" width="0.0238%" height="15" fill="rgb(231,218,15)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="831.50"></text></g><g><title>pac_alloc_real (2 samples, 0.02%)</title><rect x="17.2586%" y="805" width="0.0238%" height="15" fill="rgb(226,171,48)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="815.50"></text></g><g><title>_rjem_je_ecache_alloc (2 samples, 0.02%)</title><rect x="17.2586%" y="789" width="0.0238%" height="15" fill="rgb(235,201,9)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="799.50"></text></g><g><title>extent_recycle (2 samples, 0.02%)</title><rect x="17.2586%" y="773" width="0.0238%" height="15" fill="rgb(217,80,15)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="783.50"></text></g><g><title>extent_recycle_split (2 samples, 0.02%)</title><rect x="17.2586%" y="757" width="0.0238%" height="15" fill="rgb(219,152,8)" fg:x="1453" fg:w="2"/><text x="17.5086%" y="767.50"></text></g><g><title>extent_deactivate_locked (1 samples, 0.01%)</title><rect x="17.2705%" y="741" width="0.0119%" height="15" fill="rgb(243,107,38)" fg:x="1454" fg:w="1"/><text x="17.5205%" y="751.50"></text></g><g><title>extent_deactivate_locked_impl (1 samples, 0.01%)</title><rect x="17.2705%" y="725" width="0.0119%" height="15" fill="rgb(231,17,5)" fg:x="1454" fg:w="1"/><text x="17.5205%" y="735.50"></text></g><g><title>_rjem_je_eset_insert (1 samples, 0.01%)</title><rect x="17.2705%" y="709" width="0.0119%" height="15" fill="rgb(209,25,54)" fg:x="1454" fg:w="1"/><text x="17.5205%" y="719.50"></text></g><g><title>tokio::io::blocking::Buf::copy_from (5 samples, 0.06%)</title><rect x="17.2348%" y="1077" width="0.0594%" height="15" fill="rgb(219,0,2)" fg:x="1451" fg:w="5"/><text x="17.4848%" y="1087.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (5 samples, 0.06%)</title><rect x="17.2348%" y="1061" width="0.0594%" height="15" fill="rgb(246,9,5)" fg:x="1451" fg:w="5"/><text x="17.4848%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (5 samples, 0.06%)</title><rect x="17.2348%" y="1045" width="0.0594%" height="15" fill="rgb(226,159,4)" fg:x="1451" fg:w="5"/><text x="17.4848%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (3 samples, 0.04%)</title><rect x="17.2586%" y="1029" width="0.0356%" height="15" fill="rgb(219,175,34)" fg:x="1453" fg:w="3"/><text x="17.5086%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (3 samples, 0.04%)</title><rect x="17.2586%" y="1013" width="0.0356%" height="15" fill="rgb(236,10,46)" fg:x="1453" fg:w="3"/><text x="17.5086%" y="1023.50"></text></g><g><title>alloc::raw_vec::finish_grow (3 samples, 0.04%)</title><rect x="17.2586%" y="997" width="0.0356%" height="15" fill="rgb(240,211,16)" fg:x="1453" fg:w="3"/><text x="17.5086%" y="1007.50"></text></g><g><title>__rustc::__rust_alloc (3 samples, 0.04%)</title><rect x="17.2586%" y="981" width="0.0356%" height="15" fill="rgb(205,3,43)" fg:x="1453" fg:w="3"/><text x="17.5086%" y="991.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (3 samples, 0.04%)</title><rect x="17.2586%" y="965" width="0.0356%" height="15" fill="rgb(245,7,22)" fg:x="1453" fg:w="3"/><text x="17.5086%" y="975.50"></text></g><g><title>_rjem_malloc (3 samples, 0.04%)</title><rect x="17.2586%" y="949" width="0.0356%" height="15" fill="rgb(239,132,32)" fg:x="1453" fg:w="3"/><text x="17.5086%" y="959.50"></text></g><g><title>_rjem_je_malloc_default (3 samples, 0.04%)</title><rect x="17.2586%" y="933" width="0.0356%" height="15" fill="rgb(228,202,34)" fg:x="1453" fg:w="3"/><text x="17.5086%" y="943.50"></text></g><g><title>_rjem_je_tcache_alloc_small_hard (1 samples, 0.01%)</title><rect x="17.2823%" y="917" width="0.0119%" height="15" fill="rgb(254,200,22)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="927.50"></text></g><g><title>_rjem_je_arena_cache_bin_fill_small (1 samples, 0.01%)</title><rect x="17.2823%" y="901" width="0.0119%" height="15" fill="rgb(219,10,39)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="911.50"></text></g><g><title>arena_slab_alloc (1 samples, 0.01%)</title><rect x="17.2823%" y="885" width="0.0119%" height="15" fill="rgb(226,210,39)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="895.50"></text></g><g><title>_rjem_je_pa_alloc (1 samples, 0.01%)</title><rect x="17.2823%" y="869" width="0.0119%" height="15" fill="rgb(208,219,16)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="879.50"></text></g><g><title>pai_alloc (1 samples, 0.01%)</title><rect x="17.2823%" y="853" width="0.0119%" height="15" fill="rgb(216,158,51)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="863.50"></text></g><g><title>pac_alloc_impl (1 samples, 0.01%)</title><rect x="17.2823%" y="837" width="0.0119%" height="15" fill="rgb(233,14,44)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="847.50"></text></g><g><title>pac_alloc_real (1 samples, 0.01%)</title><rect x="17.2823%" y="821" width="0.0119%" height="15" fill="rgb(237,97,39)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="831.50"></text></g><g><title>_rjem_je_ecache_alloc (1 samples, 0.01%)</title><rect x="17.2823%" y="805" width="0.0119%" height="15" fill="rgb(218,198,43)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="815.50"></text></g><g><title>extent_recycle (1 samples, 0.01%)</title><rect x="17.2823%" y="789" width="0.0119%" height="15" fill="rgb(231,104,20)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="799.50"></text></g><g><title>extent_recycle_extract (1 samples, 0.01%)</title><rect x="17.2823%" y="773" width="0.0119%" height="15" fill="rgb(254,36,13)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="783.50"></text></g><g><title>_rjem_je_eset_fit (1 samples, 0.01%)</title><rect x="17.2823%" y="757" width="0.0119%" height="15" fill="rgb(248,14,50)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="767.50"></text></g><g><title>eset_first_fit (1 samples, 0.01%)</title><rect x="17.2823%" y="741" width="0.0119%" height="15" fill="rgb(217,107,29)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="751.50"></text></g><g><title>_rjem_je_sz_psz_quantize_ceil (1 samples, 0.01%)</title><rect x="17.2823%" y="725" width="0.0119%" height="15" fill="rgb(251,169,33)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="735.50"></text></g><g><title>_rjem_je_sz_psz_quantize_floor (1 samples, 0.01%)</title><rect x="17.2823%" y="709" width="0.0119%" height="15" fill="rgb(217,108,32)" fg:x="1455" fg:w="1"/><text x="17.5323%" y="719.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_task (2 samples, 0.02%)</title><rect x="17.2942%" y="1029" width="0.0238%" height="15" fill="rgb(219,66,42)" fg:x="1456" fg:w="2"/><text x="17.5442%" y="1039.50"></text></g><g><title>pthread_cond_signal (2 samples, 0.02%)</title><rect x="17.2942%" y="1013" width="0.0238%" height="15" fill="rgb(206,180,7)" fg:x="1456" fg:w="2"/><text x="17.5442%" y="1023.50"></text></g><g><title>__psynch_cvsignal (2 samples, 0.02%)</title><rect x="17.2942%" y="997" width="0.0238%" height="15" fill="rgb(208,226,31)" fg:x="1456" fg:w="2"/><text x="17.5442%" y="1007.50"></text></g><g><title>&lt;fs_err::tokio::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write (8 samples, 0.10%)</title><rect x="17.2348%" y="1109" width="0.0950%" height="15" fill="rgb(218,26,49)" fg:x="1451" fg:w="8"/><text x="17.4848%" y="1119.50"></text></g><g><title>&lt;tokio::fs::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write (8 samples, 0.10%)</title><rect x="17.2348%" y="1093" width="0.0950%" height="15" fill="rgb(233,197,48)" fg:x="1451" fg:w="8"/><text x="17.4848%" y="1103.50"></text></g><g><title>tokio::runtime::blocking::pool::spawn_mandatory_blocking (3 samples, 0.04%)</title><rect x="17.2942%" y="1077" width="0.0356%" height="15" fill="rgb(252,181,51)" fg:x="1456" fg:w="3"/><text x="17.5442%" y="1087.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_mandatory_blocking (3 samples, 0.04%)</title><rect x="17.2942%" y="1061" width="0.0356%" height="15" fill="rgb(253,90,19)" fg:x="1456" fg:w="3"/><text x="17.5442%" y="1071.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_blocking_inner (3 samples, 0.04%)</title><rect x="17.2942%" y="1045" width="0.0356%" height="15" fill="rgb(215,171,30)" fg:x="1456" fg:w="3"/><text x="17.5442%" y="1055.50"></text></g><g><title>tokio::runtime::task::unowned (1 samples, 0.01%)</title><rect x="17.3180%" y="1029" width="0.0119%" height="15" fill="rgb(214,222,9)" fg:x="1458" fg:w="1"/><text x="17.5680%" y="1039.50"></text></g><g><title>core::mem::forget (1 samples, 0.01%)</title><rect x="17.3180%" y="1013" width="0.0119%" height="15" fill="rgb(223,3,22)" fg:x="1458" fg:w="1"/><text x="17.5680%" y="1023.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::drain (1 samples, 0.01%)</title><rect x="17.3298%" y="1109" width="0.0119%" height="15" fill="rgb(225,196,46)" fg:x="1459" fg:w="1"/><text x="17.5798%" y="1119.50"></text></g><g><title>core::slice::index::range (1 samples, 0.01%)</title><rect x="17.3298%" y="1093" width="0.0119%" height="15" fill="rgb(209,110,37)" fg:x="1459" fg:w="1"/><text x="17.5798%" y="1103.50"></text></g><g><title>&lt;tokio::io::util::buf_writer::BufWriter&lt;W&gt; as tokio::io::async_write::AsyncWrite&gt;::poll_flush (29 samples, 0.34%)</title><rect x="17.0091%" y="1141" width="0.3445%" height="15" fill="rgb(249,89,12)" fg:x="1432" fg:w="29"/><text x="17.2591%" y="1151.50"></text></g><g><title>tokio::io::util::buf_writer::BufWriter&lt;W&gt;::flush_buf (11 samples, 0.13%)</title><rect x="17.2229%" y="1125" width="0.1307%" height="15" fill="rgb(226,27,33)" fg:x="1450" fg:w="11"/><text x="17.4729%" y="1135.50"></text></g><g><title>tokio::io::util::buf_writer::_::_&lt;impl tokio::io::util::buf_writer::BufWriter&lt;W&gt;&gt;::project (1 samples, 0.01%)</title><rect x="17.3417%" y="1109" width="0.0119%" height="15" fill="rgb(213,82,22)" fg:x="1460" fg:w="1"/><text x="17.5917%" y="1119.50"></text></g><g><title>async_compression::util::PartialBuffer&lt;B&gt;::advance (1 samples, 0.01%)</title><rect x="17.3774%" y="949" width="0.0119%" height="15" fill="rgb(248,140,0)" fg:x="1463" fg:w="1"/><text x="17.6274%" y="959.50"></text></g><g><title>async_compression::util::PartialBuffer&lt;B&gt;::unwritten (2 samples, 0.02%)</title><rect x="17.3892%" y="949" width="0.0238%" height="15" fill="rgb(228,106,3)" fg:x="1464" fg:w="2"/><text x="17.6392%" y="959.50"></text></g><g><title>&lt;&amp;T as core::convert::AsRef&lt;U&gt;&gt;::as_ref (1 samples, 0.01%)</title><rect x="17.4011%" y="933" width="0.0119%" height="15" fill="rgb(209,23,37)" fg:x="1465" fg:w="1"/><text x="17.6511%" y="943.50"></text></g><g><title>async_compression::util::PartialBuffer&lt;B&gt;::unwritten_mut (2 samples, 0.02%)</title><rect x="17.4130%" y="949" width="0.0238%" height="15" fill="rgb(241,93,50)" fg:x="1466" fg:w="2"/><text x="17.6630%" y="959.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (2 samples, 0.02%)</title><rect x="17.4130%" y="933" width="0.0238%" height="15" fill="rgb(253,46,43)" fg:x="1466" fg:w="2"/><text x="17.6630%" y="943.50"></text></g><g><title>core::cmp::min (1 samples, 0.01%)</title><rect x="17.4961%" y="917" width="0.0119%" height="15" fill="rgb(226,206,43)" fg:x="1473" fg:w="1"/><text x="17.7461%" y="927.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="17.4961%" y="901" width="0.0119%" height="15" fill="rgb(217,54,7)" fg:x="1473" fg:w="1"/><text x="17.7461%" y="911.50"></text></g><g><title>zlib_rs::inflate::State::dispatch (1 samples, 0.01%)</title><rect x="17.5080%" y="901" width="0.0119%" height="15" fill="rgb(223,5,52)" fg:x="1474" fg:w="1"/><text x="17.7580%" y="911.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (3 samples, 0.04%)</title><rect x="18.0306%" y="869" width="0.0356%" height="15" fill="rgb(206,52,46)" fg:x="1518" fg:w="3"/><text x="18.2806%" y="879.50"></text></g><g><title>&lt;core::result::Result&lt;T,F&gt; as core::ops::try_trait::FromResidual&lt;core::result::Result&lt;core::convert::Infallible,E&gt;&gt;&gt;::from_residual (1 samples, 0.01%)</title><rect x="18.0663%" y="869" width="0.0119%" height="15" fill="rgb(253,136,11)" fg:x="1521" fg:w="1"/><text x="18.3163%" y="879.50"></text></g><g><title>core::array::_&lt;impl core::ops::index::IndexMut&lt;I&gt; for [T (4 samples, 0.05%)</title><rect x="18.0782%" y="869" width="0.0475%" height="15" fill="rgb(208,106,33)" fg:x="1522" fg:w="4"/><text x="18.3282%" y="879.50"></text></g><g><title> N]&gt;::index_mut (4 samples, 0.05%)</title><rect x="18.0782%" y="853" width="0.0475%" height="15" fill="rgb(206,54,4)" fg:x="1522" fg:w="4"/><text x="18.3282%" y="863.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (3 samples, 0.04%)</title><rect x="18.0900%" y="837" width="0.0356%" height="15" fill="rgb(213,3,15)" fg:x="1523" fg:w="3"/><text x="18.3400%" y="847.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked_mut::precondition_check (1 samples, 0.01%)</title><rect x="18.1138%" y="821" width="0.0119%" height="15" fill="rgb(252,211,39)" fg:x="1525" fg:w="1"/><text x="18.3638%" y="831.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::fill (10 samples, 0.12%)</title><rect x="18.1257%" y="869" width="0.1188%" height="15" fill="rgb(223,6,36)" fg:x="1526" fg:w="10"/><text x="18.3757%" y="879.50"></text></g><g><title>&lt;[T] as core::slice::specialize::SpecFill&lt;T&gt;&gt;::spec_fill (10 samples, 0.12%)</title><rect x="18.1257%" y="853" width="0.1188%" height="15" fill="rgb(252,169,45)" fg:x="1526" fg:w="10"/><text x="18.3757%" y="863.50"></text></g><g><title>&lt;core::slice::iter::IterMut&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.11%)</title><rect x="18.1375%" y="837" width="0.1069%" height="15" fill="rgb(212,48,26)" fg:x="1527" fg:w="9"/><text x="18.3875%" y="847.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (5 samples, 0.06%)</title><rect x="19.1115%" y="853" width="0.0594%" height="15" fill="rgb(251,102,48)" fg:x="1609" fg:w="5"/><text x="19.3615%" y="863.50"></text></g><g><title>core::cmp::Ord::min (2 samples, 0.02%)</title><rect x="19.1709%" y="853" width="0.0238%" height="15" fill="rgb(243,208,16)" fg:x="1614" fg:w="2"/><text x="19.4209%" y="863.50"></text></g><g><title>core::cmp::Ord::min (11 samples, 0.13%)</title><rect x="28.4832%" y="821" width="0.1307%" height="15" fill="rgb(219,96,24)" fg:x="2398" fg:w="11"/><text x="28.7332%" y="831.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (5 samples, 0.06%)</title><rect x="28.6138%" y="821" width="0.0594%" height="15" fill="rgb(219,33,29)" fg:x="2409" fg:w="5"/><text x="28.8638%" y="831.50"></text></g><g><title>core::mem::swap (2 samples, 0.02%)</title><rect x="28.6732%" y="821" width="0.0238%" height="15" fill="rgb(223,176,5)" fg:x="2414" fg:w="2"/><text x="28.9232%" y="831.50"></text></g><g><title>core::option::Option&lt;T&gt;::expect (1 samples, 0.01%)</title><rect x="28.6970%" y="821" width="0.0119%" height="15" fill="rgb(228,140,14)" fg:x="2416" fg:w="1"/><text x="28.9470%" y="831.50"></text></g><g><title>core::ptr::read_unaligned (395 samples, 4.69%)</title><rect x="28.7089%" y="821" width="4.6918%" height="15" fill="rgb(217,179,31)" fg:x="2417" fg:w="395"/><text x="28.9589%" y="831.50">core:..</text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (328 samples, 3.90%)</title><rect x="29.5047%" y="805" width="3.8959%" height="15" fill="rgb(230,9,30)" fg:x="2484" fg:w="328"/><text x="29.7547%" y="815.50">core..</text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (87 samples, 1.03%)</title><rect x="32.3673%" y="789" width="1.0334%" height="15" fill="rgb(230,136,20)" fg:x="2725" fg:w="87"/><text x="32.6173%" y="799.50"></text></g><g><title>core::ptr::write_unaligned (3 samples, 0.04%)</title><rect x="33.4006%" y="821" width="0.0356%" height="15" fill="rgb(215,210,22)" fg:x="2812" fg:w="3"/><text x="33.6506%" y="831.50"></text></g><g><title>zlib_rs::inflate::State::len_table_ref (1 samples, 0.01%)</title><rect x="33.4363%" y="821" width="0.0119%" height="15" fill="rgb(218,43,5)" fg:x="2815" fg:w="1"/><text x="33.6863%" y="831.50"></text></g><g><title>zlib_rs::inflate::window::Window::have (4 samples, 0.05%)</title><rect x="33.4482%" y="821" width="0.0475%" height="15" fill="rgb(216,11,5)" fg:x="2816" fg:w="4"/><text x="33.6982%" y="831.50"></text></g><g><title>zlib_rs::inflate::window::Window::next (2 samples, 0.02%)</title><rect x="33.4957%" y="821" width="0.0238%" height="15" fill="rgb(209,82,29)" fg:x="2820" fg:w="2"/><text x="33.7457%" y="831.50"></text></g><g><title>zlib_rs::inflate::window::Window::padding (1 samples, 0.01%)</title><rect x="33.5194%" y="805" width="0.0119%" height="15" fill="rgb(244,115,12)" fg:x="2822" fg:w="1"/><text x="33.7694%" y="815.50"></text></g><g><title>zlib_rs::inflate::window::Window::size (2 samples, 0.02%)</title><rect x="33.5194%" y="821" width="0.0238%" height="15" fill="rgb(222,82,18)" fg:x="2822" fg:w="2"/><text x="33.7694%" y="831.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::len (1 samples, 0.01%)</title><rect x="33.5313%" y="805" width="0.0119%" height="15" fill="rgb(249,227,8)" fg:x="2823" fg:w="1"/><text x="33.7813%" y="815.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (1 samples, 0.01%)</title><rect x="35.9306%" y="805" width="0.0119%" height="15" fill="rgb(253,141,45)" fg:x="3025" fg:w="1"/><text x="36.1806%" y="815.50"></text></g><g><title>&lt;core::ops::range::RangeTo&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (124 samples, 1.47%)</title><rect x="35.9425%" y="805" width="1.4729%" height="15" fill="rgb(234,184,4)" fg:x="3026" fg:w="124"/><text x="36.1925%" y="815.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (86 samples, 1.02%)</title><rect x="36.3939%" y="789" width="1.0215%" height="15" fill="rgb(218,194,23)" fg:x="3064" fg:w="86"/><text x="36.6439%" y="799.50"></text></g><g><title>core::cmp::Ord::min (48 samples, 0.57%)</title><rect x="37.4154%" y="805" width="0.5701%" height="15" fill="rgb(235,66,41)" fg:x="3150" fg:w="48"/><text x="37.6654%" y="815.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (10 samples, 0.12%)</title><rect x="37.9855%" y="805" width="0.1188%" height="15" fill="rgb(245,217,1)" fg:x="3198" fg:w="10"/><text x="38.2355%" y="815.50"></text></g><g><title>core::iter::range::_&lt;impl core::iter::traits::iterator::Iterator for core::ops::range::Range&lt;A&gt;&gt;::next (12 samples, 0.14%)</title><rect x="38.1043%" y="805" width="0.1425%" height="15" fill="rgb(229,91,1)" fg:x="3208" fg:w="12"/><text x="38.3543%" y="815.50"></text></g><g><title>&lt;core::ops::range::Range&lt;T&gt; as core::iter::range::RangeIteratorImpl&gt;::spec_next (11 samples, 0.13%)</title><rect x="38.1162%" y="789" width="0.1307%" height="15" fill="rgb(207,101,30)" fg:x="3209" fg:w="11"/><text x="38.3662%" y="799.50"></text></g><g><title>&lt;usize as core::iter::range::Step&gt;::forward_unchecked (5 samples, 0.06%)</title><rect x="38.1874%" y="773" width="0.0594%" height="15" fill="rgb(223,82,49)" fg:x="3215" fg:w="5"/><text x="38.4374%" y="783.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::unchecked_add::precondition_check (4 samples, 0.05%)</title><rect x="38.1993%" y="757" width="0.0475%" height="15" fill="rgb(218,167,17)" fg:x="3216" fg:w="4"/><text x="38.4493%" y="767.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::checked_sub (58 samples, 0.69%)</title><rect x="38.2468%" y="805" width="0.6889%" height="15" fill="rgb(208,103,14)" fg:x="3220" fg:w="58"/><text x="38.4968%" y="815.50"></text></g><g><title>core::option::Option&lt;T&gt;::expect (41 samples, 0.49%)</title><rect x="38.9357%" y="805" width="0.4870%" height="15" fill="rgb(238,20,8)" fg:x="3278" fg:w="41"/><text x="39.1857%" y="815.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (255 samples, 3.03%)</title><rect x="40.2423%" y="789" width="3.0289%" height="15" fill="rgb(218,80,54)" fg:x="3388" fg:w="255"/><text x="40.4923%" y="799.50">cor..</text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (65 samples, 0.77%)</title><rect x="42.4991%" y="773" width="0.7721%" height="15" fill="rgb(240,144,17)" fg:x="3578" fg:w="65"/><text x="42.7491%" y="783.50"></text></g><g><title>core::ptr::read_unaligned (325 samples, 3.86%)</title><rect x="39.4227%" y="805" width="3.8603%" height="15" fill="rgb(245,27,50)" fg:x="3319" fg:w="325"/><text x="39.6727%" y="815.50">core..</text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (1 samples, 0.01%)</title><rect x="43.2712%" y="789" width="0.0119%" height="15" fill="rgb(251,51,7)" fg:x="3643" fg:w="1"/><text x="43.5212%" y="799.50"></text></g><g><title>core::ptr::write_unaligned (259 samples, 3.08%)</title><rect x="43.2831%" y="805" width="3.0764%" height="15" fill="rgb(245,217,29)" fg:x="3644" fg:w="259"/><text x="43.5331%" y="815.50">cor..</text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (227 samples, 2.70%)</title><rect x="43.6631%" y="789" width="2.6963%" height="15" fill="rgb(221,176,29)" fg:x="3676" fg:w="227"/><text x="43.9131%" y="799.50">co..</text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (74 samples, 0.88%)</title><rect x="45.4805%" y="773" width="0.8790%" height="15" fill="rgb(212,180,24)" fg:x="3829" fg:w="74"/><text x="45.7305%" y="783.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::fill (6 samples, 0.07%)</title><rect x="46.3594%" y="805" width="0.0713%" height="15" fill="rgb(254,24,2)" fg:x="3903" fg:w="6"/><text x="46.6094%" y="815.50"></text></g><g><title>&lt;[T] as core::slice::specialize::SpecFill&lt;T&gt;&gt;::spec_fill (6 samples, 0.07%)</title><rect x="46.3594%" y="789" width="0.0713%" height="15" fill="rgb(230,100,2)" fg:x="3903" fg:w="6"/><text x="46.6094%" y="799.50"></text></g><g><title>&lt;core::slice::iter::IterMut&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.06%)</title><rect x="46.3713%" y="773" width="0.0594%" height="15" fill="rgb(219,142,25)" fg:x="3904" fg:w="5"/><text x="46.6213%" y="783.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::as_mut_slice (143 samples, 1.70%)</title><rect x="46.4307%" y="805" width="1.6985%" height="15" fill="rgb(240,73,43)" fg:x="3909" fg:w="143"/><text x="46.6807%" y="815.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut (136 samples, 1.62%)</title><rect x="46.5138%" y="789" width="1.6154%" height="15" fill="rgb(214,114,15)" fg:x="3916" fg:w="136"/><text x="46.7638%" y="799.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut::precondition_check (121 samples, 1.44%)</title><rect x="46.6920%" y="773" width="1.4372%" height="15" fill="rgb(207,130,4)" fg:x="3931" fg:w="121"/><text x="46.9420%" y="783.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::copy_match_runtime_dispatch (1,243 samples, 14.76%)</title><rect x="33.5432%" y="821" width="14.7642%" height="15" fill="rgb(221,25,40)" fg:x="2824" fg:w="1243"/><text x="33.7932%" y="831.50">zlib_rs::inflate::write..</text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::len (15 samples, 0.18%)</title><rect x="48.1292%" y="805" width="0.1782%" height="15" fill="rgb(241,184,7)" fg:x="4052" fg:w="15"/><text x="48.3792%" y="815.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::extend_from_window_runtime_dispatch (5 samples, 0.06%)</title><rect x="48.3074%" y="821" width="0.0594%" height="15" fill="rgb(235,159,4)" fg:x="4067" fg:w="5"/><text x="48.5574%" y="831.50"></text></g><g><title>core::ptr::write_unaligned (1 samples, 0.01%)</title><rect x="48.3905%" y="805" width="0.0119%" height="15" fill="rgb(214,87,48)" fg:x="4074" fg:w="1"/><text x="48.6405%" y="815.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (12 samples, 0.14%)</title><rect x="49.7684%" y="789" width="0.1425%" height="15" fill="rgb(246,198,24)" fg:x="4190" fg:w="12"/><text x="50.0184%" y="799.50"></text></g><g><title>core::ptr::read_unaligned (158 samples, 1.88%)</title><rect x="49.9109%" y="789" width="1.8767%" height="15" fill="rgb(209,66,40)" fg:x="4202" fg:w="158"/><text x="50.1609%" y="799.50">c..</text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (136 samples, 1.62%)</title><rect x="50.1722%" y="773" width="1.6154%" height="15" fill="rgb(233,147,39)" fg:x="4224" fg:w="136"/><text x="50.4222%" y="783.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (35 samples, 0.42%)</title><rect x="51.3719%" y="757" width="0.4157%" height="15" fill="rgb(231,145,52)" fg:x="4325" fg:w="35"/><text x="51.6219%" y="767.50"></text></g><g><title>core::ptr::write_unaligned (138 samples, 1.64%)</title><rect x="51.7876%" y="789" width="1.6391%" height="15" fill="rgb(206,20,26)" fg:x="4360" fg:w="138"/><text x="52.0376%" y="799.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (123 samples, 1.46%)</title><rect x="51.9658%" y="773" width="1.4610%" height="15" fill="rgb(238,220,4)" fg:x="4375" fg:w="123"/><text x="52.2158%" y="783.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (48 samples, 0.57%)</title><rect x="52.8566%" y="757" width="0.5701%" height="15" fill="rgb(252,195,42)" fg:x="4450" fg:w="48"/><text x="53.1066%" y="767.50"></text></g><g><title>zlib_rs::inflate::window::Window::as_ptr (5 samples, 0.06%)</title><rect x="53.4268%" y="789" width="0.0594%" height="15" fill="rgb(209,10,6)" fg:x="4498" fg:w="5"/><text x="53.6768%" y="799.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::as_ptr (4 samples, 0.05%)</title><rect x="53.4387%" y="773" width="0.0475%" height="15" fill="rgb(229,3,52)" fg:x="4499" fg:w="4"/><text x="53.6887%" y="783.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::next_out (25 samples, 0.30%)</title><rect x="53.4862%" y="789" width="0.2969%" height="15" fill="rgb(253,49,37)" fg:x="4503" fg:w="25"/><text x="53.7362%" y="799.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::as_mut_ptr (10 samples, 0.12%)</title><rect x="53.6643%" y="773" width="0.1188%" height="15" fill="rgb(240,103,49)" fg:x="4518" fg:w="10"/><text x="53.9143%" y="783.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::extend_from_window_with_features (477 samples, 5.67%)</title><rect x="48.3668%" y="821" width="5.6658%" height="15" fill="rgb(250,182,30)" fg:x="4072" fg:w="477"/><text x="48.6168%" y="831.50">zlib_rs..</text></g><g><title>zlib_rs::inflate::writer::Writer::extend_from_window_runtime_dispatch (474 samples, 5.63%)</title><rect x="48.4024%" y="805" width="5.6301%" height="15" fill="rgb(248,8,30)" fg:x="4075" fg:w="474"/><text x="48.6524%" y="815.50">zlib_rs..</text></g><g><title>zlib_rs::inflate::writer::Writer::remaining (21 samples, 0.25%)</title><rect x="53.7831%" y="789" width="0.2494%" height="15" fill="rgb(237,120,30)" fg:x="4528" fg:w="21"/><text x="54.0331%" y="799.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::capacity (10 samples, 0.12%)</title><rect x="53.9138%" y="773" width="0.1188%" height="15" fill="rgb(221,146,34)" fg:x="4539" fg:w="10"/><text x="54.1638%" y="783.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::len (3 samples, 0.04%)</title><rect x="53.9969%" y="757" width="0.0356%" height="15" fill="rgb(242,55,13)" fg:x="4546" fg:w="3"/><text x="54.2469%" y="767.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::len (21 samples, 0.25%)</title><rect x="54.0325%" y="821" width="0.2494%" height="15" fill="rgb(242,112,31)" fg:x="4549" fg:w="21"/><text x="54.2825%" y="831.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::push (234 samples, 2.78%)</title><rect x="54.2820%" y="821" width="2.7794%" height="15" fill="rgb(249,192,27)" fg:x="4570" fg:w="234"/><text x="54.5320%" y="831.50">zl..</text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::as_mut_slice (184 samples, 2.19%)</title><rect x="54.8759%" y="805" width="2.1855%" height="15" fill="rgb(208,204,44)" fg:x="4620" fg:w="184"/><text x="55.1259%" y="815.50">z..</text></g><g><title>core::slice::raw::from_raw_parts_mut (174 samples, 2.07%)</title><rect x="54.9947%" y="789" width="2.0668%" height="15" fill="rgb(208,93,54)" fg:x="4630" fg:w="174"/><text x="55.2447%" y="799.50">c..</text></g><g><title>core::slice::raw::from_raw_parts_mut::precondition_check (128 samples, 1.52%)</title><rect x="55.5410%" y="773" width="1.5204%" height="15" fill="rgb(242,1,31)" fg:x="4676" fg:w="128"/><text x="55.7910%" y="783.50"></text></g><g><title>zlib_rs::inflate::inflate_fast_help_vanilla (3,273 samples, 38.88%)</title><rect x="19.1947%" y="837" width="38.8764%" height="15" fill="rgb(241,83,25)" fg:x="1616" fg:w="3273"/><text x="19.4447%" y="847.50">zlib_rs::inflate::inflate_fast_help_vanilla</text></g><g><title>zlib_rs::inflate::writer::Writer::remaining (85 samples, 1.01%)</title><rect x="57.0614%" y="821" width="1.0096%" height="15" fill="rgb(205,169,50)" fg:x="4804" fg:w="85"/><text x="57.3114%" y="831.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::capacity (35 samples, 0.42%)</title><rect x="57.6553%" y="805" width="0.4157%" height="15" fill="rgb(239,186,37)" fg:x="4854" fg:w="35"/><text x="57.9053%" y="815.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::len (26 samples, 0.31%)</title><rect x="57.7622%" y="789" width="0.3088%" height="15" fill="rgb(205,221,10)" fg:x="4863" fg:w="26"/><text x="58.0122%" y="799.50"></text></g><g><title>zlib_rs::inflate::inflate_fast_help (3,281 samples, 38.97%)</title><rect x="19.1947%" y="853" width="38.9714%" height="15" fill="rgb(218,196,15)" fg:x="1616" fg:w="3281"/><text x="19.4447%" y="863.50">zlib_rs::inflate::inflate_fast_help</text></g><g><title>zlib_rs::inflate::writer::Writer::copy_match_runtime_dispatch (8 samples, 0.10%)</title><rect x="58.0710%" y="837" width="0.0950%" height="15" fill="rgb(218,196,35)" fg:x="4889" fg:w="8"/><text x="58.3210%" y="847.50"></text></g><g><title>zlib_rs::inflate::window::Window::padding (1 samples, 0.01%)</title><rect x="58.1661%" y="837" width="0.0119%" height="15" fill="rgb(233,63,24)" fg:x="4897" fg:w="1"/><text x="58.4161%" y="847.50"></text></g><g><title>zlib_rs::inflate::window::Window::size (2 samples, 0.02%)</title><rect x="58.1661%" y="853" width="0.0238%" height="15" fill="rgb(225,8,4)" fg:x="4897" fg:w="2"/><text x="58.4161%" y="863.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::is_empty (1 samples, 0.01%)</title><rect x="58.1779%" y="837" width="0.0119%" height="15" fill="rgb(234,105,35)" fg:x="4898" fg:w="1"/><text x="58.4279%" y="847.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::len (1 samples, 0.01%)</title><rect x="58.1779%" y="821" width="0.0119%" height="15" fill="rgb(236,21,32)" fg:x="4898" fg:w="1"/><text x="58.4279%" y="831.50"></text></g><g><title>&lt;core::ops::range::RangeTo&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (5 samples, 0.06%)</title><rect x="58.3799%" y="837" width="0.0594%" height="15" fill="rgb(228,109,6)" fg:x="4915" fg:w="5"/><text x="58.6299%" y="847.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (5 samples, 0.06%)</title><rect x="58.3799%" y="821" width="0.0594%" height="15" fill="rgb(229,215,31)" fg:x="4915" fg:w="5"/><text x="58.6299%" y="831.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="58.4392%" y="837" width="0.0119%" height="15" fill="rgb(221,52,54)" fg:x="4920" fg:w="1"/><text x="58.6892%" y="847.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::checked_sub (3 samples, 0.04%)</title><rect x="58.4511%" y="837" width="0.0356%" height="15" fill="rgb(252,129,43)" fg:x="4921" fg:w="3"/><text x="58.7011%" y="847.50"></text></g><g><title>core::option::Option&lt;T&gt;::expect (2 samples, 0.02%)</title><rect x="58.4868%" y="837" width="0.0238%" height="15" fill="rgb(248,183,27)" fg:x="4924" fg:w="2"/><text x="58.7368%" y="847.50"></text></g><g><title>core::ptr::read_unaligned (10 samples, 0.12%)</title><rect x="58.5105%" y="837" width="0.1188%" height="15" fill="rgb(250,0,22)" fg:x="4926" fg:w="10"/><text x="58.7605%" y="847.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (8 samples, 0.10%)</title><rect x="58.5343%" y="821" width="0.0950%" height="15" fill="rgb(213,166,10)" fg:x="4928" fg:w="8"/><text x="58.7843%" y="831.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (4 samples, 0.05%)</title><rect x="58.5818%" y="805" width="0.0475%" height="15" fill="rgb(207,163,36)" fg:x="4932" fg:w="4"/><text x="58.8318%" y="815.50"></text></g><g><title>core::ptr::write_unaligned (7 samples, 0.08%)</title><rect x="58.6293%" y="837" width="0.0831%" height="15" fill="rgb(208,122,22)" fg:x="4936" fg:w="7"/><text x="58.8793%" y="847.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (7 samples, 0.08%)</title><rect x="58.6293%" y="821" width="0.0831%" height="15" fill="rgb(207,104,49)" fg:x="4936" fg:w="7"/><text x="58.8793%" y="831.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::copy_match_runtime_dispatch (45 samples, 0.53%)</title><rect x="58.1898%" y="853" width="0.5345%" height="15" fill="rgb(248,211,50)" fg:x="4899" fg:w="45"/><text x="58.4398%" y="863.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::as_mut_slice (1 samples, 0.01%)</title><rect x="58.7124%" y="837" width="0.0119%" height="15" fill="rgb(217,13,45)" fg:x="4943" fg:w="1"/><text x="58.9624%" y="847.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut (1 samples, 0.01%)</title><rect x="58.7124%" y="821" width="0.0119%" height="15" fill="rgb(211,216,49)" fg:x="4943" fg:w="1"/><text x="58.9624%" y="831.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut::precondition_check (1 samples, 0.01%)</title><rect x="58.7124%" y="805" width="0.0119%" height="15" fill="rgb(221,58,53)" fg:x="4943" fg:w="1"/><text x="58.9624%" y="815.50"></text></g><g><title>core::ptr::read_unaligned (5 samples, 0.06%)</title><rect x="58.7599%" y="821" width="0.0594%" height="15" fill="rgb(220,112,41)" fg:x="4947" fg:w="5"/><text x="59.0099%" y="831.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (5 samples, 0.06%)</title><rect x="58.7599%" y="805" width="0.0594%" height="15" fill="rgb(236,38,28)" fg:x="4947" fg:w="5"/><text x="59.0099%" y="815.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (4 samples, 0.05%)</title><rect x="58.7718%" y="789" width="0.0475%" height="15" fill="rgb(227,195,22)" fg:x="4948" fg:w="4"/><text x="59.0218%" y="799.50"></text></g><g><title>core::ptr::write_unaligned (1 samples, 0.01%)</title><rect x="58.8193%" y="821" width="0.0119%" height="15" fill="rgb(214,55,33)" fg:x="4952" fg:w="1"/><text x="59.0693%" y="831.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::next_out (1 samples, 0.01%)</title><rect x="58.8312%" y="821" width="0.0119%" height="15" fill="rgb(248,80,13)" fg:x="4953" fg:w="1"/><text x="59.0812%" y="831.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::as_mut_ptr (1 samples, 0.01%)</title><rect x="58.8312%" y="805" width="0.0119%" height="15" fill="rgb(238,52,6)" fg:x="4953" fg:w="1"/><text x="59.0812%" y="815.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::extend_from_window_with_features (12 samples, 0.14%)</title><rect x="58.7243%" y="853" width="0.1425%" height="15" fill="rgb(224,198,47)" fg:x="4944" fg:w="12"/><text x="58.9743%" y="863.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::extend_from_window_runtime_dispatch (12 samples, 0.14%)</title><rect x="58.7243%" y="837" width="0.1425%" height="15" fill="rgb(233,171,20)" fg:x="4944" fg:w="12"/><text x="58.9743%" y="847.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::remaining (2 samples, 0.02%)</title><rect x="58.8431%" y="821" width="0.0238%" height="15" fill="rgb(241,30,25)" fg:x="4954" fg:w="2"/><text x="59.0931%" y="831.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::capacity (1 samples, 0.01%)</title><rect x="58.8550%" y="805" width="0.0119%" height="15" fill="rgb(207,171,38)" fg:x="4955" fg:w="1"/><text x="59.1050%" y="815.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::len (1 samples, 0.01%)</title><rect x="58.8550%" y="789" width="0.0119%" height="15" fill="rgb(234,70,1)" fg:x="4955" fg:w="1"/><text x="59.1050%" y="799.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::push (7 samples, 0.08%)</title><rect x="58.8668%" y="853" width="0.0831%" height="15" fill="rgb(232,178,18)" fg:x="4956" fg:w="7"/><text x="59.1168%" y="863.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::as_mut_slice (6 samples, 0.07%)</title><rect x="58.8787%" y="837" width="0.0713%" height="15" fill="rgb(241,78,40)" fg:x="4957" fg:w="6"/><text x="59.1287%" y="847.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut (5 samples, 0.06%)</title><rect x="58.8906%" y="821" width="0.0594%" height="15" fill="rgb(222,35,25)" fg:x="4958" fg:w="5"/><text x="59.1406%" y="831.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut::precondition_check (5 samples, 0.06%)</title><rect x="58.8906%" y="805" width="0.0594%" height="15" fill="rgb(207,92,16)" fg:x="4958" fg:w="5"/><text x="59.1406%" y="815.50"></text></g><g><title>zlib_rs::inflate::State::len_and_friends (3,430 samples, 40.74%)</title><rect x="18.2444%" y="869" width="40.7412%" height="15" fill="rgb(216,59,51)" fg:x="1536" fg:w="3430"/><text x="18.4944%" y="879.50">zlib_rs::inflate::State::len_and_friends</text></g><g><title>zlib_rs::inflate::writer::Writer::remaining (3 samples, 0.04%)</title><rect x="58.9500%" y="853" width="0.0356%" height="15" fill="rgb(213,80,28)" fg:x="4963" fg:w="3"/><text x="59.2000%" y="863.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::capacity (1 samples, 0.01%)</title><rect x="58.9737%" y="837" width="0.0119%" height="15" fill="rgb(220,93,7)" fg:x="4965" fg:w="1"/><text x="59.2237%" y="847.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::len (1 samples, 0.01%)</title><rect x="58.9737%" y="821" width="0.0119%" height="15" fill="rgb(225,24,44)" fg:x="4965" fg:w="1"/><text x="59.2237%" y="831.50"></text></g><g><title>zlib_rs::inflate::State::len_table_get (15 samples, 0.18%)</title><rect x="58.9856%" y="869" width="0.1782%" height="15" fill="rgb(243,74,40)" fg:x="4966" fg:w="15"/><text x="59.2356%" y="879.50"></text></g><g><title>zlib_rs::inflate::State::len_table_ref (11 samples, 0.13%)</title><rect x="59.0331%" y="853" width="0.1307%" height="15" fill="rgb(228,39,7)" fg:x="4970" fg:w="11"/><text x="59.2831%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (29 samples, 0.34%)</title><rect x="60.3991%" y="853" width="0.3445%" height="15" fill="rgb(227,79,8)" fg:x="5085" fg:w="29"/><text x="60.6491%" y="863.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (21 samples, 0.25%)</title><rect x="60.4941%" y="837" width="0.2494%" height="15" fill="rgb(236,58,11)" fg:x="5093" fg:w="21"/><text x="60.7441%" y="847.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (57 samples, 0.68%)</title><rect x="60.7436%" y="853" width="0.6770%" height="15" fill="rgb(249,63,35)" fg:x="5114" fg:w="57"/><text x="60.9936%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (41 samples, 0.49%)</title><rect x="60.9336%" y="837" width="0.4870%" height="15" fill="rgb(252,114,16)" fg:x="5130" fg:w="41"/><text x="61.1836%" y="847.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (26 samples, 0.31%)</title><rect x="61.1118%" y="821" width="0.3088%" height="15" fill="rgb(254,151,24)" fg:x="5145" fg:w="26"/><text x="61.3618%" y="831.50"></text></g><g><title>&lt;core::iter::adapters::step_by::StepBy&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (95 samples, 1.13%)</title><rect x="61.4206%" y="853" width="1.1284%" height="15" fill="rgb(253,54,39)" fg:x="5171" fg:w="95"/><text x="61.6706%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::step_by::StepBy&lt;core::ops::range::Range&lt;usize&gt;&gt; as core::iter::adapters::step_by::StepByImpl&lt;core::ops::range::Range&lt;usize&gt;&gt;&gt;::spec_next (83 samples, 0.99%)</title><rect x="61.5631%" y="837" width="0.9859%" height="15" fill="rgb(243,25,45)" fg:x="5183" fg:w="83"/><text x="61.8131%" y="847.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (7 samples, 0.08%)</title><rect x="62.5490%" y="853" width="0.0831%" height="15" fill="rgb(234,134,9)" fg:x="5266" fg:w="7"/><text x="62.7990%" y="863.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked_mut::precondition_check (7 samples, 0.08%)</title><rect x="62.5490%" y="837" width="0.0831%" height="15" fill="rgb(227,166,31)" fg:x="5266" fg:w="7"/><text x="62.7990%" y="847.50"></text></g><g><title>core::array::_&lt;impl core::ops::index::Index&lt;I&gt; for [T (1 samples, 0.01%)</title><rect x="62.6321%" y="853" width="0.0119%" height="15" fill="rgb(245,143,41)" fg:x="5273" fg:w="1"/><text x="62.8821%" y="863.50"></text></g><g><title> N]&gt;::index (1 samples, 0.01%)</title><rect x="62.6321%" y="837" width="0.0119%" height="15" fill="rgb(238,181,32)" fg:x="5273" fg:w="1"/><text x="62.8821%" y="847.50"></text></g><g><title>core::cmp::Ord::max (1 samples, 0.01%)</title><rect x="62.6440%" y="853" width="0.0119%" height="15" fill="rgb(224,113,18)" fg:x="5274" fg:w="1"/><text x="62.8940%" y="863.50"></text></g><g><title>core::iter::range::_&lt;impl core::iter::traits::iterator::Iterator for core::ops::range::Range&lt;A&gt;&gt;::next (7 samples, 0.08%)</title><rect x="62.6559%" y="853" width="0.0831%" height="15" fill="rgb(240,229,28)" fg:x="5275" fg:w="7"/><text x="62.9059%" y="863.50"></text></g><g><title>&lt;core::ops::range::Range&lt;T&gt; as core::iter::range::RangeIteratorImpl&gt;::spec_next (7 samples, 0.08%)</title><rect x="62.6559%" y="837" width="0.0831%" height="15" fill="rgb(250,185,3)" fg:x="5275" fg:w="7"/><text x="62.9059%" y="847.50"></text></g><g><title>&lt;usize as core::iter::range::Step&gt;::forward_unchecked (3 samples, 0.04%)</title><rect x="62.7034%" y="821" width="0.0356%" height="15" fill="rgb(212,59,25)" fg:x="5279" fg:w="3"/><text x="62.9534%" y="831.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::unchecked_add::precondition_check (2 samples, 0.02%)</title><rect x="62.7153%" y="805" width="0.0238%" height="15" fill="rgb(221,87,20)" fg:x="5280" fg:w="2"/><text x="62.9653%" y="815.50"></text></g><g><title>core::iter::traits::iterator::Iterator::step_by (40 samples, 0.48%)</title><rect x="62.7390%" y="853" width="0.4751%" height="15" fill="rgb(213,74,28)" fg:x="5282" fg:w="40"/><text x="62.9890%" y="863.50"></text></g><g><title>core::iter::adapters::step_by::StepBy&lt;I&gt;::new (38 samples, 0.45%)</title><rect x="62.7628%" y="837" width="0.4514%" height="15" fill="rgb(224,132,34)" fg:x="5284" fg:w="38"/><text x="63.0128%" y="847.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::iter::adapters::step_by::SpecRangeSetup&lt;core::ops::range::Range&lt;usize&gt;&gt;&gt;::setup (32 samples, 0.38%)</title><rect x="62.8341%" y="821" width="0.3801%" height="15" fill="rgb(222,101,24)" fg:x="5290" fg:w="32"/><text x="63.0841%" y="831.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::iter (1 samples, 0.01%)</title><rect x="63.2142%" y="853" width="0.0119%" height="15" fill="rgb(254,142,4)" fg:x="5322" fg:w="1"/><text x="63.4642%" y="863.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::new (1 samples, 0.01%)</title><rect x="63.2142%" y="837" width="0.0119%" height="15" fill="rgb(230,229,49)" fg:x="5322" fg:w="1"/><text x="63.4642%" y="847.50"></text></g><g><title>zlib_rs::inflate::inftrees::inflate_table (343 samples, 4.07%)</title><rect x="59.1638%" y="869" width="4.0741%" height="15" fill="rgb(238,70,47)" fg:x="4981" fg:w="343"/><text x="59.4138%" y="879.50">zlib..</text></g><g><title>zlib_rs::inflate::inftrees::min_max (1 samples, 0.01%)</title><rect x="63.2260%" y="853" width="0.0119%" height="15" fill="rgb(231,160,17)" fg:x="5323" fg:w="1"/><text x="63.4760%" y="863.50"></text></g><g><title>zlib_rs::inflate::window::Window::size (1 samples, 0.01%)</title><rect x="63.2379%" y="869" width="0.0119%" height="15" fill="rgb(218,68,53)" fg:x="5324" fg:w="1"/><text x="63.4879%" y="879.50"></text></g><g><title>core::ptr::read_unaligned (2 samples, 0.02%)</title><rect x="63.2498%" y="837" width="0.0238%" height="15" fill="rgb(236,111,10)" fg:x="5325" fg:w="2"/><text x="63.4998%" y="847.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (2 samples, 0.02%)</title><rect x="63.2498%" y="821" width="0.0238%" height="15" fill="rgb(224,34,41)" fg:x="5325" fg:w="2"/><text x="63.4998%" y="831.50"></text></g><g><title>zlib_rs::inflate::State::dispatch (3,850 samples, 45.73%)</title><rect x="17.5555%" y="885" width="45.7299%" height="15" fill="rgb(241,118,19)" fg:x="1478" fg:w="3850"/><text x="17.8055%" y="895.50">zlib_rs::inflate::State::dispatch</text></g><g><title>zlib_rs::inflate::writer::Writer::extend_from_window_with_features (3 samples, 0.04%)</title><rect x="63.2498%" y="869" width="0.0356%" height="15" fill="rgb(238,129,25)" fg:x="5325" fg:w="3"/><text x="63.4998%" y="879.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::extend_from_window_runtime_dispatch (3 samples, 0.04%)</title><rect x="63.2498%" y="853" width="0.0356%" height="15" fill="rgb(238,22,31)" fg:x="5325" fg:w="3"/><text x="63.4998%" y="863.50"></text></g><g><title>core::ptr::write_unaligned (1 samples, 0.01%)</title><rect x="63.2735%" y="837" width="0.0119%" height="15" fill="rgb(222,174,48)" fg:x="5327" fg:w="1"/><text x="63.5235%" y="847.50"></text></g><g><title>DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="63.3092%" y="853" width="0.0119%" height="15" fill="rgb(206,152,40)" fg:x="5330" fg:w="1"/><text x="63.5592%" y="863.50"></text></g><g><title>_platform_memmove (3 samples, 0.04%)</title><rect x="63.3211%" y="853" width="0.0356%" height="15" fill="rgb(218,99,54)" fg:x="5331" fg:w="3"/><text x="63.5711%" y="863.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::copy_from_slice (5 samples, 0.06%)</title><rect x="63.3092%" y="869" width="0.0594%" height="15" fill="rgb(220,174,26)" fg:x="5330" fg:w="5"/><text x="63.5592%" y="879.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="63.3567%" y="853" width="0.0119%" height="15" fill="rgb(245,116,9)" fg:x="5334" fg:w="1"/><text x="63.6067%" y="863.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at (1 samples, 0.01%)</title><rect x="63.3686%" y="869" width="0.0119%" height="15" fill="rgb(209,72,35)" fg:x="5335" fg:w="1"/><text x="63.6186%" y="879.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_unchecked (1 samples, 0.01%)</title><rect x="63.3686%" y="853" width="0.0119%" height="15" fill="rgb(226,126,21)" fg:x="5335" fg:w="1"/><text x="63.6186%" y="863.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="63.3686%" y="837" width="0.0119%" height="15" fill="rgb(227,192,1)" fg:x="5335" fg:w="1"/><text x="63.6186%" y="847.50"></text></g><g><title>zlib_rs::inflate::window::Window::extend (9 samples, 0.11%)</title><rect x="63.2854%" y="885" width="0.1069%" height="15" fill="rgb(237,180,29)" fg:x="5328" fg:w="9"/><text x="63.5354%" y="895.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::as_mut_slice (1 samples, 0.01%)</title><rect x="63.3804%" y="869" width="0.0119%" height="15" fill="rgb(230,197,35)" fg:x="5336" fg:w="1"/><text x="63.6304%" y="879.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut (1 samples, 0.01%)</title><rect x="63.3804%" y="853" width="0.0119%" height="15" fill="rgb(246,193,31)" fg:x="5336" fg:w="1"/><text x="63.6304%" y="863.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut::precondition_check (1 samples, 0.01%)</title><rect x="63.3804%" y="837" width="0.0119%" height="15" fill="rgb(241,36,4)" fg:x="5336" fg:w="1"/><text x="63.6304%" y="847.50"></text></g><g><title>core::alloc::layout::Layout::array (1 samples, 0.01%)</title><rect x="63.3923%" y="853" width="0.0119%" height="15" fill="rgb(241,130,17)" fg:x="5337" fg:w="1"/><text x="63.6423%" y="863.50"></text></g><g><title>core::alloc::layout::Layout::array::inner (1 samples, 0.01%)</title><rect x="63.3923%" y="837" width="0.0119%" height="15" fill="rgb(206,137,32)" fg:x="5337" fg:w="1"/><text x="63.6423%" y="847.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new (1 samples, 0.01%)</title><rect x="63.4042%" y="853" width="0.0119%" height="15" fill="rgb(237,228,51)" fg:x="5338" fg:w="1"/><text x="63.6542%" y="863.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="63.4042%" y="837" width="0.0119%" height="15" fill="rgb(243,6,42)" fg:x="5338" fg:w="1"/><text x="63.6542%" y="847.50"></text></g><g><title>zlib_rs::inflate::window::Window::new_in (6 samples, 0.07%)</title><rect x="63.3923%" y="885" width="0.0713%" height="15" fill="rgb(251,74,28)" fg:x="5337" fg:w="6"/><text x="63.6423%" y="895.50"></text></g><g><title>zlib_rs::allocate::Allocator::allocate_zeroed_buffer (6 samples, 0.07%)</title><rect x="63.3923%" y="869" width="0.0713%" height="15" fill="rgb(218,20,49)" fg:x="5337" fg:w="6"/><text x="63.6423%" y="879.50"></text></g><g><title>zlib_rs::allocate::Allocator::allocate_layout_zeroed (4 samples, 0.05%)</title><rect x="63.4161%" y="853" width="0.0475%" height="15" fill="rgb(238,28,14)" fg:x="5339" fg:w="4"/><text x="63.6661%" y="863.50"></text></g><g><title>zlib_rs::allocate::zalloc_rust_calloc (3 samples, 0.04%)</title><rect x="63.4280%" y="837" width="0.0356%" height="15" fill="rgb(229,40,46)" fg:x="5340" fg:w="3"/><text x="63.6780%" y="847.50"></text></g><g><title>std::sys::alloc::unix::_&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (3 samples, 0.04%)</title><rect x="63.4280%" y="821" width="0.0356%" height="15" fill="rgb(244,195,20)" fg:x="5340" fg:w="3"/><text x="63.6780%" y="831.50"></text></g><g><title>__bzero (3 samples, 0.04%)</title><rect x="63.4280%" y="805" width="0.0356%" height="15" fill="rgb(253,56,35)" fg:x="5340" fg:w="3"/><text x="63.6780%" y="815.50"></text></g><g><title>zlib_rs::inflate::window::Window::size (2 samples, 0.02%)</title><rect x="63.4636%" y="885" width="0.0238%" height="15" fill="rgb(210,149,44)" fg:x="5343" fg:w="2"/><text x="63.7136%" y="895.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::is_empty (1 samples, 0.01%)</title><rect x="63.4755%" y="869" width="0.0119%" height="15" fill="rgb(240,135,12)" fg:x="5344" fg:w="1"/><text x="63.7255%" y="879.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::filled (2 samples, 0.02%)</title><rect x="63.4874%" y="885" width="0.0238%" height="15" fill="rgb(251,24,50)" fg:x="5345" fg:w="2"/><text x="63.7374%" y="895.50"></text></g><g><title>core::slice::raw::from_raw_parts (2 samples, 0.02%)</title><rect x="63.4874%" y="869" width="0.0238%" height="15" fill="rgb(243,200,47)" fg:x="5345" fg:w="2"/><text x="63.7374%" y="879.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (2 samples, 0.02%)</title><rect x="63.4874%" y="853" width="0.0238%" height="15" fill="rgb(224,166,26)" fg:x="5345" fg:w="2"/><text x="63.7374%" y="863.50"></text></g><g><title>flate2::mem::Decompress::decompress (3,880 samples, 46.09%)</title><rect x="17.4368%" y="949" width="46.0862%" height="15" fill="rgb(233,0,47)" fg:x="1468" fg:w="3880"/><text x="17.6868%" y="959.50">flate2::mem::Decompress::decompress</text></g><g><title>&lt;flate2::ffi::c::Inflate as flate2::ffi::InflateBackend&gt;::decompress (3,880 samples, 46.09%)</title><rect x="17.4368%" y="933" width="46.0862%" height="15" fill="rgb(253,80,5)" fg:x="1468" fg:w="3880"/><text x="17.6868%" y="943.50">&lt;flate2::ffi::c::Inflate as flate2::ffi::InflateBackend&gt;::decompress</text></g><g><title>libz_rs_sys::inflate (3,874 samples, 46.01%)</title><rect x="17.5080%" y="917" width="46.0150%" height="15" fill="rgb(214,133,25)" fg:x="1474" fg:w="3874"/><text x="17.7580%" y="927.50">libz_rs_sys::inflate</text></g><g><title>zlib_rs::inflate::inflate (3,873 samples, 46.00%)</title><rect x="17.5199%" y="901" width="46.0031%" height="15" fill="rgb(209,27,14)" fg:x="1475" fg:w="3873"/><text x="17.7699%" y="911.50">zlib_rs::inflate::inflate</text></g><g><title>zlib_rs::inflate::writer::Writer::new_uninit (1 samples, 0.01%)</title><rect x="63.5111%" y="885" width="0.0119%" height="15" fill="rgb(219,102,51)" fg:x="5347" fg:w="1"/><text x="63.7611%" y="895.50"></text></g><g><title>async_compression::codec::flate::decoder::FlateDecoder::decode (3,887 samples, 46.17%)</title><rect x="17.3774%" y="965" width="46.1694%" height="15" fill="rgb(237,18,16)" fg:x="1463" fg:w="3887"/><text x="17.6274%" y="975.50">async_compression::codec::flate::decoder::FlateDecoder::decode</text></g><g><title>flate2::mem::Decompress::total_in (2 samples, 0.02%)</title><rect x="63.5230%" y="949" width="0.0238%" height="15" fill="rgb(241,85,17)" fg:x="5348" fg:w="2"/><text x="63.7730%" y="959.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="63.5467%" y="917" width="0.0119%" height="15" fill="rgb(236,90,42)" fg:x="5350" fg:w="1"/><text x="63.7967%" y="927.50"></text></g><g><title>&lt;async_compression::codec::deflate::decoder::DeflateDecoder as async_compression::codec::Decode&gt;::decode (3,890 samples, 46.21%)</title><rect x="17.3655%" y="997" width="46.2050%" height="15" fill="rgb(249,57,21)" fg:x="1462" fg:w="3890"/><text x="17.6155%" y="1007.50">&lt;async_compression::codec::deflate::decoder::DeflateDecoder as async_compres..</text></g><g><title>&lt;async_compression::codec::flate::decoder::FlateDecoder as async_compression::codec::Decode&gt;::decode (3,890 samples, 46.21%)</title><rect x="17.3655%" y="981" width="46.2050%" height="15" fill="rgb(243,12,36)" fg:x="1462" fg:w="3890"/><text x="17.6155%" y="991.50">&lt;async_compression::codec::flate::decoder::FlateDecoder as async_compression..</text></g><g><title>std::io::error::Error::new (2 samples, 0.02%)</title><rect x="63.5467%" y="965" width="0.0238%" height="15" fill="rgb(253,128,47)" fg:x="5350" fg:w="2"/><text x="63.7967%" y="975.50"></text></g><g><title>__rustc::__rust_alloc (2 samples, 0.02%)</title><rect x="63.5467%" y="949" width="0.0238%" height="15" fill="rgb(207,33,20)" fg:x="5350" fg:w="2"/><text x="63.7967%" y="959.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (2 samples, 0.02%)</title><rect x="63.5467%" y="933" width="0.0238%" height="15" fill="rgb(233,215,35)" fg:x="5350" fg:w="2"/><text x="63.7967%" y="943.50"></text></g><g><title>core::alloc::layout::Layout::size (1 samples, 0.01%)</title><rect x="63.5586%" y="917" width="0.0119%" height="15" fill="rgb(249,188,52)" fg:x="5351" fg:w="1"/><text x="63.8086%" y="927.50"></text></g><g><title>async_compression::util::PartialBuffer&lt;B&gt;::unwritten_mut (2 samples, 0.02%)</title><rect x="63.5705%" y="949" width="0.0238%" height="15" fill="rgb(225,12,32)" fg:x="5352" fg:w="2"/><text x="63.8205%" y="959.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (2 samples, 0.02%)</title><rect x="63.5705%" y="933" width="0.0238%" height="15" fill="rgb(247,98,14)" fg:x="5352" fg:w="2"/><text x="63.8205%" y="943.50"></text></g><g><title>zlib_rs::inflate::State::decoding_state (1 samples, 0.01%)</title><rect x="63.6061%" y="885" width="0.0119%" height="15" fill="rgb(247,219,48)" fg:x="5355" fg:w="1"/><text x="63.8561%" y="895.50"></text></g><g><title>&lt;async_compression::codec::deflate::decoder::DeflateDecoder as async_compression::codec::Decode&gt;::finish (6 samples, 0.07%)</title><rect x="63.5705%" y="997" width="0.0713%" height="15" fill="rgb(253,60,48)" fg:x="5352" fg:w="6"/><text x="63.8205%" y="1007.50"></text></g><g><title>&lt;async_compression::codec::flate::decoder::FlateDecoder as async_compression::codec::Decode&gt;::finish (6 samples, 0.07%)</title><rect x="63.5705%" y="981" width="0.0713%" height="15" fill="rgb(245,15,52)" fg:x="5352" fg:w="6"/><text x="63.8205%" y="991.50"></text></g><g><title>async_compression::codec::flate::decoder::FlateDecoder::decode (6 samples, 0.07%)</title><rect x="63.5705%" y="965" width="0.0713%" height="15" fill="rgb(220,133,28)" fg:x="5352" fg:w="6"/><text x="63.8205%" y="975.50"></text></g><g><title>flate2::mem::Decompress::decompress (4 samples, 0.05%)</title><rect x="63.5943%" y="949" width="0.0475%" height="15" fill="rgb(217,180,4)" fg:x="5354" fg:w="4"/><text x="63.8443%" y="959.50"></text></g><g><title>&lt;flate2::ffi::c::Inflate as flate2::ffi::InflateBackend&gt;::decompress (4 samples, 0.05%)</title><rect x="63.5943%" y="933" width="0.0475%" height="15" fill="rgb(251,24,1)" fg:x="5354" fg:w="4"/><text x="63.8443%" y="943.50"></text></g><g><title>libz_rs_sys::inflate (4 samples, 0.05%)</title><rect x="63.5943%" y="917" width="0.0475%" height="15" fill="rgb(212,185,49)" fg:x="5354" fg:w="4"/><text x="63.8443%" y="927.50"></text></g><g><title>zlib_rs::inflate::inflate (4 samples, 0.05%)</title><rect x="63.5943%" y="901" width="0.0475%" height="15" fill="rgb(215,175,22)" fg:x="5354" fg:w="4"/><text x="63.8443%" y="911.50"></text></g><g><title>zlib_rs::inflate::window::Window::extend (2 samples, 0.02%)</title><rect x="63.6180%" y="885" width="0.0238%" height="15" fill="rgb(250,205,14)" fg:x="5356" fg:w="2"/><text x="63.8680%" y="895.50"></text></g><g><title>zlib_rs::inflate::window::Window::size (1 samples, 0.01%)</title><rect x="63.6299%" y="869" width="0.0119%" height="15" fill="rgb(225,211,22)" fg:x="5357" fg:w="1"/><text x="63.8799%" y="879.50"></text></g><g><title>zlib_rs::weak_slice::WeakSliceMut&lt;T&gt;::len (1 samples, 0.01%)</title><rect x="63.6299%" y="853" width="0.0119%" height="15" fill="rgb(251,179,42)" fg:x="5357" fg:w="1"/><text x="63.8799%" y="863.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncBufRead&gt;::consume (1 samples, 0.01%)</title><rect x="63.6418%" y="965" width="0.0119%" height="15" fill="rgb(208,216,51)" fg:x="5358" fg:w="1"/><text x="63.8918%" y="975.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::consume (1 samples, 0.01%)</title><rect x="63.6418%" y="949" width="0.0119%" height="15" fill="rgb(235,36,11)" fg:x="5358" fg:w="1"/><text x="63.8918%" y="959.50"></text></g><g><title>core::cmp::min (1 samples, 0.01%)</title><rect x="63.6418%" y="933" width="0.0119%" height="15" fill="rgb(213,189,28)" fg:x="5358" fg:w="1"/><text x="63.8918%" y="943.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="63.6418%" y="917" width="0.0119%" height="15" fill="rgb(227,203,42)" fg:x="5358" fg:w="1"/><text x="63.8918%" y="927.50"></text></g><g><title>&lt;async_zip::base::read::io::owned::OwnedReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::consume (2 samples, 0.02%)</title><rect x="63.6418%" y="981" width="0.0238%" height="15" fill="rgb(244,72,36)" fg:x="5358" fg:w="2"/><text x="63.8918%" y="991.50"></text></g><g><title>async_zip::base::read::io::owned::_::_&lt;impl async_zip::base::read::io::owned::OwnedReader&lt;R&gt;&gt;::project (1 samples, 0.01%)</title><rect x="63.6536%" y="965" width="0.0119%" height="15" fill="rgb(213,53,17)" fg:x="5359" fg:w="1"/><text x="63.9036%" y="975.50"></text></g><g><title>&lt;futures_lite::io::Take&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::consume (3 samples, 0.04%)</title><rect x="63.6418%" y="997" width="0.0356%" height="15" fill="rgb(207,167,3)" fg:x="5358" fg:w="3"/><text x="63.8918%" y="1007.50"></text></g><g><title>core::cmp::min (1 samples, 0.01%)</title><rect x="63.6655%" y="981" width="0.0119%" height="15" fill="rgb(216,98,30)" fg:x="5360" fg:w="1"/><text x="63.9155%" y="991.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="63.6655%" y="965" width="0.0119%" height="15" fill="rgb(236,123,15)" fg:x="5360" fg:w="1"/><text x="63.9155%" y="975.50"></text></g><g><title>h2::share::FlowControl::release_capacity (1 samples, 0.01%)</title><rect x="63.7012%" y="613" width="0.0119%" height="15" fill="rgb(248,81,50)" fg:x="5363" fg:w="1"/><text x="63.9512%" y="623.50"></text></g><g><title>h2::proto::streams::streams::OpaqueStreamRef::release_capacity (1 samples, 0.01%)</title><rect x="63.7012%" y="597" width="0.0119%" height="15" fill="rgb(214,120,4)" fg:x="5363" fg:w="1"/><text x="63.9512%" y="607.50"></text></g><g><title>h2::proto::streams::recv::Recv::release_capacity (1 samples, 0.01%)</title><rect x="63.7012%" y="581" width="0.0119%" height="15" fill="rgb(208,179,34)" fg:x="5363" fg:w="1"/><text x="63.9512%" y="591.50"></text></g><g><title>h2::proto::streams::recv::Recv::release_connection_capacity (1 samples, 0.01%)</title><rect x="63.7012%" y="565" width="0.0119%" height="15" fill="rgb(227,140,7)" fg:x="5363" fg:w="1"/><text x="63.9512%" y="575.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::is_ok (1 samples, 0.01%)</title><rect x="63.7012%" y="549" width="0.0119%" height="15" fill="rgb(214,22,6)" fg:x="5363" fg:w="1"/><text x="63.9512%" y="559.50"></text></g><g><title>h2::proto::streams::recv::Recv::poll_data (1 samples, 0.01%)</title><rect x="63.7130%" y="581" width="0.0119%" height="15" fill="rgb(207,137,27)" fg:x="5364" fg:w="1"/><text x="63.9630%" y="591.50"></text></g><g><title>h2::proto::streams::buffer::Deque::pop_front (1 samples, 0.01%)</title><rect x="63.7130%" y="565" width="0.0119%" height="15" fill="rgb(210,8,46)" fg:x="5364" fg:w="1"/><text x="63.9630%" y="575.50"></text></g><g><title>slab::Slab&lt;T&gt;::remove (1 samples, 0.01%)</title><rect x="63.7130%" y="549" width="0.0119%" height="15" fill="rgb(240,16,54)" fg:x="5364" fg:w="1"/><text x="63.9630%" y="559.50"></text></g><g><title>slab::Slab&lt;T&gt;::try_remove (1 samples, 0.01%)</title><rect x="63.7130%" y="533" width="0.0119%" height="15" fill="rgb(211,209,29)" fg:x="5364" fg:w="1"/><text x="63.9630%" y="543.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.01%)</title><rect x="63.7130%" y="517" width="0.0119%" height="15" fill="rgb(226,228,24)" fg:x="5364" fg:w="1"/><text x="63.9630%" y="527.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::convert::From&lt;T&gt;&gt;::from (1 samples, 0.01%)</title><rect x="63.7130%" y="501" width="0.0119%" height="15" fill="rgb(222,84,9)" fg:x="5364" fg:w="1"/><text x="63.9630%" y="511.50"></text></g><g><title>&lt;http_body_util::combinators::box_body::BoxBody&lt;D,E&gt; as http_body::Body&gt;::poll_frame (3 samples, 0.04%)</title><rect x="63.7012%" y="661" width="0.0356%" height="15" fill="rgb(234,203,30)" fg:x="5363" fg:w="3"/><text x="63.9512%" y="671.50"></text></g><g><title>&lt;http_body_util::combinators::map_err::MapErr&lt;B,F&gt; as http_body::Body&gt;::poll_frame (3 samples, 0.04%)</title><rect x="63.7012%" y="645" width="0.0356%" height="15" fill="rgb(238,109,14)" fg:x="5363" fg:w="3"/><text x="63.9512%" y="655.50"></text></g><g><title>&lt;hyper::body::incoming::Incoming as http_body::Body&gt;::poll_frame (3 samples, 0.04%)</title><rect x="63.7012%" y="629" width="0.0356%" height="15" fill="rgb(233,206,34)" fg:x="5363" fg:w="3"/><text x="63.9512%" y="639.50"></text></g><g><title>h2::share::RecvStream::poll_data (2 samples, 0.02%)</title><rect x="63.7130%" y="613" width="0.0238%" height="15" fill="rgb(220,167,47)" fg:x="5364" fg:w="2"/><text x="63.9630%" y="623.50"></text></g><g><title>h2::proto::streams::streams::OpaqueStreamRef::poll_data (2 samples, 0.02%)</title><rect x="63.7130%" y="597" width="0.0238%" height="15" fill="rgb(238,105,10)" fg:x="5364" fg:w="2"/><text x="63.9630%" y="607.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::lock (1 samples, 0.01%)</title><rect x="63.7249%" y="581" width="0.0119%" height="15" fill="rgb(213,227,17)" fg:x="5365" fg:w="1"/><text x="63.9749%" y="591.50"></text></g><g><title>std::sys::sync::once_box::OnceBox&lt;T&gt;::get_or_init (1 samples, 0.01%)</title><rect x="63.7249%" y="565" width="0.0119%" height="15" fill="rgb(217,132,38)" fg:x="5365" fg:w="1"/><text x="63.9749%" y="575.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="63.7249%" y="549" width="0.0119%" height="15" fill="rgb(242,146,4)" fg:x="5365" fg:w="1"/><text x="63.9749%" y="559.50"></text></g><g><title>core::task::poll::Poll&lt;T&gt;::map (1 samples, 0.01%)</title><rect x="63.7368%" y="629" width="0.0119%" height="15" fill="rgb(212,61,9)" fg:x="5366" fg:w="1"/><text x="63.9868%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::time::sleep::Sleep::poll_elapsed::{{closure}}&gt; (1 samples, 0.01%)</title><rect x="63.7368%" y="613" width="0.0119%" height="15" fill="rgb(247,126,22)" fg:x="5366" fg:w="1"/><text x="63.9868%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::task::coop::RestoreOnPending&gt; (1 samples, 0.01%)</title><rect x="63.7368%" y="597" width="0.0119%" height="15" fill="rgb(220,196,2)" fg:x="5366" fg:w="1"/><text x="63.9868%" y="607.50"></text></g><g><title>&lt;tokio::task::coop::RestoreOnPending as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="63.7368%" y="581" width="0.0119%" height="15" fill="rgb(208,46,4)" fg:x="5366" fg:w="1"/><text x="63.9868%" y="591.50"></text></g><g><title>tokio::runtime::context::budget (1 samples, 0.01%)</title><rect x="63.7368%" y="565" width="0.0119%" height="15" fill="rgb(252,104,46)" fg:x="5366" fg:w="1"/><text x="63.9868%" y="575.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.01%)</title><rect x="63.7368%" y="549" width="0.0119%" height="15" fill="rgb(237,152,48)" fg:x="5366" fg:w="1"/><text x="63.9868%" y="559.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="63.7368%" y="533" width="0.0119%" height="15" fill="rgb(221,59,37)" fg:x="5366" fg:w="1"/><text x="63.9868%" y="543.50"></text></g><g><title>tokio::runtime::context::CONTEXT::_{{constant}}::_{{closure}} (1 samples, 0.01%)</title><rect x="63.7368%" y="517" width="0.0119%" height="15" fill="rgb(209,202,51)" fg:x="5366" fg:w="1"/><text x="63.9868%" y="527.50"></text></g><g><title>_tlv_get_addr (1 samples, 0.01%)</title><rect x="63.7368%" y="501" width="0.0119%" height="15" fill="rgb(228,81,30)" fg:x="5366" fg:w="1"/><text x="63.9868%" y="511.50"></text></g><g><title>core::task::wake::Context::waker (1 samples, 0.01%)</title><rect x="63.7487%" y="613" width="0.0119%" height="15" fill="rgb(227,42,39)" fg:x="5367" fg:w="1"/><text x="63.9987%" y="623.50"></text></g><g><title>tokio::runtime::driver::IoHandle::unpark (2 samples, 0.02%)</title><rect x="63.7605%" y="581" width="0.0238%" height="15" fill="rgb(221,26,2)" fg:x="5368" fg:w="2"/><text x="64.0105%" y="591.50"></text></g><g><title>tokio::runtime::io::driver::Handle::unpark (2 samples, 0.02%)</title><rect x="63.7605%" y="565" width="0.0238%" height="15" fill="rgb(254,61,31)" fg:x="5368" fg:w="2"/><text x="64.0105%" y="575.50"></text></g><g><title>mio::waker::Waker::wake (2 samples, 0.02%)</title><rect x="63.7605%" y="549" width="0.0238%" height="15" fill="rgb(222,173,38)" fg:x="5368" fg:w="2"/><text x="64.0105%" y="559.50"></text></g><g><title>mio::sys::unix::waker::Waker::wake (2 samples, 0.02%)</title><rect x="63.7605%" y="533" width="0.0238%" height="15" fill="rgb(218,50,12)" fg:x="5368" fg:w="2"/><text x="64.0105%" y="543.50"></text></g><g><title>mio::sys::unix::selector::Selector::wake (2 samples, 0.02%)</title><rect x="63.7605%" y="517" width="0.0238%" height="15" fill="rgb(223,88,40)" fg:x="5368" fg:w="2"/><text x="64.0105%" y="527.50"></text></g><g><title>kevent (2 samples, 0.02%)</title><rect x="63.7605%" y="501" width="0.0238%" height="15" fill="rgb(237,54,19)" fg:x="5368" fg:w="2"/><text x="64.0105%" y="511.50"></text></g><g><title>tokio::runtime::time::entry::TimerHandle::set_expiration (1 samples, 0.01%)</title><rect x="63.7843%" y="581" width="0.0119%" height="15" fill="rgb(251,129,25)" fg:x="5370" fg:w="1"/><text x="64.0343%" y="591.50"></text></g><g><title>tokio::runtime::time::_&lt;impl tokio::runtime::time::handle::Handle&gt;::reregister (4 samples, 0.05%)</title><rect x="63.7605%" y="597" width="0.0475%" height="15" fill="rgb(238,97,19)" fg:x="5368" fg:w="4"/><text x="64.0105%" y="607.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::insert (1 samples, 0.01%)</title><rect x="63.7962%" y="581" width="0.0119%" height="15" fill="rgb(240,169,18)" fg:x="5371" fg:w="1"/><text x="64.0462%" y="591.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::next_expiration (1 samples, 0.01%)</title><rect x="63.7962%" y="565" width="0.0119%" height="15" fill="rgb(230,187,49)" fg:x="5371" fg:w="1"/><text x="64.0462%" y="575.50"></text></g><g><title>tokio::runtime::time::entry::TimerEntry::poll_elapsed (6 samples, 0.07%)</title><rect x="63.7487%" y="629" width="0.0713%" height="15" fill="rgb(209,44,26)" fg:x="5367" fg:w="6"/><text x="63.9987%" y="639.50"></text></g><g><title>tokio::runtime::time::entry::TimerEntry::reset (5 samples, 0.06%)</title><rect x="63.7605%" y="613" width="0.0594%" height="15" fill="rgb(244,0,6)" fg:x="5368" fg:w="5"/><text x="64.0105%" y="623.50"></text></g><g><title>tokio::runtime::time::entry::TimerEntry::inner (1 samples, 0.01%)</title><rect x="63.8081%" y="597" width="0.0119%" height="15" fill="rgb(248,18,21)" fg:x="5372" fg:w="1"/><text x="64.0581%" y="607.50"></text></g><g><title>&lt;tokio::time::sleep::Sleep as core::future::future::Future&gt;::poll (8 samples, 0.10%)</title><rect x="63.7368%" y="661" width="0.0950%" height="15" fill="rgb(245,180,19)" fg:x="5366" fg:w="8"/><text x="63.9868%" y="671.50"></text></g><g><title>tokio::time::sleep::Sleep::poll_elapsed (8 samples, 0.10%)</title><rect x="63.7368%" y="645" width="0.0950%" height="15" fill="rgb(252,118,36)" fg:x="5366" fg:w="8"/><text x="63.9868%" y="655.50"></text></g><g><title>tokio::task::coop::poll_proceed (1 samples, 0.01%)</title><rect x="63.8199%" y="629" width="0.0119%" height="15" fill="rgb(210,224,19)" fg:x="5373" fg:w="1"/><text x="64.0699%" y="639.50"></text></g><g><title>tokio::task::coop::Budget::unconstrained (1 samples, 0.01%)</title><rect x="63.8199%" y="613" width="0.0119%" height="15" fill="rgb(218,30,24)" fg:x="5373" fg:w="1"/><text x="64.0699%" y="623.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="63.8318%" y="661" width="0.0119%" height="15" fill="rgb(219,75,50)" fg:x="5374" fg:w="1"/><text x="64.0818%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;core::task::wake::Waker&gt;&gt; (1 samples, 0.01%)</title><rect x="63.8437%" y="565" width="0.0119%" height="15" fill="rgb(234,72,50)" fg:x="5375" fg:w="1"/><text x="64.0937%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::task::wake::Waker&gt; (1 samples, 0.01%)</title><rect x="63.8437%" y="549" width="0.0119%" height="15" fill="rgb(219,100,48)" fg:x="5375" fg:w="1"/><text x="64.0937%" y="559.50"></text></g><g><title>&lt;core::task::wake::Waker as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="63.8437%" y="533" width="0.0119%" height="15" fill="rgb(253,5,41)" fg:x="5375" fg:w="1"/><text x="64.0937%" y="543.50"></text></g><g><title>futures_util::stream::futures_unordered::task::waker_ref::drop_arc_raw (1 samples, 0.01%)</title><rect x="63.8437%" y="517" width="0.0119%" height="15" fill="rgb(247,181,11)" fg:x="5375" fg:w="1"/><text x="64.0937%" y="527.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::from_raw (1 samples, 0.01%)</title><rect x="63.8437%" y="501" width="0.0119%" height="15" fill="rgb(222,223,25)" fg:x="5375" fg:w="1"/><text x="64.0937%" y="511.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::from_raw_in (1 samples, 0.01%)</title><rect x="63.8437%" y="485" width="0.0119%" height="15" fill="rgb(214,198,28)" fg:x="5375" fg:w="1"/><text x="64.0937%" y="495.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked (1 samples, 0.01%)</title><rect x="63.8437%" y="469" width="0.0119%" height="15" fill="rgb(230,46,43)" fg:x="5375" fg:w="1"/><text x="64.0937%" y="479.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="63.8437%" y="453" width="0.0119%" height="15" fill="rgb(233,65,53)" fg:x="5375" fg:w="1"/><text x="64.0937%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sync::poison::mutex::MutexGuard&lt;tokio::runtime::time::InnerState&gt;&gt; (1 samples, 0.01%)</title><rect x="63.8556%" y="565" width="0.0119%" height="15" fill="rgb(221,121,27)" fg:x="5376" fg:w="1"/><text x="64.1056%" y="575.50"></text></g><g><title>&lt;std::sync::poison::mutex::MutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="63.8556%" y="549" width="0.0119%" height="15" fill="rgb(247,70,47)" fg:x="5376" fg:w="1"/><text x="64.1056%" y="559.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="63.8556%" y="533" width="0.0119%" height="15" fill="rgb(228,85,35)" fg:x="5376" fg:w="1"/><text x="64.1056%" y="543.50"></text></g><g><title>&lt;tokio::runtime::time::entry::TimerEntry as core::ops::drop::Drop&gt;::drop (3 samples, 0.04%)</title><rect x="63.8437%" y="613" width="0.0356%" height="15" fill="rgb(209,50,18)" fg:x="5375" fg:w="3"/><text x="64.0937%" y="623.50"></text></g><g><title>tokio::runtime::time::entry::TimerEntry::cancel (3 samples, 0.04%)</title><rect x="63.8437%" y="597" width="0.0356%" height="15" fill="rgb(250,19,35)" fg:x="5375" fg:w="3"/><text x="64.0937%" y="607.50"></text></g><g><title>tokio::runtime::time::_&lt;impl tokio::runtime::time::handle::Handle&gt;::clear_entry (3 samples, 0.04%)</title><rect x="63.8437%" y="581" width="0.0356%" height="15" fill="rgb(253,107,29)" fg:x="5375" fg:w="3"/><text x="64.0937%" y="591.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::remove (1 samples, 0.01%)</title><rect x="63.8674%" y="565" width="0.0119%" height="15" fill="rgb(252,179,29)" fg:x="5377" fg:w="1"/><text x="64.1174%" y="575.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::remove_entry (1 samples, 0.01%)</title><rect x="63.8674%" y="549" width="0.0119%" height="15" fill="rgb(238,194,6)" fg:x="5377" fg:w="1"/><text x="64.1174%" y="559.50"></text></g><g><title>tokio::util::linked_list::LinkedList&lt;L,&lt;L as tokio::util::linked_list::Link&gt;::Target&gt;::is_empty (1 samples, 0.01%)</title><rect x="63.8674%" y="533" width="0.0119%" height="15" fill="rgb(238,164,29)" fg:x="5377" fg:w="1"/><text x="64.1174%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;tokio::time::sleep::Sleep&gt;&gt; (4 samples, 0.05%)</title><rect x="63.8437%" y="661" width="0.0475%" height="15" fill="rgb(224,25,9)" fg:x="5375" fg:w="4"/><text x="64.0937%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::time::sleep::Sleep&gt; (4 samples, 0.05%)</title><rect x="63.8437%" y="645" width="0.0475%" height="15" fill="rgb(244,153,23)" fg:x="5375" fg:w="4"/><text x="64.0937%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::time::entry::TimerEntry&gt; (4 samples, 0.05%)</title><rect x="63.8437%" y="629" width="0.0475%" height="15" fill="rgb(212,203,14)" fg:x="5375" fg:w="4"/><text x="64.0937%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::scheduler::Handle&gt; (1 samples, 0.01%)</title><rect x="63.8793%" y="613" width="0.0119%" height="15" fill="rgb(220,164,20)" fg:x="5378" fg:w="1"/><text x="64.1293%" y="623.50"></text></g><g><title>&lt;reqwest::async_impl::decoder::Decoder as http_body::Body&gt;::poll_frame (18 samples, 0.21%)</title><rect x="63.6893%" y="725" width="0.2138%" height="15" fill="rgb(222,203,48)" fg:x="5362" fg:w="18"/><text x="63.9393%" y="735.50"></text></g><g><title>&lt;http_body_util::combinators::box_body::BoxBody&lt;D,E&gt; as http_body::Body&gt;::poll_frame (17 samples, 0.20%)</title><rect x="63.7012%" y="709" width="0.2019%" height="15" fill="rgb(215,159,22)" fg:x="5363" fg:w="17"/><text x="63.9512%" y="719.50"></text></g><g><title>&lt;http_body_util::combinators::map_err::MapErr&lt;B,F&gt; as http_body::Body&gt;::poll_frame (17 samples, 0.20%)</title><rect x="63.7012%" y="693" width="0.2019%" height="15" fill="rgb(216,183,47)" fg:x="5363" fg:w="17"/><text x="63.9512%" y="703.50"></text></g><g><title>&lt;reqwest::async_impl::body::ReadTimeoutBody&lt;B&gt; as http_body::Body&gt;::poll_frame (17 samples, 0.20%)</title><rect x="63.7012%" y="677" width="0.2019%" height="15" fill="rgb(229,195,25)" fg:x="5363" fg:w="17"/><text x="63.9512%" y="687.50"></text></g><g><title>tokio::time::sleep::sleep (1 samples, 0.01%)</title><rect x="63.8912%" y="661" width="0.0119%" height="15" fill="rgb(224,132,51)" fg:x="5379" fg:w="1"/><text x="64.1412%" y="671.50"></text></g><g><title>tokio::time::instant::Instant::now (1 samples, 0.01%)</title><rect x="63.8912%" y="645" width="0.0119%" height="15" fill="rgb(240,63,7)" fg:x="5379" fg:w="1"/><text x="64.1412%" y="655.50"></text></g><g><title>tokio::time::instant::variant::now (1 samples, 0.01%)</title><rect x="63.8912%" y="629" width="0.0119%" height="15" fill="rgb(249,182,41)" fg:x="5379" fg:w="1"/><text x="64.1412%" y="639.50"></text></g><g><title>std::sys::pal::unix::time::Timespec::now (1 samples, 0.01%)</title><rect x="63.8912%" y="613" width="0.0119%" height="15" fill="rgb(243,47,26)" fg:x="5379" fg:w="1"/><text x="64.1412%" y="623.50"></text></g><g><title>clock_gettime (1 samples, 0.01%)</title><rect x="63.8912%" y="597" width="0.0119%" height="15" fill="rgb(233,48,2)" fg:x="5379" fg:w="1"/><text x="64.1412%" y="607.50"></text></g><g><title>clock_gettime_nsec_np (1 samples, 0.01%)</title><rect x="63.8912%" y="581" width="0.0119%" height="15" fill="rgb(244,165,34)" fg:x="5379" fg:w="1"/><text x="64.1412%" y="591.50"></text></g><g><title>mach_absolute_time (1 samples, 0.01%)</title><rect x="63.8912%" y="565" width="0.0119%" height="15" fill="rgb(207,89,7)" fg:x="5379" fg:w="1"/><text x="64.1412%" y="575.50"></text></g><g><title>&lt;S as futures_core::stream::TryStream&gt;::try_poll_next (19 samples, 0.23%)</title><rect x="63.6893%" y="821" width="0.2257%" height="15" fill="rgb(244,117,36)" fg:x="5362" fg:w="19"/><text x="63.9393%" y="831.50"></text></g><g><title>&lt;futures_util::stream::try_stream::MapErr&lt;St,F&gt; as futures_core::stream::Stream&gt;::poll_next (19 samples, 0.23%)</title><rect x="63.6893%" y="805" width="0.2257%" height="15" fill="rgb(226,144,34)" fg:x="5362" fg:w="19"/><text x="63.9393%" y="815.50"></text></g><g><title>&lt;futures_util::stream::stream::map::Map&lt;St,F&gt; as futures_core::stream::Stream&gt;::poll_next (19 samples, 0.23%)</title><rect x="63.6893%" y="789" width="0.2257%" height="15" fill="rgb(213,23,19)" fg:x="5362" fg:w="19"/><text x="63.9393%" y="799.50"></text></g><g><title>&lt;futures_util::stream::try_stream::into_stream::IntoStream&lt;St&gt; as futures_core::stream::Stream&gt;::poll_next (19 samples, 0.23%)</title><rect x="63.6893%" y="773" width="0.2257%" height="15" fill="rgb(217,75,12)" fg:x="5362" fg:w="19"/><text x="63.9393%" y="783.50"></text></g><g><title>&lt;S as futures_core::stream::TryStream&gt;::try_poll_next (19 samples, 0.23%)</title><rect x="63.6893%" y="757" width="0.2257%" height="15" fill="rgb(224,159,17)" fg:x="5362" fg:w="19"/><text x="63.9393%" y="767.50"></text></g><g><title>&lt;reqwest::async_impl::body::DataStream&lt;B&gt; as futures_core::stream::Stream&gt;::poll_next (19 samples, 0.23%)</title><rect x="63.6893%" y="741" width="0.2257%" height="15" fill="rgb(217,118,1)" fg:x="5362" fg:w="19"/><text x="63.9393%" y="751.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="63.9031%" y="725" width="0.0119%" height="15" fill="rgb(232,180,48)" fg:x="5380" fg:w="1"/><text x="64.1531%" y="735.50"></text></g><g><title>_rjem_je_te_event_trigger (1 samples, 0.01%)</title><rect x="63.9387%" y="565" width="0.0119%" height="15" fill="rgb(230,27,33)" fg:x="5383" fg:w="1"/><text x="64.1887%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;futures_util::stream::try_stream::into_async_read::ReadState&lt;bytes::bytes::Bytes&gt;&gt; (4 samples, 0.05%)</title><rect x="63.9150%" y="821" width="0.0475%" height="15" fill="rgb(205,31,21)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;bytes::bytes::Bytes&gt; (4 samples, 0.05%)</title><rect x="63.9150%" y="805" width="0.0475%" height="15" fill="rgb(253,59,4)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="815.50"></text></g><g><title>&lt;bytes::bytes::Bytes as core::ops::drop::Drop&gt;::drop (4 samples, 0.05%)</title><rect x="63.9150%" y="789" width="0.0475%" height="15" fill="rgb(224,201,9)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="799.50"></text></g><g><title>bytes::bytes_mut::shared_v_drop (4 samples, 0.05%)</title><rect x="63.9150%" y="773" width="0.0475%" height="15" fill="rgb(229,206,30)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="783.50"></text></g><g><title>&lt;core::sync::atomic::AtomicPtr&lt;T&gt; as bytes::loom::sync::atomic::AtomicMut&lt;T&gt;&gt;::with_mut (4 samples, 0.05%)</title><rect x="63.9150%" y="757" width="0.0475%" height="15" fill="rgb(212,67,47)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="767.50"></text></g><g><title>bytes::bytes_mut::shared_v_drop::_{{closure}} (4 samples, 0.05%)</title><rect x="63.9150%" y="741" width="0.0475%" height="15" fill="rgb(211,96,50)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="751.50"></text></g><g><title>bytes::bytes_mut::release_shared (4 samples, 0.05%)</title><rect x="63.9150%" y="725" width="0.0475%" height="15" fill="rgb(252,114,18)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="735.50"></text></g><g><title>core::mem::drop (4 samples, 0.05%)</title><rect x="63.9150%" y="709" width="0.0475%" height="15" fill="rgb(223,58,37)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;bytes::bytes_mut::Shared&gt;&gt; (4 samples, 0.05%)</title><rect x="63.9150%" y="693" width="0.0475%" height="15" fill="rgb(237,70,4)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;bytes::bytes_mut::Shared&gt; (4 samples, 0.05%)</title><rect x="63.9150%" y="677" width="0.0475%" height="15" fill="rgb(244,85,46)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (4 samples, 0.05%)</title><rect x="63.9150%" y="661" width="0.0475%" height="15" fill="rgb(223,39,52)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (4 samples, 0.05%)</title><rect x="63.9150%" y="645" width="0.0475%" height="15" fill="rgb(218,200,14)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="655.50"></text></g><g><title>__rustc::__rust_dealloc (4 samples, 0.05%)</title><rect x="63.9150%" y="629" width="0.0475%" height="15" fill="rgb(208,171,16)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="639.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (4 samples, 0.05%)</title><rect x="63.9150%" y="613" width="0.0475%" height="15" fill="rgb(234,200,18)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="623.50"></text></g><g><title>_rjem_sdallocx (4 samples, 0.05%)</title><rect x="63.9150%" y="597" width="0.0475%" height="15" fill="rgb(228,45,11)" fg:x="5381" fg:w="4"/><text x="64.1650%" y="607.50"></text></g><g><title>_rjem_je_sdallocx_default (2 samples, 0.02%)</title><rect x="63.9387%" y="581" width="0.0238%" height="15" fill="rgb(237,182,11)" fg:x="5383" fg:w="2"/><text x="64.1887%" y="591.50"></text></g><g><title>sz_size2index_compute (1 samples, 0.01%)</title><rect x="63.9506%" y="565" width="0.0119%" height="15" fill="rgb(241,175,49)" fg:x="5384" fg:w="1"/><text x="64.2006%" y="575.50"></text></g><g><title>&lt;&amp;mut T as tokio::io::async_read::AsyncRead&gt;::poll_read (24 samples, 0.29%)</title><rect x="63.6893%" y="885" width="0.2851%" height="15" fill="rgb(247,38,35)" fg:x="5362" fg:w="24"/><text x="63.9393%" y="895.50"></text></g><g><title>&lt;uv_extract::hash::HashReader&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (24 samples, 0.29%)</title><rect x="63.6893%" y="869" width="0.2851%" height="15" fill="rgb(228,39,49)" fg:x="5362" fg:w="24"/><text x="63.9393%" y="879.50"></text></g><g><title>&lt;tokio_util::compat::Compat&lt;T&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (24 samples, 0.29%)</title><rect x="63.6893%" y="853" width="0.2851%" height="15" fill="rgb(226,101,26)" fg:x="5362" fg:w="24"/><text x="63.9393%" y="863.50"></text></g><g><title>&lt;futures_util::stream::try_stream::into_async_read::IntoAsyncRead&lt;St&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (24 samples, 0.29%)</title><rect x="63.6893%" y="837" width="0.2851%" height="15" fill="rgb(206,141,19)" fg:x="5362" fg:w="24"/><text x="63.9393%" y="847.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::copy_from_slice (1 samples, 0.01%)</title><rect x="63.9625%" y="821" width="0.0119%" height="15" fill="rgb(211,200,13)" fg:x="5385" fg:w="1"/><text x="64.2125%" y="831.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="63.9625%" y="805" width="0.0119%" height="15" fill="rgb(241,121,6)" fg:x="5385" fg:w="1"/><text x="64.2125%" y="815.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::ops::index::Index&lt;&amp;Q&gt;&gt;::index (1 samples, 0.01%)</title><rect x="63.9743%" y="789" width="0.0119%" height="15" fill="rgb(234,221,29)" fg:x="5386" fg:w="1"/><text x="64.2243%" y="799.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_inner (1 samples, 0.01%)</title><rect x="63.9743%" y="773" width="0.0119%" height="15" fill="rgb(229,136,5)" fg:x="5386" fg:w="1"/><text x="64.2243%" y="783.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (1 samples, 0.01%)</title><rect x="63.9743%" y="757" width="0.0119%" height="15" fill="rgb(238,36,11)" fg:x="5386" fg:w="1"/><text x="64.2243%" y="767.50"></text></g><g><title>core::core_arch::aarch64::neon::generated::vld1_u8 (1 samples, 0.01%)</title><rect x="63.9743%" y="741" width="0.0119%" height="15" fill="rgb(251,55,41)" fg:x="5386" fg:w="1"/><text x="64.2243%" y="751.50"></text></g><g><title>core::ptr::read_unaligned (1 samples, 0.01%)</title><rect x="63.9743%" y="725" width="0.0119%" height="15" fill="rgb(242,34,40)" fg:x="5386" fg:w="1"/><text x="64.2243%" y="735.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="63.9743%" y="709" width="0.0119%" height="15" fill="rgb(215,42,17)" fg:x="5386" fg:w="1"/><text x="64.2243%" y="719.50"></text></g><g><title>core::mem::drop (1 samples, 0.01%)</title><rect x="63.9862%" y="709" width="0.0119%" height="15" fill="rgb(207,44,46)" fg:x="5387" fg:w="1"/><text x="64.2362%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;indicatif::draw_target::DrawStateWrapper&gt; (1 samples, 0.01%)</title><rect x="63.9862%" y="693" width="0.0119%" height="15" fill="rgb(211,206,28)" fg:x="5387" fg:w="1"/><text x="64.2362%" y="703.50"></text></g><g><title>&lt;indicatif::draw_target::DrawStateWrapper as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="63.9862%" y="677" width="0.0119%" height="15" fill="rgb(237,167,16)" fg:x="5387" fg:w="1"/><text x="64.2362%" y="687.50"></text></g><g><title>ioctl (2 samples, 0.02%)</title><rect x="63.9981%" y="565" width="0.0238%" height="15" fill="rgb(233,66,6)" fg:x="5388" fg:w="2"/><text x="64.2481%" y="575.50"></text></g><g><title>__ioctl (2 samples, 0.02%)</title><rect x="63.9981%" y="549" width="0.0238%" height="15" fill="rgb(246,123,29)" fg:x="5388" fg:w="2"/><text x="64.2481%" y="559.50"></text></g><g><title>indicatif::draw_target::Drawable::draw (3 samples, 0.04%)</title><rect x="63.9981%" y="709" width="0.0356%" height="15" fill="rgb(209,62,40)" fg:x="5388" fg:w="3"/><text x="64.2481%" y="719.50"></text></g><g><title>indicatif::multi::MultiState::draw (3 samples, 0.04%)</title><rect x="63.9981%" y="693" width="0.0356%" height="15" fill="rgb(218,4,25)" fg:x="5388" fg:w="3"/><text x="64.2481%" y="703.50"></text></g><g><title>indicatif::multi::MultiState::width (3 samples, 0.04%)</title><rect x="63.9981%" y="677" width="0.0356%" height="15" fill="rgb(253,91,49)" fg:x="5388" fg:w="3"/><text x="64.2481%" y="687.50"></text></g><g><title>indicatif::draw_target::ProgressDrawTarget::width (3 samples, 0.04%)</title><rect x="63.9981%" y="661" width="0.0356%" height="15" fill="rgb(228,155,29)" fg:x="5388" fg:w="3"/><text x="64.2481%" y="671.50"></text></g><g><title>console::term::Term::size (3 samples, 0.04%)</title><rect x="63.9981%" y="645" width="0.0356%" height="15" fill="rgb(243,57,37)" fg:x="5388" fg:w="3"/><text x="64.2481%" y="655.50"></text></g><g><title>console::term::Term::size_checked (3 samples, 0.04%)</title><rect x="63.9981%" y="629" width="0.0356%" height="15" fill="rgb(244,167,17)" fg:x="5388" fg:w="3"/><text x="64.2481%" y="639.50"></text></g><g><title>console::unix_term::terminal_size (3 samples, 0.04%)</title><rect x="63.9981%" y="613" width="0.0356%" height="15" fill="rgb(207,181,38)" fg:x="5388" fg:w="3"/><text x="64.2481%" y="623.50"></text></g><g><title>console::unix_term::is_a_terminal (3 samples, 0.04%)</title><rect x="63.9981%" y="597" width="0.0356%" height="15" fill="rgb(211,8,23)" fg:x="5388" fg:w="3"/><text x="64.2481%" y="607.50"></text></g><g><title>isatty (3 samples, 0.04%)</title><rect x="63.9981%" y="581" width="0.0356%" height="15" fill="rgb(235,11,44)" fg:x="5388" fg:w="3"/><text x="64.2481%" y="591.50"></text></g><g><title>tcgetattr (1 samples, 0.01%)</title><rect x="64.0219%" y="565" width="0.0119%" height="15" fill="rgb(248,18,52)" fg:x="5390" fg:w="1"/><text x="64.2719%" y="575.50"></text></g><g><title>ioctl (1 samples, 0.01%)</title><rect x="64.0219%" y="549" width="0.0119%" height="15" fill="rgb(208,4,7)" fg:x="5390" fg:w="1"/><text x="64.2719%" y="559.50"></text></g><g><title>__ioctl (1 samples, 0.01%)</title><rect x="64.0219%" y="533" width="0.0119%" height="15" fill="rgb(240,17,39)" fg:x="5390" fg:w="1"/><text x="64.2719%" y="543.50"></text></g><g><title>&lt;console::term::Term as std::os::fd::raw::AsRawFd&gt;::as_raw_fd (1 samples, 0.01%)</title><rect x="64.0337%" y="597" width="0.0119%" height="15" fill="rgb(207,170,3)" fg:x="5391" fg:w="1"/><text x="64.2837%" y="607.50"></text></g><g><title>ioctl (1 samples, 0.01%)</title><rect x="64.0456%" y="581" width="0.0119%" height="15" fill="rgb(236,100,52)" fg:x="5392" fg:w="1"/><text x="64.2956%" y="591.50"></text></g><g><title>__ioctl (1 samples, 0.01%)</title><rect x="64.0456%" y="565" width="0.0119%" height="15" fill="rgb(246,78,51)" fg:x="5392" fg:w="1"/><text x="64.2956%" y="575.50"></text></g><g><title>indicatif::draw_target::Drawable::width (4 samples, 0.05%)</title><rect x="64.0337%" y="709" width="0.0475%" height="15" fill="rgb(211,17,15)" fg:x="5391" fg:w="4"/><text x="64.2837%" y="719.50"></text></g><g><title>indicatif::multi::MultiState::width (4 samples, 0.05%)</title><rect x="64.0337%" y="693" width="0.0475%" height="15" fill="rgb(209,59,46)" fg:x="5391" fg:w="4"/><text x="64.2837%" y="703.50"></text></g><g><title>indicatif::draw_target::ProgressDrawTarget::width (4 samples, 0.05%)</title><rect x="64.0337%" y="677" width="0.0475%" height="15" fill="rgb(210,92,25)" fg:x="5391" fg:w="4"/><text x="64.2837%" y="687.50"></text></g><g><title>console::term::Term::size (4 samples, 0.05%)</title><rect x="64.0337%" y="661" width="0.0475%" height="15" fill="rgb(238,174,52)" fg:x="5391" fg:w="4"/><text x="64.2837%" y="671.50"></text></g><g><title>console::term::Term::size_checked (4 samples, 0.05%)</title><rect x="64.0337%" y="645" width="0.0475%" height="15" fill="rgb(230,73,7)" fg:x="5391" fg:w="4"/><text x="64.2837%" y="655.50"></text></g><g><title>console::unix_term::terminal_size (4 samples, 0.05%)</title><rect x="64.0337%" y="629" width="0.0475%" height="15" fill="rgb(243,124,40)" fg:x="5391" fg:w="4"/><text x="64.2837%" y="639.50"></text></g><g><title>console::unix_term::is_a_terminal (4 samples, 0.05%)</title><rect x="64.0337%" y="613" width="0.0475%" height="15" fill="rgb(244,170,11)" fg:x="5391" fg:w="4"/><text x="64.2837%" y="623.50"></text></g><g><title>isatty (3 samples, 0.04%)</title><rect x="64.0456%" y="597" width="0.0356%" height="15" fill="rgb(207,114,54)" fg:x="5392" fg:w="3"/><text x="64.2956%" y="607.50"></text></g><g><title>tcgetattr (2 samples, 0.02%)</title><rect x="64.0575%" y="581" width="0.0238%" height="15" fill="rgb(205,42,20)" fg:x="5393" fg:w="2"/><text x="64.3075%" y="591.50"></text></g><g><title>ioctl (2 samples, 0.02%)</title><rect x="64.0575%" y="565" width="0.0238%" height="15" fill="rgb(230,30,28)" fg:x="5393" fg:w="2"/><text x="64.3075%" y="575.50"></text></g><g><title>__ioctl (2 samples, 0.02%)</title><rect x="64.0575%" y="549" width="0.0238%" height="15" fill="rgb(205,73,54)" fg:x="5393" fg:w="2"/><text x="64.3075%" y="559.50"></text></g><g><title>cerror (1 samples, 0.01%)</title><rect x="64.0694%" y="533" width="0.0119%" height="15" fill="rgb(254,227,23)" fg:x="5394" fg:w="1"/><text x="64.3194%" y="543.50"></text></g><g><title>_pthread_exit_if_canceled (1 samples, 0.01%)</title><rect x="64.0694%" y="517" width="0.0119%" height="15" fill="rgb(228,202,34)" fg:x="5394" fg:w="1"/><text x="64.3194%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (4 samples, 0.05%)</title><rect x="64.1050%" y="581" width="0.0475%" height="15" fill="rgb(222,225,37)" fg:x="5397" fg:w="4"/><text x="64.3550%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (4 samples, 0.05%)</title><rect x="64.1050%" y="565" width="0.0475%" height="15" fill="rgb(221,14,54)" fg:x="5397" fg:w="4"/><text x="64.3550%" y="575.50"></text></g><g><title>alloc::raw_vec::finish_grow (4 samples, 0.05%)</title><rect x="64.1050%" y="549" width="0.0475%" height="15" fill="rgb(254,102,2)" fg:x="5397" fg:w="4"/><text x="64.3550%" y="559.50"></text></g><g><title>__rustc::__rust_realloc (4 samples, 0.05%)</title><rect x="64.1050%" y="533" width="0.0475%" height="15" fill="rgb(232,104,17)" fg:x="5397" fg:w="4"/><text x="64.3550%" y="543.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (4 samples, 0.05%)</title><rect x="64.1050%" y="517" width="0.0475%" height="15" fill="rgb(250,220,14)" fg:x="5397" fg:w="4"/><text x="64.3550%" y="527.50"></text></g><g><title>_rjem_realloc (4 samples, 0.05%)</title><rect x="64.1050%" y="501" width="0.0475%" height="15" fill="rgb(241,158,9)" fg:x="5397" fg:w="4"/><text x="64.3550%" y="511.50"></text></g><g><title>do_rallocx (4 samples, 0.05%)</title><rect x="64.1050%" y="485" width="0.0475%" height="15" fill="rgb(246,9,43)" fg:x="5397" fg:w="4"/><text x="64.3550%" y="495.50"></text></g><g><title>_rjem_je_arena_ralloc (1 samples, 0.01%)</title><rect x="64.1406%" y="469" width="0.0119%" height="15" fill="rgb(206,73,33)" fg:x="5400" fg:w="1"/><text x="64.3906%" y="479.50"></text></g><g><title>_rjem_je_arena_ralloc_no_move (1 samples, 0.01%)</title><rect x="64.1406%" y="453" width="0.0119%" height="15" fill="rgb(222,79,8)" fg:x="5400" fg:w="1"/><text x="64.3906%" y="463.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_char (6 samples, 0.07%)</title><rect x="64.0931%" y="613" width="0.0713%" height="15" fill="rgb(234,8,54)" fg:x="5396" fg:w="6"/><text x="64.3431%" y="623.50"></text></g><g><title>alloc::string::String::push (5 samples, 0.06%)</title><rect x="64.1050%" y="597" width="0.0594%" height="15" fill="rgb(209,134,38)" fg:x="5397" fg:w="5"/><text x="64.3550%" y="607.50"></text></g><g><title>core::char::methods::encode_utf8_raw_unchecked (1 samples, 0.01%)</title><rect x="64.1525%" y="581" width="0.0119%" height="15" fill="rgb(230,127,29)" fg:x="5401" fg:w="1"/><text x="64.4025%" y="591.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (2 samples, 0.02%)</title><rect x="64.1644%" y="613" width="0.0238%" height="15" fill="rgb(242,44,41)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="623.50"></text></g><g><title>alloc::string::String::push_str (2 samples, 0.02%)</title><rect x="64.1644%" y="597" width="0.0238%" height="15" fill="rgb(222,56,43)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (2 samples, 0.02%)</title><rect x="64.1644%" y="581" width="0.0238%" height="15" fill="rgb(238,39,47)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (2 samples, 0.02%)</title><rect x="64.1644%" y="565" width="0.0238%" height="15" fill="rgb(226,79,43)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (2 samples, 0.02%)</title><rect x="64.1644%" y="549" width="0.0238%" height="15" fill="rgb(242,105,53)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="559.50"></text></g><g><title>alloc::raw_vec::finish_grow (2 samples, 0.02%)</title><rect x="64.1644%" y="533" width="0.0238%" height="15" fill="rgb(251,132,46)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="543.50"></text></g><g><title>__rustc::__rust_realloc (2 samples, 0.02%)</title><rect x="64.1644%" y="517" width="0.0238%" height="15" fill="rgb(231,77,14)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="527.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (2 samples, 0.02%)</title><rect x="64.1644%" y="501" width="0.0238%" height="15" fill="rgb(240,135,9)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="511.50"></text></g><g><title>_rjem_realloc (2 samples, 0.02%)</title><rect x="64.1644%" y="485" width="0.0238%" height="15" fill="rgb(248,109,14)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="495.50"></text></g><g><title>do_rallocx (2 samples, 0.02%)</title><rect x="64.1644%" y="469" width="0.0238%" height="15" fill="rgb(227,146,52)" fg:x="5402" fg:w="2"/><text x="64.4144%" y="479.50"></text></g><g><title>rtree_metadata_read (1 samples, 0.01%)</title><rect x="64.1763%" y="453" width="0.0119%" height="15" fill="rgb(232,54,3)" fg:x="5403" fg:w="1"/><text x="64.4263%" y="463.50"></text></g><g><title>&lt;core::iter::adapters::peekable::Peekable&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.02%)</title><rect x="64.2119%" y="565" width="0.0238%" height="15" fill="rgb(229,201,43)" fg:x="5406" fg:w="2"/><text x="64.4619%" y="575.50"></text></g><g><title>console::ansi::strip_ansi_codes (9 samples, 0.11%)</title><rect x="64.1881%" y="597" width="0.1069%" height="15" fill="rgb(252,161,33)" fg:x="5404" fg:w="9"/><text x="64.4381%" y="607.50"></text></g><g><title>console::ansi::find_ansi_code_exclusive (9 samples, 0.11%)</title><rect x="64.1881%" y="581" width="0.1069%" height="15" fill="rgb(226,146,40)" fg:x="5404" fg:w="9"/><text x="64.4381%" y="591.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek (5 samples, 0.06%)</title><rect x="64.2357%" y="565" width="0.0594%" height="15" fill="rgb(219,47,25)" fg:x="5408" fg:w="5"/><text x="64.4857%" y="575.50"></text></g><g><title>core::option::Option&lt;T&gt;::get_or_insert_with (5 samples, 0.06%)</title><rect x="64.2357%" y="549" width="0.0594%" height="15" fill="rgb(250,135,13)" fg:x="5408" fg:w="5"/><text x="64.4857%" y="559.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek::_{{closure}} (4 samples, 0.05%)</title><rect x="64.2475%" y="533" width="0.0475%" height="15" fill="rgb(219,229,18)" fg:x="5409" fg:w="4"/><text x="64.4975%" y="543.50"></text></g><g><title>&lt;core::str::iter::CharIndices as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.05%)</title><rect x="64.2475%" y="517" width="0.0475%" height="15" fill="rgb(217,152,27)" fg:x="5409" fg:w="4"/><text x="64.4975%" y="527.50"></text></g><g><title>core::str::validations::next_code_point (4 samples, 0.05%)</title><rect x="64.2475%" y="501" width="0.0475%" height="15" fill="rgb(225,71,47)" fg:x="5409" fg:w="4"/><text x="64.4975%" y="511.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="64.2832%" y="485" width="0.0119%" height="15" fill="rgb(220,139,14)" fg:x="5412" fg:w="1"/><text x="64.5332%" y="495.50"></text></g><g><title>&lt;console::utils::StyledObject&lt;D&gt; as core::fmt::Display&gt;::fmt (18 samples, 0.21%)</title><rect x="64.0931%" y="645" width="0.2138%" height="15" fill="rgb(247,54,32)" fg:x="5396" fg:w="18"/><text x="64.3431%" y="655.50"></text></g><g><title>&lt;indicatif::style::PaddedStringDisplay as core::fmt::Display&gt;::fmt (18 samples, 0.21%)</title><rect x="64.0931%" y="629" width="0.2138%" height="15" fill="rgb(252,131,39)" fg:x="5396" fg:w="18"/><text x="64.3431%" y="639.50"></text></g><g><title>console::utils::measure_text_width (10 samples, 0.12%)</title><rect x="64.1881%" y="613" width="0.1188%" height="15" fill="rgb(210,108,39)" fg:x="5404" fg:w="10"/><text x="64.4381%" y="623.50"></text></g><g><title>console::utils::str_width (1 samples, 0.01%)</title><rect x="64.2950%" y="597" width="0.0119%" height="15" fill="rgb(205,23,29)" fg:x="5413" fg:w="1"/><text x="64.5450%" y="607.50"></text></g><g><title>&lt;str as unicode_width::UnicodeWidthStr&gt;::width (1 samples, 0.01%)</title><rect x="64.2950%" y="581" width="0.0119%" height="15" fill="rgb(246,139,46)" fg:x="5413" fg:w="1"/><text x="64.5450%" y="591.50"></text></g><g><title>unicode_width::tables::str_width (1 samples, 0.01%)</title><rect x="64.2950%" y="565" width="0.0119%" height="15" fill="rgb(250,81,26)" fg:x="5413" fg:w="1"/><text x="64.5450%" y="575.50"></text></g><g><title>core::iter::traits::double_ended::DoubleEndedIterator::rfold (1 samples, 0.01%)</title><rect x="64.2950%" y="549" width="0.0119%" height="15" fill="rgb(214,104,7)" fg:x="5413" fg:w="1"/><text x="64.5450%" y="559.50"></text></g><g><title>&lt;core::str::iter::Chars as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (1 samples, 0.01%)</title><rect x="64.2950%" y="533" width="0.0119%" height="15" fill="rgb(233,189,8)" fg:x="5413" fg:w="1"/><text x="64.5450%" y="543.50"></text></g><g><title>core::str::validations::next_code_point_reverse (1 samples, 0.01%)</title><rect x="64.2950%" y="517" width="0.0119%" height="15" fill="rgb(228,141,17)" fg:x="5413" fg:w="1"/><text x="64.5450%" y="527.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (1 samples, 0.01%)</title><rect x="64.2950%" y="501" width="0.0119%" height="15" fill="rgb(247,157,1)" fg:x="5413" fg:w="1"/><text x="64.5450%" y="511.50"></text></g><g><title>_rjem_je_arena_ralloc_no_move (1 samples, 0.01%)</title><rect x="64.3069%" y="453" width="0.0119%" height="15" fill="rgb(249,225,5)" fg:x="5414" fg:w="1"/><text x="64.5569%" y="463.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (3 samples, 0.04%)</title><rect x="64.3069%" y="517" width="0.0356%" height="15" fill="rgb(242,55,13)" fg:x="5414" fg:w="3"/><text x="64.5569%" y="527.50"></text></g><g><title>_rjem_realloc (3 samples, 0.04%)</title><rect x="64.3069%" y="501" width="0.0356%" height="15" fill="rgb(230,49,50)" fg:x="5414" fg:w="3"/><text x="64.5569%" y="511.50"></text></g><g><title>do_rallocx (3 samples, 0.04%)</title><rect x="64.3069%" y="485" width="0.0356%" height="15" fill="rgb(241,111,38)" fg:x="5414" fg:w="3"/><text x="64.5569%" y="495.50"></text></g><g><title>_rjem_je_arena_ralloc (3 samples, 0.04%)</title><rect x="64.3069%" y="469" width="0.0356%" height="15" fill="rgb(252,155,4)" fg:x="5414" fg:w="3"/><text x="64.5569%" y="479.50"></text></g><g><title>arena_ralloc_move_helper (2 samples, 0.02%)</title><rect x="64.3188%" y="453" width="0.0238%" height="15" fill="rgb(212,69,32)" fg:x="5415" fg:w="2"/><text x="64.5688%" y="463.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (4 samples, 0.05%)</title><rect x="64.3069%" y="629" width="0.0475%" height="15" fill="rgb(243,107,47)" fg:x="5414" fg:w="4"/><text x="64.5569%" y="639.50"></text></g><g><title>alloc::string::String::push_str (4 samples, 0.05%)</title><rect x="64.3069%" y="613" width="0.0475%" height="15" fill="rgb(247,130,12)" fg:x="5414" fg:w="4"/><text x="64.5569%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (4 samples, 0.05%)</title><rect x="64.3069%" y="597" width="0.0475%" height="15" fill="rgb(233,74,16)" fg:x="5414" fg:w="4"/><text x="64.5569%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (4 samples, 0.05%)</title><rect x="64.3069%" y="581" width="0.0475%" height="15" fill="rgb(208,58,18)" fg:x="5414" fg:w="4"/><text x="64.5569%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (4 samples, 0.05%)</title><rect x="64.3069%" y="565" width="0.0475%" height="15" fill="rgb(242,225,1)" fg:x="5414" fg:w="4"/><text x="64.5569%" y="575.50"></text></g><g><title>alloc::raw_vec::finish_grow (4 samples, 0.05%)</title><rect x="64.3069%" y="549" width="0.0475%" height="15" fill="rgb(249,39,40)" fg:x="5414" fg:w="4"/><text x="64.5569%" y="559.50"></text></g><g><title>__rustc::__rust_realloc (4 samples, 0.05%)</title><rect x="64.3069%" y="533" width="0.0475%" height="15" fill="rgb(207,72,44)" fg:x="5414" fg:w="4"/><text x="64.5569%" y="543.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked (1 samples, 0.01%)</title><rect x="64.3426%" y="517" width="0.0119%" height="15" fill="rgb(215,193,12)" fg:x="5417" fg:w="1"/><text x="64.5926%" y="527.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (1 samples, 0.01%)</title><rect x="64.3663%" y="597" width="0.0119%" height="15" fill="rgb(248,41,39)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="607.50"></text></g><g><title>alloc::string::String::push_str (1 samples, 0.01%)</title><rect x="64.3663%" y="581" width="0.0119%" height="15" fill="rgb(253,85,4)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="591.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (1 samples, 0.01%)</title><rect x="64.3663%" y="565" width="0.0119%" height="15" fill="rgb(243,70,31)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (1 samples, 0.01%)</title><rect x="64.3663%" y="549" width="0.0119%" height="15" fill="rgb(253,195,26)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.01%)</title><rect x="64.3663%" y="533" width="0.0119%" height="15" fill="rgb(243,42,11)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="543.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.01%)</title><rect x="64.3663%" y="517" width="0.0119%" height="15" fill="rgb(239,66,17)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="527.50"></text></g><g><title>__rustc::__rust_realloc (1 samples, 0.01%)</title><rect x="64.3663%" y="501" width="0.0119%" height="15" fill="rgb(217,132,21)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="511.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (1 samples, 0.01%)</title><rect x="64.3663%" y="485" width="0.0119%" height="15" fill="rgb(252,202,21)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="495.50"></text></g><g><title>_rjem_realloc (1 samples, 0.01%)</title><rect x="64.3663%" y="469" width="0.0119%" height="15" fill="rgb(233,98,36)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="479.50"></text></g><g><title>do_rallocx (1 samples, 0.01%)</title><rect x="64.3663%" y="453" width="0.0119%" height="15" fill="rgb(216,153,54)" fg:x="5419" fg:w="1"/><text x="64.6163%" y="463.50"></text></g><g><title>&lt;indicatif::style::BarDisplay as core::fmt::Display&gt;::fmt (7 samples, 0.08%)</title><rect x="64.3069%" y="645" width="0.0831%" height="15" fill="rgb(250,99,7)" fg:x="5414" fg:w="7"/><text x="64.5569%" y="655.50"></text></g><g><title>&lt;console::utils::StyledObject&lt;D&gt; as core::fmt::Display&gt;::fmt (3 samples, 0.04%)</title><rect x="64.3544%" y="629" width="0.0356%" height="15" fill="rgb(207,56,50)" fg:x="5418" fg:w="3"/><text x="64.6044%" y="639.50"></text></g><g><title>&lt;indicatif::style::RepeatedStringDisplay as core::fmt::Display&gt;::fmt (3 samples, 0.04%)</title><rect x="64.3544%" y="613" width="0.0356%" height="15" fill="rgb(244,61,34)" fg:x="5418" fg:w="3"/><text x="64.6044%" y="623.50"></text></g><g><title>core::iter::range::_&lt;impl core::iter::traits::iterator::Iterator for core::ops::range::Range&lt;A&gt;&gt;::next (1 samples, 0.01%)</title><rect x="64.3782%" y="597" width="0.0119%" height="15" fill="rgb(241,50,38)" fg:x="5420" fg:w="1"/><text x="64.6282%" y="607.50"></text></g><g><title>&lt;core::ops::range::Range&lt;T&gt; as core::iter::range::RangeIteratorImpl&gt;::spec_next (1 samples, 0.01%)</title><rect x="64.3782%" y="581" width="0.0119%" height="15" fill="rgb(212,166,30)" fg:x="5420" fg:w="1"/><text x="64.6282%" y="591.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (1 samples, 0.01%)</title><rect x="64.3901%" y="629" width="0.0119%" height="15" fill="rgb(249,127,32)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="639.50"></text></g><g><title>alloc::string::String::push_str (1 samples, 0.01%)</title><rect x="64.3901%" y="613" width="0.0119%" height="15" fill="rgb(209,103,0)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (1 samples, 0.01%)</title><rect x="64.3901%" y="597" width="0.0119%" height="15" fill="rgb(238,209,51)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (1 samples, 0.01%)</title><rect x="64.3901%" y="581" width="0.0119%" height="15" fill="rgb(237,56,23)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.01%)</title><rect x="64.3901%" y="565" width="0.0119%" height="15" fill="rgb(215,153,46)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="575.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.01%)</title><rect x="64.3901%" y="549" width="0.0119%" height="15" fill="rgb(224,49,31)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="559.50"></text></g><g><title>__rustc::__rust_realloc (1 samples, 0.01%)</title><rect x="64.3901%" y="533" width="0.0119%" height="15" fill="rgb(250,18,42)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="543.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (1 samples, 0.01%)</title><rect x="64.3901%" y="517" width="0.0119%" height="15" fill="rgb(215,176,39)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="527.50"></text></g><g><title>_rjem_realloc (1 samples, 0.01%)</title><rect x="64.3901%" y="501" width="0.0119%" height="15" fill="rgb(223,77,29)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="511.50"></text></g><g><title>do_rallocx (1 samples, 0.01%)</title><rect x="64.3901%" y="485" width="0.0119%" height="15" fill="rgb(234,94,52)" fg:x="5421" fg:w="1"/><text x="64.6401%" y="495.50"></text></g><g><title>console::ansi::strip_ansi_codes (1 samples, 0.01%)</title><rect x="64.4019%" y="613" width="0.0119%" height="15" fill="rgb(220,154,50)" fg:x="5422" fg:w="1"/><text x="64.6519%" y="623.50"></text></g><g><title>console::ansi::find_ansi_code_exclusive (1 samples, 0.01%)</title><rect x="64.4019%" y="597" width="0.0119%" height="15" fill="rgb(212,11,10)" fg:x="5422" fg:w="1"/><text x="64.6519%" y="607.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek (1 samples, 0.01%)</title><rect x="64.4019%" y="581" width="0.0119%" height="15" fill="rgb(205,166,19)" fg:x="5422" fg:w="1"/><text x="64.6519%" y="591.50"></text></g><g><title>core::option::Option&lt;T&gt;::get_or_insert_with (1 samples, 0.01%)</title><rect x="64.4019%" y="565" width="0.0119%" height="15" fill="rgb(244,198,16)" fg:x="5422" fg:w="1"/><text x="64.6519%" y="575.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek::_{{closure}} (1 samples, 0.01%)</title><rect x="64.4019%" y="549" width="0.0119%" height="15" fill="rgb(219,69,12)" fg:x="5422" fg:w="1"/><text x="64.6519%" y="559.50"></text></g><g><title>&lt;core::str::iter::CharIndices as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="64.4019%" y="533" width="0.0119%" height="15" fill="rgb(245,30,7)" fg:x="5422" fg:w="1"/><text x="64.6519%" y="543.50"></text></g><g><title>core::str::validations::next_code_point (1 samples, 0.01%)</title><rect x="64.4019%" y="517" width="0.0119%" height="15" fill="rgb(218,221,48)" fg:x="5422" fg:w="1"/><text x="64.6519%" y="527.50"></text></g><g><title>core::fmt::Write::write_fmt (32 samples, 0.38%)</title><rect x="64.0812%" y="693" width="0.3801%" height="15" fill="rgb(216,66,15)" fg:x="5395" fg:w="32"/><text x="64.3312%" y="703.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write::write_fmt::SpecWriteFmt&gt;::spec_write_fmt (32 samples, 0.38%)</title><rect x="64.0812%" y="677" width="0.3801%" height="15" fill="rgb(226,122,50)" fg:x="5395" fg:w="32"/><text x="64.3312%" y="687.50"></text></g><g><title>core::fmt::write (31 samples, 0.37%)</title><rect x="64.0931%" y="661" width="0.3682%" height="15" fill="rgb(239,156,16)" fg:x="5396" fg:w="31"/><text x="64.3431%" y="671.50"></text></g><g><title>&lt;indicatif::style::PaddedStringDisplay as core::fmt::Display&gt;::fmt (6 samples, 0.07%)</title><rect x="64.3901%" y="645" width="0.0713%" height="15" fill="rgb(224,27,38)" fg:x="5421" fg:w="6"/><text x="64.6401%" y="655.50"></text></g><g><title>console::utils::measure_text_width (5 samples, 0.06%)</title><rect x="64.4019%" y="629" width="0.0594%" height="15" fill="rgb(224,39,27)" fg:x="5422" fg:w="5"/><text x="64.6519%" y="639.50"></text></g><g><title>console::utils::str_width (4 samples, 0.05%)</title><rect x="64.4138%" y="613" width="0.0475%" height="15" fill="rgb(215,92,29)" fg:x="5423" fg:w="4"/><text x="64.6638%" y="623.50"></text></g><g><title>&lt;str as unicode_width::UnicodeWidthStr&gt;::width (4 samples, 0.05%)</title><rect x="64.4138%" y="597" width="0.0475%" height="15" fill="rgb(207,159,16)" fg:x="5423" fg:w="4"/><text x="64.6638%" y="607.50"></text></g><g><title>unicode_width::tables::str_width (4 samples, 0.05%)</title><rect x="64.4138%" y="581" width="0.0475%" height="15" fill="rgb(238,163,47)" fg:x="5423" fg:w="4"/><text x="64.6638%" y="591.50"></text></g><g><title>core::iter::traits::double_ended::DoubleEndedIterator::rfold (4 samples, 0.05%)</title><rect x="64.4138%" y="565" width="0.0475%" height="15" fill="rgb(219,91,49)" fg:x="5423" fg:w="4"/><text x="64.6638%" y="575.50"></text></g><g><title>&lt;core::str::iter::Chars as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (4 samples, 0.05%)</title><rect x="64.4138%" y="549" width="0.0475%" height="15" fill="rgb(227,167,31)" fg:x="5423" fg:w="4"/><text x="64.6638%" y="559.50"></text></g><g><title>core::str::validations::next_code_point_reverse (4 samples, 0.05%)</title><rect x="64.4138%" y="533" width="0.0475%" height="15" fill="rgb(234,80,54)" fg:x="5423" fg:w="4"/><text x="64.6638%" y="543.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (2 samples, 0.02%)</title><rect x="64.4376%" y="517" width="0.0238%" height="15" fill="rgb(212,114,2)" fg:x="5425" fg:w="2"/><text x="64.6876%" y="527.50"></text></g><g><title>core::num::_&lt;impl isize&gt;::unchecked_neg::precondition_check (1 samples, 0.01%)</title><rect x="64.4495%" y="501" width="0.0119%" height="15" fill="rgb(234,50,24)" fg:x="5426" fg:w="1"/><text x="64.6995%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1 samples, 0.01%)</title><rect x="64.4613%" y="693" width="0.0119%" height="15" fill="rgb(221,68,8)" fg:x="5427" fg:w="1"/><text x="64.7113%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="64.4613%" y="677" width="0.0119%" height="15" fill="rgb(254,180,31)" fg:x="5427" fg:w="1"/><text x="64.7113%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="64.4613%" y="661" width="0.0119%" height="15" fill="rgb(247,130,50)" fg:x="5427" fg:w="1"/><text x="64.7113%" y="671.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="64.4613%" y="645" width="0.0119%" height="15" fill="rgb(211,109,4)" fg:x="5427" fg:w="1"/><text x="64.7113%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;console::utils::StyledObject&lt;indicatif::style::PaddedStringDisplay&gt;&gt; (2 samples, 0.02%)</title><rect x="64.4732%" y="693" width="0.0238%" height="15" fill="rgb(238,50,21)" fg:x="5428" fg:w="2"/><text x="64.7232%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;console::utils::Style&gt; (2 samples, 0.02%)</title><rect x="64.4732%" y="677" width="0.0238%" height="15" fill="rgb(225,57,45)" fg:x="5428" fg:w="2"/><text x="64.7232%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::set::BTreeSet&lt;console::utils::Attribute&gt;&gt; (2 samples, 0.02%)</title><rect x="64.4732%" y="661" width="0.0238%" height="15" fill="rgb(209,196,50)" fg:x="5428" fg:w="2"/><text x="64.7232%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::BTreeMap&lt;console::utils::Attribute,alloc::collections::btree::set_val::SetValZST&gt;&gt; (2 samples, 0.02%)</title><rect x="64.4732%" y="645" width="0.0238%" height="15" fill="rgb(242,140,13)" fg:x="5428" fg:w="2"/><text x="64.7232%" y="655.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.02%)</title><rect x="64.4732%" y="629" width="0.0238%" height="15" fill="rgb(217,111,7)" fg:x="5428" fg:w="2"/><text x="64.7232%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::IntoIter&lt;console::utils::Attribute,alloc::collections::btree::set_val::SetValZST&gt;&gt; (2 samples, 0.02%)</title><rect x="64.4732%" y="613" width="0.0238%" height="15" fill="rgb(253,193,51)" fg:x="5428" fg:w="2"/><text x="64.7232%" y="623.50"></text></g><g><title>&lt;alloc::collections::btree::map::IntoIter&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.02%)</title><rect x="64.4732%" y="597" width="0.0238%" height="15" fill="rgb(252,70,29)" fg:x="5428" fg:w="2"/><text x="64.7232%" y="607.50"></text></g><g><title>alloc::collections::btree::map::IntoIter&lt;K,V,A&gt;::dying_next (2 samples, 0.02%)</title><rect x="64.4732%" y="581" width="0.0238%" height="15" fill="rgb(232,127,12)" fg:x="5428" fg:w="2"/><text x="64.7232%" y="591.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Dying,K,V&gt;::deallocating_end (1 samples, 0.01%)</title><rect x="64.4851%" y="565" width="0.0119%" height="15" fill="rgb(211,180,21)" fg:x="5429" fg:w="1"/><text x="64.7351%" y="575.50"></text></g><g><title>alloc::collections::btree::navigate::_&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_end (1 samples, 0.01%)</title><rect x="64.4851%" y="549" width="0.0119%" height="15" fill="rgb(229,72,13)" fg:x="5429" fg:w="1"/><text x="64.7351%" y="559.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::deallocate_and_ascend (1 samples, 0.01%)</title><rect x="64.4851%" y="533" width="0.0119%" height="15" fill="rgb(240,211,49)" fg:x="5429" fg:w="1"/><text x="64.7351%" y="543.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.01%)</title><rect x="64.4851%" y="517" width="0.0119%" height="15" fill="rgb(219,149,40)" fg:x="5429" fg:w="1"/><text x="64.7351%" y="527.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="64.4851%" y="501" width="0.0119%" height="15" fill="rgb(210,127,46)" fg:x="5429" fg:w="1"/><text x="64.7351%" y="511.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="64.4851%" y="485" width="0.0119%" height="15" fill="rgb(220,106,7)" fg:x="5429" fg:w="1"/><text x="64.7351%" y="495.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="64.4851%" y="469" width="0.0119%" height="15" fill="rgb(249,31,22)" fg:x="5429" fg:w="1"/><text x="64.7351%" y="479.50"></text></g><g><title>indicatif::state::TabExpandedString::expanded (1 samples, 0.01%)</title><rect x="64.4970%" y="693" width="0.0119%" height="15" fill="rgb(253,1,49)" fg:x="5430" fg:w="1"/><text x="64.7470%" y="703.50"></text></g><g><title>core::str::_&lt;impl str&gt;::contains (1 samples, 0.01%)</title><rect x="64.4970%" y="677" width="0.0119%" height="15" fill="rgb(227,144,33)" fg:x="5430" fg:w="1"/><text x="64.7470%" y="687.50"></text></g><g><title>&lt;char as core::str::pattern::Pattern&gt;::is_contained_in (1 samples, 0.01%)</title><rect x="64.4970%" y="661" width="0.0119%" height="15" fill="rgb(249,163,44)" fg:x="5430" fg:w="1"/><text x="64.7470%" y="671.50"></text></g><g><title>core::slice::memchr::memchr (1 samples, 0.01%)</title><rect x="64.4970%" y="645" width="0.0119%" height="15" fill="rgb(234,15,39)" fg:x="5430" fg:w="1"/><text x="64.7470%" y="655.50"></text></g><g><title>indicatif::style::ProgressStyle::format_bar (1 samples, 0.01%)</title><rect x="64.5088%" y="693" width="0.0119%" height="15" fill="rgb(207,66,16)" fg:x="5431" fg:w="1"/><text x="64.7588%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;console::utils::Style&gt; (1 samples, 0.01%)</title><rect x="64.5088%" y="677" width="0.0119%" height="15" fill="rgb(233,112,24)" fg:x="5431" fg:w="1"/><text x="64.7588%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::set::BTreeSet&lt;console::utils::Attribute&gt;&gt; (1 samples, 0.01%)</title><rect x="64.5088%" y="661" width="0.0119%" height="15" fill="rgb(230,90,22)" fg:x="5431" fg:w="1"/><text x="64.7588%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::BTreeMap&lt;console::utils::Attribute,alloc::collections::btree::set_val::SetValZST&gt;&gt; (1 samples, 0.01%)</title><rect x="64.5088%" y="645" width="0.0119%" height="15" fill="rgb(229,61,13)" fg:x="5431" fg:w="1"/><text x="64.7588%" y="655.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="64.5088%" y="629" width="0.0119%" height="15" fill="rgb(225,57,24)" fg:x="5431" fg:w="1"/><text x="64.7588%" y="639.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (1 samples, 0.01%)</title><rect x="64.5088%" y="613" width="0.0119%" height="15" fill="rgb(208,169,48)" fg:x="5431" fg:w="1"/><text x="64.7588%" y="623.50"></text></g><g><title>DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="64.5088%" y="597" width="0.0119%" height="15" fill="rgb(244,218,51)" fg:x="5431" fg:w="1"/><text x="64.7588%" y="607.50"></text></g><g><title>&lt;alloc::string::String as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="64.5207%" y="677" width="0.0119%" height="15" fill="rgb(214,148,10)" fg:x="5432" fg:w="1"/><text x="64.7707%" y="687.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="64.5326%" y="677" width="0.0119%" height="15" fill="rgb(225,174,27)" fg:x="5433" fg:w="1"/><text x="64.7826%" y="687.50"></text></g><g><title>&lt;core::str::iter::Split&lt;P&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="64.5326%" y="661" width="0.0119%" height="15" fill="rgb(230,96,26)" fg:x="5433" fg:w="1"/><text x="64.7826%" y="671.50"></text></g><g><title>core::str::iter::SplitInternal&lt;P&gt;::next (1 samples, 0.01%)</title><rect x="64.5326%" y="645" width="0.0119%" height="15" fill="rgb(232,10,30)" fg:x="5433" fg:w="1"/><text x="64.7826%" y="655.50"></text></g><g><title>&lt;core::str::pattern::CharSearcher as core::str::pattern::Searcher&gt;::next_match (1 samples, 0.01%)</title><rect x="64.5326%" y="629" width="0.0119%" height="15" fill="rgb(222,8,50)" fg:x="5433" fg:w="1"/><text x="64.7826%" y="639.50"></text></g><g><title>core::slice::memchr::memchr (1 samples, 0.01%)</title><rect x="64.5326%" y="613" width="0.0119%" height="15" fill="rgb(213,81,27)" fg:x="5433" fg:w="1"/><text x="64.7826%" y="623.50"></text></g><g><title>indicatif::state::BarState::draw (48 samples, 0.57%)</title><rect x="63.9862%" y="725" width="0.5701%" height="15" fill="rgb(245,50,10)" fg:x="5387" fg:w="48"/><text x="64.2362%" y="735.50"></text></g><g><title>indicatif::style::ProgressStyle::format_state (40 samples, 0.48%)</title><rect x="64.0812%" y="709" width="0.4751%" height="15" fill="rgb(216,100,18)" fg:x="5395" fg:w="40"/><text x="64.3312%" y="719.50"></text></g><g><title>indicatif::style::ProgressStyle::push_line (3 samples, 0.04%)</title><rect x="64.5207%" y="693" width="0.0356%" height="15" fill="rgb(236,147,54)" fg:x="5432" fg:w="3"/><text x="64.7707%" y="703.50"></text></g><g><title>core::str::_&lt;impl str&gt;::split (1 samples, 0.01%)</title><rect x="64.5445%" y="677" width="0.0119%" height="15" fill="rgb(205,143,26)" fg:x="5434" fg:w="1"/><text x="64.7945%" y="687.50"></text></g><g><title>DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="64.5445%" y="661" width="0.0119%" height="15" fill="rgb(236,26,9)" fg:x="5434" fg:w="1"/><text x="64.7945%" y="671.50"></text></g><g><title>indicatif::progress_bar::ProgressBar::tick_inner (49 samples, 0.58%)</title><rect x="63.9862%" y="773" width="0.5820%" height="15" fill="rgb(221,165,53)" fg:x="5387" fg:w="49"/><text x="64.2362%" y="783.50"></text></g><g><title>indicatif::state::BarState::tick (49 samples, 0.58%)</title><rect x="63.9862%" y="757" width="0.5820%" height="15" fill="rgb(214,110,17)" fg:x="5387" fg:w="49"/><text x="64.2362%" y="767.50"></text></g><g><title>indicatif::state::BarState::update_estimate_and_draw (49 samples, 0.58%)</title><rect x="63.9862%" y="741" width="0.5820%" height="15" fill="rgb(237,197,12)" fg:x="5387" fg:w="49"/><text x="64.2362%" y="751.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::values_mut (1 samples, 0.01%)</title><rect x="64.5564%" y="725" width="0.0119%" height="15" fill="rgb(205,84,17)" fg:x="5435" fg:w="1"/><text x="64.8064%" y="735.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::iter_mut (1 samples, 0.01%)</title><rect x="64.5564%" y="709" width="0.0119%" height="15" fill="rgb(237,18,45)" fg:x="5435" fg:w="1"/><text x="64.8064%" y="719.50"></text></g><g><title>indicatif::state::AtomicPosition::allow (1 samples, 0.01%)</title><rect x="64.5682%" y="773" width="0.0119%" height="15" fill="rgb(221,87,14)" fg:x="5436" fg:w="1"/><text x="64.8182%" y="783.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="64.5682%" y="757" width="0.0119%" height="15" fill="rgb(238,186,15)" fg:x="5436" fg:w="1"/><text x="64.8182%" y="767.50"></text></g><g><title>&lt;tokio_util::compat::Compat&lt;T&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (76 samples, 0.90%)</title><rect x="63.6893%" y="933" width="0.9027%" height="15" fill="rgb(208,115,11)" fg:x="5362" fg:w="76"/><text x="63.9393%" y="943.50"></text></g><g><title>&lt;&amp;mut T as tokio::io::async_read::AsyncRead&gt;::poll_read (76 samples, 0.90%)</title><rect x="63.6893%" y="917" width="0.9027%" height="15" fill="rgb(254,175,0)" fg:x="5362" fg:w="76"/><text x="63.9393%" y="927.50"></text></g><g><title>&lt;uv_distribution::distribution_database::ProgressReader&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (76 samples, 0.90%)</title><rect x="63.6893%" y="901" width="0.9027%" height="15" fill="rgb(227,24,42)" fg:x="5362" fg:w="76"/><text x="63.9393%" y="911.50"></text></g><g><title>core::task::poll::Poll&lt;core::result::Result&lt;T,E&gt;&gt;::map_ok (52 samples, 0.62%)</title><rect x="63.9743%" y="885" width="0.6177%" height="15" fill="rgb(223,211,37)" fg:x="5386" fg:w="52"/><text x="64.2243%" y="895.50"></text></g><g><title>&lt;uv_distribution::distribution_database::ProgressReader&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read::_{{closure}} (52 samples, 0.62%)</title><rect x="63.9743%" y="869" width="0.6177%" height="15" fill="rgb(235,49,27)" fg:x="5386" fg:w="52"/><text x="64.2243%" y="879.50"></text></g><g><title>&lt;uv_installer::preparer::Facade as uv_distribution::reporter::Reporter&gt;::on_download_progress (52 samples, 0.62%)</title><rect x="63.9743%" y="853" width="0.6177%" height="15" fill="rgb(254,97,51)" fg:x="5386" fg:w="52"/><text x="64.2243%" y="863.50"></text></g><g><title>&lt;uv::commands::reporters::PrepareReporter as uv_installer::preparer::Reporter&gt;::on_download_progress (52 samples, 0.62%)</title><rect x="63.9743%" y="837" width="0.6177%" height="15" fill="rgb(249,51,40)" fg:x="5386" fg:w="52"/><text x="64.2243%" y="847.50"></text></g><g><title>uv::commands::reporters::ProgressReporter::on_download_progress (52 samples, 0.62%)</title><rect x="63.9743%" y="821" width="0.6177%" height="15" fill="rgb(210,128,45)" fg:x="5386" fg:w="52"/><text x="64.2243%" y="831.50"></text></g><g><title>uv::commands::reporters::ProgressReporter::on_request_progress (52 samples, 0.62%)</title><rect x="63.9743%" y="805" width="0.6177%" height="15" fill="rgb(224,137,50)" fg:x="5386" fg:w="52"/><text x="64.2243%" y="815.50"></text></g><g><title>indicatif::progress_bar::ProgressBar::inc (51 samples, 0.61%)</title><rect x="63.9862%" y="789" width="0.6058%" height="15" fill="rgb(242,15,9)" fg:x="5387" fg:w="51"/><text x="64.2362%" y="799.50"></text></g><g><title>std::sys::pal::unix::time::Timespec::now (1 samples, 0.01%)</title><rect x="64.5801%" y="773" width="0.0119%" height="15" fill="rgb(233,187,41)" fg:x="5437" fg:w="1"/><text x="64.8301%" y="783.50"></text></g><g><title>clock_gettime (1 samples, 0.01%)</title><rect x="64.5801%" y="757" width="0.0119%" height="15" fill="rgb(227,2,29)" fg:x="5437" fg:w="1"/><text x="64.8301%" y="767.50"></text></g><g><title>clock_gettime_nsec_np (1 samples, 0.01%)</title><rect x="64.5801%" y="741" width="0.0119%" height="15" fill="rgb(222,70,3)" fg:x="5437" fg:w="1"/><text x="64.8301%" y="751.50"></text></g><g><title>mach_absolute_time (1 samples, 0.01%)</title><rect x="64.5801%" y="725" width="0.0119%" height="15" fill="rgb(213,11,42)" fg:x="5437" fg:w="1"/><text x="64.8301%" y="735.50"></text></g><g><title>&lt;async_zip::base::read::io::owned::OwnedReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::poll_fill_buf (78 samples, 0.93%)</title><rect x="63.6774%" y="981" width="0.9265%" height="15" fill="rgb(225,150,9)" fg:x="5361" fg:w="78"/><text x="63.9274%" y="991.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncBufRead&gt;::poll_fill_buf (78 samples, 0.93%)</title><rect x="63.6774%" y="965" width="0.9265%" height="15" fill="rgb(230,162,45)" fg:x="5361" fg:w="78"/><text x="63.9274%" y="975.50"></text></g><g><title>&lt;futures_util::io::buf_reader::BufReader&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::poll_fill_buf (78 samples, 0.93%)</title><rect x="63.6774%" y="949" width="0.9265%" height="15" fill="rgb(222,14,52)" fg:x="5361" fg:w="78"/><text x="63.9274%" y="959.50"></text></g><g><title>futures_util::io::buf_reader::_::_&lt;impl futures_util::io::buf_reader::BufReader&lt;R&gt;&gt;::project (1 samples, 0.01%)</title><rect x="64.5920%" y="933" width="0.0119%" height="15" fill="rgb(254,198,14)" fg:x="5438" fg:w="1"/><text x="64.8420%" y="943.50"></text></g><g><title>&lt;futures_lite::io::Take&lt;R&gt; as futures_io::if_std::AsyncBufRead&gt;::poll_fill_buf (79 samples, 0.94%)</title><rect x="63.6774%" y="997" width="0.9384%" height="15" fill="rgb(220,217,30)" fg:x="5361" fg:w="79"/><text x="63.9274%" y="1007.50"></text></g><g><title>futures_lite::io::_::_&lt;impl futures_lite::io::Take&lt;R&gt;&gt;::project (1 samples, 0.01%)</title><rect x="64.6039%" y="981" width="0.0119%" height="15" fill="rgb(215,146,41)" fg:x="5439" fg:w="1"/><text x="64.8539%" y="991.50"></text></g><g><title>async_compression::util::PartialBuffer&lt;B&gt;::written (2 samples, 0.02%)</title><rect x="64.6158%" y="997" width="0.0238%" height="15" fill="rgb(217,27,36)" fg:x="5440" fg:w="2"/><text x="64.8658%" y="1007.50"></text></g><g><title>&lt;&amp;T as core::convert::AsRef&lt;U&gt;&gt;::as_ref (1 samples, 0.01%)</title><rect x="64.6276%" y="981" width="0.0119%" height="15" fill="rgb(219,218,39)" fg:x="5441" fg:w="1"/><text x="64.8776%" y="991.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="64.6514%" y="885" width="0.0119%" height="15" fill="rgb(219,4,42)" fg:x="5443" fg:w="1"/><text x="64.9014%" y="895.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.01%)</title><rect x="64.6514%" y="869" width="0.0119%" height="15" fill="rgb(249,119,36)" fg:x="5443" fg:w="1"/><text x="64.9014%" y="879.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="64.6514%" y="853" width="0.0119%" height="15" fill="rgb(209,23,33)" fg:x="5443" fg:w="1"/><text x="64.9014%" y="863.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="64.6514%" y="837" width="0.0119%" height="15" fill="rgb(211,10,0)" fg:x="5443" fg:w="1"/><text x="64.9014%" y="847.50"></text></g><g><title>tikv_jemallocator::layout_to_flags (1 samples, 0.01%)</title><rect x="64.6514%" y="821" width="0.0119%" height="15" fill="rgb(208,99,37)" fg:x="5443" fg:w="1"/><text x="64.9014%" y="831.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.01%)</title><rect x="64.6751%" y="837" width="0.0119%" height="15" fill="rgb(213,132,31)" fg:x="5445" fg:w="1"/><text x="64.9251%" y="847.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="64.6751%" y="821" width="0.0119%" height="15" fill="rgb(243,129,40)" fg:x="5445" fg:w="1"/><text x="64.9251%" y="831.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="64.6751%" y="805" width="0.0119%" height="15" fill="rgb(210,66,33)" fg:x="5445" fg:w="1"/><text x="64.9251%" y="815.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="64.6751%" y="789" width="0.0119%" height="15" fill="rgb(209,189,4)" fg:x="5445" fg:w="1"/><text x="64.9251%" y="799.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (3 samples, 0.04%)</title><rect x="64.6633%" y="853" width="0.0356%" height="15" fill="rgb(214,107,37)" fg:x="5444" fg:w="3"/><text x="64.9133%" y="863.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="64.6870%" y="837" width="0.0119%" height="15" fill="rgb(245,88,54)" fg:x="5446" fg:w="1"/><text x="64.9370%" y="847.50"></text></g><g><title>core::alloc::layout::Layout::is_size_align_valid (1 samples, 0.01%)</title><rect x="64.6870%" y="821" width="0.0119%" height="15" fill="rgb(205,146,20)" fg:x="5446" fg:w="1"/><text x="64.9370%" y="831.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::or_else (6 samples, 0.07%)</title><rect x="64.6395%" y="997" width="0.0713%" height="15" fill="rgb(220,161,25)" fg:x="5442" fg:w="6"/><text x="64.8895%" y="1007.50"></text></g><g><title>async_compression::futures::bufread::generic::decoder::Decoder&lt;R,D&gt;::do_poll_read::_{{closure}} (6 samples, 0.07%)</title><rect x="64.6395%" y="981" width="0.0713%" height="15" fill="rgb(215,152,15)" fg:x="5442" fg:w="6"/><text x="64.8895%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::error::Error&gt; (6 samples, 0.07%)</title><rect x="64.6395%" y="965" width="0.0713%" height="15" fill="rgb(233,192,44)" fg:x="5442" fg:w="6"/><text x="64.8895%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::error::repr_bitpacked::Repr&gt; (6 samples, 0.07%)</title><rect x="64.6395%" y="949" width="0.0713%" height="15" fill="rgb(240,170,46)" fg:x="5442" fg:w="6"/><text x="64.8895%" y="959.50"></text></g><g><title>&lt;std::io::error::repr_bitpacked::Repr as core::ops::drop::Drop&gt;::drop (5 samples, 0.06%)</title><rect x="64.6514%" y="933" width="0.0594%" height="15" fill="rgb(207,104,33)" fg:x="5443" fg:w="5"/><text x="64.9014%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::error::ErrorData&lt;alloc::boxed::Box&lt;std::io::error::Custom&gt;&gt;&gt; (5 samples, 0.06%)</title><rect x="64.6514%" y="917" width="0.0594%" height="15" fill="rgb(219,21,39)" fg:x="5443" fg:w="5"/><text x="64.9014%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;std::io::error::Custom&gt;&gt; (5 samples, 0.06%)</title><rect x="64.6514%" y="901" width="0.0594%" height="15" fill="rgb(214,133,29)" fg:x="5443" fg:w="5"/><text x="64.9014%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::error::Custom&gt; (4 samples, 0.05%)</title><rect x="64.6633%" y="885" width="0.0475%" height="15" fill="rgb(226,93,6)" fg:x="5444" fg:w="4"/><text x="64.9133%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;dyn core::error::Error+core::marker::Send+core::marker::Sync&gt;&gt; (4 samples, 0.05%)</title><rect x="64.6633%" y="869" width="0.0475%" height="15" fill="rgb(252,222,34)" fg:x="5444" fg:w="4"/><text x="64.9133%" y="879.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="64.6989%" y="853" width="0.0119%" height="15" fill="rgb(252,92,48)" fg:x="5447" fg:w="1"/><text x="64.9489%" y="863.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="64.6989%" y="837" width="0.0119%" height="15" fill="rgb(245,223,24)" fg:x="5447" fg:w="1"/><text x="64.9489%" y="847.50"></text></g><g><title>core::alloc::layout::Layout::size (1 samples, 0.01%)</title><rect x="64.6989%" y="821" width="0.0119%" height="15" fill="rgb(205,176,3)" fg:x="5447" fg:w="1"/><text x="64.9489%" y="831.50"></text></g><g><title>async_compression::futures::bufread::generic::decoder::Decoder&lt;R,D&gt;::do_poll_read (3,988 samples, 47.37%)</title><rect x="17.3536%" y="1013" width="47.3690%" height="15" fill="rgb(235,151,15)" fg:x="1461" fg:w="3988"/><text x="17.6036%" y="1023.50">async_compression::futures::bufread::generic::decoder::Decoder&lt;R,D&gt;::do_poll_r..</text></g><g><title>core::slice::_&lt;impl [T]&gt;::is_empty (1 samples, 0.01%)</title><rect x="64.7108%" y="997" width="0.0119%" height="15" fill="rgb(237,209,11)" fg:x="5448" fg:w="1"/><text x="64.9608%" y="1007.50"></text></g><g><title>&lt;async_compression::futures::bufread::DeflateDecoder&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (3,990 samples, 47.39%)</title><rect x="17.3536%" y="1045" width="47.3928%" height="15" fill="rgb(243,227,24)" fg:x="1461" fg:w="3990"/><text x="17.6036%" y="1055.50">&lt;async_compression::futures::bufread::DeflateDecoder&lt;R&gt; as futures_io::if_std:..</text></g><g><title>&lt;async_compression::futures::bufread::generic::decoder::Decoder&lt;R,D&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (3,990 samples, 47.39%)</title><rect x="17.3536%" y="1029" width="47.3928%" height="15" fill="rgb(239,193,16)" fg:x="1461" fg:w="3990"/><text x="17.6036%" y="1039.50">&lt;async_compression::futures::bufread::generic::decoder::Decoder&lt;R,D&gt; as future..</text></g><g><title>async_compression::util::PartialBuffer&lt;B&gt;::written (2 samples, 0.02%)</title><rect x="64.7227%" y="1013" width="0.0238%" height="15" fill="rgb(231,27,9)" fg:x="5449" fg:w="2"/><text x="64.9727%" y="1023.50"></text></g><g><title>&lt;&amp;mut T as core::convert::AsRef&lt;U&gt;&gt;::as_ref (1 samples, 0.01%)</title><rect x="64.7345%" y="997" width="0.0119%" height="15" fill="rgb(219,169,10)" fg:x="5450" fg:w="1"/><text x="64.9845%" y="1007.50"></text></g><g><title>&lt;async_zip::base::read::io::compressed::CompressedReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (3,991 samples, 47.40%)</title><rect x="17.3536%" y="1061" width="47.4047%" height="15" fill="rgb(244,229,43)" fg:x="1461" fg:w="3991"/><text x="17.6036%" y="1071.50">&lt;async_zip::base::read::io::compressed::CompressedReader&lt;R&gt; as futures_io::if_..</text></g><g><title>async_zip::base::read::io::compressed::_::_&lt;impl async_zip::base::read::io::compressed::CompressedReader&lt;R&gt;&gt;::project (1 samples, 0.01%)</title><rect x="64.7464%" y="1045" width="0.0119%" height="15" fill="rgb(254,38,20)" fg:x="5451" fg:w="1"/><text x="64.9964%" y="1055.50"></text></g><g><title>core::iter::range::_&lt;impl core::iter::traits::iterator::Iterator for core::ops::range::Range&lt;A&gt;&gt;::next (2 samples, 0.02%)</title><rect x="64.7583%" y="1029" width="0.0238%" height="15" fill="rgb(250,47,30)" fg:x="5452" fg:w="2"/><text x="65.0083%" y="1039.50"></text></g><g><title>&lt;I as core::iter::traits::collect::IntoIterator&gt;::into_iter (1 samples, 0.01%)</title><rect x="69.3194%" y="1013" width="0.0119%" height="15" fill="rgb(224,124,36)" fg:x="5836" fg:w="1"/><text x="69.5694%" y="1023.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (63 samples, 0.75%)</title><rect x="69.3313%" y="1013" width="0.7483%" height="15" fill="rgb(246,68,51)" fg:x="5837" fg:w="63"/><text x="69.5813%" y="1023.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked::precondition_check (33 samples, 0.39%)</title><rect x="69.6876%" y="997" width="0.3920%" height="15" fill="rgb(253,43,49)" fg:x="5867" fg:w="33"/><text x="69.9376%" y="1007.50"></text></g><g><title>core::iter::range::_&lt;impl core::iter::traits::iterator::Iterator for core::ops::range::Range&lt;A&gt;&gt;::next (165 samples, 1.96%)</title><rect x="70.0796%" y="1013" width="1.9599%" height="15" fill="rgb(219,54,36)" fg:x="5900" fg:w="165"/><text x="70.3296%" y="1023.50">c..</text></g><g><title>&lt;core::ops::range::Range&lt;T&gt; as core::iter::range::RangeIteratorImpl&gt;::spec_next (155 samples, 1.84%)</title><rect x="70.1984%" y="997" width="1.8411%" height="15" fill="rgb(227,133,34)" fg:x="5910" fg:w="155"/><text x="70.4484%" y="1007.50">&lt;..</text></g><g><title>&lt;usize as core::iter::range::Step&gt;::forward_unchecked (60 samples, 0.71%)</title><rect x="71.3268%" y="981" width="0.7127%" height="15" fill="rgb(247,227,15)" fg:x="6005" fg:w="60"/><text x="71.5768%" y="991.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::unchecked_add::precondition_check (38 samples, 0.45%)</title><rect x="71.5881%" y="965" width="0.4514%" height="15" fill="rgb(229,96,14)" fg:x="6027" fg:w="38"/><text x="71.8381%" y="975.50"></text></g><g><title>crc32fast::baseline::State::update (616 samples, 7.32%)</title><rect x="64.7583%" y="1045" width="7.3168%" height="15" fill="rgb(220,79,17)" fg:x="5452" fg:w="616"/><text x="65.0083%" y="1055.50">crc32fast:..</text></g><g><title>crc32fast::baseline::update_fast_16 (614 samples, 7.29%)</title><rect x="64.7820%" y="1029" width="7.2930%" height="15" fill="rgb(205,131,53)" fg:x="5454" fg:w="614"/><text x="65.0320%" y="1039.50">crc32fast:..</text></g><g><title>crc32fast::baseline::update_slow (3 samples, 0.04%)</title><rect x="72.0394%" y="1013" width="0.0356%" height="15" fill="rgb(209,50,29)" fg:x="6065" fg:w="3"/><text x="72.2894%" y="1023.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.02%)</title><rect x="72.0513%" y="997" width="0.0238%" height="15" fill="rgb(245,86,46)" fg:x="6066" fg:w="2"/><text x="72.3013%" y="1007.50"></text></g><g><title>&lt;async_zip::base::read::io::hashed::HashedReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (4,608 samples, 54.73%)</title><rect x="17.3536%" y="1077" width="54.7333%" height="15" fill="rgb(235,66,46)" fg:x="1461" fg:w="4608"/><text x="17.6036%" y="1087.50">&lt;async_zip::base::read::io::hashed::HashedReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::pol..</text></g><g><title>crc32fast::Hasher::update (617 samples, 7.33%)</title><rect x="64.7583%" y="1061" width="7.3287%" height="15" fill="rgb(232,148,31)" fg:x="5452" fg:w="617"/><text x="65.0083%" y="1071.50">crc32fast:..</text></g><g><title>crc32fast::baseline::update_fast_16 (1 samples, 0.01%)</title><rect x="72.0751%" y="1045" width="0.0119%" height="15" fill="rgb(217,149,8)" fg:x="6068" fg:w="1"/><text x="72.3251%" y="1055.50"></text></g><g><title>&lt;async_zip::base::read::io::entry::ZipEntryReader&lt;R,E&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (4,609 samples, 54.75%)</title><rect x="17.3536%" y="1093" width="54.7452%" height="15" fill="rgb(209,183,11)" fg:x="1461" fg:w="4609"/><text x="17.6036%" y="1103.50">&lt;async_zip::base::read::io::entry::ZipEntryReader&lt;R,E&gt; as futures_io::if_std::AsyncRead&gt;::..</text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (1 samples, 0.01%)</title><rect x="72.0869%" y="1077" width="0.0119%" height="15" fill="rgb(208,55,20)" fg:x="6069" fg:w="1"/><text x="72.3369%" y="1087.50"></text></g><g><title>&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read (4,610 samples, 54.76%)</title><rect x="17.3536%" y="1109" width="54.7571%" height="15" fill="rgb(218,39,14)" fg:x="1461" fg:w="4610"/><text x="17.6036%" y="1119.50">&lt;&amp;mut T as futures_io::if_std::AsyncRead&gt;::poll_read</text></g><g><title>&lt;async_zip::base::read::io::hashed::HashedReader&lt;R&gt; as futures_io::if_std::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="72.0988%" y="1093" width="0.0119%" height="15" fill="rgb(216,169,33)" fg:x="6070" fg:w="1"/><text x="72.3488%" y="1103.50"></text></g><g><title>tokio::io::read_buf::ReadBuf::initialize_unfilled (1 samples, 0.01%)</title><rect x="72.1107%" y="1109" width="0.0119%" height="15" fill="rgb(233,80,24)" fg:x="6071" fg:w="1"/><text x="72.3607%" y="1119.50"></text></g><g><title>&lt;tokio_util::compat::Compat&lt;T&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (4,612 samples, 54.78%)</title><rect x="17.3536%" y="1125" width="54.7809%" height="15" fill="rgb(213,179,31)" fg:x="1461" fg:w="4612"/><text x="17.6036%" y="1135.50">&lt;tokio_util::compat::Compat&lt;T&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read</text></g><g><title>tokio_util::compat::_::_&lt;impl tokio_util::compat::Compat&lt;T&gt;&gt;::project (1 samples, 0.01%)</title><rect x="72.1226%" y="1109" width="0.0119%" height="15" fill="rgb(209,19,5)" fg:x="6072" fg:w="1"/><text x="72.3726%" y="1119.50"></text></g><g><title>tokio::io::util::copy::CopyBuffer::poll_fill_buf (4,613 samples, 54.79%)</title><rect x="17.3536%" y="1141" width="54.7927%" height="15" fill="rgb(219,18,35)" fg:x="1461" fg:w="4613"/><text x="17.6036%" y="1151.50">tokio::io::util::copy::CopyBuffer::poll_fill_buf</text></g><g><title>tokio::io::read_buf::ReadBuf::filled (1 samples, 0.01%)</title><rect x="72.1345%" y="1125" width="0.0119%" height="15" fill="rgb(209,169,16)" fg:x="6073" fg:w="1"/><text x="72.3845%" y="1135.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.01%)</title><rect x="72.1582%" y="1077" width="0.0119%" height="15" fill="rgb(245,90,51)" fg:x="6075" fg:w="1"/><text x="72.4082%" y="1087.50"></text></g><g><title>core::option::Option&lt;T&gt;::ok_or_else (1 samples, 0.01%)</title><rect x="72.1701%" y="1077" width="0.0119%" height="15" fill="rgb(220,99,45)" fg:x="6076" fg:w="1"/><text x="72.4201%" y="1087.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (1 samples, 0.01%)</title><rect x="72.1820%" y="1061" width="0.0119%" height="15" fill="rgb(249,89,25)" fg:x="6077" fg:w="1"/><text x="72.4320%" y="1071.50"></text></g><g><title>tokio::io::blocking::Buf::copy_from (2 samples, 0.02%)</title><rect x="72.1820%" y="1077" width="0.0238%" height="15" fill="rgb(239,193,0)" fg:x="6077" fg:w="2"/><text x="72.4320%" y="1087.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (1 samples, 0.01%)</title><rect x="72.1938%" y="1061" width="0.0119%" height="15" fill="rgb(231,126,1)" fg:x="6078" fg:w="1"/><text x="72.4438%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (1 samples, 0.01%)</title><rect x="72.1938%" y="1045" width="0.0119%" height="15" fill="rgb(243,166,3)" fg:x="6078" fg:w="1"/><text x="72.4438%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (1 samples, 0.01%)</title><rect x="72.1938%" y="1029" width="0.0119%" height="15" fill="rgb(223,22,34)" fg:x="6078" fg:w="1"/><text x="72.4438%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.01%)</title><rect x="72.1938%" y="1013" width="0.0119%" height="15" fill="rgb(251,52,51)" fg:x="6078" fg:w="1"/><text x="72.4438%" y="1023.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.01%)</title><rect x="72.1938%" y="997" width="0.0119%" height="15" fill="rgb(221,165,28)" fg:x="6078" fg:w="1"/><text x="72.4438%" y="1007.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="72.1938%" y="981" width="0.0119%" height="15" fill="rgb(218,121,47)" fg:x="6078" fg:w="1"/><text x="72.4438%" y="991.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="72.1938%" y="965" width="0.0119%" height="15" fill="rgb(209,120,9)" fg:x="6078" fg:w="1"/><text x="72.4438%" y="975.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="72.1938%" y="949" width="0.0119%" height="15" fill="rgb(236,68,12)" fg:x="6078" fg:w="1"/><text x="72.4438%" y="959.50"></text></g><g><title>_platform_memmove (2 samples, 0.02%)</title><rect x="72.2057%" y="1029" width="0.0238%" height="15" fill="rgb(225,194,26)" fg:x="6079" fg:w="2"/><text x="72.4557%" y="1039.50"></text></g><g><title>pthread_cond_signal (18 samples, 0.21%)</title><rect x="72.2295%" y="1013" width="0.2138%" height="15" fill="rgb(231,84,39)" fg:x="6081" fg:w="18"/><text x="72.4795%" y="1023.50"></text></g><g><title>__psynch_cvsignal (17 samples, 0.20%)</title><rect x="72.2414%" y="997" width="0.2019%" height="15" fill="rgb(210,11,45)" fg:x="6082" fg:w="17"/><text x="72.4914%" y="1007.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_task (19 samples, 0.23%)</title><rect x="72.2295%" y="1029" width="0.2257%" height="15" fill="rgb(224,54,52)" fg:x="6081" fg:w="19"/><text x="72.4795%" y="1039.50"></text></g><g><title>tokio::loom::std::mutex::Mutex&lt;T&gt;::lock (1 samples, 0.01%)</title><rect x="72.4433%" y="1013" width="0.0119%" height="15" fill="rgb(238,102,14)" fg:x="6099" fg:w="1"/><text x="72.6933%" y="1023.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::lock (1 samples, 0.01%)</title><rect x="72.4433%" y="997" width="0.0119%" height="15" fill="rgb(243,160,52)" fg:x="6099" fg:w="1"/><text x="72.6933%" y="1007.50"></text></g><g><title>std::sys::pal::unix::sync::mutex::Mutex::lock (1 samples, 0.01%)</title><rect x="72.4433%" y="981" width="0.0119%" height="15" fill="rgb(216,114,19)" fg:x="6099" fg:w="1"/><text x="72.6933%" y="991.50"></text></g><g><title>_pthread_mutex_firstfit_lock_slow (1 samples, 0.01%)</title><rect x="72.4433%" y="965" width="0.0119%" height="15" fill="rgb(244,166,37)" fg:x="6099" fg:w="1"/><text x="72.6933%" y="975.50"></text></g><g><title>_pthread_mutex_firstfit_lock_wait (1 samples, 0.01%)</title><rect x="72.4433%" y="949" width="0.0119%" height="15" fill="rgb(246,29,44)" fg:x="6099" fg:w="1"/><text x="72.6933%" y="959.50"></text></g><g><title>__psynch_mutexwait (1 samples, 0.01%)</title><rect x="72.4433%" y="933" width="0.0119%" height="15" fill="rgb(215,56,53)" fg:x="6099" fg:w="1"/><text x="72.6933%" y="943.50"></text></g><g><title>_platform_memmove (2 samples, 0.02%)</title><rect x="72.4908%" y="965" width="0.0238%" height="15" fill="rgb(217,60,2)" fg:x="6103" fg:w="2"/><text x="72.7408%" y="975.50"></text></g><g><title>alloc::alloc::exchange_malloc (2 samples, 0.02%)</title><rect x="72.5146%" y="965" width="0.0238%" height="15" fill="rgb(207,26,24)" fg:x="6105" fg:w="2"/><text x="72.7646%" y="975.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.02%)</title><rect x="72.5146%" y="949" width="0.0238%" height="15" fill="rgb(252,210,15)" fg:x="6105" fg:w="2"/><text x="72.7646%" y="959.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.02%)</title><rect x="72.5146%" y="933" width="0.0238%" height="15" fill="rgb(253,209,26)" fg:x="6105" fg:w="2"/><text x="72.7646%" y="943.50"></text></g><g><title>__rustc::__rust_alloc (2 samples, 0.02%)</title><rect x="72.5146%" y="917" width="0.0238%" height="15" fill="rgb(238,170,14)" fg:x="6105" fg:w="2"/><text x="72.7646%" y="927.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (2 samples, 0.02%)</title><rect x="72.5146%" y="901" width="0.0238%" height="15" fill="rgb(216,178,15)" fg:x="6105" fg:w="2"/><text x="72.7646%" y="911.50"></text></g><g><title>_rjem_mallocx (2 samples, 0.02%)</title><rect x="72.5146%" y="885" width="0.0238%" height="15" fill="rgb(250,197,2)" fg:x="6105" fg:w="2"/><text x="72.7646%" y="895.50"></text></g><g><title>_rjem_je_arena_palloc (1 samples, 0.01%)</title><rect x="72.5264%" y="869" width="0.0119%" height="15" fill="rgb(212,70,42)" fg:x="6106" fg:w="1"/><text x="72.7764%" y="879.50"></text></g><g><title>_rjem_je_tcache_alloc_small_hard (1 samples, 0.01%)</title><rect x="72.5264%" y="853" width="0.0119%" height="15" fill="rgb(227,213,9)" fg:x="6106" fg:w="1"/><text x="72.7764%" y="863.50"></text></g><g><title>_rjem_je_arena_cache_bin_fill_small (1 samples, 0.01%)</title><rect x="72.5264%" y="837" width="0.0119%" height="15" fill="rgb(245,99,25)" fg:x="6106" fg:w="1"/><text x="72.7764%" y="847.50"></text></g><g><title>&lt;core::ptr::non_null::NonNull&lt;T&gt; as core::convert::From&lt;&amp;T&gt;&gt;::from (1 samples, 0.01%)</title><rect x="72.5383%" y="949" width="0.0119%" height="15" fill="rgb(250,82,29)" fg:x="6107" fg:w="1"/><text x="72.7883%" y="959.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_mandatory_blocking (30 samples, 0.36%)</title><rect x="72.2057%" y="1061" width="0.3563%" height="15" fill="rgb(241,226,54)" fg:x="6079" fg:w="30"/><text x="72.4557%" y="1071.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_blocking_inner (30 samples, 0.36%)</title><rect x="72.2057%" y="1045" width="0.3563%" height="15" fill="rgb(221,99,41)" fg:x="6079" fg:w="30"/><text x="72.4557%" y="1055.50"></text></g><g><title>tokio::runtime::task::unowned (9 samples, 0.11%)</title><rect x="72.4552%" y="1029" width="0.1069%" height="15" fill="rgb(213,90,21)" fg:x="6100" fg:w="9"/><text x="72.7052%" y="1039.50"></text></g><g><title>tokio::runtime::task::new_task (9 samples, 0.11%)</title><rect x="72.4552%" y="1013" width="0.1069%" height="15" fill="rgb(205,208,24)" fg:x="6100" fg:w="9"/><text x="72.7052%" y="1023.50"></text></g><g><title>tokio::runtime::task::raw::RawTask::new (9 samples, 0.11%)</title><rect x="72.4552%" y="997" width="0.1069%" height="15" fill="rgb(246,31,12)" fg:x="6100" fg:w="9"/><text x="72.7052%" y="1007.50"></text></g><g><title>tokio::runtime::task::core::Cell&lt;T,S&gt;::new (8 samples, 0.10%)</title><rect x="72.4670%" y="981" width="0.0950%" height="15" fill="rgb(213,154,6)" fg:x="6101" fg:w="8"/><text x="72.7170%" y="991.50"></text></g><g><title>tokio::runtime::task::core::Cell&lt;T,S&gt;::new::check (2 samples, 0.02%)</title><rect x="72.5383%" y="965" width="0.0238%" height="15" fill="rgb(222,163,29)" fg:x="6107" fg:w="2"/><text x="72.7883%" y="975.50"></text></g><g><title>tokio::runtime::task::core::Header::get_trailer (1 samples, 0.01%)</title><rect x="72.5502%" y="949" width="0.0119%" height="15" fill="rgb(227,201,8)" fg:x="6108" fg:w="1"/><text x="72.8002%" y="959.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked (1 samples, 0.01%)</title><rect x="72.5502%" y="933" width="0.0119%" height="15" fill="rgb(233,9,32)" fg:x="6108" fg:w="1"/><text x="72.8002%" y="943.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="72.5621%" y="997" width="0.0119%" height="15" fill="rgb(217,54,24)" fg:x="6109" fg:w="1"/><text x="72.8121%" y="1007.50"></text></g><g><title>&lt;fs_err::tokio::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write (37 samples, 0.44%)</title><rect x="72.1463%" y="1109" width="0.4395%" height="15" fill="rgb(235,192,0)" fg:x="6074" fg:w="37"/><text x="72.3963%" y="1119.50"></text></g><g><title>&lt;tokio::fs::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write (37 samples, 0.44%)</title><rect x="72.1463%" y="1093" width="0.4395%" height="15" fill="rgb(235,45,9)" fg:x="6074" fg:w="37"/><text x="72.3963%" y="1103.50"></text></g><g><title>tokio::runtime::blocking::pool::spawn_mandatory_blocking (32 samples, 0.38%)</title><rect x="72.2057%" y="1077" width="0.3801%" height="15" fill="rgb(246,42,40)" fg:x="6079" fg:w="32"/><text x="72.4557%" y="1087.50"></text></g><g><title>tokio::runtime::handle::Handle::current (2 samples, 0.02%)</title><rect x="72.5621%" y="1061" width="0.0238%" height="15" fill="rgb(248,111,24)" fg:x="6109" fg:w="2"/><text x="72.8121%" y="1071.50"></text></g><g><title>tokio::runtime::scheduler::Handle::current (2 samples, 0.02%)</title><rect x="72.5621%" y="1045" width="0.0238%" height="15" fill="rgb(249,65,22)" fg:x="6109" fg:w="2"/><text x="72.8121%" y="1055.50"></text></g><g><title>tokio::runtime::context::current::with_current (2 samples, 0.02%)</title><rect x="72.5621%" y="1029" width="0.0238%" height="15" fill="rgb(238,111,51)" fg:x="6109" fg:w="2"/><text x="72.8121%" y="1039.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (2 samples, 0.02%)</title><rect x="72.5621%" y="1013" width="0.0238%" height="15" fill="rgb(250,118,22)" fg:x="6109" fg:w="2"/><text x="72.8121%" y="1023.50"></text></g><g><title>tokio::runtime::context::current::with_current::_{{closure}} (1 samples, 0.01%)</title><rect x="72.5739%" y="997" width="0.0119%" height="15" fill="rgb(234,84,26)" fg:x="6110" fg:w="1"/><text x="72.8239%" y="1007.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::borrow (1 samples, 0.01%)</title><rect x="72.5739%" y="981" width="0.0119%" height="15" fill="rgb(243,172,12)" fg:x="6110" fg:w="1"/><text x="72.8239%" y="991.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::try_borrow (1 samples, 0.01%)</title><rect x="72.5739%" y="965" width="0.0119%" height="15" fill="rgb(236,150,49)" fg:x="6110" fg:w="1"/><text x="72.8239%" y="975.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="72.5739%" y="949" width="0.0119%" height="15" fill="rgb(225,197,26)" fg:x="6110" fg:w="1"/><text x="72.8239%" y="959.50"></text></g><g><title>std::io::impls::_&lt;impl std::io::Write for alloc::vec::Vec&lt;u8,A&gt;&gt;::write (42 samples, 0.50%)</title><rect x="72.5858%" y="1109" width="0.4989%" height="15" fill="rgb(214,17,42)" fg:x="6111" fg:w="42"/><text x="72.8358%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (42 samples, 0.50%)</title><rect x="72.5858%" y="1093" width="0.4989%" height="15" fill="rgb(224,165,40)" fg:x="6111" fg:w="42"/><text x="72.8358%" y="1103.50"></text></g><g><title>_platform_memmove (42 samples, 0.50%)</title><rect x="72.5858%" y="1077" width="0.4989%" height="15" fill="rgb(246,100,4)" fg:x="6111" fg:w="42"/><text x="72.8358%" y="1087.50"></text></g><g><title>tokio::io::util::copy::CopyBuffer::poll_write_buf (80 samples, 0.95%)</title><rect x="72.1463%" y="1141" width="0.9502%" height="15" fill="rgb(222,103,0)" fg:x="6074" fg:w="80"/><text x="72.3963%" y="1151.50"></text></g><g><title>&lt;tokio::io::util::buf_writer::BufWriter&lt;W&gt; as tokio::io::async_write::AsyncWrite&gt;::poll_write (80 samples, 0.95%)</title><rect x="72.1463%" y="1125" width="0.9502%" height="15" fill="rgb(227,189,26)" fg:x="6074" fg:w="80"/><text x="72.3963%" y="1135.50"></text></g><g><title>tokio::io::util::buf_writer::BufWriter&lt;W&gt;::flush_buf (1 samples, 0.01%)</title><rect x="73.0847%" y="1109" width="0.0119%" height="15" fill="rgb(214,202,17)" fg:x="6153" fg:w="1"/><text x="73.3347%" y="1119.50"></text></g><g><title>&lt;fs_err::tokio::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write (1 samples, 0.01%)</title><rect x="73.0847%" y="1093" width="0.0119%" height="15" fill="rgb(229,111,3)" fg:x="6153" fg:w="1"/><text x="73.3347%" y="1103.50"></text></g><g><title>&lt;tokio::fs::file::File as tokio::io::async_write::AsyncWrite&gt;::poll_write (1 samples, 0.01%)</title><rect x="73.0847%" y="1077" width="0.0119%" height="15" fill="rgb(229,172,15)" fg:x="6153" fg:w="1"/><text x="73.3347%" y="1087.50"></text></g><g><title>tokio::runtime::blocking::pool::spawn_mandatory_blocking (1 samples, 0.01%)</title><rect x="73.0847%" y="1061" width="0.0119%" height="15" fill="rgb(230,224,35)" fg:x="6153" fg:w="1"/><text x="73.3347%" y="1071.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_mandatory_blocking (1 samples, 0.01%)</title><rect x="73.0847%" y="1045" width="0.0119%" height="15" fill="rgb(251,141,6)" fg:x="6153" fg:w="1"/><text x="73.3347%" y="1055.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_blocking_inner (1 samples, 0.01%)</title><rect x="73.0847%" y="1029" width="0.0119%" height="15" fill="rgb(225,208,6)" fg:x="6153" fg:w="1"/><text x="73.3347%" y="1039.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_task (1 samples, 0.01%)</title><rect x="73.0847%" y="1013" width="0.0119%" height="15" fill="rgb(246,181,16)" fg:x="6153" fg:w="1"/><text x="73.3347%" y="1023.50"></text></g><g><title>pthread_cond_signal (1 samples, 0.01%)</title><rect x="73.0847%" y="997" width="0.0119%" height="15" fill="rgb(227,129,36)" fg:x="6153" fg:w="1"/><text x="73.3347%" y="1007.50"></text></g><g><title>__psynch_cvsignal (1 samples, 0.01%)</title><rect x="73.0847%" y="981" width="0.0119%" height="15" fill="rgb(248,117,24)" fg:x="6153" fg:w="1"/><text x="73.3347%" y="991.50"></text></g><g><title>tokio::io::util::copy::CopyBuffer::poll_copy (4,726 samples, 56.13%)</title><rect x="16.9735%" y="1157" width="56.1349%" height="15" fill="rgb(214,185,35)" fg:x="1429" fg:w="4726"/><text x="17.2235%" y="1167.50">tokio::io::util::copy::CopyBuffer::poll_copy</text></g><g><title>tokio::task::coop::poll_proceed (1 samples, 0.01%)</title><rect x="73.0966%" y="1141" width="0.0119%" height="15" fill="rgb(236,150,34)" fg:x="6154" fg:w="1"/><text x="73.3466%" y="1151.50"></text></g><g><title>&lt;tokio::io::util::copy::Copy&lt;R,W&gt; as core::future::future::Future&gt;::poll (4,727 samples, 56.15%)</title><rect x="16.9735%" y="1173" width="56.1468%" height="15" fill="rgb(243,228,27)" fg:x="1429" fg:w="4727"/><text x="17.2235%" y="1183.50">&lt;tokio::io::util::copy::Copy&lt;R,W&gt; as core::future::future::Future&gt;::poll</text></g><g><title>tokio::trace::trace_leaf (1 samples, 0.01%)</title><rect x="73.1084%" y="1157" width="0.0119%" height="15" fill="rgb(245,77,44)" fg:x="6155" fg:w="1"/><text x="73.3584%" y="1167.50"></text></g><g><title>_rjem_je_tcache_gc_dalloc_event_handler (1 samples, 0.01%)</title><rect x="73.1560%" y="1013" width="0.0119%" height="15" fill="rgb(235,214,42)" fg:x="6159" fg:w="1"/><text x="73.4060%" y="1023.50"></text></g><g><title>tcache_event (1 samples, 0.01%)</title><rect x="73.1560%" y="997" width="0.0119%" height="15" fill="rgb(221,74,3)" fg:x="6159" fg:w="1"/><text x="73.4060%" y="1007.50"></text></g><g><title>tcache_gc_small (1 samples, 0.01%)</title><rect x="73.1560%" y="981" width="0.0119%" height="15" fill="rgb(206,121,29)" fg:x="6159" fg:w="1"/><text x="73.4060%" y="991.50"></text></g><g><title>_rjem_je_tcache_bin_flush_small (1 samples, 0.01%)</title><rect x="73.1560%" y="965" width="0.0119%" height="15" fill="rgb(249,131,53)" fg:x="6159" fg:w="1"/><text x="73.4060%" y="975.50"></text></g><g><title>tcache_bin_flush_edatas_lookup (1 samples, 0.01%)</title><rect x="73.1560%" y="949" width="0.0119%" height="15" fill="rgb(236,170,29)" fg:x="6159" fg:w="1"/><text x="73.4060%" y="959.50"></text></g><g><title>tcache_bin_flush_metadata_visitor (1 samples, 0.01%)</title><rect x="73.1560%" y="933" width="0.0119%" height="15" fill="rgb(247,96,15)" fg:x="6159" fg:w="1"/><text x="73.4060%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::io::util::copy::Copy&lt;tokio_util::compat::Compat&lt;&amp;mut async_zip::base::read::io::entry::ZipEntryReader&lt;&amp;mut futures_util::io::buf_reader::BufReader&lt;tokio_util::compat::Compat&lt;&amp;mut uv_distribution::distribution_database::ProgressReader&lt;&amp;mut uv_extract::hash::HashReader&lt;tokio_util::compat::Compat&lt;futures_util::stream::try_stream::into_async_read::IntoAsyncRead&lt;futures_util::stream::try_stream::MapErr&lt;reqwest::async_impl::body::DataStream&lt;reqwest::async_impl::decoder::Decoder&gt;,uv_distribution::distribution_database::DistributionDatabase&lt;uv_dispatch::BuildDispatch&gt;::stream_wheel::{{closure}}::{{closure}}::{{closure}}::{{closure}}&gt;&gt;&gt;&gt;&gt;&gt;&gt;,async_zip::base::read::io::entry::WithEntry&gt;&gt;,tokio::io::util::buf_writer::BufWriter&lt;fs_err::tokio::file::File&gt;&gt;&gt; (5 samples, 0.06%)</title><rect x="73.1203%" y="1173" width="0.0594%" height="15" fill="rgb(211,210,7)" fg:x="6156" fg:w="5"/><text x="73.3703%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::io::util::copy::CopyBuffer&gt; (5 samples, 0.06%)</title><rect x="73.1203%" y="1157" width="0.0594%" height="15" fill="rgb(240,88,50)" fg:x="6156" fg:w="5"/><text x="73.3703%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;[u8]&gt;&gt; (4 samples, 0.05%)</title><rect x="73.1322%" y="1141" width="0.0475%" height="15" fill="rgb(209,229,26)" fg:x="6157" fg:w="4"/><text x="73.3822%" y="1151.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (4 samples, 0.05%)</title><rect x="73.1322%" y="1125" width="0.0475%" height="15" fill="rgb(210,68,23)" fg:x="6157" fg:w="4"/><text x="73.3822%" y="1135.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (4 samples, 0.05%)</title><rect x="73.1322%" y="1109" width="0.0475%" height="15" fill="rgb(229,180,13)" fg:x="6157" fg:w="4"/><text x="73.3822%" y="1119.50"></text></g><g><title>__rustc::__rust_dealloc (4 samples, 0.05%)</title><rect x="73.1322%" y="1093" width="0.0475%" height="15" fill="rgb(236,53,44)" fg:x="6157" fg:w="4"/><text x="73.3822%" y="1103.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (4 samples, 0.05%)</title><rect x="73.1322%" y="1077" width="0.0475%" height="15" fill="rgb(244,214,29)" fg:x="6157" fg:w="4"/><text x="73.3822%" y="1087.50"></text></g><g><title>_rjem_sdallocx (4 samples, 0.05%)</title><rect x="73.1322%" y="1061" width="0.0475%" height="15" fill="rgb(220,75,29)" fg:x="6157" fg:w="4"/><text x="73.3822%" y="1071.50"></text></g><g><title>_rjem_je_sdallocx_default (4 samples, 0.05%)</title><rect x="73.1322%" y="1045" width="0.0475%" height="15" fill="rgb(214,183,37)" fg:x="6157" fg:w="4"/><text x="73.3822%" y="1055.50"></text></g><g><title>_rjem_je_te_event_trigger (2 samples, 0.02%)</title><rect x="73.1560%" y="1029" width="0.0238%" height="15" fill="rgb(239,117,29)" fg:x="6159" fg:w="2"/><text x="73.4060%" y="1039.50"></text></g><g><title>te_adjust_thresholds_helper (1 samples, 0.01%)</title><rect x="73.1678%" y="1013" width="0.0119%" height="15" fill="rgb(237,171,35)" fg:x="6160" fg:w="1"/><text x="73.4178%" y="1023.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::into_boxed_slice (1 samples, 0.01%)</title><rect x="73.1797%" y="1157" width="0.0119%" height="15" fill="rgb(229,178,53)" fg:x="6161" fg:w="1"/><text x="73.4297%" y="1167.50"></text></g><g><title>_platform_memset (1 samples, 0.01%)</title><rect x="73.2272%" y="1061" width="0.0119%" height="15" fill="rgb(210,102,19)" fg:x="6165" fg:w="1"/><text x="73.4772%" y="1071.50"></text></g><g><title>_rjem_je_te_event_trigger (1 samples, 0.01%)</title><rect x="73.2391%" y="1061" width="0.0119%" height="15" fill="rgb(235,127,22)" fg:x="6166" fg:w="1"/><text x="73.4891%" y="1071.50"></text></g><g><title>_rjem_je_tcache_gc_event_handler (1 samples, 0.01%)</title><rect x="73.2391%" y="1045" width="0.0119%" height="15" fill="rgb(244,31,31)" fg:x="6166" fg:w="1"/><text x="73.4891%" y="1055.50"></text></g><g><title>tcache_event (1 samples, 0.01%)</title><rect x="73.2391%" y="1029" width="0.0119%" height="15" fill="rgb(231,43,21)" fg:x="6166" fg:w="1"/><text x="73.4891%" y="1039.50"></text></g><g><title>tcache_gc_small (1 samples, 0.01%)</title><rect x="73.2391%" y="1013" width="0.0119%" height="15" fill="rgb(217,131,35)" fg:x="6166" fg:w="1"/><text x="73.4891%" y="1023.50"></text></g><g><title>_rjem_je_tcache_bin_flush_small (1 samples, 0.01%)</title><rect x="73.2391%" y="997" width="0.0119%" height="15" fill="rgb(221,149,4)" fg:x="6166" fg:w="1"/><text x="73.4891%" y="1007.50"></text></g><g><title>malloc_mutex_lock (1 samples, 0.01%)</title><rect x="73.2391%" y="981" width="0.0119%" height="15" fill="rgb(232,170,28)" fg:x="6166" fg:w="1"/><text x="73.4891%" y="991.50"></text></g><g><title>witness_assert_not_owner (1 samples, 0.01%)</title><rect x="73.2391%" y="965" width="0.0119%" height="15" fill="rgb(238,56,10)" fg:x="6166" fg:w="1"/><text x="73.4891%" y="975.50"></text></g><g><title>tokio::io::util::copy::copy::_{{closure}} (4,740 samples, 56.30%)</title><rect x="16.9616%" y="1189" width="56.3012%" height="15" fill="rgb(235,196,14)" fg:x="1428" fg:w="4740"/><text x="17.2116%" y="1199.50">tokio::io::util::copy::copy::_{{closure}}</text></g><g><title>tokio::io::util::copy::CopyBuffer::new (7 samples, 0.08%)</title><rect x="73.1797%" y="1173" width="0.0831%" height="15" fill="rgb(216,45,48)" fg:x="6161" fg:w="7"/><text x="73.4297%" y="1183.50"></text></g><g><title>alloc::vec::from_elem (6 samples, 0.07%)</title><rect x="73.1916%" y="1157" width="0.0713%" height="15" fill="rgb(238,213,17)" fg:x="6162" fg:w="6"/><text x="73.4416%" y="1167.50"></text></g><g><title>&lt;u8 as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (6 samples, 0.07%)</title><rect x="73.1916%" y="1141" width="0.0713%" height="15" fill="rgb(212,13,2)" fg:x="6162" fg:w="6"/><text x="73.4416%" y="1151.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (6 samples, 0.07%)</title><rect x="73.1916%" y="1125" width="0.0713%" height="15" fill="rgb(240,114,20)" fg:x="6162" fg:w="6"/><text x="73.4416%" y="1135.50"></text></g><g><title>__rustc::__rust_alloc_zeroed (6 samples, 0.07%)</title><rect x="73.1916%" y="1109" width="0.0713%" height="15" fill="rgb(228,41,40)" fg:x="6162" fg:w="6"/><text x="73.4416%" y="1119.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc_zeroed (6 samples, 0.07%)</title><rect x="73.1916%" y="1093" width="0.0713%" height="15" fill="rgb(244,132,35)" fg:x="6162" fg:w="6"/><text x="73.4416%" y="1103.50"></text></g><g><title>_rjem_calloc (6 samples, 0.07%)</title><rect x="73.1916%" y="1077" width="0.0713%" height="15" fill="rgb(253,189,4)" fg:x="6162" fg:w="6"/><text x="73.4416%" y="1087.50"></text></g><g><title>sz_size2index_compute (1 samples, 0.01%)</title><rect x="73.2510%" y="1061" width="0.0119%" height="15" fill="rgb(224,37,19)" fg:x="6167" fg:w="1"/><text x="73.5010%" y="1071.50"></text></g><g><title>&lt;std::path::PathBuf as core::convert::From&lt;&amp;T&gt;&gt;::from (1 samples, 0.01%)</title><rect x="73.2866%" y="1173" width="0.0119%" height="15" fill="rgb(235,223,18)" fg:x="6170" fg:w="1"/><text x="73.5366%" y="1183.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1 samples, 0.01%)</title><rect x="73.2866%" y="1157" width="0.0119%" height="15" fill="rgb(235,163,25)" fg:x="6170" fg:w="1"/><text x="73.5366%" y="1167.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (1 samples, 0.01%)</title><rect x="73.2866%" y="1141" width="0.0119%" height="15" fill="rgb(217,145,28)" fg:x="6170" fg:w="1"/><text x="73.5366%" y="1151.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (1 samples, 0.01%)</title><rect x="73.2866%" y="1125" width="0.0119%" height="15" fill="rgb(223,223,32)" fg:x="6170" fg:w="1"/><text x="73.5366%" y="1135.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="73.2866%" y="1109" width="0.0119%" height="15" fill="rgb(227,189,39)" fg:x="6170" fg:w="1"/><text x="73.5366%" y="1119.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked (1 samples, 0.01%)</title><rect x="73.2866%" y="1093" width="0.0119%" height="15" fill="rgb(248,10,22)" fg:x="6170" fg:w="1"/><text x="73.5366%" y="1103.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="73.2866%" y="1077" width="0.0119%" height="15" fill="rgb(248,46,39)" fg:x="6170" fg:w="1"/><text x="73.5366%" y="1087.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (5,368 samples, 63.76%)</title><rect x="9.5498%" y="1269" width="63.7605%" height="15" fill="rgb(248,113,48)" fg:x="804" fg:w="5368"/><text x="9.7998%" y="1279.50">&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll</text></g><g><title>uv_client::cached_client::CachedClient::get_serde_with_retry::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (5,368 samples, 63.76%)</title><rect x="9.5498%" y="1253" width="63.7605%" height="15" fill="rgb(245,16,25)" fg:x="804" fg:w="5368"/><text x="9.7998%" y="1263.50">uv_client::cached_client::CachedClient::get_serde_with_retry::_{{closure}}::_{{closure}}::_{{closure}}::_{..</text></g><g><title>&lt;tracing::instrument::Instrumented&lt;T&gt; as core::future::future::Future&gt;::poll (5,366 samples, 63.74%)</title><rect x="9.5736%" y="1237" width="63.7368%" height="15" fill="rgb(249,152,16)" fg:x="806" fg:w="5366"/><text x="9.8236%" y="1247.50">&lt;tracing::instrument::Instrumented&lt;T&gt; as core::future::future::Future&gt;::poll</text></g><g><title>uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::stream_wheel::_{{closure}}::_{{closure}}::_{{closure}} (5,365 samples, 63.72%)</title><rect x="9.5855%" y="1221" width="63.7249%" height="15" fill="rgb(250,16,1)" fg:x="807" fg:w="5365"/><text x="9.8355%" y="1231.50">uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::stream_wheel::_{{closure}}::_{{clos..</text></g><g><title>uv_extract::stream::unzip::_{{closure}} (5,359 samples, 63.65%)</title><rect x="9.6567%" y="1205" width="63.6536%" height="15" fill="rgb(249,138,3)" fg:x="813" fg:w="5359"/><text x="9.9067%" y="1215.50">uv_extract::stream::unzip::_{{closure}}</text></g><g><title>uv_extract::stream::unzip::_{{closure}}::enclosed_name (4 samples, 0.05%)</title><rect x="73.2629%" y="1189" width="0.0475%" height="15" fill="rgb(227,71,41)" fg:x="6168" fg:w="4"/><text x="73.5129%" y="1199.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="73.2985%" y="1173" width="0.0119%" height="15" fill="rgb(209,184,23)" fg:x="6171" fg:w="1"/><text x="73.5485%" y="1183.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (5,390 samples, 64.02%)</title><rect x="9.3004%" y="1605" width="64.0219%" height="15" fill="rgb(223,215,31)" fg:x="783" fg:w="5390"/><text x="9.5504%" y="1615.50">&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll</text></g><g><title>uv_installer::preparer::Preparer&lt;Context&gt;::get_wheel::_{{closure}} (5,390 samples, 64.02%)</title><rect x="9.3004%" y="1589" width="64.0219%" height="15" fill="rgb(210,146,28)" fg:x="783" fg:w="5390"/><text x="9.5504%" y="1599.50">uv_installer::preparer::Preparer&lt;Context&gt;::get_wheel::_{{closure}}</text></g><g><title>uv_installer::preparer::Preparer&lt;Context&gt;::get_wheel::_{{closure}}::_{{closure}} (5,388 samples, 64.00%)</title><rect x="9.3241%" y="1573" width="63.9981%" height="15" fill="rgb(209,183,41)" fg:x="785" fg:w="5388"/><text x="9.5741%" y="1583.50">uv_installer::preparer::Preparer&lt;Context&gt;::get_wheel::_{{closure}}::_{{closure}}</text></g><g><title>&lt;futures_util::future::try_future::MapErr&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (5,388 samples, 64.00%)</title><rect x="9.3241%" y="1557" width="63.9981%" height="15" fill="rgb(209,224,45)" fg:x="785" fg:w="5388"/><text x="9.5741%" y="1567.50">&lt;futures_util::future::try_future::MapErr&lt;Fut,F&gt; as core::future::future::Future&gt;::poll</text></g><g><title>&lt;futures_util::future::future::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (5,388 samples, 64.00%)</title><rect x="9.3241%" y="1541" width="63.9981%" height="15" fill="rgb(224,209,51)" fg:x="785" fg:w="5388"/><text x="9.5741%" y="1551.50">&lt;futures_util::future::future::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll</text></g><g><title>&lt;futures_util::future::future::map::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (5,386 samples, 63.97%)</title><rect x="9.3479%" y="1525" width="63.9743%" height="15" fill="rgb(223,17,39)" fg:x="787" fg:w="5386"/><text x="9.5979%" y="1535.50">&lt;futures_util::future::future::map::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll</text></g><g><title>&lt;futures_util::future::try_future::into_future::IntoFuture&lt;Fut&gt; as core::future::future::Future&gt;::poll (5,386 samples, 63.97%)</title><rect x="9.3479%" y="1509" width="63.9743%" height="15" fill="rgb(234,204,37)" fg:x="787" fg:w="5386"/><text x="9.5979%" y="1519.50">&lt;futures_util::future::try_future::into_future::IntoFuture&lt;Fut&gt; as core::future::future::Future&gt;::poll</text></g><g><title>&lt;F as futures_core::future::TryFuture&gt;::try_poll (5,386 samples, 63.97%)</title><rect x="9.3479%" y="1493" width="63.9743%" height="15" fill="rgb(236,120,5)" fg:x="787" fg:w="5386"/><text x="9.5979%" y="1503.50">&lt;F as futures_core::future::TryFuture&gt;::try_poll</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (5,386 samples, 63.97%)</title><rect x="9.3479%" y="1477" width="63.9743%" height="15" fill="rgb(248,97,27)" fg:x="787" fg:w="5386"/><text x="9.5979%" y="1487.50">&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll</text></g><g><title>uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::get_or_build_wheel::_{{closure}} (5,386 samples, 63.97%)</title><rect x="9.3479%" y="1461" width="63.9743%" height="15" fill="rgb(240,66,17)" fg:x="787" fg:w="5386"/><text x="9.5979%" y="1471.50">uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::get_or_build_wheel::_{{closure}}</text></g><g><title>uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::get_or_build_wheel::_{{closure}}::_{{closure}} (5,384 samples, 63.95%)</title><rect x="9.3717%" y="1445" width="63.9506%" height="15" fill="rgb(210,79,3)" fg:x="789" fg:w="5384"/><text x="9.6217%" y="1455.50">uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::get_or_build_wheel::_{{closure}}::_..</text></g><g><title>uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::get_wheel::_{{closure}} (5,383 samples, 63.94%)</title><rect x="9.3835%" y="1429" width="63.9387%" height="15" fill="rgb(214,176,27)" fg:x="790" fg:w="5383"/><text x="9.6335%" y="1439.50">uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::get_wheel::_{{closure}}</text></g><g><title>uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::stream_wheel::_{{closure}} (5,383 samples, 63.94%)</title><rect x="9.3835%" y="1413" width="63.9387%" height="15" fill="rgb(235,185,3)" fg:x="790" fg:w="5383"/><text x="9.6335%" y="1423.50">uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::stream_wheel::_{{closure}}</text></g><g><title>uv_distribution::distribution_database::ManagedClient::managed::_{{closure}} (5,383 samples, 63.94%)</title><rect x="9.3835%" y="1397" width="63.9387%" height="15" fill="rgb(227,24,12)" fg:x="790" fg:w="5383"/><text x="9.6335%" y="1407.50">uv_distribution::distribution_database::ManagedClient::managed::_{{closure}}</text></g><g><title>uv_client::cached_client::CachedClient::get_serde_with_retry::_{{closure}} (5,381 samples, 63.91%)</title><rect x="9.4073%" y="1381" width="63.9150%" height="15" fill="rgb(252,169,48)" fg:x="792" fg:w="5381"/><text x="9.6573%" y="1391.50">uv_client::cached_client::CachedClient::get_serde_with_retry::_{{closure}}</text></g><g><title>uv_client::cached_client::CachedClient::get_serde_with_retry::_{{closure}}::_{{closure}} (5,378 samples, 63.88%)</title><rect x="9.4429%" y="1365" width="63.8793%" height="15" fill="rgb(212,65,1)" fg:x="795" fg:w="5378"/><text x="9.6929%" y="1375.50">uv_client::cached_client::CachedClient::get_serde_with_retry::_{{closure}}::_{{closure}}</text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable_with_retry::_{{closure}} (5,378 samples, 63.88%)</title><rect x="9.4429%" y="1349" width="63.8793%" height="15" fill="rgb(242,39,24)" fg:x="795" fg:w="5378"/><text x="9.6929%" y="1359.50">uv_client::cached_client::CachedClient::get_cacheable_with_retry::_{{closure}}</text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable_with_retry::_{{closure}}::_{{closure}} (5,377 samples, 63.87%)</title><rect x="9.4548%" y="1333" width="63.8674%" height="15" fill="rgb(249,32,23)" fg:x="796" fg:w="5377"/><text x="9.7048%" y="1343.50">uv_client::cached_client::CachedClient::get_cacheable_with_retry::_{{closure}}::_{{closure}}</text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable::_{{closure}} (5,376 samples, 63.86%)</title><rect x="9.4667%" y="1317" width="63.8556%" height="15" fill="rgb(251,195,23)" fg:x="797" fg:w="5376"/><text x="9.7167%" y="1327.50">uv_client::cached_client::CachedClient::get_cacheable::_{{closure}}</text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable::_{{closure}}::_{{closure}} (5,371 samples, 63.80%)</title><rect x="9.5261%" y="1301" width="63.7962%" height="15" fill="rgb(236,174,8)" fg:x="802" fg:w="5371"/><text x="9.7761%" y="1311.50">uv_client::cached_client::CachedClient::get_cacheable::_{{closure}}::_{{closure}}</text></g><g><title>uv_client::cached_client::CachedClient::run_response_callback::_{{closure}} (5,369 samples, 63.77%)</title><rect x="9.5498%" y="1285" width="63.7724%" height="15" fill="rgb(220,197,8)" fg:x="804" fg:w="5369"/><text x="9.7998%" y="1295.50">uv_client::cached_client::CachedClient::run_response_callback::_{{closure}}</text></g><g><title>&lt;tracing::instrument::Instrumented&lt;T&gt; as core::future::future::Future&gt;::poll (1 samples, 0.01%)</title><rect x="73.3104%" y="1269" width="0.0119%" height="15" fill="rgb(240,108,37)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1279.50"></text></g><g><title>uv_client::cached_client::CachedClient::run_response_callback::_{{closure}}::_{{closure}} (1 samples, 0.01%)</title><rect x="73.3104%" y="1253" width="0.0119%" height="15" fill="rgb(232,176,24)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1263.50"></text></g><g><title>uv_fs::write_atomic::_{{closure}} (1 samples, 0.01%)</title><rect x="73.3104%" y="1237" width="0.0119%" height="15" fill="rgb(243,35,29)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1247.50"></text></g><g><title>uv_fs::persist_with_retry::_{{closure}} (1 samples, 0.01%)</title><rect x="73.3104%" y="1221" width="0.0119%" height="15" fill="rgb(210,37,18)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1231.50"></text></g><g><title>uv_fs::persist_with_retry::_{{closure}}::_{{closure}} (1 samples, 0.01%)</title><rect x="73.3104%" y="1205" width="0.0119%" height="15" fill="rgb(224,184,40)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1215.50"></text></g><g><title>fs_err::rename (1 samples, 0.01%)</title><rect x="73.3104%" y="1189" width="0.0119%" height="15" fill="rgb(236,39,29)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1199.50"></text></g><g><title>std::fs::rename (1 samples, 0.01%)</title><rect x="73.3104%" y="1173" width="0.0119%" height="15" fill="rgb(232,48,39)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1183.50"></text></g><g><title>std::sys::fs::rename (1 samples, 0.01%)</title><rect x="73.3104%" y="1157" width="0.0119%" height="15" fill="rgb(236,34,42)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1167.50"></text></g><g><title>rename (1 samples, 0.01%)</title><rect x="73.3104%" y="1141" width="0.0119%" height="15" fill="rgb(243,106,37)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1151.50"></text></g><g><title>__rename (1 samples, 0.01%)</title><rect x="73.3104%" y="1125" width="0.0119%" height="15" fill="rgb(218,96,6)" fg:x="6172" fg:w="1"/><text x="73.5604%" y="1135.50"></text></g><g><title>uv::commands::pip::operations::install::_{{closure}} (5,435 samples, 64.56%)</title><rect x="8.7778%" y="1717" width="64.5564%" height="15" fill="rgb(235,130,12)" fg:x="739" fg:w="5435"/><text x="9.0278%" y="1727.50">uv::commands::pip::operations::install::_{{closure}}</text></g><g><title>uv_installer::preparer::Preparer&lt;Context&gt;::prepare::_{{closure}} (5,433 samples, 64.53%)</title><rect x="8.8015%" y="1701" width="64.5326%" height="15" fill="rgb(231,95,0)" fg:x="741" fg:w="5433"/><text x="9.0515%" y="1711.50">uv_installer::preparer::Preparer&lt;Context&gt;::prepare::_{{closure}}</text></g><g><title>uv_installer::preparer::Preparer&lt;Context&gt;::prepare::_{{closure}}::_{{closure}} (5,432 samples, 64.52%)</title><rect x="8.8134%" y="1685" width="64.5207%" height="15" fill="rgb(228,12,23)" fg:x="742" fg:w="5432"/><text x="9.0634%" y="1695.50">uv_installer::preparer::Preparer&lt;Context&gt;::prepare::_{{closure}}::_{{closure}}</text></g><g><title>&lt;futures_util::stream::try_stream::try_collect::TryCollect&lt;St,C&gt; as core::future::future::Future&gt;::poll (5,432 samples, 64.52%)</title><rect x="8.8134%" y="1669" width="64.5207%" height="15" fill="rgb(216,12,1)" fg:x="742" fg:w="5432"/><text x="9.0634%" y="1679.50">&lt;futures_util::stream::try_stream::try_collect::TryCollect&lt;St,C&gt; as core::future::future::Future&gt;::poll</text></g><g><title>&lt;S as futures_core::stream::TryStream&gt;::try_poll_next (5,431 samples, 64.51%)</title><rect x="8.8253%" y="1653" width="64.5088%" height="15" fill="rgb(219,59,3)" fg:x="743" fg:w="5431"/><text x="9.0753%" y="1663.50">&lt;S as futures_core::stream::TryStream&gt;::try_poll_next</text></g><g><title>&lt;futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt; as futures_core::stream::Stream&gt;::poll_next (5,431 samples, 64.51%)</title><rect x="8.8253%" y="1637" width="64.5088%" height="15" fill="rgb(215,208,46)" fg:x="743" fg:w="5431"/><text x="9.0753%" y="1647.50">&lt;futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt; as futures_core::stream::Stream&gt;::poll_next</text></g><g><title>uv_installer::preparer::Preparer&lt;Context&gt;::prepare_stream::_{{closure}}::_{{synthetic}} (5,392 samples, 64.05%)</title><rect x="9.2885%" y="1621" width="64.0456%" height="15" fill="rgb(254,224,29)" fg:x="782" fg:w="5392"/><text x="9.5385%" y="1631.50">uv_installer::preparer::Preparer&lt;Context&gt;::prepare_stream::_{{closure}}::_{{synthetic}}</text></g><g><title>core::pin::Pin&lt;Ptr&gt;::as_mut (1 samples, 0.01%)</title><rect x="73.3222%" y="1605" width="0.0119%" height="15" fill="rgb(232,14,29)" fg:x="6173" fg:w="1"/><text x="73.5722%" y="1615.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::deref::DerefMut&gt;::deref_mut (1 samples, 0.01%)</title><rect x="73.3222%" y="1589" width="0.0119%" height="15" fill="rgb(208,45,52)" fg:x="6173" fg:w="1"/><text x="73.5722%" y="1599.50"></text></g><g><title>&lt;uv::commands::reporters::ResolverReporter as core::convert::From&lt;uv::printer::Printer&gt;&gt;::from (1 samples, 0.01%)</title><rect x="73.3341%" y="1701" width="0.0119%" height="15" fill="rgb(234,191,28)" fg:x="6174" fg:w="1"/><text x="73.5841%" y="1711.50"></text></g><g><title>indicatif::progress_bar::ProgressBar::set_message (1 samples, 0.01%)</title><rect x="73.3341%" y="1685" width="0.0119%" height="15" fill="rgb(244,67,43)" fg:x="6174" fg:w="1"/><text x="73.5841%" y="1695.50"></text></g><g><title>&lt;tokio_rustls::Connect&lt;IO&gt; as core::future::future::Future&gt;::poll (1 samples, 0.01%)</title><rect x="73.3460%" y="501" width="0.0119%" height="15" fill="rgb(236,189,24)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="511.50"></text></g><g><title>&lt;tokio_rustls::common::handshake::MidHandshake&lt;IS&gt; as core::future::future::Future&gt;::poll (1 samples, 0.01%)</title><rect x="73.3460%" y="485" width="0.0119%" height="15" fill="rgb(239,214,33)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="495.50"></text></g><g><title>tokio_rustls::common::Stream&lt;IO,C&gt;::handshake (1 samples, 0.01%)</title><rect x="73.3460%" y="469" width="0.0119%" height="15" fill="rgb(226,176,41)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="479.50"></text></g><g><title>tokio_rustls::common::Stream&lt;IO,C&gt;::read_io (1 samples, 0.01%)</title><rect x="73.3460%" y="453" width="0.0119%" height="15" fill="rgb(248,47,8)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="463.50"></text></g><g><title>rustls::conn::ConnectionCommon&lt;Data&gt;::process_new_packets (1 samples, 0.01%)</title><rect x="73.3460%" y="437" width="0.0119%" height="15" fill="rgb(218,81,44)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="447.50"></text></g><g><title>rustls::conn::ConnectionCore&lt;Data&gt;::process_new_packets (1 samples, 0.01%)</title><rect x="73.3460%" y="421" width="0.0119%" height="15" fill="rgb(213,98,6)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="431.50"></text></g><g><title>rustls::conn::ConnectionCore&lt;Data&gt;::process_msg (1 samples, 0.01%)</title><rect x="73.3460%" y="405" width="0.0119%" height="15" fill="rgb(222,85,22)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="415.50"></text></g><g><title>rustls::common_state::CommonState::process_main_protocol (1 samples, 0.01%)</title><rect x="73.3460%" y="389" width="0.0119%" height="15" fill="rgb(239,46,39)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="399.50"></text></g><g><title>&lt;rustls::client::tls13::ExpectCertificateVerify as rustls::common_state::State&lt;rustls::client::client_conn::ClientConnectionData&gt;&gt;::handle (1 samples, 0.01%)</title><rect x="73.3460%" y="373" width="0.0119%" height="15" fill="rgb(237,12,29)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="383.50"></text></g><g><title>&lt;rustls::webpki::server_verifier::WebPkiServerVerifier as rustls::verify::ServerCertVerifier&gt;::verify_tls13_signature (1 samples, 0.01%)</title><rect x="73.3460%" y="357" width="0.0119%" height="15" fill="rgb(214,77,8)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="367.50"></text></g><g><title>rustls::webpki::verify::verify_tls13_signature (1 samples, 0.01%)</title><rect x="73.3460%" y="341" width="0.0119%" height="15" fill="rgb(217,168,37)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="351.50"></text></g><g><title>webpki::end_entity::EndEntityCert::verify_signature (1 samples, 0.01%)</title><rect x="73.3460%" y="325" width="0.0119%" height="15" fill="rgb(221,217,23)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="335.50"></text></g><g><title>webpki::signed_data::verify_signature (1 samples, 0.01%)</title><rect x="73.3460%" y="309" width="0.0119%" height="15" fill="rgb(243,229,36)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="319.50"></text></g><g><title>&lt;webpki::ring_algs::RingAlgorithm as rustls_pki_types::SignatureVerificationAlgorithm&gt;::verify_signature (1 samples, 0.01%)</title><rect x="73.3460%" y="293" width="0.0119%" height="15" fill="rgb(251,163,40)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="303.50"></text></g><g><title>ring::signature::UnparsedPublicKey&lt;B&gt;::verify (1 samples, 0.01%)</title><rect x="73.3460%" y="277" width="0.0119%" height="15" fill="rgb(237,222,12)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="287.50"></text></g><g><title>ring::rsa::verification::_&lt;impl ring::signature::VerificationAlgorithm for ring::rsa::RsaParameters&gt;::verify (1 samples, 0.01%)</title><rect x="73.3460%" y="261" width="0.0119%" height="15" fill="rgb(248,132,6)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="271.50"></text></g><g><title>ring::rsa::verification::verify_rsa_ (1 samples, 0.01%)</title><rect x="73.3460%" y="245" width="0.0119%" height="15" fill="rgb(227,167,50)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="255.50"></text></g><g><title>ring::rsa::public_key::Inner::exponentiate (1 samples, 0.01%)</title><rect x="73.3460%" y="229" width="0.0119%" height="15" fill="rgb(242,84,37)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="239.50"></text></g><g><title>ring::arithmetic::bigint::Elem&lt;M&gt;::from_be_bytes_padded (1 samples, 0.01%)</title><rect x="73.3460%" y="213" width="0.0119%" height="15" fill="rgb(212,4,50)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="223.50"></text></g><g><title>ring::arithmetic::bigint::boxed_limbs::BoxedLimbs&lt;M&gt;::from_be_bytes_padded_less_than (1 samples, 0.01%)</title><rect x="73.3460%" y="197" width="0.0119%" height="15" fill="rgb(230,228,32)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="207.50"></text></g><g><title>ring::limb::parse_big_endian_and_pad_consttime (1 samples, 0.01%)</title><rect x="73.3460%" y="181" width="0.0119%" height="15" fill="rgb(248,217,23)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="191.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.01%)</title><rect x="73.3460%" y="165" width="0.0119%" height="15" fill="rgb(238,197,32)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="175.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.01%)</title><rect x="73.3460%" y="149" width="0.0119%" height="15" fill="rgb(236,106,1)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="159.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::fold (1 samples, 0.01%)</title><rect x="73.3460%" y="133" width="0.0119%" height="15" fill="rgb(219,228,13)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="143.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::SpecFold&gt;::spec_fold (1 samples, 0.01%)</title><rect x="73.3460%" y="117" width="0.0119%" height="15" fill="rgb(238,30,35)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="127.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="73.3460%" y="101" width="0.0119%" height="15" fill="rgb(236,70,23)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="111.50"></text></g><g><title>core::iter::adapters::chain::and_then_or_clear (1 samples, 0.01%)</title><rect x="73.3460%" y="85" width="0.0119%" height="15" fill="rgb(249,104,48)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="95.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="73.3460%" y="69" width="0.0119%" height="15" fill="rgb(254,117,50)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="79.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="73.3460%" y="53" width="0.0119%" height="15" fill="rgb(223,152,4)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="63.50"></text></g><g><title>&lt;core::slice::iter::RChunks&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="73.3460%" y="37" width="0.0119%" height="15" fill="rgb(245,6,2)" fg:x="6175" fg:w="1"/><text x="73.5960%" y="47.50"></text></g><g><title>uv_client::cached_client::CachedClient::fresh_request::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1221" width="0.0238%" height="15" fill="rgb(249,150,24)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1231.50"></text></g><g><title>uv_client::cached_client::CachedClient::fresh_request::_{{closure}}::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1205" width="0.0238%" height="15" fill="rgb(228,185,42)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1215.50"></text></g><g><title>uv_client::base_client::BaseClient::execute::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1189" width="0.0238%" height="15" fill="rgb(226,39,33)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1199.50"></text></g><g><title>uv_client::base_client::RedirectClientWithMiddleware::execute::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1173" width="0.0238%" height="15" fill="rgb(221,166,19)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1183.50"></text></g><g><title>uv_client::base_client::RedirectClientWithMiddleware::execute_with_redirect_handling::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1157" width="0.0238%" height="15" fill="rgb(209,109,2)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1167.50"></text></g><g><title>reqwest_middleware::client::ClientWithMiddleware::execute::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1141" width="0.0238%" height="15" fill="rgb(252,216,26)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1151.50"></text></g><g><title>reqwest_middleware::client::ClientWithMiddleware::execute_with_extensions::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1125" width="0.0238%" height="15" fill="rgb(227,173,36)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1135.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="1109" width="0.0238%" height="15" fill="rgb(209,90,7)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1119.50"></text></g><g><title>&lt;reqwest_retry::middleware::RetryTransientMiddleware&lt;T,R&gt; as reqwest_middleware::middleware::Middleware&gt;::handle::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1093" width="0.0238%" height="15" fill="rgb(250,194,11)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1103.50"></text></g><g><title>reqwest_retry::middleware::RetryTransientMiddleware&lt;T,R&gt;::execute_with_retry::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1077" width="0.0238%" height="15" fill="rgb(220,72,50)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1087.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="1061" width="0.0238%" height="15" fill="rgb(222,106,48)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1071.50"></text></g><g><title>&lt;uv_auth::middleware::AuthMiddleware as reqwest_middleware::middleware::Middleware&gt;::handle::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1045" width="0.0238%" height="15" fill="rgb(216,220,45)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1055.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="1029" width="0.0238%" height="15" fill="rgb(234,112,18)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1039.50"></text></g><g><title>reqwest_middleware::middleware::Next::run::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="1013" width="0.0238%" height="15" fill="rgb(206,179,9)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1023.50"></text></g><g><title>&lt;reqwest::async_impl::client::Pending as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="997" width="0.0238%" height="15" fill="rgb(215,115,40)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="1007.50"></text></g><g><title>&lt;reqwest::async_impl::client::PendingRequest as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="981" width="0.0238%" height="15" fill="rgb(222,69,34)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="991.50"></text></g><g><title>&lt;hyper_util::client::legacy::client::ResponseFuture as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="965" width="0.0238%" height="15" fill="rgb(209,161,10)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="975.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::send_request::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="949" width="0.0238%" height="15" fill="rgb(217,6,38)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="959.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::try_send_request::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="933" width="0.0238%" height="15" fill="rgb(229,229,48)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="943.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::connection_for::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="917" width="0.0238%" height="15" fill="rgb(225,21,28)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="927.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::one_connection_for::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="901" width="0.0238%" height="15" fill="rgb(206,33,13)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="911.50"></text></g><g><title>&lt;futures_util::future::select::Select&lt;A,B&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="885" width="0.0238%" height="15" fill="rgb(242,178,17)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="895.50"></text></g><g><title>futures_util::future::future::FutureExt::poll_unpin (2 samples, 0.02%)</title><rect x="73.3460%" y="869" width="0.0238%" height="15" fill="rgb(220,162,5)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="879.50"></text></g><g><title>&lt;hyper_util::common::lazy::Lazy&lt;F,R&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="853" width="0.0238%" height="15" fill="rgb(210,33,43)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="863.50"></text></g><g><title>&lt;futures_util::future::either::Either&lt;A,B&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="837" width="0.0238%" height="15" fill="rgb(216,116,54)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="847.50"></text></g><g><title>&lt;futures_util::future::try_future::AndThen&lt;Fut1,Fut2,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="821" width="0.0238%" height="15" fill="rgb(249,92,24)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="831.50"></text></g><g><title>&lt;futures_util::future::try_future::TryFlatten&lt;Fut1,Fut2&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="805" width="0.0238%" height="15" fill="rgb(231,189,14)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="815.50"></text></g><g><title>&lt;futures_util::future::try_future::try_flatten::TryFlatten&lt;Fut,&lt;Fut as futures_core::future::TryFuture&gt;::Ok&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="789" width="0.0238%" height="15" fill="rgb(230,8,41)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="799.50"></text></g><g><title>&lt;F as futures_core::future::TryFuture&gt;::try_poll (2 samples, 0.02%)</title><rect x="73.3460%" y="773" width="0.0238%" height="15" fill="rgb(249,7,27)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="783.50"></text></g><g><title>&lt;futures_util::future::try_future::MapOk&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="757" width="0.0238%" height="15" fill="rgb(232,86,5)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="767.50"></text></g><g><title>&lt;futures_util::future::future::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="741" width="0.0238%" height="15" fill="rgb(224,175,18)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="751.50"></text></g><g><title>&lt;futures_util::future::future::map::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="725" width="0.0238%" height="15" fill="rgb(220,129,12)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="735.50"></text></g><g><title>&lt;futures_util::future::try_future::into_future::IntoFuture&lt;Fut&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="709" width="0.0238%" height="15" fill="rgb(210,19,36)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="719.50"></text></g><g><title>&lt;F as futures_core::future::TryFuture&gt;::try_poll (2 samples, 0.02%)</title><rect x="73.3460%" y="693" width="0.0238%" height="15" fill="rgb(219,96,14)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="703.50"></text></g><g><title>&lt;futures_util::future::try_future::MapErr&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="677" width="0.0238%" height="15" fill="rgb(249,106,1)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="687.50"></text></g><g><title>&lt;futures_util::future::future::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="661" width="0.0238%" height="15" fill="rgb(249,155,20)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="671.50"></text></g><g><title>&lt;futures_util::future::future::map::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="645" width="0.0238%" height="15" fill="rgb(244,168,9)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="655.50"></text></g><g><title>&lt;futures_util::future::try_future::into_future::IntoFuture&lt;Fut&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="629" width="0.0238%" height="15" fill="rgb(216,23,50)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="639.50"></text></g><g><title>&lt;F as futures_core::future::TryFuture&gt;::try_poll (2 samples, 0.02%)</title><rect x="73.3460%" y="613" width="0.0238%" height="15" fill="rgb(224,219,20)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="623.50"></text></g><g><title>&lt;hyper_util::service::oneshot::Oneshot&lt;S,Req&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="597" width="0.0238%" height="15" fill="rgb(222,156,15)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="607.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="581" width="0.0238%" height="15" fill="rgb(231,97,17)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="591.50"></text></g><g><title>reqwest::connect::with_timeout::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="565" width="0.0238%" height="15" fill="rgb(218,70,48)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="575.50"></text></g><g><title>reqwest::connect::ConnectorService::connect_with_maybe_proxy::_{{closure}} (2 samples, 0.02%)</title><rect x="73.3460%" y="549" width="0.0238%" height="15" fill="rgb(212,196,52)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="559.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.3460%" y="533" width="0.0238%" height="15" fill="rgb(243,203,18)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="543.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}} (2 samples, 0.02%)</title><rect x="73.3460%" y="517" width="0.0238%" height="15" fill="rgb(252,125,41)" fg:x="6175" fg:w="2"/><text x="73.5960%" y="527.50"></text></g><g><title>tokio_rustls::TlsConnector::connect (1 samples, 0.01%)</title><rect x="73.3579%" y="501" width="0.0119%" height="15" fill="rgb(223,180,33)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="511.50"></text></g><g><title>tokio_rustls::TlsConnector::connect_with (1 samples, 0.01%)</title><rect x="73.3579%" y="485" width="0.0119%" height="15" fill="rgb(254,159,46)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="495.50"></text></g><g><title>rustls::client::client_conn::connection::ClientConnection::new (1 samples, 0.01%)</title><rect x="73.3579%" y="469" width="0.0119%" height="15" fill="rgb(254,38,10)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="479.50"></text></g><g><title>rustls::client::client_conn::_&lt;impl rustls::conn::ConnectionCore&lt;rustls::client::client_conn::ClientConnectionData&gt;&gt;::for_client (1 samples, 0.01%)</title><rect x="73.3579%" y="453" width="0.0119%" height="15" fill="rgb(208,217,32)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="463.50"></text></g><g><title>rustls::client::hs::start_handshake (1 samples, 0.01%)</title><rect x="73.3579%" y="437" width="0.0119%" height="15" fill="rgb(221,120,13)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="447.50"></text></g><g><title>rustls::client::hs::emit_client_hello_for_retry (1 samples, 0.01%)</title><rect x="73.3579%" y="421" width="0.0119%" height="15" fill="rgb(246,54,52)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="431.50"></text></g><g><title>&lt;rustls::webpki::server_verifier::WebPkiServerVerifier as rustls::verify::ServerCertVerifier&gt;::supported_verify_schemes (1 samples, 0.01%)</title><rect x="73.3579%" y="405" width="0.0119%" height="15" fill="rgb(242,34,25)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="415.50"></text></g><g><title>rustls::webpki::verify::WebPkiSupportedAlgorithms::supported_schemes (1 samples, 0.01%)</title><rect x="73.3579%" y="389" width="0.0119%" height="15" fill="rgb(247,209,9)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.01%)</title><rect x="73.3579%" y="373" width="0.0119%" height="15" fill="rgb(228,71,26)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="383.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="73.3579%" y="357" width="0.0119%" height="15" fill="rgb(222,145,49)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="367.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="73.3579%" y="341" width="0.0119%" height="15" fill="rgb(218,121,17)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="351.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="73.3579%" y="325" width="0.0119%" height="15" fill="rgb(244,50,7)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="335.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (1 samples, 0.01%)</title><rect x="73.3579%" y="309" width="0.0119%" height="15" fill="rgb(246,229,37)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="319.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (1 samples, 0.01%)</title><rect x="73.3579%" y="293" width="0.0119%" height="15" fill="rgb(225,18,5)" fg:x="6176" fg:w="1"/><text x="73.6079%" y="303.50"></text></g><g><title>reqwest::async_impl::response::Response::bytes::_{{closure}} (1 samples, 0.01%)</title><rect x="73.3698%" y="1157" width="0.0119%" height="15" fill="rgb(213,204,8)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1167.50"></text></g><g><title>&lt;http_body_util::combinators::collect::Collect&lt;T&gt; as core::future::future::Future&gt;::poll (1 samples, 0.01%)</title><rect x="73.3698%" y="1141" width="0.0119%" height="15" fill="rgb(238,103,6)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1151.50"></text></g><g><title>&lt;reqwest::async_impl::decoder::Decoder as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="73.3698%" y="1125" width="0.0119%" height="15" fill="rgb(222,25,35)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1135.50"></text></g><g><title>&lt;reqwest::async_impl::decoder::Decoder as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="73.3698%" y="1109" width="0.0119%" height="15" fill="rgb(213,203,35)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1119.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="73.3698%" y="1093" width="0.0119%" height="15" fill="rgb(221,79,53)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1103.50"></text></g><g><title>&lt;futures_util::stream::stream::fuse::Fuse&lt;S&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="73.3698%" y="1077" width="0.0119%" height="15" fill="rgb(243,200,35)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1087.50"></text></g><g><title>&lt;tokio_util::codec::framed_read::FramedRead&lt;T,D&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="73.3698%" y="1061" width="0.0119%" height="15" fill="rgb(248,60,25)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1071.50"></text></g><g><title>&lt;tokio_util::codec::framed_impl::FramedImpl&lt;T,U,R&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="73.3698%" y="1045" width="0.0119%" height="15" fill="rgb(227,53,46)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1055.50"></text></g><g><title>tokio_util::util::poll_buf::poll_read_buf (1 samples, 0.01%)</title><rect x="73.3698%" y="1029" width="0.0119%" height="15" fill="rgb(216,120,32)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1039.50"></text></g><g><title>&lt;async_compression::tokio::bufread::GzipDecoder&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="73.3698%" y="1013" width="0.0119%" height="15" fill="rgb(220,134,1)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1023.50"></text></g><g><title>&lt;async_compression::tokio::bufread::generic::decoder::Decoder&lt;R,D&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="73.3698%" y="997" width="0.0119%" height="15" fill="rgb(237,168,5)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="1007.50"></text></g><g><title>async_compression::tokio::bufread::generic::decoder::Decoder&lt;R,D&gt;::do_poll_read (1 samples, 0.01%)</title><rect x="73.3698%" y="981" width="0.0119%" height="15" fill="rgb(231,100,33)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="991.50"></text></g><g><title>&lt;async_compression::codec::gzip::decoder::GzipDecoder as async_compression::codec::Decode&gt;::decode (1 samples, 0.01%)</title><rect x="73.3698%" y="965" width="0.0119%" height="15" fill="rgb(236,177,47)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="975.50"></text></g><g><title>async_compression::codec::gzip::decoder::GzipDecoder::process (1 samples, 0.01%)</title><rect x="73.3698%" y="949" width="0.0119%" height="15" fill="rgb(235,7,49)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="959.50"></text></g><g><title>&lt;async_compression::codec::gzip::decoder::GzipDecoder as async_compression::codec::Decode&gt;::decode::_{{closure}} (1 samples, 0.01%)</title><rect x="73.3698%" y="933" width="0.0119%" height="15" fill="rgb(232,119,22)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="943.50"></text></g><g><title>&lt;async_compression::codec::flate::decoder::FlateDecoder as async_compression::codec::Decode&gt;::decode (1 samples, 0.01%)</title><rect x="73.3698%" y="917" width="0.0119%" height="15" fill="rgb(254,73,53)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="927.50"></text></g><g><title>async_compression::codec::flate::decoder::FlateDecoder::decode (1 samples, 0.01%)</title><rect x="73.3698%" y="901" width="0.0119%" height="15" fill="rgb(251,35,20)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="911.50"></text></g><g><title>flate2::mem::Decompress::decompress (1 samples, 0.01%)</title><rect x="73.3698%" y="885" width="0.0119%" height="15" fill="rgb(241,119,20)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="895.50"></text></g><g><title>&lt;flate2::ffi::c::Inflate as flate2::ffi::InflateBackend&gt;::decompress (1 samples, 0.01%)</title><rect x="73.3698%" y="869" width="0.0119%" height="15" fill="rgb(207,102,14)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="879.50"></text></g><g><title>libz_rs_sys::inflate (1 samples, 0.01%)</title><rect x="73.3698%" y="853" width="0.0119%" height="15" fill="rgb(248,201,50)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="863.50"></text></g><g><title>zlib_rs::inflate::inflate (1 samples, 0.01%)</title><rect x="73.3698%" y="837" width="0.0119%" height="15" fill="rgb(222,185,44)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="847.50"></text></g><g><title>zlib_rs::inflate::State::dispatch (1 samples, 0.01%)</title><rect x="73.3698%" y="821" width="0.0119%" height="15" fill="rgb(218,107,18)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="831.50"></text></g><g><title>zlib_rs::inflate::inftrees::inflate_table (1 samples, 0.01%)</title><rect x="73.3698%" y="805" width="0.0119%" height="15" fill="rgb(237,177,39)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="815.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="73.3698%" y="789" width="0.0119%" height="15" fill="rgb(246,69,6)" fg:x="6177" fg:w="1"/><text x="73.6198%" y="799.50"></text></g><g><title>&lt;uv_pep508::marker::algebra::Node as core::clone::Clone&gt;::clone (2 samples, 0.02%)</title><rect x="73.3935%" y="469" width="0.0238%" height="15" fill="rgb(234,208,37)" fg:x="6179" fg:w="2"/><text x="73.6435%" y="479.50"></text></g><g><title>&lt;uv_pep508::marker::algebra::Edges as core::clone::Clone&gt;::clone (2 samples, 0.02%)</title><rect x="73.3935%" y="453" width="0.0238%" height="15" fill="rgb(225,4,6)" fg:x="6179" fg:w="2"/><text x="73.6435%" y="463.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.01%)</title><rect x="73.4054%" y="437" width="0.0119%" height="15" fill="rgb(233,45,0)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="447.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::convert::From&lt;&amp;[&lt;A as smallvec::Array&gt;::Item]&gt;&gt;::from (1 samples, 0.01%)</title><rect x="73.4054%" y="421" width="0.0119%" height="15" fill="rgb(226,136,5)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="431.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.01%)</title><rect x="73.4054%" y="405" width="0.0119%" height="15" fill="rgb(211,91,47)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="415.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::iter::traits::collect::FromIterator&lt;&lt;A as smallvec::Array&gt;::Item&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="73.4054%" y="389" width="0.0119%" height="15" fill="rgb(242,88,51)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="399.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::iter::traits::collect::Extend&lt;&lt;A as smallvec::Array&gt;::Item&gt;&gt;::extend (1 samples, 0.01%)</title><rect x="73.4054%" y="373" width="0.0119%" height="15" fill="rgb(230,91,28)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="383.50"></text></g><g><title>&lt;core::iter::adapters::cloned::Cloned&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="73.4054%" y="357" width="0.0119%" height="15" fill="rgb(254,186,29)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="367.50"></text></g><g><title>core::clone::Clone::clone (1 samples, 0.01%)</title><rect x="73.4054%" y="341" width="0.0119%" height="15" fill="rgb(238,6,4)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="351.50"></text></g><g><title>&lt;version_ranges::Ranges&lt;V&gt; as core::clone::Clone&gt;::clone (1 samples, 0.01%)</title><rect x="73.4054%" y="325" width="0.0119%" height="15" fill="rgb(221,151,16)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="335.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.01%)</title><rect x="73.4054%" y="309" width="0.0119%" height="15" fill="rgb(251,143,52)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="319.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::convert::From&lt;&amp;[&lt;A as smallvec::Array&gt;::Item]&gt;&gt;::from (1 samples, 0.01%)</title><rect x="73.4054%" y="293" width="0.0119%" height="15" fill="rgb(206,90,15)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="303.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.01%)</title><rect x="73.4054%" y="277" width="0.0119%" height="15" fill="rgb(218,35,8)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="287.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::iter::traits::collect::FromIterator&lt;&lt;A as smallvec::Array&gt;::Item&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="73.4054%" y="261" width="0.0119%" height="15" fill="rgb(239,215,6)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="271.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::iter::traits::collect::Extend&lt;&lt;A as smallvec::Array&gt;::Item&gt;&gt;::extend (1 samples, 0.01%)</title><rect x="73.4054%" y="245" width="0.0119%" height="15" fill="rgb(245,116,39)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="255.50"></text></g><g><title>&lt;core::iter::adapters::cloned::Cloned&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="73.4054%" y="229" width="0.0119%" height="15" fill="rgb(242,65,28)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="239.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="73.4054%" y="213" width="0.0119%" height="15" fill="rgb(252,132,53)" fg:x="6180" fg:w="1"/><text x="73.6554%" y="223.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (3 samples, 0.04%)</title><rect x="73.3935%" y="549" width="0.0356%" height="15" fill="rgb(224,159,50)" fg:x="6179" fg:w="3"/><text x="73.6435%" y="559.50"></text></g><g><title>core::ops::function::FnOnce::call_once (3 samples, 0.04%)</title><rect x="73.3935%" y="533" width="0.0356%" height="15" fill="rgb(224,93,4)" fg:x="6179" fg:w="3"/><text x="73.6435%" y="543.50"></text></g><g><title>uv_pep508::marker::tree::MarkerTree::expression (3 samples, 0.04%)</title><rect x="73.3935%" y="517" width="0.0356%" height="15" fill="rgb(208,81,34)" fg:x="6179" fg:w="3"/><text x="73.6435%" y="527.50"></text></g><g><title>uv_pep508::marker::algebra::InternerGuard::expression (3 samples, 0.04%)</title><rect x="73.3935%" y="501" width="0.0356%" height="15" fill="rgb(233,92,54)" fg:x="6179" fg:w="3"/><text x="73.6435%" y="511.50"></text></g><g><title>uv_pep508::marker::algebra::InternerGuard::create_node (3 samples, 0.04%)</title><rect x="73.3935%" y="485" width="0.0356%" height="15" fill="rgb(237,21,14)" fg:x="6179" fg:w="3"/><text x="73.6435%" y="495.50"></text></g><g><title>uv_pep508::marker::algebra::Node::not (1 samples, 0.01%)</title><rect x="73.4173%" y="469" width="0.0119%" height="15" fill="rgb(249,128,51)" fg:x="6181" fg:w="1"/><text x="73.6673%" y="479.50"></text></g><g><title>uv_pep508::marker::algebra::Edges::not (1 samples, 0.01%)</title><rect x="73.4173%" y="453" width="0.0119%" height="15" fill="rgb(223,129,24)" fg:x="6181" fg:w="1"/><text x="73.6673%" y="463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.01%)</title><rect x="73.4173%" y="437" width="0.0119%" height="15" fill="rgb(231,168,25)" fg:x="6181" fg:w="1"/><text x="73.6673%" y="447.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::iter::traits::collect::FromIterator&lt;&lt;A as smallvec::Array&gt;::Item&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="73.4173%" y="421" width="0.0119%" height="15" fill="rgb(224,39,20)" fg:x="6181" fg:w="1"/><text x="73.6673%" y="431.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::iter::traits::collect::Extend&lt;&lt;A as smallvec::Array&gt;::Item&gt;&gt;::extend (1 samples, 0.01%)</title><rect x="73.4173%" y="405" width="0.0119%" height="15" fill="rgb(225,152,53)" fg:x="6181" fg:w="1"/><text x="73.6673%" y="415.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="73.4173%" y="389" width="0.0119%" height="15" fill="rgb(252,17,24)" fg:x="6181" fg:w="1"/><text x="73.6673%" y="399.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="73.4173%" y="373" width="0.0119%" height="15" fill="rgb(250,114,30)" fg:x="6181" fg:w="1"/><text x="73.6673%" y="383.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (6 samples, 0.07%)</title><rect x="73.3698%" y="1205" width="0.0713%" height="15" fill="rgb(229,5,4)" fg:x="6177" fg:w="6"/><text x="73.6198%" y="1215.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_serde_with_retry::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (6 samples, 0.07%)</title><rect x="73.3698%" y="1189" width="0.0713%" height="15" fill="rgb(225,176,49)" fg:x="6177" fg:w="6"/><text x="73.6198%" y="1199.50"></text></g><g><title>uv_client::registry_client::RegistryClient::wheel_metadata_registry::_{{closure}}::_{{closure}}::_{{closure}} (6 samples, 0.07%)</title><rect x="73.3698%" y="1173" width="0.0713%" height="15" fill="rgb(224,221,49)" fg:x="6177" fg:w="6"/><text x="73.6198%" y="1183.50"></text></g><g><title>tracing::span::Span::in_scope (5 samples, 0.06%)</title><rect x="73.3816%" y="1157" width="0.0594%" height="15" fill="rgb(253,169,27)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1167.50"></text></g><g><title>uv_client::registry_client::RegistryClient::wheel_metadata_registry::_{{closure}}::_{{closure}}::_{{closure}}::_{{closure}} (5 samples, 0.06%)</title><rect x="73.3816%" y="1141" width="0.0594%" height="15" fill="rgb(211,206,16)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1151.50"></text></g><g><title>uv_pypi_types::metadata::metadata_resolver::ResolutionMetadata::parse_metadata (5 samples, 0.06%)</title><rect x="73.3816%" y="1125" width="0.0594%" height="15" fill="rgb(244,87,35)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1135.50"></text></g><g><title>&lt;itertools::adaptors::map::MapSpecialCase&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::collect (5 samples, 0.06%)</title><rect x="73.3816%" y="1109" width="0.0594%" height="15" fill="rgb(246,28,10)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (5 samples, 0.06%)</title><rect x="73.3816%" y="1093" width="0.0594%" height="15" fill="rgb(229,12,44)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1103.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter (5 samples, 0.06%)</title><rect x="73.3816%" y="1077" width="0.0594%" height="15" fill="rgb(210,145,37)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1087.50"></text></g><g><title>core::iter::adapters::try_process (5 samples, 0.06%)</title><rect x="73.3816%" y="1061" width="0.0594%" height="15" fill="rgb(227,112,52)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1071.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter::_{{closure}} (5 samples, 0.06%)</title><rect x="73.3816%" y="1045" width="0.0594%" height="15" fill="rgb(238,155,34)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1055.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (5 samples, 0.06%)</title><rect x="73.3816%" y="1029" width="0.0594%" height="15" fill="rgb(239,226,36)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1039.50"></text></g><g><title>alloc::boxed::iter::_&lt;impl core::iter::traits::collect::FromIterator&lt;I&gt; for alloc::boxed::Box&lt;[I]&gt;&gt;::from_iter (5 samples, 0.06%)</title><rect x="73.3816%" y="1013" width="0.0594%" height="15" fill="rgb(230,16,23)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1023.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (5 samples, 0.06%)</title><rect x="73.3816%" y="997" width="0.0594%" height="15" fill="rgb(236,171,36)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (5 samples, 0.06%)</title><rect x="73.3816%" y="981" width="0.0594%" height="15" fill="rgb(221,22,14)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="991.50"></text></g><g><title>alloc::vec::in_place_collect::_&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (5 samples, 0.06%)</title><rect x="73.3816%" y="965" width="0.0594%" height="15" fill="rgb(242,43,11)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter{{reify.shim}} (5 samples, 0.06%)</title><rect x="73.3816%" y="949" width="0.0594%" height="15" fill="rgb(232,69,23)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (5 samples, 0.06%)</title><rect x="73.3816%" y="933" width="0.0594%" height="15" fill="rgb(216,180,54)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (5 samples, 0.06%)</title><rect x="73.3816%" y="917" width="0.0594%" height="15" fill="rgb(216,5,24)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (5 samples, 0.06%)</title><rect x="73.3816%" y="901" width="0.0594%" height="15" fill="rgb(225,89,9)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="911.50"></text></g><g><title>&lt;core::iter::adapters::GenericShunt&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.06%)</title><rect x="73.3816%" y="885" width="0.0594%" height="15" fill="rgb(243,75,33)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="895.50"></text></g><g><title>&lt;core::iter::adapters::GenericShunt&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.06%)</title><rect x="73.3816%" y="869" width="0.0594%" height="15" fill="rgb(247,141,45)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="879.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.06%)</title><rect x="73.3816%" y="853" width="0.0594%" height="15" fill="rgb(232,177,36)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.06%)</title><rect x="73.3816%" y="837" width="0.0594%" height="15" fill="rgb(219,125,36)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="847.50"></text></g><g><title>&lt;core::iter::adapters::filter::Filter&lt;I,P&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.06%)</title><rect x="73.3816%" y="821" width="0.0594%" height="15" fill="rgb(227,94,9)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="831.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.06%)</title><rect x="73.3816%" y="805" width="0.0594%" height="15" fill="rgb(240,34,52)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="815.50"></text></g><g><title>core::iter::adapters::filter::filter_try_fold::_{{closure}} (5 samples, 0.06%)</title><rect x="73.3816%" y="789" width="0.0594%" height="15" fill="rgb(216,45,12)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="799.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.06%)</title><rect x="73.3816%" y="773" width="0.0594%" height="15" fill="rgb(246,21,19)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="783.50"></text></g><g><title>uv_pypi_types::metadata::metadata_resolver::ResolutionMetadata::parse_metadata::_{{closure}} (5 samples, 0.06%)</title><rect x="73.3816%" y="757" width="0.0594%" height="15" fill="rgb(213,98,42)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="767.50"></text></g><g><title>&lt;uv_pypi_types::lenient_requirement::LenientRequirement&lt;T&gt; as core::str::traits::FromStr&gt;::from_str (5 samples, 0.06%)</title><rect x="73.3816%" y="741" width="0.0594%" height="15" fill="rgb(250,136,47)" fg:x="6178" fg:w="5"/><text x="73.6316%" y="751.50"></text></g><g><title>uv_pypi_types::lenient_requirement::parse_with_fixups (4 samples, 0.05%)</title><rect x="73.3935%" y="725" width="0.0475%" height="15" fill="rgb(251,124,27)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="735.50"></text></g><g><title>&lt;uv_pep508::Requirement&lt;T&gt; as core::str::traits::FromStr&gt;::from_str (4 samples, 0.05%)</title><rect x="73.3935%" y="709" width="0.0475%" height="15" fill="rgb(229,180,14)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="719.50"></text></g><g><title>uv_pep508::parse_pep508_requirement (4 samples, 0.05%)</title><rect x="73.3935%" y="693" width="0.0475%" height="15" fill="rgb(245,216,25)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="703.50"></text></g><g><title>uv_pep508::marker::parse::parse_markers_cursor (4 samples, 0.05%)</title><rect x="73.3935%" y="677" width="0.0475%" height="15" fill="rgb(251,43,5)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="687.50"></text></g><g><title>uv_pep508::marker::parse::parse_marker_or (4 samples, 0.05%)</title><rect x="73.3935%" y="661" width="0.0475%" height="15" fill="rgb(250,128,24)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="671.50"></text></g><g><title>uv_pep508::marker::parse::parse_marker_op (4 samples, 0.05%)</title><rect x="73.3935%" y="645" width="0.0475%" height="15" fill="rgb(217,117,27)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="655.50"></text></g><g><title>core::ops::function::FnOnce::call_once (4 samples, 0.05%)</title><rect x="73.3935%" y="629" width="0.0475%" height="15" fill="rgb(245,147,4)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="639.50"></text></g><g><title>uv_pep508::marker::parse::parse_marker_or::_{{closure}} (4 samples, 0.05%)</title><rect x="73.3935%" y="613" width="0.0475%" height="15" fill="rgb(242,201,35)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="623.50"></text></g><g><title>uv_pep508::marker::parse::parse_marker_and (4 samples, 0.05%)</title><rect x="73.3935%" y="597" width="0.0475%" height="15" fill="rgb(218,181,1)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="607.50"></text></g><g><title>uv_pep508::marker::parse::parse_marker_op (4 samples, 0.05%)</title><rect x="73.3935%" y="581" width="0.0475%" height="15" fill="rgb(222,6,29)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="591.50"></text></g><g><title>uv_pep508::marker::parse::parse_marker_expr (4 samples, 0.05%)</title><rect x="73.3935%" y="565" width="0.0475%" height="15" fill="rgb(208,186,3)" fg:x="6179" fg:w="4"/><text x="73.6435%" y="575.50"></text></g><g><title>uv_pep508::marker::parse::parse_marker_key_op_value (1 samples, 0.01%)</title><rect x="73.4291%" y="549" width="0.0119%" height="15" fill="rgb(216,36,26)" fg:x="6182" fg:w="1"/><text x="73.6791%" y="559.50"></text></g><g><title>uv_pep508::marker::parse::parse_marker_operator (1 samples, 0.01%)</title><rect x="73.4291%" y="533" width="0.0119%" height="15" fill="rgb(248,201,23)" fg:x="6182" fg:w="1"/><text x="73.6791%" y="543.50"></text></g><g><title>uv_pep508::cursor::Cursor::take_while (1 samples, 0.01%)</title><rect x="73.4291%" y="517" width="0.0119%" height="15" fill="rgb(251,170,31)" fg:x="6182" fg:w="1"/><text x="73.6791%" y="527.50"></text></g><g><title>uv_pep508::marker::parse::parse_marker_operator::_{{closure}} (1 samples, 0.01%)</title><rect x="73.4291%" y="501" width="0.0119%" height="15" fill="rgb(207,110,25)" fg:x="6182" fg:w="1"/><text x="73.6791%" y="511.50"></text></g><g><title>&lt;uv_client::cached_client::SerdeCacheable&lt;T&gt; as uv_client::cached_client::Cacheable&gt;::to_bytes (1 samples, 0.01%)</title><rect x="73.4410%" y="1173" width="0.0119%" height="15" fill="rgb(250,54,15)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1183.50"></text></g><g><title>rmp_serde::encode::to_vec (1 samples, 0.01%)</title><rect x="73.4410%" y="1157" width="0.0119%" height="15" fill="rgb(227,68,33)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1167.50"></text></g><g><title>rmp_serde::encode::write (1 samples, 0.01%)</title><rect x="73.4410%" y="1141" width="0.0119%" height="15" fill="rgb(238,34,41)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1151.50"></text></g><g><title>uv_pypi_types::metadata::metadata_resolver::_::_&lt;impl serde::ser::Serialize for uv_pypi_types::metadata::metadata_resolver::ResolutionMetadata&gt;::serialize (1 samples, 0.01%)</title><rect x="73.4410%" y="1125" width="0.0119%" height="15" fill="rgb(220,11,15)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1135.50"></text></g><g><title>&lt;rmp_serde::encode::Compound&lt;W,C&gt; as serde::ser::SerializeStruct&gt;::serialize_field (1 samples, 0.01%)</title><rect x="73.4410%" y="1109" width="0.0119%" height="15" fill="rgb(246,111,35)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1119.50"></text></g><g><title>serde::ser::impls::_&lt;impl serde::ser::Serialize for alloc::boxed::Box&lt;T&gt;&gt;::serialize (1 samples, 0.01%)</title><rect x="73.4410%" y="1093" width="0.0119%" height="15" fill="rgb(209,88,53)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1103.50"></text></g><g><title>serde::ser::impls::_&lt;impl serde::ser::Serialize for [T]&gt;::serialize (1 samples, 0.01%)</title><rect x="73.4410%" y="1077" width="0.0119%" height="15" fill="rgb(231,185,47)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1087.50"></text></g><g><title>&lt;&amp;mut rmp_serde::encode::Serializer&lt;W,C&gt; as serde::ser::Serializer&gt;::collect_seq (1 samples, 0.01%)</title><rect x="73.4410%" y="1061" width="0.0119%" height="15" fill="rgb(233,154,1)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1071.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_for_each (1 samples, 0.01%)</title><rect x="73.4410%" y="1045" width="0.0119%" height="15" fill="rgb(225,15,46)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1055.50"></text></g><g><title>&lt;core::iter::adapters::peekable::Peekable&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1 samples, 0.01%)</title><rect x="73.4410%" y="1029" width="0.0119%" height="15" fill="rgb(211,135,41)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1039.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (1 samples, 0.01%)</title><rect x="73.4410%" y="1013" width="0.0119%" height="15" fill="rgb(208,54,0)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1023.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_for_each::call::_{{closure}} (1 samples, 0.01%)</title><rect x="73.4410%" y="997" width="0.0119%" height="15" fill="rgb(244,136,14)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="1007.50"></text></g><g><title>&lt;&amp;mut rmp_serde::encode::Serializer&lt;W,C&gt; as serde::ser::Serializer&gt;::collect_seq::_{{closure}} (1 samples, 0.01%)</title><rect x="73.4410%" y="981" width="0.0119%" height="15" fill="rgb(241,56,14)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="991.50"></text></g><g><title>&lt;rmp_serde::encode::MaybeUnknownLengthCompound&lt;W,C&gt; as serde::ser::SerializeSeq&gt;::serialize_element (1 samples, 0.01%)</title><rect x="73.4410%" y="965" width="0.0119%" height="15" fill="rgb(205,80,24)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="975.50"></text></g><g><title>serde::ser::impls::_&lt;impl serde::ser::Serialize for &amp;T&gt;::serialize (1 samples, 0.01%)</title><rect x="73.4410%" y="949" width="0.0119%" height="15" fill="rgb(220,57,4)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="959.50"></text></g><g><title>&lt;uv_pep508::Requirement&lt;T&gt; as serde::ser::Serialize&gt;::serialize (1 samples, 0.01%)</title><rect x="73.4410%" y="933" width="0.0119%" height="15" fill="rgb(226,193,50)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="943.50"></text></g><g><title>serde::ser::Serializer::collect_str (1 samples, 0.01%)</title><rect x="73.4410%" y="917" width="0.0119%" height="15" fill="rgb(231,168,22)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="927.50"></text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (1 samples, 0.01%)</title><rect x="73.4410%" y="901" width="0.0119%" height="15" fill="rgb(254,215,14)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="911.50"></text></g><g><title>&lt;T as alloc::string::SpecToString&gt;::spec_to_string (1 samples, 0.01%)</title><rect x="73.4410%" y="885" width="0.0119%" height="15" fill="rgb(211,115,16)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="895.50"></text></g><g><title>&lt;uv_pep508::Requirement&lt;T&gt; as core::fmt::Display&gt;::fmt (1 samples, 0.01%)</title><rect x="73.4410%" y="869" width="0.0119%" height="15" fill="rgb(236,210,16)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="879.50"></text></g><g><title>&lt;uv_pep508::RequirementDisplay&lt;T&gt; as core::fmt::Display&gt;::fmt (1 samples, 0.01%)</title><rect x="73.4410%" y="853" width="0.0119%" height="15" fill="rgb(221,94,12)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="863.50"></text></g><g><title>core::fmt::Formatter::write_fmt (1 samples, 0.01%)</title><rect x="73.4410%" y="837" width="0.0119%" height="15" fill="rgb(235,218,49)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="847.50"></text></g><g><title>core::fmt::write (1 samples, 0.01%)</title><rect x="73.4410%" y="821" width="0.0119%" height="15" fill="rgb(217,114,14)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="831.50"></text></g><g><title>&lt;uv_pep508::marker::tree::MarkerTreeContents as core::fmt::Display&gt;::fmt (1 samples, 0.01%)</title><rect x="73.4410%" y="805" width="0.0119%" height="15" fill="rgb(216,145,22)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="815.50"></text></g><g><title>&lt;uv_pep508::marker::tree::MarkerTreeContents as core::fmt::Display&gt;::fmt::_{{closure}} (1 samples, 0.01%)</title><rect x="73.4410%" y="789" width="0.0119%" height="15" fill="rgb(217,112,39)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="799.50"></text></g><g><title>alloc::slice::_&lt;impl [T]&gt;::join (1 samples, 0.01%)</title><rect x="73.4410%" y="773" width="0.0119%" height="15" fill="rgb(225,85,32)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="783.50"></text></g><g><title>alloc::str::_&lt;impl alloc::slice::Join&lt;&amp;str&gt; for [S]&gt;::join (1 samples, 0.01%)</title><rect x="73.4410%" y="757" width="0.0119%" height="15" fill="rgb(245,209,47)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="767.50"></text></g><g><title>alloc::str::join_generic_copy (1 samples, 0.01%)</title><rect x="73.4410%" y="741" width="0.0119%" height="15" fill="rgb(218,220,15)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="751.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (1 samples, 0.01%)</title><rect x="73.4410%" y="725" width="0.0119%" height="15" fill="rgb(222,202,31)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="735.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (1 samples, 0.01%)</title><rect x="73.4410%" y="709" width="0.0119%" height="15" fill="rgb(243,203,4)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="719.50"></text></g><g><title>alloc::str::join_generic_copy::_{{closure}}::_{{closure}} (1 samples, 0.01%)</title><rect x="73.4410%" y="693" width="0.0119%" height="15" fill="rgb(237,92,17)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="703.50"></text></g><g><title>alloc::str::_&lt;impl core::borrow::Borrow&lt;str&gt; for alloc::string::String&gt;::borrow (1 samples, 0.01%)</title><rect x="73.4410%" y="677" width="0.0119%" height="15" fill="rgb(231,119,7)" fg:x="6183" fg:w="1"/><text x="73.6910%" y="687.50"></text></g><g><title>uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::get_or_build_wheel_metadata::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1445" width="0.1307%" height="15" fill="rgb(237,82,41)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1455.50"></text></g><g><title>uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::get_or_build_wheel_metadata::_{{closure}}::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1429" width="0.1307%" height="15" fill="rgb(226,81,48)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1439.50"></text></g><g><title>uv_distribution::distribution_database::DistributionDatabase&lt;Context&gt;::get_wheel_metadata::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1413" width="0.1307%" height="15" fill="rgb(234,70,51)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1423.50"></text></g><g><title>uv_distribution::distribution_database::ManagedClient::managed::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1397" width="0.1307%" height="15" fill="rgb(251,86,4)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1407.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (11 samples, 0.13%)</title><rect x="73.3460%" y="1381" width="0.1307%" height="15" fill="rgb(244,144,28)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1391.50"></text></g><g><title>uv_client::registry_client::RegistryClient::wheel_metadata::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1365" width="0.1307%" height="15" fill="rgb(232,161,39)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1375.50"></text></g><g><title>uv_client::registry_client::RegistryClient::wheel_metadata::_{{closure}}::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1349" width="0.1307%" height="15" fill="rgb(247,34,51)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1359.50"></text></g><g><title>uv_client::registry_client::RegistryClient::wheel_metadata_registry::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1333" width="0.1307%" height="15" fill="rgb(225,132,2)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1343.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_serde_with_retry::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1317" width="0.1307%" height="15" fill="rgb(209,159,44)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1327.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_serde_with_retry::_{{closure}}::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1301" width="0.1307%" height="15" fill="rgb(251,214,1)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1311.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable_with_retry::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1285" width="0.1307%" height="15" fill="rgb(247,84,47)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1295.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable_with_retry::_{{closure}}::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1269" width="0.1307%" height="15" fill="rgb(240,111,43)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1279.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1253" width="0.1307%" height="15" fill="rgb(215,214,35)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1263.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable::_{{closure}}::_{{closure}} (11 samples, 0.13%)</title><rect x="73.3460%" y="1237" width="0.1307%" height="15" fill="rgb(248,207,23)" fg:x="6175" fg:w="11"/><text x="73.5960%" y="1247.50"></text></g><g><title>uv_client::cached_client::CachedClient::run_response_callback::_{{closure}} (9 samples, 0.11%)</title><rect x="73.3698%" y="1221" width="0.1069%" height="15" fill="rgb(214,186,4)" fg:x="6177" fg:w="9"/><text x="73.6198%" y="1231.50"></text></g><g><title>&lt;tracing::instrument::Instrumented&lt;T&gt; as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.4410%" y="1205" width="0.0356%" height="15" fill="rgb(220,133,22)" fg:x="6183" fg:w="3"/><text x="73.6910%" y="1215.50"></text></g><g><title>uv_client::cached_client::CachedClient::run_response_callback::_{{closure}}::_{{closure}} (3 samples, 0.04%)</title><rect x="73.4410%" y="1189" width="0.0356%" height="15" fill="rgb(239,134,19)" fg:x="6183" fg:w="3"/><text x="73.6910%" y="1199.50"></text></g><g><title>uv_fs::write_atomic::_{{closure}} (2 samples, 0.02%)</title><rect x="73.4529%" y="1173" width="0.0238%" height="15" fill="rgb(250,140,9)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1183.50"></text></g><g><title>uv_fs::tempfile_in (2 samples, 0.02%)</title><rect x="73.4529%" y="1157" width="0.0238%" height="15" fill="rgb(225,59,14)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1167.50"></text></g><g><title>tempfile::Builder::tempfile_in (2 samples, 0.02%)</title><rect x="73.4529%" y="1141" width="0.0238%" height="15" fill="rgb(214,152,51)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1151.50"></text></g><g><title>tempfile::util::create_helper (2 samples, 0.02%)</title><rect x="73.4529%" y="1125" width="0.0238%" height="15" fill="rgb(251,227,43)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1135.50"></text></g><g><title>tempfile::Builder::tempfile_in::_{{closure}} (2 samples, 0.02%)</title><rect x="73.4529%" y="1109" width="0.0238%" height="15" fill="rgb(241,96,17)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1119.50"></text></g><g><title>tempfile::file::create_named (2 samples, 0.02%)</title><rect x="73.4529%" y="1093" width="0.0238%" height="15" fill="rgb(234,198,43)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1103.50"></text></g><g><title>tempfile::file::imp::platform::create_named (2 samples, 0.02%)</title><rect x="73.4529%" y="1077" width="0.0238%" height="15" fill="rgb(220,108,29)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1087.50"></text></g><g><title>std::fs::OpenOptions::open (2 samples, 0.02%)</title><rect x="73.4529%" y="1061" width="0.0238%" height="15" fill="rgb(226,163,33)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1071.50"></text></g><g><title>std::fs::OpenOptions::_open (2 samples, 0.02%)</title><rect x="73.4529%" y="1045" width="0.0238%" height="15" fill="rgb(205,194,45)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1055.50"></text></g><g><title>__open (2 samples, 0.02%)</title><rect x="73.4529%" y="1029" width="0.0238%" height="15" fill="rgb(206,143,44)" fg:x="6184" fg:w="2"/><text x="73.7029%" y="1039.50"></text></g><g><title>&lt;uv_resolver::resolver::provider::DefaultResolverProvider&lt;Context&gt; as uv_resolver::resolver::provider::ResolverProvider&gt;::get_or_build_wheel_metadata::_{{closure}} (12 samples, 0.14%)</title><rect x="73.3460%" y="1461" width="0.1425%" height="15" fill="rgb(236,136,36)" fg:x="6175" fg:w="12"/><text x="73.5960%" y="1471.50"></text></g><g><title>uv_types::hash::HashStrategy::get (1 samples, 0.01%)</title><rect x="73.4767%" y="1445" width="0.0119%" height="15" fill="rgb(249,172,42)" fg:x="6186" fg:w="1"/><text x="73.7267%" y="1455.50"></text></g><g><title>uv_distribution_types::traits::DistributionMetadata::version_id (1 samples, 0.01%)</title><rect x="73.4767%" y="1429" width="0.0119%" height="15" fill="rgb(216,139,23)" fg:x="6186" fg:w="1"/><text x="73.7267%" y="1439.50"></text></g><g><title>&lt;uv_distribution_types::Dist as uv_distribution_types::traits::DistributionMetadata&gt;::version_or_url (1 samples, 0.01%)</title><rect x="73.4767%" y="1413" width="0.0119%" height="15" fill="rgb(207,166,20)" fg:x="6186" fg:w="1"/><text x="73.7267%" y="1423.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.01%)</title><rect x="73.4885%" y="1445" width="0.0119%" height="15" fill="rgb(210,209,22)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1455.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="73.4885%" y="1429" width="0.0119%" height="15" fill="rgb(232,118,20)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1439.50"></text></g><g><title>alloc::vec::in_place_collect::_&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="73.4885%" y="1413" width="0.0119%" height="15" fill="rgb(238,113,42)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1423.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter{{reify.shim}} (1 samples, 0.01%)</title><rect x="73.4885%" y="1397" width="0.0119%" height="15" fill="rgb(231,42,5)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1407.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.01%)</title><rect x="73.4885%" y="1381" width="0.0119%" height="15" fill="rgb(243,166,24)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1391.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (1 samples, 0.01%)</title><rect x="73.4885%" y="1365" width="0.0119%" height="15" fill="rgb(237,226,12)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1375.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (1 samples, 0.01%)</title><rect x="73.4885%" y="1349" width="0.0119%" height="15" fill="rgb(229,133,24)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1359.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.01%)</title><rect x="73.4885%" y="1333" width="0.0119%" height="15" fill="rgb(238,33,43)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1343.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.01%)</title><rect x="73.4885%" y="1317" width="0.0119%" height="15" fill="rgb(227,59,38)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1327.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.01%)</title><rect x="73.4885%" y="1301" width="0.0119%" height="15" fill="rgb(230,97,0)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1311.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (1 samples, 0.01%)</title><rect x="73.4885%" y="1285" width="0.0119%" height="15" fill="rgb(250,173,50)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1295.50"></text></g><g><title>&lt;uv_resolver::resolver::provider::DefaultResolverProvider&lt;Context&gt; as uv_resolver::resolver::provider::ResolverProvider&gt;::get_package_versions::_{{closure}}::_{{closure}} (1 samples, 0.01%)</title><rect x="73.4885%" y="1269" width="0.0119%" height="15" fill="rgb(240,15,50)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1279.50"></text></g><g><title>uv_resolver::version_map::VersionMap::from_simple_metadata (1 samples, 0.01%)</title><rect x="73.4885%" y="1253" width="0.0119%" height="15" fill="rgb(221,93,22)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1263.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::insert (1 samples, 0.01%)</title><rect x="73.4885%" y="1237" width="0.0119%" height="15" fill="rgb(245,180,53)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1247.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::entry (1 samples, 0.01%)</title><rect x="73.4885%" y="1221" width="0.0119%" height="15" fill="rgb(231,88,51)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1231.50"></text></g><g><title>alloc::collections::btree::search::_&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::search_tree (1 samples, 0.01%)</title><rect x="73.4885%" y="1205" width="0.0119%" height="15" fill="rgb(240,58,21)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1215.50"></text></g><g><title>alloc::collections::btree::search::_&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;&gt;::find_key_index (1 samples, 0.01%)</title><rect x="73.4885%" y="1189" width="0.0119%" height="15" fill="rgb(237,21,10)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1199.50"></text></g><g><title>&lt;uv_pep440::version::Version as core::cmp::Ord&gt;::cmp (1 samples, 0.01%)</title><rect x="73.4885%" y="1173" width="0.0119%" height="15" fill="rgb(218,43,11)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1183.50"></text></g><g><title>core::cmp::impls::_&lt;impl core::cmp::Ord for u64&gt;::cmp (1 samples, 0.01%)</title><rect x="73.4885%" y="1157" width="0.0119%" height="15" fill="rgb(218,221,29)" fg:x="6187" fg:w="1"/><text x="73.7385%" y="1167.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.01%)</title><rect x="73.5004%" y="1285" width="0.0119%" height="15" fill="rgb(214,118,42)" fg:x="6188" fg:w="1"/><text x="73.7504%" y="1295.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.01%)</title><rect x="73.5004%" y="1269" width="0.0119%" height="15" fill="rgb(251,200,26)" fg:x="6188" fg:w="1"/><text x="73.7504%" y="1279.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.01%)</title><rect x="73.5004%" y="1253" width="0.0119%" height="15" fill="rgb(237,101,39)" fg:x="6188" fg:w="1"/><text x="73.7504%" y="1263.50"></text></g><g><title>core::ptr::read_volatile (1 samples, 0.01%)</title><rect x="73.5004%" y="1237" width="0.0119%" height="15" fill="rgb(251,117,11)" fg:x="6188" fg:w="1"/><text x="73.7504%" y="1247.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::count_ones (1 samples, 0.01%)</title><rect x="73.5004%" y="1221" width="0.0119%" height="15" fill="rgb(216,223,23)" fg:x="6188" fg:w="1"/><text x="73.7504%" y="1231.50"></text></g><g><title>&lt;futures_util::future::either::Either&lt;A,B&gt; as core::future::future::Future&gt;::poll (1 samples, 0.01%)</title><rect x="73.5123%" y="837" width="0.0119%" height="15" fill="rgb(251,54,12)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="847.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (1 samples, 0.01%)</title><rect x="73.5123%" y="821" width="0.0119%" height="15" fill="rgb(254,176,54)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="831.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::connect_to::_{{closure}}::_{{closure}}::_{{closure}} (1 samples, 0.01%)</title><rect x="73.5123%" y="805" width="0.0119%" height="15" fill="rgb(210,32,8)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="815.50"></text></g><g><title>hyper::client::conn::http2::Builder&lt;Ex&gt;::handshake::_{{closure}} (1 samples, 0.01%)</title><rect x="73.5123%" y="789" width="0.0119%" height="15" fill="rgb(235,52,38)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="799.50"></text></g><g><title>hyper::proto::h2::client::handshake::_{{closure}} (1 samples, 0.01%)</title><rect x="73.5123%" y="773" width="0.0119%" height="15" fill="rgb(231,4,44)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="783.50"></text></g><g><title>h2::client::Connection&lt;T,B&gt;::handshake2::_{{closure}} (1 samples, 0.01%)</title><rect x="73.5123%" y="757" width="0.0119%" height="15" fill="rgb(249,2,32)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="767.50"></text></g><g><title>h2::codec::Codec&lt;T,B&gt;::new (1 samples, 0.01%)</title><rect x="73.5123%" y="741" width="0.0119%" height="15" fill="rgb(224,65,26)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="751.50"></text></g><g><title>h2::codec::Codec&lt;T,B&gt;::with_max_recv_frame_size (1 samples, 0.01%)</title><rect x="73.5123%" y="725" width="0.0119%" height="15" fill="rgb(250,73,40)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="735.50"></text></g><g><title>h2::codec::framed_write::FramedWrite&lt;T,B&gt;::new (1 samples, 0.01%)</title><rect x="73.5123%" y="709" width="0.0119%" height="15" fill="rgb(253,177,16)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="719.50"></text></g><g><title>&lt;h2::hpack::encoder::Encoder as core::default::Default&gt;::default (1 samples, 0.01%)</title><rect x="73.5123%" y="693" width="0.0119%" height="15" fill="rgb(217,32,34)" fg:x="6189" fg:w="1"/><text x="73.7623%" y="703.50"></text></g><g><title>&lt;tokio_rustls::Connect&lt;IO&gt; as core::future::future::Future&gt;::poll (1 samples, 0.01%)</title><rect x="73.5242%" y="581" width="0.0119%" height="15" fill="rgb(212,7,10)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="591.50"></text></g><g><title>&lt;tokio_rustls::common::handshake::MidHandshake&lt;IS&gt; as core::future::future::Future&gt;::poll (1 samples, 0.01%)</title><rect x="73.5242%" y="565" width="0.0119%" height="15" fill="rgb(245,89,8)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="575.50"></text></g><g><title>tokio_rustls::common::Stream&lt;IO,C&gt;::handshake (1 samples, 0.01%)</title><rect x="73.5242%" y="549" width="0.0119%" height="15" fill="rgb(237,16,53)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="559.50"></text></g><g><title>tokio_rustls::common::Stream&lt;IO,C&gt;::read_io (1 samples, 0.01%)</title><rect x="73.5242%" y="533" width="0.0119%" height="15" fill="rgb(250,204,30)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="543.50"></text></g><g><title>rustls::conn::ConnectionCommon&lt;Data&gt;::process_new_packets (1 samples, 0.01%)</title><rect x="73.5242%" y="517" width="0.0119%" height="15" fill="rgb(208,77,27)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="527.50"></text></g><g><title>rustls::conn::ConnectionCore&lt;Data&gt;::process_new_packets (1 samples, 0.01%)</title><rect x="73.5242%" y="501" width="0.0119%" height="15" fill="rgb(250,204,28)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="511.50"></text></g><g><title>rustls::conn::ConnectionCore&lt;Data&gt;::process_msg (1 samples, 0.01%)</title><rect x="73.5242%" y="485" width="0.0119%" height="15" fill="rgb(244,63,21)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="495.50"></text></g><g><title>rustls::common_state::CommonState::process_main_protocol (1 samples, 0.01%)</title><rect x="73.5242%" y="469" width="0.0119%" height="15" fill="rgb(236,85,44)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="479.50"></text></g><g><title>&lt;rustls::client::hs::ExpectServerHelloOrHelloRetryRequest as rustls::common_state::State&lt;rustls::client::client_conn::ClientConnectionData&gt;&gt;::handle (1 samples, 0.01%)</title><rect x="73.5242%" y="453" width="0.0119%" height="15" fill="rgb(215,98,4)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="463.50"></text></g><g><title>&lt;rustls::client::hs::ExpectServerHello as rustls::common_state::State&lt;rustls::client::client_conn::ClientConnectionData&gt;&gt;::handle (1 samples, 0.01%)</title><rect x="73.5242%" y="437" width="0.0119%" height="15" fill="rgb(235,38,11)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="447.50"></text></g><g><title>rustls::client::tls13::handle_server_hello (1 samples, 0.01%)</title><rect x="73.5242%" y="421" width="0.0119%" height="15" fill="rgb(254,186,25)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="431.50"></text></g><g><title>rustls::client::tls13::KeyExchangeChoice::complete (1 samples, 0.01%)</title><rect x="73.5242%" y="405" width="0.0119%" height="15" fill="rgb(225,55,31)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="415.50"></text></g><g><title>&lt;rustls::crypto::ring::kx::KeyExchange as rustls::crypto::ActiveKeyExchange&gt;::complete (1 samples, 0.01%)</title><rect x="73.5242%" y="389" width="0.0119%" height="15" fill="rgb(211,15,21)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="399.50"></text></g><g><title>rustls::crypto::ring::ring_shim::agree_ephemeral (1 samples, 0.01%)</title><rect x="73.5242%" y="373" width="0.0119%" height="15" fill="rgb(215,187,41)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="383.50"></text></g><g><title>ring::agreement::agree_ephemeral (1 samples, 0.01%)</title><rect x="73.5242%" y="357" width="0.0119%" height="15" fill="rgb(248,69,32)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="367.50"></text></g><g><title>ring::agreement::agree_ephemeral_ (1 samples, 0.01%)</title><rect x="73.5242%" y="341" width="0.0119%" height="15" fill="rgb(252,102,52)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="351.50"></text></g><g><title>ring::ec::curve25519::x25519::x25519_ecdh (1 samples, 0.01%)</title><rect x="73.5242%" y="325" width="0.0119%" height="15" fill="rgb(253,140,32)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="335.50"></text></g><g><title>ring::ec::curve25519::x25519::x25519_ecdh::scalar_mult (1 samples, 0.01%)</title><rect x="73.5242%" y="309" width="0.0119%" height="15" fill="rgb(216,56,42)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="319.50"></text></g><g><title>ring_core_0_17_14__x25519_scalar_mult_generic_masked (1 samples, 0.01%)</title><rect x="73.5242%" y="293" width="0.0119%" height="15" fill="rgb(216,184,14)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="303.50"></text></g><g><title>fe_add (1 samples, 0.01%)</title><rect x="73.5242%" y="277" width="0.0119%" height="15" fill="rgb(237,187,27)" fg:x="6190" fg:w="1"/><text x="73.7742%" y="287.50"></text></g><g><title>&lt;reqwest::async_impl::client::Pending as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.5123%" y="1077" width="0.0356%" height="15" fill="rgb(219,65,3)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="1087.50"></text></g><g><title>&lt;reqwest::async_impl::client::PendingRequest as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.5123%" y="1061" width="0.0356%" height="15" fill="rgb(245,83,25)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="1071.50"></text></g><g><title>&lt;hyper_util::client::legacy::client::ResponseFuture as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.5123%" y="1045" width="0.0356%" height="15" fill="rgb(214,205,45)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="1055.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::send_request::_{{closure}} (3 samples, 0.04%)</title><rect x="73.5123%" y="1029" width="0.0356%" height="15" fill="rgb(241,20,18)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="1039.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::try_send_request::_{{closure}} (3 samples, 0.04%)</title><rect x="73.5123%" y="1013" width="0.0356%" height="15" fill="rgb(232,163,23)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="1023.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::connection_for::_{{closure}} (3 samples, 0.04%)</title><rect x="73.5123%" y="997" width="0.0356%" height="15" fill="rgb(214,5,46)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="1007.50"></text></g><g><title>hyper_util::client::legacy::client::Client&lt;C,B&gt;::one_connection_for::_{{closure}} (3 samples, 0.04%)</title><rect x="73.5123%" y="981" width="0.0356%" height="15" fill="rgb(229,78,17)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="991.50"></text></g><g><title>&lt;futures_util::future::select::Select&lt;A,B&gt; as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.5123%" y="965" width="0.0356%" height="15" fill="rgb(248,89,10)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="975.50"></text></g><g><title>futures_util::future::future::FutureExt::poll_unpin (3 samples, 0.04%)</title><rect x="73.5123%" y="949" width="0.0356%" height="15" fill="rgb(248,54,15)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="959.50"></text></g><g><title>&lt;hyper_util::common::lazy::Lazy&lt;F,R&gt; as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.5123%" y="933" width="0.0356%" height="15" fill="rgb(223,116,6)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="943.50"></text></g><g><title>&lt;futures_util::future::either::Either&lt;A,B&gt; as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.5123%" y="917" width="0.0356%" height="15" fill="rgb(205,125,38)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="927.50"></text></g><g><title>&lt;futures_util::future::try_future::AndThen&lt;Fut1,Fut2,F&gt; as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.5123%" y="901" width="0.0356%" height="15" fill="rgb(251,78,38)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="911.50"></text></g><g><title>&lt;futures_util::future::try_future::TryFlatten&lt;Fut1,Fut2&gt; as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.5123%" y="885" width="0.0356%" height="15" fill="rgb(253,78,28)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="895.50"></text></g><g><title>&lt;futures_util::future::try_future::try_flatten::TryFlatten&lt;Fut,&lt;Fut as futures_core::future::TryFuture&gt;::Ok&gt; as core::future::future::Future&gt;::poll (3 samples, 0.04%)</title><rect x="73.5123%" y="869" width="0.0356%" height="15" fill="rgb(209,120,3)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="879.50"></text></g><g><title>&lt;F as futures_core::future::TryFuture&gt;::try_poll (3 samples, 0.04%)</title><rect x="73.5123%" y="853" width="0.0356%" height="15" fill="rgb(238,229,9)" fg:x="6189" fg:w="3"/><text x="73.7623%" y="863.50"></text></g><g><title>&lt;futures_util::future::try_future::MapOk&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="837" width="0.0238%" height="15" fill="rgb(253,159,18)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="847.50"></text></g><g><title>&lt;futures_util::future::future::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="821" width="0.0238%" height="15" fill="rgb(244,42,34)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="831.50"></text></g><g><title>&lt;futures_util::future::future::map::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="805" width="0.0238%" height="15" fill="rgb(224,8,7)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="815.50"></text></g><g><title>&lt;futures_util::future::try_future::into_future::IntoFuture&lt;Fut&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="789" width="0.0238%" height="15" fill="rgb(210,201,45)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="799.50"></text></g><g><title>&lt;F as futures_core::future::TryFuture&gt;::try_poll (2 samples, 0.02%)</title><rect x="73.5242%" y="773" width="0.0238%" height="15" fill="rgb(252,185,21)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="783.50"></text></g><g><title>&lt;futures_util::future::try_future::MapErr&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="757" width="0.0238%" height="15" fill="rgb(223,131,1)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="767.50"></text></g><g><title>&lt;futures_util::future::future::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="741" width="0.0238%" height="15" fill="rgb(245,141,16)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="751.50"></text></g><g><title>&lt;futures_util::future::future::map::Map&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="725" width="0.0238%" height="15" fill="rgb(229,55,45)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="735.50"></text></g><g><title>&lt;futures_util::future::try_future::into_future::IntoFuture&lt;Fut&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="709" width="0.0238%" height="15" fill="rgb(208,92,15)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="719.50"></text></g><g><title>&lt;F as futures_core::future::TryFuture&gt;::try_poll (2 samples, 0.02%)</title><rect x="73.5242%" y="693" width="0.0238%" height="15" fill="rgb(234,185,47)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="703.50"></text></g><g><title>&lt;hyper_util::service::oneshot::Oneshot&lt;S,Req&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="677" width="0.0238%" height="15" fill="rgb(253,104,50)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="687.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="661" width="0.0238%" height="15" fill="rgb(205,70,7)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="671.50"></text></g><g><title>reqwest::connect::with_timeout::_{{closure}} (2 samples, 0.02%)</title><rect x="73.5242%" y="645" width="0.0238%" height="15" fill="rgb(240,178,43)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="655.50"></text></g><g><title>reqwest::connect::ConnectorService::connect_with_maybe_proxy::_{{closure}} (2 samples, 0.02%)</title><rect x="73.5242%" y="629" width="0.0238%" height="15" fill="rgb(214,112,2)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="639.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="73.5242%" y="613" width="0.0238%" height="15" fill="rgb(206,46,17)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="623.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}} (2 samples, 0.02%)</title><rect x="73.5242%" y="597" width="0.0238%" height="15" fill="rgb(225,220,16)" fg:x="6190" fg:w="2"/><text x="73.7742%" y="607.50"></text></g><g><title>tokio_rustls::TlsConnector::connect (1 samples, 0.01%)</title><rect x="73.5360%" y="581" width="0.0119%" height="15" fill="rgb(238,65,40)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="591.50"></text></g><g><title>tokio_rustls::TlsConnector::connect_with (1 samples, 0.01%)</title><rect x="73.5360%" y="565" width="0.0119%" height="15" fill="rgb(230,151,21)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="575.50"></text></g><g><title>rustls::client::client_conn::connection::ClientConnection::new (1 samples, 0.01%)</title><rect x="73.5360%" y="549" width="0.0119%" height="15" fill="rgb(218,58,49)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="559.50"></text></g><g><title>rustls::client::client_conn::_&lt;impl rustls::conn::ConnectionCore&lt;rustls::client::client_conn::ClientConnectionData&gt;&gt;::for_client (1 samples, 0.01%)</title><rect x="73.5360%" y="533" width="0.0119%" height="15" fill="rgb(219,179,14)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="543.50"></text></g><g><title>rustls::client::hs::start_handshake (1 samples, 0.01%)</title><rect x="73.5360%" y="517" width="0.0119%" height="15" fill="rgb(223,72,1)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="527.50"></text></g><g><title>rustls::client::tls13::initial_key_share (1 samples, 0.01%)</title><rect x="73.5360%" y="501" width="0.0119%" height="15" fill="rgb(238,126,10)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="511.50"></text></g><g><title>&lt;rustls::crypto::ring::kx::KxGroup as rustls::crypto::SupportedKxGroup&gt;::start (1 samples, 0.01%)</title><rect x="73.5360%" y="485" width="0.0119%" height="15" fill="rgb(224,206,38)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="495.50"></text></g><g><title>ring::ec::keys::Seed::compute_public_key (1 samples, 0.01%)</title><rect x="73.5360%" y="469" width="0.0119%" height="15" fill="rgb(212,201,54)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="479.50"></text></g><g><title>ring::ec::curve25519::x25519::x25519_public_from_private (1 samples, 0.01%)</title><rect x="73.5360%" y="453" width="0.0119%" height="15" fill="rgb(218,154,48)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="463.50"></text></g><g><title>ring_core_0_17_14__x25519_public_from_private_generic_masked (1 samples, 0.01%)</title><rect x="73.5360%" y="437" width="0.0119%" height="15" fill="rgb(232,93,24)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="447.50"></text></g><g><title>ring_core_0_17_14__x25519_ge_scalarmult_base (1 samples, 0.01%)</title><rect x="73.5360%" y="421" width="0.0119%" height="15" fill="rgb(245,30,21)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="431.50"></text></g><g><title>ge_madd (1 samples, 0.01%)</title><rect x="73.5360%" y="405" width="0.0119%" height="15" fill="rgb(242,148,29)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="415.50"></text></g><g><title>fe_sub (1 samples, 0.01%)</title><rect x="73.5360%" y="389" width="0.0119%" height="15" fill="rgb(244,153,54)" fg:x="6191" fg:w="1"/><text x="73.7860%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;reqwest::async_impl::client::Pending&gt; (1 samples, 0.01%)</title><rect x="73.5479%" y="1077" width="0.0119%" height="15" fill="rgb(252,87,22)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;reqwest::async_impl::client::PendingInner&gt; (1 samples, 0.01%)</title><rect x="73.5479%" y="1061" width="0.0119%" height="15" fill="rgb(210,51,29)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;reqwest::async_impl::client::PendingRequest&gt; (1 samples, 0.01%)</title><rect x="73.5479%" y="1045" width="0.0119%" height="15" fill="rgb(242,136,47)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;core::pin::Pin&lt;alloc::boxed::Box&lt;tokio::time::sleep::Sleep&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="73.5479%" y="1029" width="0.0119%" height="15" fill="rgb(238,68,4)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::pin::Pin&lt;alloc::boxed::Box&lt;tokio::time::sleep::Sleep&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="73.5479%" y="1013" width="0.0119%" height="15" fill="rgb(242,161,30)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;tokio::time::sleep::Sleep&gt;&gt; (1 samples, 0.01%)</title><rect x="73.5479%" y="997" width="0.0119%" height="15" fill="rgb(218,58,44)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::time::sleep::Sleep&gt; (1 samples, 0.01%)</title><rect x="73.5479%" y="981" width="0.0119%" height="15" fill="rgb(252,125,32)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::runtime::time::entry::TimerEntry&gt; (1 samples, 0.01%)</title><rect x="73.5479%" y="965" width="0.0119%" height="15" fill="rgb(219,178,0)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="975.50"></text></g><g><title>&lt;tokio::runtime::time::entry::TimerEntry as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="73.5479%" y="949" width="0.0119%" height="15" fill="rgb(213,152,7)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="959.50"></text></g><g><title>&lt;&amp;mut T as core::ops::deref::DerefMut&gt;::deref_mut (1 samples, 0.01%)</title><rect x="73.5479%" y="933" width="0.0119%" height="15" fill="rgb(249,109,34)" fg:x="6192" fg:w="1"/><text x="73.7979%" y="943.50"></text></g><g><title>uv_client::base_client::BaseClient::execute::_{{closure}} (5 samples, 0.06%)</title><rect x="73.5123%" y="1269" width="0.0594%" height="15" fill="rgb(232,96,21)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1279.50"></text></g><g><title>uv_client::base_client::RedirectClientWithMiddleware::execute::_{{closure}} (5 samples, 0.06%)</title><rect x="73.5123%" y="1253" width="0.0594%" height="15" fill="rgb(228,27,39)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1263.50"></text></g><g><title>uv_client::base_client::RedirectClientWithMiddleware::execute_with_redirect_handling::_{{closure}} (5 samples, 0.06%)</title><rect x="73.5123%" y="1237" width="0.0594%" height="15" fill="rgb(211,182,52)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1247.50"></text></g><g><title>reqwest_middleware::client::ClientWithMiddleware::execute::_{{closure}} (5 samples, 0.06%)</title><rect x="73.5123%" y="1221" width="0.0594%" height="15" fill="rgb(234,178,38)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1231.50"></text></g><g><title>reqwest_middleware::client::ClientWithMiddleware::execute_with_extensions::_{{closure}} (5 samples, 0.06%)</title><rect x="73.5123%" y="1205" width="0.0594%" height="15" fill="rgb(221,111,3)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1215.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (5 samples, 0.06%)</title><rect x="73.5123%" y="1189" width="0.0594%" height="15" fill="rgb(228,175,21)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1199.50"></text></g><g><title>&lt;reqwest_retry::middleware::RetryTransientMiddleware&lt;T,R&gt; as reqwest_middleware::middleware::Middleware&gt;::handle::_{{closure}} (5 samples, 0.06%)</title><rect x="73.5123%" y="1173" width="0.0594%" height="15" fill="rgb(228,174,43)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1183.50"></text></g><g><title>reqwest_retry::middleware::RetryTransientMiddleware&lt;T,R&gt;::execute_with_retry::_{{closure}} (5 samples, 0.06%)</title><rect x="73.5123%" y="1157" width="0.0594%" height="15" fill="rgb(211,191,0)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1167.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (5 samples, 0.06%)</title><rect x="73.5123%" y="1141" width="0.0594%" height="15" fill="rgb(253,117,3)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1151.50"></text></g><g><title>&lt;uv_auth::middleware::AuthMiddleware as reqwest_middleware::middleware::Middleware&gt;::handle::_{{closure}} (5 samples, 0.06%)</title><rect x="73.5123%" y="1125" width="0.0594%" height="15" fill="rgb(241,127,19)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1135.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (5 samples, 0.06%)</title><rect x="73.5123%" y="1109" width="0.0594%" height="15" fill="rgb(218,103,12)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1119.50"></text></g><g><title>reqwest_middleware::middleware::Next::run::_{{closure}} (5 samples, 0.06%)</title><rect x="73.5123%" y="1093" width="0.0594%" height="15" fill="rgb(236,214,43)" fg:x="6189" fg:w="5"/><text x="73.7623%" y="1103.50"></text></g><g><title>reqwest::async_impl::client::Client::execute (1 samples, 0.01%)</title><rect x="73.5598%" y="1077" width="0.0119%" height="15" fill="rgb(244,144,19)" fg:x="6193" fg:w="1"/><text x="73.8098%" y="1087.50"></text></g><g><title>reqwest::async_impl::client::Client::execute_request (1 samples, 0.01%)</title><rect x="73.5598%" y="1061" width="0.0119%" height="15" fill="rgb(246,188,10)" fg:x="6193" fg:w="1"/><text x="73.8098%" y="1071.50"></text></g><g><title>reqwest::into_url::try_uri (1 samples, 0.01%)</title><rect x="73.5598%" y="1045" width="0.0119%" height="15" fill="rgb(212,193,33)" fg:x="6193" fg:w="1"/><text x="73.8098%" y="1055.50"></text></g><g><title>core::str::_&lt;impl str&gt;::parse (1 samples, 0.01%)</title><rect x="73.5598%" y="1029" width="0.0119%" height="15" fill="rgb(241,51,29)" fg:x="6193" fg:w="1"/><text x="73.8098%" y="1039.50"></text></g><g><title>&lt;http::uri::Uri as core::str::traits::FromStr&gt;::from_str (1 samples, 0.01%)</title><rect x="73.5598%" y="1013" width="0.0119%" height="15" fill="rgb(211,58,19)" fg:x="6193" fg:w="1"/><text x="73.8098%" y="1023.50"></text></g><g><title>&lt;http::uri::Uri as core::convert::TryFrom&lt;&amp;[u8]&gt;&gt;::try_from (1 samples, 0.01%)</title><rect x="73.5598%" y="997" width="0.0119%" height="15" fill="rgb(229,111,26)" fg:x="6193" fg:w="1"/><text x="73.8098%" y="1007.50"></text></g><g><title>http::uri::Uri::from_shared (1 samples, 0.01%)</title><rect x="73.5598%" y="981" width="0.0119%" height="15" fill="rgb(213,115,40)" fg:x="6193" fg:w="1"/><text x="73.8098%" y="991.50"></text></g><g><title>http::uri::parse_full (1 samples, 0.01%)</title><rect x="73.5598%" y="965" width="0.0119%" height="15" fill="rgb(209,56,44)" fg:x="6193" fg:w="1"/><text x="73.8098%" y="975.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="73.5598%" y="949" width="0.0119%" height="15" fill="rgb(230,108,32)" fg:x="6193" fg:w="1"/><text x="73.8098%" y="959.50"></text></g><g><title>uv_client::cached_client::CachedClient::fresh_request::_{{closure}} (7 samples, 0.08%)</title><rect x="73.5004%" y="1301" width="0.0831%" height="15" fill="rgb(216,165,31)" fg:x="6188" fg:w="7"/><text x="73.7504%" y="1311.50"></text></g><g><title>uv_client::cached_client::CachedClient::fresh_request::_{{closure}}::_{{closure}} (6 samples, 0.07%)</title><rect x="73.5123%" y="1285" width="0.0713%" height="15" fill="rgb(218,122,21)" fg:x="6189" fg:w="6"/><text x="73.7623%" y="1295.50"></text></g><g><title>uv_client::httpcache::CachePolicy::to_archived (1 samples, 0.01%)</title><rect x="73.5717%" y="1269" width="0.0119%" height="15" fill="rgb(223,224,47)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1279.50"></text></g><g><title>uv_client::rkyvutil::OwnedArchive&lt;A&gt;::from_unarchived (1 samples, 0.01%)</title><rect x="73.5717%" y="1253" width="0.0119%" height="15" fill="rgb(238,102,44)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1263.50"></text></g><g><title>rkyv::api::high::to_bytes (1 samples, 0.01%)</title><rect x="73.5717%" y="1237" width="0.0119%" height="15" fill="rgb(236,46,40)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1247.50"></text></g><g><title>rkyv::api::high::to_bytes_in (1 samples, 0.01%)</title><rect x="73.5717%" y="1221" width="0.0119%" height="15" fill="rgb(247,202,50)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1231.50"></text></g><g><title>rkyv::util::alloc::arena::with_arena (1 samples, 0.01%)</title><rect x="73.5717%" y="1205" width="0.0119%" height="15" fill="rgb(209,99,20)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1215.50"></text></g><g><title>rkyv::util::alloc::arena::detail::with_arena (1 samples, 0.01%)</title><rect x="73.5717%" y="1189" width="0.0119%" height="15" fill="rgb(252,27,34)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1199.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (1 samples, 0.01%)</title><rect x="73.5717%" y="1173" width="0.0119%" height="15" fill="rgb(215,206,23)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1183.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.01%)</title><rect x="73.5717%" y="1157" width="0.0119%" height="15" fill="rgb(212,135,36)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1167.50"></text></g><g><title>rkyv::util::alloc::arena::detail::with_arena::_{{closure}} (1 samples, 0.01%)</title><rect x="73.5717%" y="1141" width="0.0119%" height="15" fill="rgb(240,189,1)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1151.50"></text></g><g><title>rkyv::api::high::to_bytes_in::_{{closure}} (1 samples, 0.01%)</title><rect x="73.5717%" y="1125" width="0.0119%" height="15" fill="rgb(242,56,20)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1135.50"></text></g><g><title>rkyv::api::high::to_bytes_in_with_alloc (1 samples, 0.01%)</title><rect x="73.5717%" y="1109" width="0.0119%" height="15" fill="rgb(247,132,33)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1119.50"></text></g><g><title>rkyv::api::serialize_using (1 samples, 0.01%)</title><rect x="73.5717%" y="1093" width="0.0119%" height="15" fill="rgb(208,149,11)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1103.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for T&gt;::serialize_unsized (1 samples, 0.01%)</title><rect x="73.5717%" y="1077" width="0.0119%" height="15" fill="rgb(211,33,11)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1087.50"></text></g><g><title>&lt;uv_client::httpcache::CachePolicy as rkyv::traits::Serialize&lt;__S&gt;&gt;::serialize (1 samples, 0.01%)</title><rect x="73.5717%" y="1061" width="0.0119%" height="15" fill="rgb(221,29,38)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1071.50"></text></g><g><title>&lt;uv_client::httpcache::Vary as rkyv::traits::Serialize&lt;__S&gt;&gt;::serialize (1 samples, 0.01%)</title><rect x="73.5717%" y="1045" width="0.0119%" height="15" fill="rgb(206,182,49)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1055.50"></text></g><g><title>rkyv::impls::alloc::vec::_&lt;impl rkyv::traits::Serialize&lt;S&gt; for alloc::vec::Vec&lt;T&gt;&gt;::serialize (1 samples, 0.01%)</title><rect x="73.5717%" y="1029" width="0.0119%" height="15" fill="rgb(216,140,1)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1039.50"></text></g><g><title>rkyv::vec::ArchivedVec&lt;T&gt;::serialize_from_slice (1 samples, 0.01%)</title><rect x="73.5717%" y="1013" width="0.0119%" height="15" fill="rgb(232,57,40)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1023.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for [T]&gt;::serialize_unsized (1 samples, 0.01%)</title><rect x="73.5717%" y="997" width="0.0119%" height="15" fill="rgb(224,186,18)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="1007.50"></text></g><g><title>rkyv::util::ser_vec::SerVec&lt;T&gt;::with_capacity (1 samples, 0.01%)</title><rect x="73.5717%" y="981" width="0.0119%" height="15" fill="rgb(215,121,11)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="991.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for [T]&gt;::serialize_unsized::_{{closure}} (1 samples, 0.01%)</title><rect x="73.5717%" y="965" width="0.0119%" height="15" fill="rgb(245,147,10)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="975.50"></text></g><g><title>rkyv::ser::writer::WriterExt::resolve_aligned (1 samples, 0.01%)</title><rect x="73.5717%" y="949" width="0.0119%" height="15" fill="rgb(238,153,13)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="959.50"></text></g><g><title>&lt;uv_client::httpcache::VaryField as rkyv::traits::Archive&gt;::resolve (1 samples, 0.01%)</title><rect x="73.5717%" y="933" width="0.0119%" height="15" fill="rgb(233,108,0)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="943.50"></text></g><g><title>rkyv::impls::alloc::string::_&lt;impl rkyv::traits::Archive for alloc::string::String&gt;::resolve (1 samples, 0.01%)</title><rect x="73.5717%" y="917" width="0.0119%" height="15" fill="rgb(212,157,17)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="927.50"></text></g><g><title>rkyv::string::ArchivedString::resolve_from_str (1 samples, 0.01%)</title><rect x="73.5717%" y="901" width="0.0119%" height="15" fill="rgb(225,213,38)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="911.50"></text></g><g><title>rkyv::string::repr::ArchivedStringRepr::emplace_out_of_line (1 samples, 0.01%)</title><rect x="73.5717%" y="885" width="0.0119%" height="15" fill="rgb(248,16,11)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="895.50"></text></g><g><title>rkyv::string::repr::ArchivedStringRepr::try_emplace_out_of_line (1 samples, 0.01%)</title><rect x="73.5717%" y="869" width="0.0119%" height="15" fill="rgb(241,33,4)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="879.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::write (1 samples, 0.01%)</title><rect x="73.5717%" y="853" width="0.0119%" height="15" fill="rgb(222,26,43)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="863.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::write_unchecked (1 samples, 0.01%)</title><rect x="73.5717%" y="837" width="0.0119%" height="15" fill="rgb(243,29,36)" fg:x="6194" fg:w="1"/><text x="73.8217%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_client::registry_client::SimpleMetadata&gt; (1 samples, 0.01%)</title><rect x="73.5836%" y="1221" width="0.0119%" height="15" fill="rgb(241,9,27)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;uv_client::registry_client::SimpleMetadatum&gt;&gt; (1 samples, 0.01%)</title><rect x="73.5836%" y="1205" width="0.0119%" height="15" fill="rgb(205,117,26)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1215.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="73.5836%" y="1189" width="0.0119%" height="15" fill="rgb(209,80,39)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;[uv_client::registry_client::SimpleMetadatum]&gt; (1 samples, 0.01%)</title><rect x="73.5836%" y="1173" width="0.0119%" height="15" fill="rgb(239,155,6)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_client::registry_client::SimpleMetadatum&gt; (1 samples, 0.01%)</title><rect x="73.5836%" y="1157" width="0.0119%" height="15" fill="rgb(212,104,12)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_client::registry_client::VersionFiles&gt; (1 samples, 0.01%)</title><rect x="73.5836%" y="1141" width="0.0119%" height="15" fill="rgb(234,204,3)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;uv_client::registry_client::VersionSourceDist&gt;&gt; (1 samples, 0.01%)</title><rect x="73.5836%" y="1125" width="0.0119%" height="15" fill="rgb(251,218,7)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;uv_client::registry_client::VersionSourceDist&gt;&gt; (1 samples, 0.01%)</title><rect x="73.5836%" y="1109" width="0.0119%" height="15" fill="rgb(221,81,32)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1119.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="73.5836%" y="1093" width="0.0119%" height="15" fill="rgb(214,152,26)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1103.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (1 samples, 0.01%)</title><rect x="73.5836%" y="1077" width="0.0119%" height="15" fill="rgb(223,22,3)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1087.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.01%)</title><rect x="73.5836%" y="1061" width="0.0119%" height="15" fill="rgb(207,174,7)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1071.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="73.5836%" y="1045" width="0.0119%" height="15" fill="rgb(224,19,52)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1055.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="73.5836%" y="1029" width="0.0119%" height="15" fill="rgb(228,24,14)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1039.50"></text></g><g><title>core::ptr::mut_ptr::_&lt;impl *mut T&gt;::is_null (1 samples, 0.01%)</title><rect x="73.5836%" y="1013" width="0.0119%" height="15" fill="rgb(230,153,43)" fg:x="6195" fg:w="1"/><text x="73.8336%" y="1023.50"></text></g><g><title>core::ptr::read_unaligned (3 samples, 0.04%)</title><rect x="73.6548%" y="837" width="0.0356%" height="15" fill="rgb(231,106,12)" fg:x="6201" fg:w="3"/><text x="73.9048%" y="847.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (3 samples, 0.04%)</title><rect x="73.6548%" y="821" width="0.0356%" height="15" fill="rgb(215,92,2)" fg:x="6201" fg:w="3"/><text x="73.9048%" y="831.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (1 samples, 0.01%)</title><rect x="73.6786%" y="805" width="0.0119%" height="15" fill="rgb(249,143,25)" fg:x="6203" fg:w="1"/><text x="73.9286%" y="815.50"></text></g><g><title>zlib_rs::inflate::window::Window::next (1 samples, 0.01%)</title><rect x="73.6905%" y="837" width="0.0119%" height="15" fill="rgb(252,7,35)" fg:x="6204" fg:w="1"/><text x="73.9405%" y="847.50"></text></g><g><title>&lt;core::ops::range::RangeTo&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (2 samples, 0.02%)</title><rect x="73.7023%" y="821" width="0.0238%" height="15" fill="rgb(216,69,40)" fg:x="6205" fg:w="2"/><text x="73.9523%" y="831.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (2 samples, 0.02%)</title><rect x="73.7023%" y="805" width="0.0238%" height="15" fill="rgb(240,36,33)" fg:x="6205" fg:w="2"/><text x="73.9523%" y="815.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="73.7261%" y="821" width="0.0119%" height="15" fill="rgb(231,128,14)" fg:x="6207" fg:w="1"/><text x="73.9761%" y="831.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::copy_match_runtime_dispatch (4 samples, 0.05%)</title><rect x="73.7023%" y="837" width="0.0475%" height="15" fill="rgb(245,143,14)" fg:x="6205" fg:w="4"/><text x="73.9523%" y="847.50"></text></g><g><title>core::ptr::write_unaligned (1 samples, 0.01%)</title><rect x="73.7380%" y="821" width="0.0119%" height="15" fill="rgb(222,130,28)" fg:x="6208" fg:w="1"/><text x="73.9880%" y="831.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="73.7380%" y="805" width="0.0119%" height="15" fill="rgb(212,10,48)" fg:x="6208" fg:w="1"/><text x="73.9880%" y="815.50"></text></g><g><title>core::ptr::read_unaligned (2 samples, 0.02%)</title><rect x="73.7617%" y="805" width="0.0238%" height="15" fill="rgb(254,118,45)" fg:x="6210" fg:w="2"/><text x="74.0117%" y="815.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (2 samples, 0.02%)</title><rect x="73.7617%" y="789" width="0.0238%" height="15" fill="rgb(228,6,45)" fg:x="6210" fg:w="2"/><text x="74.0117%" y="799.50"></text></g><g><title>core::ptr::write_unaligned (3 samples, 0.04%)</title><rect x="73.7855%" y="805" width="0.0356%" height="15" fill="rgb(241,18,35)" fg:x="6212" fg:w="3"/><text x="74.0355%" y="815.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (2 samples, 0.02%)</title><rect x="73.7974%" y="789" width="0.0238%" height="15" fill="rgb(227,214,53)" fg:x="6213" fg:w="2"/><text x="74.0474%" y="799.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::extend_from_window_with_features (7 samples, 0.08%)</title><rect x="73.7499%" y="837" width="0.0831%" height="15" fill="rgb(224,107,51)" fg:x="6209" fg:w="7"/><text x="73.9999%" y="847.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::extend_from_window_runtime_dispatch (6 samples, 0.07%)</title><rect x="73.7617%" y="821" width="0.0713%" height="15" fill="rgb(248,60,28)" fg:x="6210" fg:w="6"/><text x="74.0117%" y="831.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::next_out (1 samples, 0.01%)</title><rect x="73.8211%" y="805" width="0.0119%" height="15" fill="rgb(249,101,23)" fg:x="6215" fg:w="1"/><text x="74.0711%" y="815.50"></text></g><g><title>&lt;async_compression::codec::gzip::decoder::GzipDecoder as async_compression::codec::Decode&gt;::decode::_{{closure}} (21 samples, 0.25%)</title><rect x="73.5954%" y="1013" width="0.2494%" height="15" fill="rgb(228,51,19)" fg:x="6196" fg:w="21"/><text x="73.8454%" y="1023.50"></text></g><g><title>&lt;async_compression::codec::flate::decoder::FlateDecoder as async_compression::codec::Decode&gt;::decode (21 samples, 0.25%)</title><rect x="73.5954%" y="997" width="0.2494%" height="15" fill="rgb(213,20,6)" fg:x="6196" fg:w="21"/><text x="73.8454%" y="1007.50"></text></g><g><title>async_compression::codec::flate::decoder::FlateDecoder::decode (21 samples, 0.25%)</title><rect x="73.5954%" y="981" width="0.2494%" height="15" fill="rgb(212,124,10)" fg:x="6196" fg:w="21"/><text x="73.8454%" y="991.50"></text></g><g><title>flate2::mem::Decompress::decompress (21 samples, 0.25%)</title><rect x="73.5954%" y="965" width="0.2494%" height="15" fill="rgb(248,3,40)" fg:x="6196" fg:w="21"/><text x="73.8454%" y="975.50"></text></g><g><title>&lt;flate2::ffi::c::Inflate as flate2::ffi::InflateBackend&gt;::decompress (21 samples, 0.25%)</title><rect x="73.5954%" y="949" width="0.2494%" height="15" fill="rgb(223,178,23)" fg:x="6196" fg:w="21"/><text x="73.8454%" y="959.50"></text></g><g><title>libz_rs_sys::inflate (21 samples, 0.25%)</title><rect x="73.5954%" y="933" width="0.2494%" height="15" fill="rgb(240,132,45)" fg:x="6196" fg:w="21"/><text x="73.8454%" y="943.50"></text></g><g><title>zlib_rs::inflate::inflate (21 samples, 0.25%)</title><rect x="73.5954%" y="917" width="0.2494%" height="15" fill="rgb(245,164,36)" fg:x="6196" fg:w="21"/><text x="73.8454%" y="927.50"></text></g><g><title>zlib_rs::inflate::State::dispatch (21 samples, 0.25%)</title><rect x="73.5954%" y="901" width="0.2494%" height="15" fill="rgb(231,188,53)" fg:x="6196" fg:w="21"/><text x="73.8454%" y="911.50"></text></g><g><title>zlib_rs::inflate::State::len_and_friends (21 samples, 0.25%)</title><rect x="73.5954%" y="885" width="0.2494%" height="15" fill="rgb(237,198,39)" fg:x="6196" fg:w="21"/><text x="73.8454%" y="895.50"></text></g><g><title>zlib_rs::inflate::inflate_fast_help (19 samples, 0.23%)</title><rect x="73.6192%" y="869" width="0.2257%" height="15" fill="rgb(223,120,35)" fg:x="6198" fg:w="19"/><text x="73.8692%" y="879.50"></text></g><g><title>zlib_rs::inflate::inflate_fast_help_vanilla (19 samples, 0.23%)</title><rect x="73.6192%" y="853" width="0.2257%" height="15" fill="rgb(253,107,49)" fg:x="6198" fg:w="19"/><text x="73.8692%" y="863.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::remaining (1 samples, 0.01%)</title><rect x="73.8330%" y="837" width="0.0119%" height="15" fill="rgb(216,44,31)" fg:x="6216" fg:w="1"/><text x="74.0830%" y="847.50"></text></g><g><title>async_compression::util::PartialBuffer&lt;B&gt;::written (1 samples, 0.01%)</title><rect x="73.8449%" y="1013" width="0.0119%" height="15" fill="rgb(253,87,21)" fg:x="6217" fg:w="1"/><text x="74.0949%" y="1023.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (28 samples, 0.33%)</title><rect x="73.5954%" y="1173" width="0.3326%" height="15" fill="rgb(226,18,2)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1183.50"></text></g><g><title>&lt;futures_util::stream::stream::fuse::Fuse&lt;S&gt; as futures_core::stream::Stream&gt;::poll_next (28 samples, 0.33%)</title><rect x="73.5954%" y="1157" width="0.3326%" height="15" fill="rgb(216,8,46)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1167.50"></text></g><g><title>&lt;tokio_util::codec::framed_read::FramedRead&lt;T,D&gt; as futures_core::stream::Stream&gt;::poll_next (28 samples, 0.33%)</title><rect x="73.5954%" y="1141" width="0.3326%" height="15" fill="rgb(226,140,39)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1151.50"></text></g><g><title>&lt;tokio_util::codec::framed_impl::FramedImpl&lt;T,U,R&gt; as futures_core::stream::Stream&gt;::poll_next (28 samples, 0.33%)</title><rect x="73.5954%" y="1125" width="0.3326%" height="15" fill="rgb(221,194,54)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1135.50"></text></g><g><title>tokio_util::util::poll_buf::poll_read_buf (28 samples, 0.33%)</title><rect x="73.5954%" y="1109" width="0.3326%" height="15" fill="rgb(213,92,11)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1119.50"></text></g><g><title>&lt;async_compression::tokio::bufread::GzipDecoder&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (28 samples, 0.33%)</title><rect x="73.5954%" y="1093" width="0.3326%" height="15" fill="rgb(229,162,46)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1103.50"></text></g><g><title>&lt;async_compression::tokio::bufread::generic::decoder::Decoder&lt;R,D&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (28 samples, 0.33%)</title><rect x="73.5954%" y="1077" width="0.3326%" height="15" fill="rgb(214,111,36)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1087.50"></text></g><g><title>async_compression::tokio::bufread::generic::decoder::Decoder&lt;R,D&gt;::do_poll_read (28 samples, 0.33%)</title><rect x="73.5954%" y="1061" width="0.3326%" height="15" fill="rgb(207,6,21)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1071.50"></text></g><g><title>&lt;async_compression::codec::gzip::decoder::GzipDecoder as async_compression::codec::Decode&gt;::decode (28 samples, 0.33%)</title><rect x="73.5954%" y="1045" width="0.3326%" height="15" fill="rgb(213,127,38)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1055.50"></text></g><g><title>async_compression::codec::gzip::decoder::GzipDecoder::process (28 samples, 0.33%)</title><rect x="73.5954%" y="1029" width="0.3326%" height="15" fill="rgb(238,118,32)" fg:x="6196" fg:w="28"/><text x="73.8454%" y="1039.50"></text></g><g><title>flate2::crc::Crc::update (6 samples, 0.07%)</title><rect x="73.8568%" y="1013" width="0.0713%" height="15" fill="rgb(240,139,39)" fg:x="6218" fg:w="6"/><text x="74.1068%" y="1023.50"></text></g><g><title>crc32fast::Hasher::update (6 samples, 0.07%)</title><rect x="73.8568%" y="997" width="0.0713%" height="15" fill="rgb(235,10,37)" fg:x="6218" fg:w="6"/><text x="74.1068%" y="1007.50"></text></g><g><title>crc32fast::baseline::State::update (6 samples, 0.07%)</title><rect x="73.8568%" y="981" width="0.0713%" height="15" fill="rgb(249,171,38)" fg:x="6218" fg:w="6"/><text x="74.1068%" y="991.50"></text></g><g><title>crc32fast::baseline::update_fast_16 (6 samples, 0.07%)</title><rect x="73.8568%" y="965" width="0.0713%" height="15" fill="rgb(242,144,32)" fg:x="6218" fg:w="6"/><text x="74.1068%" y="975.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (1 samples, 0.01%)</title><rect x="73.9161%" y="949" width="0.0119%" height="15" fill="rgb(217,117,21)" fg:x="6223" fg:w="1"/><text x="74.1661%" y="959.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="73.9161%" y="933" width="0.0119%" height="15" fill="rgb(249,87,1)" fg:x="6223" fg:w="1"/><text x="74.1661%" y="943.50"></text></g><g><title>reqwest::async_impl::response::Response::bytes::_{{closure}} (29 samples, 0.34%)</title><rect x="73.5954%" y="1221" width="0.3445%" height="15" fill="rgb(248,196,48)" fg:x="6196" fg:w="29"/><text x="73.8454%" y="1231.50"></text></g><g><title>&lt;http_body_util::combinators::collect::Collect&lt;T&gt; as core::future::future::Future&gt;::poll (29 samples, 0.34%)</title><rect x="73.5954%" y="1205" width="0.3445%" height="15" fill="rgb(251,206,33)" fg:x="6196" fg:w="29"/><text x="73.8454%" y="1215.50"></text></g><g><title>&lt;reqwest::async_impl::decoder::Decoder as http_body::Body&gt;::poll_frame (29 samples, 0.34%)</title><rect x="73.5954%" y="1189" width="0.3445%" height="15" fill="rgb(232,141,28)" fg:x="6196" fg:w="29"/><text x="73.8454%" y="1199.50"></text></g><g><title>&lt;reqwest::async_impl::decoder::Decoder as http_body::Body&gt;::poll_frame (1 samples, 0.01%)</title><rect x="73.9280%" y="1173" width="0.0119%" height="15" fill="rgb(209,167,14)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1183.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="73.9280%" y="1157" width="0.0119%" height="15" fill="rgb(225,11,50)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1167.50"></text></g><g><title>&lt;futures_util::stream::stream::fuse::Fuse&lt;S&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="73.9280%" y="1141" width="0.0119%" height="15" fill="rgb(209,50,20)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1151.50"></text></g><g><title>&lt;tokio_util::codec::framed_read::FramedRead&lt;T,D&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="73.9280%" y="1125" width="0.0119%" height="15" fill="rgb(212,17,46)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1135.50"></text></g><g><title>&lt;tokio_util::codec::framed_impl::FramedImpl&lt;T,U,R&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.01%)</title><rect x="73.9280%" y="1109" width="0.0119%" height="15" fill="rgb(216,101,39)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1119.50"></text></g><g><title>tokio_util::util::poll_buf::poll_read_buf (1 samples, 0.01%)</title><rect x="73.9280%" y="1093" width="0.0119%" height="15" fill="rgb(212,228,48)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1103.50"></text></g><g><title>&lt;async_compression::tokio::bufread::GzipDecoder&lt;R&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="73.9280%" y="1077" width="0.0119%" height="15" fill="rgb(250,6,50)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1087.50"></text></g><g><title>&lt;async_compression::tokio::bufread::generic::decoder::Decoder&lt;R,D&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (1 samples, 0.01%)</title><rect x="73.9280%" y="1061" width="0.0119%" height="15" fill="rgb(250,160,48)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1071.50"></text></g><g><title>async_compression::tokio::bufread::generic::decoder::Decoder&lt;R,D&gt;::do_poll_read (1 samples, 0.01%)</title><rect x="73.9280%" y="1045" width="0.0119%" height="15" fill="rgb(244,216,33)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1055.50"></text></g><g><title>&lt;async_compression::codec::gzip::decoder::GzipDecoder as async_compression::codec::Decode&gt;::decode (1 samples, 0.01%)</title><rect x="73.9280%" y="1029" width="0.0119%" height="15" fill="rgb(207,157,5)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1039.50"></text></g><g><title>async_compression::codec::gzip::decoder::GzipDecoder::process (1 samples, 0.01%)</title><rect x="73.9280%" y="1013" width="0.0119%" height="15" fill="rgb(228,199,8)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1023.50"></text></g><g><title>&lt;async_compression::codec::gzip::decoder::GzipDecoder as async_compression::codec::Decode&gt;::decode::_{{closure}} (1 samples, 0.01%)</title><rect x="73.9280%" y="997" width="0.0119%" height="15" fill="rgb(227,80,20)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="1007.50"></text></g><g><title>&lt;async_compression::codec::flate::decoder::FlateDecoder as async_compression::codec::Decode&gt;::decode (1 samples, 0.01%)</title><rect x="73.9280%" y="981" width="0.0119%" height="15" fill="rgb(222,9,33)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="991.50"></text></g><g><title>async_compression::codec::flate::decoder::FlateDecoder::decode (1 samples, 0.01%)</title><rect x="73.9280%" y="965" width="0.0119%" height="15" fill="rgb(239,44,28)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="975.50"></text></g><g><title>flate2::mem::Decompress::decompress (1 samples, 0.01%)</title><rect x="73.9280%" y="949" width="0.0119%" height="15" fill="rgb(249,187,43)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="959.50"></text></g><g><title>&lt;flate2::ffi::c::Inflate as flate2::ffi::InflateBackend&gt;::decompress (1 samples, 0.01%)</title><rect x="73.9280%" y="933" width="0.0119%" height="15" fill="rgb(216,141,28)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="943.50"></text></g><g><title>libz_rs_sys::inflate (1 samples, 0.01%)</title><rect x="73.9280%" y="917" width="0.0119%" height="15" fill="rgb(230,154,53)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="927.50"></text></g><g><title>zlib_rs::inflate::inflate (1 samples, 0.01%)</title><rect x="73.9280%" y="901" width="0.0119%" height="15" fill="rgb(227,82,4)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="911.50"></text></g><g><title>zlib_rs::inflate::State::dispatch (1 samples, 0.01%)</title><rect x="73.9280%" y="885" width="0.0119%" height="15" fill="rgb(220,107,16)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="895.50"></text></g><g><title>zlib_rs::inflate::State::len_and_friends (1 samples, 0.01%)</title><rect x="73.9280%" y="869" width="0.0119%" height="15" fill="rgb(207,187,2)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="879.50"></text></g><g><title>zlib_rs::inflate::inflate_fast_help (1 samples, 0.01%)</title><rect x="73.9280%" y="853" width="0.0119%" height="15" fill="rgb(210,162,52)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="863.50"></text></g><g><title>zlib_rs::inflate::inflate_fast_help_vanilla (1 samples, 0.01%)</title><rect x="73.9280%" y="837" width="0.0119%" height="15" fill="rgb(217,216,49)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="847.50"></text></g><g><title>zlib_rs::inflate::writer::Writer::copy_match_runtime_dispatch (1 samples, 0.01%)</title><rect x="73.9280%" y="821" width="0.0119%" height="15" fill="rgb(218,146,49)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="831.50"></text></g><g><title>&lt;core::ops::range::RangeTo&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (1 samples, 0.01%)</title><rect x="73.9280%" y="805" width="0.0119%" height="15" fill="rgb(216,55,40)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="815.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (1 samples, 0.01%)</title><rect x="73.9280%" y="789" width="0.0119%" height="15" fill="rgb(208,196,21)" fg:x="6224" fg:w="1"/><text x="74.1780%" y="799.50"></text></g><g><title>core::slice::sort::unstable::sort (1 samples, 0.01%)</title><rect x="73.9399%" y="1061" width="0.0119%" height="15" fill="rgb(242,117,42)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="1071.50"></text></g><g><title>core::slice::sort::unstable::ipnsort (1 samples, 0.01%)</title><rect x="73.9399%" y="1045" width="0.0119%" height="15" fill="rgb(210,11,23)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="1055.50"></text></g><g><title>core::slice::sort::unstable::quicksort::quicksort (1 samples, 0.01%)</title><rect x="73.9399%" y="1029" width="0.0119%" height="15" fill="rgb(217,110,2)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="1039.50"></text></g><g><title>core::slice::sort::unstable::quicksort::quicksort (1 samples, 0.01%)</title><rect x="73.9399%" y="1013" width="0.0119%" height="15" fill="rgb(229,77,54)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="1023.50"></text></g><g><title>core::slice::sort::unstable::quicksort::quicksort (1 samples, 0.01%)</title><rect x="73.9399%" y="997" width="0.0119%" height="15" fill="rgb(218,53,16)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="1007.50"></text></g><g><title>core::slice::sort::unstable::quicksort::quicksort (1 samples, 0.01%)</title><rect x="73.9399%" y="981" width="0.0119%" height="15" fill="rgb(215,38,13)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="991.50"></text></g><g><title>core::slice::sort::unstable::quicksort::quicksort (1 samples, 0.01%)</title><rect x="73.9399%" y="965" width="0.0119%" height="15" fill="rgb(235,42,18)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="975.50"></text></g><g><title>core::slice::sort::shared::smallsort::small_sort_fallback (1 samples, 0.01%)</title><rect x="73.9399%" y="949" width="0.0119%" height="15" fill="rgb(219,66,54)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="959.50"></text></g><g><title>core::slice::sort::shared::smallsort::insertion_sort_shift_left (1 samples, 0.01%)</title><rect x="73.9399%" y="933" width="0.0119%" height="15" fill="rgb(222,205,4)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="943.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.01%)</title><rect x="73.9399%" y="917" width="0.0119%" height="15" fill="rgb(227,213,46)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="927.50"></text></g><g><title>core::ptr::const_ptr::_&lt;impl *const T&gt;::is_aligned_to (1 samples, 0.01%)</title><rect x="73.9399%" y="901" width="0.0119%" height="15" fill="rgb(250,145,42)" fg:x="6225" fg:w="1"/><text x="74.1899%" y="911.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.01%)</title><rect x="73.9518%" y="1013" width="0.0119%" height="15" fill="rgb(219,15,2)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="1023.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_one (1 samples, 0.01%)</title><rect x="73.9518%" y="997" width="0.0119%" height="15" fill="rgb(231,181,52)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="1007.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.01%)</title><rect x="73.9518%" y="981" width="0.0119%" height="15" fill="rgb(235,1,42)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="991.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.01%)</title><rect x="73.9518%" y="965" width="0.0119%" height="15" fill="rgb(249,88,27)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="975.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (1 samples, 0.01%)</title><rect x="73.9518%" y="949" width="0.0119%" height="15" fill="rgb(235,145,16)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="959.50"></text></g><g><title>alloc::alloc::Global::grow_impl (1 samples, 0.01%)</title><rect x="73.9518%" y="933" width="0.0119%" height="15" fill="rgb(237,114,19)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="943.50"></text></g><g><title>__rustc::__rust_realloc (1 samples, 0.01%)</title><rect x="73.9518%" y="917" width="0.0119%" height="15" fill="rgb(238,51,50)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="927.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (1 samples, 0.01%)</title><rect x="73.9518%" y="901" width="0.0119%" height="15" fill="rgb(205,194,25)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="911.50"></text></g><g><title>_rjem_realloc (1 samples, 0.01%)</title><rect x="73.9518%" y="885" width="0.0119%" height="15" fill="rgb(215,203,17)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="895.50"></text></g><g><title>do_rallocx (1 samples, 0.01%)</title><rect x="73.9518%" y="869" width="0.0119%" height="15" fill="rgb(233,112,49)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="879.50"></text></g><g><title>_rjem_je_arena_ralloc (1 samples, 0.01%)</title><rect x="73.9518%" y="853" width="0.0119%" height="15" fill="rgb(241,130,26)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="863.50"></text></g><g><title>arena_ralloc_move_helper (1 samples, 0.01%)</title><rect x="73.9518%" y="837" width="0.0119%" height="15" fill="rgb(252,223,19)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="847.50"></text></g><g><title>_rjem_je_arena_malloc_hard (1 samples, 0.01%)</title><rect x="73.9518%" y="821" width="0.0119%" height="15" fill="rgb(211,95,25)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="831.50"></text></g><g><title>arena_malloc_small (1 samples, 0.01%)</title><rect x="73.9518%" y="805" width="0.0119%" height="15" fill="rgb(251,182,27)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="815.50"></text></g><g><title>arena_slab_alloc (1 samples, 0.01%)</title><rect x="73.9518%" y="789" width="0.0119%" height="15" fill="rgb(238,24,4)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="799.50"></text></g><g><title>_rjem_je_pa_alloc (1 samples, 0.01%)</title><rect x="73.9518%" y="773" width="0.0119%" height="15" fill="rgb(224,220,25)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="783.50"></text></g><g><title>pai_alloc (1 samples, 0.01%)</title><rect x="73.9518%" y="757" width="0.0119%" height="15" fill="rgb(239,133,26)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="767.50"></text></g><g><title>pac_alloc_impl (1 samples, 0.01%)</title><rect x="73.9518%" y="741" width="0.0119%" height="15" fill="rgb(211,94,48)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="751.50"></text></g><g><title>pac_alloc_real (1 samples, 0.01%)</title><rect x="73.9518%" y="725" width="0.0119%" height="15" fill="rgb(239,87,6)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="735.50"></text></g><g><title>_rjem_je_ecache_alloc (1 samples, 0.01%)</title><rect x="73.9518%" y="709" width="0.0119%" height="15" fill="rgb(227,62,0)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="719.50"></text></g><g><title>extent_recycle (1 samples, 0.01%)</title><rect x="73.9518%" y="693" width="0.0119%" height="15" fill="rgb(211,226,4)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="703.50"></text></g><g><title>extent_recycle_split (1 samples, 0.01%)</title><rect x="73.9518%" y="677" width="0.0119%" height="15" fill="rgb(253,38,52)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="687.50"></text></g><g><title>extent_split_interior (1 samples, 0.01%)</title><rect x="73.9518%" y="661" width="0.0119%" height="15" fill="rgb(229,126,40)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="671.50"></text></g><g><title>edata_size_get (1 samples, 0.01%)</title><rect x="73.9518%" y="645" width="0.0119%" height="15" fill="rgb(229,165,44)" fg:x="6226" fg:w="1"/><text x="74.2018%" y="655.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.01%)</title><rect x="73.9637%" y="917" width="0.0119%" height="15" fill="rgb(247,95,47)" fg:x="6227" fg:w="1"/><text x="74.2137%" y="927.50"></text></g><g><title>uv_pep440::version::Parser::into_pattern (1 samples, 0.01%)</title><rect x="73.9755%" y="757" width="0.0119%" height="15" fill="rgb(216,140,30)" fg:x="6228" fg:w="1"/><text x="74.2255%" y="767.50"></text></g><g><title>uv_pep440::version::Version::new (1 samples, 0.01%)</title><rect x="73.9755%" y="741" width="0.0119%" height="15" fill="rgb(246,214,8)" fg:x="6228" fg:w="1"/><text x="74.2255%" y="751.50"></text></g><g><title>uv_pep440::version::Version::with_release (1 samples, 0.01%)</title><rect x="73.9755%" y="725" width="0.0119%" height="15" fill="rgb(227,224,15)" fg:x="6228" fg:w="1"/><text x="74.2255%" y="735.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="73.9755%" y="709" width="0.0119%" height="15" fill="rgb(233,175,4)" fg:x="6228" fg:w="1"/><text x="74.2255%" y="719.50"></text></g><g><title>core::str::_&lt;impl str&gt;::parse (2 samples, 0.02%)</title><rect x="73.9755%" y="805" width="0.0238%" height="15" fill="rgb(221,66,45)" fg:x="6228" fg:w="2"/><text x="74.2255%" y="815.50"></text></g><g><title>&lt;uv_pep440::version::VersionPattern as core::str::traits::FromStr&gt;::from_str (2 samples, 0.02%)</title><rect x="73.9755%" y="789" width="0.0238%" height="15" fill="rgb(221,178,18)" fg:x="6228" fg:w="2"/><text x="74.2255%" y="799.50"></text></g><g><title>uv_pep440::version::Parser::parse_pattern (2 samples, 0.02%)</title><rect x="73.9755%" y="773" width="0.0238%" height="15" fill="rgb(213,81,29)" fg:x="6228" fg:w="2"/><text x="74.2255%" y="783.50"></text></g><g><title>uv_pep440::version::Parser::parse_fast (1 samples, 0.01%)</title><rect x="73.9874%" y="757" width="0.0119%" height="15" fill="rgb(220,89,49)" fg:x="6229" fg:w="1"/><text x="74.2374%" y="767.50"></text></g><g><title>core::num::_&lt;impl u8&gt;::checked_sub (1 samples, 0.01%)</title><rect x="73.9874%" y="741" width="0.0119%" height="15" fill="rgb(227,60,33)" fg:x="6229" fg:w="1"/><text x="74.2374%" y="751.50"></text></g><g><title>&lt;uv_pep440::version_specifier::VersionSpecifier as core::str::traits::FromStr&gt;::from_str (4 samples, 0.05%)</title><rect x="73.9755%" y="821" width="0.0475%" height="15" fill="rgb(205,113,12)" fg:x="6228" fg:w="4"/><text x="74.2255%" y="831.50"></text></g><g><title>unscanny::Scanner::eat_while (2 samples, 0.02%)</title><rect x="73.9993%" y="805" width="0.0238%" height="15" fill="rgb(211,32,1)" fg:x="6230" fg:w="2"/><text x="74.2493%" y="815.50"></text></g><g><title>unscanny::Scanner::from (1 samples, 0.01%)</title><rect x="74.0112%" y="789" width="0.0119%" height="15" fill="rgb(246,2,12)" fg:x="6231" fg:w="1"/><text x="74.2612%" y="799.50"></text></g><g><title>core::str::_&lt;impl str&gt;::get_unchecked (1 samples, 0.01%)</title><rect x="74.0112%" y="773" width="0.0119%" height="15" fill="rgb(243,37,27)" fg:x="6231" fg:w="1"/><text x="74.2612%" y="783.50"></text></g><g><title>core::str::traits::_&lt;impl core::slice::index::SliceIndex&lt;str&gt; for core::ops::range::Range&lt;usize&gt;&gt;::get_unchecked (1 samples, 0.01%)</title><rect x="74.0112%" y="757" width="0.0119%" height="15" fill="rgb(248,211,31)" fg:x="6231" fg:w="1"/><text x="74.2612%" y="767.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (5 samples, 0.06%)</title><rect x="73.9755%" y="917" width="0.0594%" height="15" fill="rgb(242,146,47)" fg:x="6228" fg:w="5"/><text x="74.2255%" y="927.50"></text></g><g><title>&lt;&lt;uv_pypi_types::simple_json::File as serde::de::Deserialize&gt;::deserialize::FileVisitor as serde::de::Visitor&gt;::visit_map::_{{closure}} (5 samples, 0.06%)</title><rect x="73.9755%" y="901" width="0.0594%" height="15" fill="rgb(206,70,20)" fg:x="6228" fg:w="5"/><text x="74.2255%" y="911.50"></text></g><g><title>&lt;uv_pypi_types::lenient_requirement::LenientVersionSpecifiers as core::str::traits::FromStr&gt;::from_str (5 samples, 0.06%)</title><rect x="73.9755%" y="885" width="0.0594%" height="15" fill="rgb(215,10,51)" fg:x="6228" fg:w="5"/><text x="74.2255%" y="895.50"></text></g><g><title>uv_pypi_types::lenient_requirement::parse_with_fixups (5 samples, 0.06%)</title><rect x="73.9755%" y="869" width="0.0594%" height="15" fill="rgb(243,178,53)" fg:x="6228" fg:w="5"/><text x="74.2255%" y="879.50"></text></g><g><title>&lt;uv_pep440::version_specifier::VersionSpecifiers as core::str::traits::FromStr&gt;::from_str (5 samples, 0.06%)</title><rect x="73.9755%" y="853" width="0.0594%" height="15" fill="rgb(233,221,20)" fg:x="6228" fg:w="5"/><text x="74.2255%" y="863.50"></text></g><g><title>uv_pep440::version_specifier::parse_version_specifiers (5 samples, 0.06%)</title><rect x="73.9755%" y="837" width="0.0594%" height="15" fill="rgb(218,95,35)" fg:x="6228" fg:w="5"/><text x="74.2255%" y="847.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.01%)</title><rect x="74.0230%" y="821" width="0.0119%" height="15" fill="rgb(229,13,5)" fg:x="6232" fg:w="1"/><text x="74.2730%" y="831.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (1 samples, 0.01%)</title><rect x="74.0230%" y="805" width="0.0119%" height="15" fill="rgb(252,164,30)" fg:x="6232" fg:w="1"/><text x="74.2730%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.01%)</title><rect x="74.0230%" y="789" width="0.0119%" height="15" fill="rgb(232,68,36)" fg:x="6232" fg:w="1"/><text x="74.2730%" y="799.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.01%)</title><rect x="74.0230%" y="773" width="0.0119%" height="15" fill="rgb(219,59,54)" fg:x="6232" fg:w="1"/><text x="74.2730%" y="783.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="74.0230%" y="757" width="0.0119%" height="15" fill="rgb(250,92,33)" fg:x="6232" fg:w="1"/><text x="74.2730%" y="767.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="74.0230%" y="741" width="0.0119%" height="15" fill="rgb(229,162,54)" fg:x="6232" fg:w="1"/><text x="74.2730%" y="751.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="74.0230%" y="725" width="0.0119%" height="15" fill="rgb(244,114,52)" fg:x="6232" fg:w="1"/><text x="74.2730%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1 samples, 0.01%)</title><rect x="74.0349%" y="917" width="0.0119%" height="15" fill="rgb(212,211,43)" fg:x="6233" fg:w="1"/><text x="74.2849%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="74.0349%" y="901" width="0.0119%" height="15" fill="rgb(226,147,8)" fg:x="6233" fg:w="1"/><text x="74.2849%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="74.0349%" y="885" width="0.0119%" height="15" fill="rgb(226,23,13)" fg:x="6233" fg:w="1"/><text x="74.2849%" y="895.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="74.0349%" y="869" width="0.0119%" height="15" fill="rgb(240,63,4)" fg:x="6233" fg:w="1"/><text x="74.2849%" y="879.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="74.0349%" y="853" width="0.0119%" height="15" fill="rgb(221,1,32)" fg:x="6233" fg:w="1"/><text x="74.2849%" y="863.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="74.0349%" y="837" width="0.0119%" height="15" fill="rgb(242,117,10)" fg:x="6233" fg:w="1"/><text x="74.2849%" y="847.50"></text></g><g><title>core::slice::cmp::_&lt;impl core::cmp::PartialEq&lt;[U]&gt; for [T]&gt;::eq (2 samples, 0.02%)</title><rect x="74.0468%" y="917" width="0.0238%" height="15" fill="rgb(249,172,44)" fg:x="6234" fg:w="2"/><text x="74.2968%" y="927.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.01%)</title><rect x="74.0587%" y="901" width="0.0119%" height="15" fill="rgb(244,46,45)" fg:x="6235" fg:w="1"/><text x="74.3087%" y="911.50"></text></g><g><title>core::ops::function::FnOnce::call_once (2 samples, 0.02%)</title><rect x="74.0943%" y="789" width="0.0238%" height="15" fill="rgb(206,43,17)" fg:x="6238" fg:w="2"/><text x="74.3443%" y="799.50"></text></g><g><title>serde_json::read::as_str (2 samples, 0.02%)</title><rect x="74.0943%" y="773" width="0.0238%" height="15" fill="rgb(239,218,39)" fg:x="6238" fg:w="2"/><text x="74.3443%" y="783.50"></text></g><g><title>core::str::converts::from_utf8 (1 samples, 0.01%)</title><rect x="74.1062%" y="757" width="0.0119%" height="15" fill="rgb(208,169,54)" fg:x="6239" fg:w="1"/><text x="74.3562%" y="767.50"></text></g><g><title>&lt;core::slice::iter::ChunksExact&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="74.1181%" y="773" width="0.0119%" height="15" fill="rgb(247,25,42)" fg:x="6240" fg:w="1"/><text x="74.3681%" y="783.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_unchecked (1 samples, 0.01%)</title><rect x="74.1181%" y="757" width="0.0119%" height="15" fill="rgb(226,23,31)" fg:x="6240" fg:w="1"/><text x="74.3681%" y="767.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="74.1181%" y="741" width="0.0119%" height="15" fill="rgb(247,16,28)" fg:x="6240" fg:w="1"/><text x="74.3681%" y="751.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::chunks_exact (2 samples, 0.02%)</title><rect x="74.1299%" y="773" width="0.0238%" height="15" fill="rgb(231,147,38)" fg:x="6241" fg:w="2"/><text x="74.3799%" y="783.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_unchecked (2 samples, 0.02%)</title><rect x="74.1299%" y="757" width="0.0238%" height="15" fill="rgb(253,81,48)" fg:x="6241" fg:w="2"/><text x="74.3799%" y="767.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (2 samples, 0.02%)</title><rect x="74.1299%" y="741" width="0.0238%" height="15" fill="rgb(249,222,43)" fg:x="6241" fg:w="2"/><text x="74.3799%" y="751.50"></text></g><g><title>&lt;serde_json::read::SliceRead as serde_json::read::Read&gt;::parse_str (8 samples, 0.10%)</title><rect x="74.0706%" y="821" width="0.0950%" height="15" fill="rgb(221,3,27)" fg:x="6236" fg:w="8"/><text x="74.3206%" y="831.50"></text></g><g><title>serde_json::read::SliceRead::parse_str_bytes (8 samples, 0.10%)</title><rect x="74.0706%" y="805" width="0.0950%" height="15" fill="rgb(228,180,5)" fg:x="6236" fg:w="8"/><text x="74.3206%" y="815.50"></text></g><g><title>serde_json::read::SliceRead::skip_to_escape (4 samples, 0.05%)</title><rect x="74.1181%" y="789" width="0.0475%" height="15" fill="rgb(227,131,42)" fg:x="6240" fg:w="4"/><text x="74.3681%" y="799.50"></text></g><g><title>serde_json::read::is_escape (1 samples, 0.01%)</title><rect x="74.1537%" y="773" width="0.0119%" height="15" fill="rgb(212,3,39)" fg:x="6243" fg:w="1"/><text x="74.4037%" y="783.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="74.2131%" y="693" width="0.0119%" height="15" fill="rgb(226,45,5)" fg:x="6248" fg:w="1"/><text x="74.4631%" y="703.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (4 samples, 0.05%)</title><rect x="74.1893%" y="709" width="0.0475%" height="15" fill="rgb(215,167,45)" fg:x="6246" fg:w="4"/><text x="74.4393%" y="719.50"></text></g><g><title>core::alloc::layout::Layout::size (1 samples, 0.01%)</title><rect x="74.2250%" y="693" width="0.0119%" height="15" fill="rgb(250,218,53)" fg:x="6249" fg:w="1"/><text x="74.4750%" y="703.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (6 samples, 0.07%)</title><rect x="74.1775%" y="741" width="0.0713%" height="15" fill="rgb(207,140,0)" fg:x="6245" fg:w="6"/><text x="74.4275%" y="751.50"></text></g><g><title>__rustc::__rust_alloc (5 samples, 0.06%)</title><rect x="74.1893%" y="725" width="0.0594%" height="15" fill="rgb(238,133,51)" fg:x="6246" fg:w="5"/><text x="74.4393%" y="735.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked (1 samples, 0.01%)</title><rect x="74.2368%" y="709" width="0.0119%" height="15" fill="rgb(218,203,53)" fg:x="6250" fg:w="1"/><text x="74.4868%" y="719.50"></text></g><g><title>core::alloc::layout::Layout::from_size_align_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="74.2368%" y="693" width="0.0119%" height="15" fill="rgb(226,184,25)" fg:x="6250" fg:w="1"/><text x="74.4868%" y="703.50"></text></g><g><title>core::alloc::layout::Layout::is_size_align_valid (1 samples, 0.01%)</title><rect x="74.2368%" y="677" width="0.0119%" height="15" fill="rgb(231,121,21)" fg:x="6250" fg:w="1"/><text x="74.4868%" y="687.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (8 samples, 0.10%)</title><rect x="74.1656%" y="757" width="0.0950%" height="15" fill="rgb(251,14,34)" fg:x="6244" fg:w="8"/><text x="74.4156%" y="767.50"></text></g><g><title>core::hint::assert_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="74.2487%" y="741" width="0.0119%" height="15" fill="rgb(249,193,11)" fg:x="6251" fg:w="1"/><text x="74.4987%" y="751.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (17 samples, 0.20%)</title><rect x="74.0706%" y="885" width="0.2019%" height="15" fill="rgb(220,172,37)" fg:x="6236" fg:w="17"/><text x="74.3206%" y="895.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for alloc::string::String&gt;::deserialize (17 samples, 0.20%)</title><rect x="74.0706%" y="869" width="0.2019%" height="15" fill="rgb(231,229,43)" fg:x="6236" fg:w="17"/><text x="74.3206%" y="879.50"></text></g><g><title>&lt;serde_json::de::MapKey&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_string (17 samples, 0.20%)</title><rect x="74.0706%" y="853" width="0.2019%" height="15" fill="rgb(250,161,5)" fg:x="6236" fg:w="17"/><text x="74.3206%" y="863.50"></text></g><g><title>&lt;serde_json::de::MapKey&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_any (17 samples, 0.20%)</title><rect x="74.0706%" y="837" width="0.2019%" height="15" fill="rgb(218,225,18)" fg:x="6236" fg:w="17"/><text x="74.3206%" y="847.50"></text></g><g><title>serde::de::Visitor::visit_borrowed_str (9 samples, 0.11%)</title><rect x="74.1656%" y="821" width="0.1069%" height="15" fill="rgb(245,45,42)" fg:x="6244" fg:w="9"/><text x="74.4156%" y="831.50"></text></g><g><title>&lt;serde::de::impls::StringVisitor as serde::de::Visitor&gt;::visit_str (9 samples, 0.11%)</title><rect x="74.1656%" y="805" width="0.1069%" height="15" fill="rgb(211,115,1)" fg:x="6244" fg:w="9"/><text x="74.4156%" y="815.50"></text></g><g><title>alloc::str::_&lt;impl alloc::borrow::ToOwned for str&gt;::to_owned (9 samples, 0.11%)</title><rect x="74.1656%" y="789" width="0.1069%" height="15" fill="rgb(248,133,52)" fg:x="6244" fg:w="9"/><text x="74.4156%" y="799.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (9 samples, 0.11%)</title><rect x="74.1656%" y="773" width="0.1069%" height="15" fill="rgb(238,100,21)" fg:x="6244" fg:w="9"/><text x="74.4156%" y="783.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="74.2606%" y="757" width="0.0119%" height="15" fill="rgb(247,144,11)" fg:x="6252" fg:w="1"/><text x="74.5106%" y="767.50"></text></g><g><title>core::ub_checks::maybe_is_nonoverlapping::runtime (1 samples, 0.01%)</title><rect x="74.2606%" y="741" width="0.0119%" height="15" fill="rgb(206,164,16)" fg:x="6252" fg:w="1"/><text x="74.5106%" y="751.50"></text></g><g><title>serde::de::MapAccess::next_key (19 samples, 0.23%)</title><rect x="74.0706%" y="917" width="0.2257%" height="15" fill="rgb(222,34,3)" fg:x="6236" fg:w="19"/><text x="74.3206%" y="927.50"></text></g><g><title>&lt;serde_json::de::MapAccess&lt;R&gt; as serde::de::MapAccess&gt;::next_key_seed (19 samples, 0.23%)</title><rect x="74.0706%" y="901" width="0.2257%" height="15" fill="rgb(248,82,4)" fg:x="6236" fg:w="19"/><text x="74.3206%" y="911.50"></text></g><g><title>&lt;serde_json::de::MapAccess&lt;R&gt; as serde::de::MapAccess&gt;::next_key_seed::has_next_key (2 samples, 0.02%)</title><rect x="74.2725%" y="885" width="0.0238%" height="15" fill="rgb(228,81,46)" fg:x="6253" fg:w="2"/><text x="74.5225%" y="895.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="74.2962%" y="789" width="0.0119%" height="15" fill="rgb(227,67,47)" fg:x="6255" fg:w="1"/><text x="74.5462%" y="799.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.01%)</title><rect x="74.3200%" y="773" width="0.0119%" height="15" fill="rgb(215,93,53)" fg:x="6257" fg:w="1"/><text x="74.5700%" y="783.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="74.3319%" y="773" width="0.0119%" height="15" fill="rgb(248,194,39)" fg:x="6258" fg:w="1"/><text x="74.5819%" y="783.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at (2 samples, 0.02%)</title><rect x="74.3437%" y="773" width="0.0238%" height="15" fill="rgb(215,5,19)" fg:x="6259" fg:w="2"/><text x="74.5937%" y="783.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_unchecked (1 samples, 0.01%)</title><rect x="74.3556%" y="757" width="0.0119%" height="15" fill="rgb(226,215,51)" fg:x="6260" fg:w="1"/><text x="74.6056%" y="767.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="74.3556%" y="741" width="0.0119%" height="15" fill="rgb(225,56,26)" fg:x="6260" fg:w="1"/><text x="74.6056%" y="751.50"></text></g><g><title>jiff::fmt::offset::ParsedOffset::to_offset (1 samples, 0.01%)</title><rect x="74.3675%" y="773" width="0.0119%" height="15" fill="rgb(222,75,29)" fg:x="6261" fg:w="1"/><text x="74.6175%" y="783.50"></text></g><g><title>&lt;jiff::timestamp::Timestamp as serde::de::Deserialize&gt;::deserialize (8 samples, 0.10%)</title><rect x="74.2962%" y="869" width="0.0950%" height="15" fill="rgb(236,139,6)" fg:x="6255" fg:w="8"/><text x="74.5462%" y="879.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_str (8 samples, 0.10%)</title><rect x="74.2962%" y="853" width="0.0950%" height="15" fill="rgb(223,137,36)" fg:x="6255" fg:w="8"/><text x="74.5462%" y="863.50"></text></g><g><title>serde::de::Visitor::visit_borrowed_str (8 samples, 0.10%)</title><rect x="74.2962%" y="837" width="0.0950%" height="15" fill="rgb(226,99,2)" fg:x="6255" fg:w="8"/><text x="74.5462%" y="847.50"></text></g><g><title>&lt;&lt;jiff::timestamp::Timestamp as serde::de::Deserialize&gt;::deserialize::TimestampVisitor as serde::de::Visitor&gt;::visit_str (8 samples, 0.10%)</title><rect x="74.2962%" y="821" width="0.0950%" height="15" fill="rgb(206,133,23)" fg:x="6255" fg:w="8"/><text x="74.5462%" y="831.50"></text></g><g><title>&lt;&lt;jiff::timestamp::Timestamp as serde::de::Deserialize&gt;::deserialize::TimestampVisitor as serde::de::Visitor&gt;::visit_bytes (8 samples, 0.10%)</title><rect x="74.2962%" y="805" width="0.0950%" height="15" fill="rgb(243,173,15)" fg:x="6255" fg:w="8"/><text x="74.5462%" y="815.50"></text></g><g><title>jiff::fmt::temporal::DateTimeParser::parse_timestamp (7 samples, 0.08%)</title><rect x="74.3081%" y="789" width="0.0831%" height="15" fill="rgb(228,69,28)" fg:x="6256" fg:w="7"/><text x="74.5581%" y="799.50"></text></g><g><title>jiff::fmt::util::parse_temporal_fraction::imp (1 samples, 0.01%)</title><rect x="74.3794%" y="773" width="0.0119%" height="15" fill="rgb(212,51,22)" fg:x="6262" fg:w="1"/><text x="74.6294%" y="783.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::map_err (1 samples, 0.01%)</title><rect x="74.3794%" y="757" width="0.0119%" height="15" fill="rgb(227,113,0)" fg:x="6262" fg:w="1"/><text x="74.6294%" y="767.50"></text></g><g><title>&lt;T as core::convert::TryInto&lt;U&gt;&gt;::try_into (1 samples, 0.01%)</title><rect x="74.4031%" y="789" width="0.0119%" height="15" fill="rgb(252,84,27)" fg:x="6264" fg:w="1"/><text x="74.6531%" y="799.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="74.4150%" y="757" width="0.0119%" height="15" fill="rgb(223,145,39)" fg:x="6265" fg:w="1"/><text x="74.6650%" y="767.50"></text></g><g><title>&lt;serde_json::read::SliceRead as serde_json::read::Read&gt;::parse_str (5 samples, 0.06%)</title><rect x="74.3913%" y="837" width="0.0594%" height="15" fill="rgb(239,219,30)" fg:x="6263" fg:w="5"/><text x="74.6413%" y="847.50"></text></g><g><title>serde_json::read::SliceRead::parse_str_bytes (5 samples, 0.06%)</title><rect x="74.3913%" y="821" width="0.0594%" height="15" fill="rgb(224,196,39)" fg:x="6263" fg:w="5"/><text x="74.6413%" y="831.50"></text></g><g><title>serde_json::read::SliceRead::skip_to_escape (5 samples, 0.06%)</title><rect x="74.3913%" y="805" width="0.0594%" height="15" fill="rgb(205,35,43)" fg:x="6263" fg:w="5"/><text x="74.6413%" y="815.50"></text></g><g><title>&lt;core::slice::iter::ChunksExact&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.04%)</title><rect x="74.4150%" y="789" width="0.0356%" height="15" fill="rgb(228,201,21)" fg:x="6265" fg:w="3"/><text x="74.6650%" y="799.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_unchecked (3 samples, 0.04%)</title><rect x="74.4150%" y="773" width="0.0356%" height="15" fill="rgb(237,118,16)" fg:x="6265" fg:w="3"/><text x="74.6650%" y="783.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (2 samples, 0.02%)</title><rect x="74.4269%" y="757" width="0.0238%" height="15" fill="rgb(241,17,19)" fg:x="6266" fg:w="2"/><text x="74.6769%" y="767.50"></text></g><g><title>&lt;uv_small_str::SmallString as serde::de::Deserialize&gt;::deserialize (7 samples, 0.08%)</title><rect x="74.3913%" y="869" width="0.0831%" height="15" fill="rgb(214,10,25)" fg:x="6263" fg:w="7"/><text x="74.6413%" y="879.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_str (7 samples, 0.08%)</title><rect x="74.3913%" y="853" width="0.0831%" height="15" fill="rgb(238,37,29)" fg:x="6263" fg:w="7"/><text x="74.6413%" y="863.50"></text></g><g><title>serde::de::Visitor::visit_borrowed_str (2 samples, 0.02%)</title><rect x="74.4506%" y="837" width="0.0238%" height="15" fill="rgb(253,83,25)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="847.50"></text></g><g><title>&lt;&lt;uv_small_str::SmallString as serde::de::Deserialize&gt;::deserialize::Visitor as serde::de::Visitor&gt;::visit_str (2 samples, 0.02%)</title><rect x="74.4506%" y="821" width="0.0238%" height="15" fill="rgb(234,192,12)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="831.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.02%)</title><rect x="74.4506%" y="805" width="0.0238%" height="15" fill="rgb(241,216,45)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="815.50"></text></g><g><title>&lt;uv_small_str::SmallString as core::convert::From&lt;&amp;str&gt;&gt;::from (2 samples, 0.02%)</title><rect x="74.4506%" y="789" width="0.0238%" height="15" fill="rgb(242,22,33)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="799.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.02%)</title><rect x="74.4506%" y="773" width="0.0238%" height="15" fill="rgb(231,105,49)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="783.50"></text></g><g><title>&lt;arcstr::arc_str::ArcStr as core::convert::From&lt;&amp;str&gt;&gt;::from (2 samples, 0.02%)</title><rect x="74.4506%" y="757" width="0.0238%" height="15" fill="rgb(218,204,15)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="767.50"></text></g><g><title>arcstr::arc_str::ThinInner::allocate (2 samples, 0.02%)</title><rect x="74.4506%" y="741" width="0.0238%" height="15" fill="rgb(235,138,41)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="751.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate (2 samples, 0.02%)</title><rect x="74.4506%" y="725" width="0.0238%" height="15" fill="rgb(246,0,9)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="735.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate_with (2 samples, 0.02%)</title><rect x="74.4506%" y="709" width="0.0238%" height="15" fill="rgb(210,74,4)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="719.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate_maybe_uninit (2 samples, 0.02%)</title><rect x="74.4506%" y="693" width="0.0238%" height="15" fill="rgb(250,60,41)" fg:x="6268" fg:w="2"/><text x="74.7006%" y="703.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.01%)</title><rect x="74.4625%" y="677" width="0.0119%" height="15" fill="rgb(220,115,12)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="687.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="74.4625%" y="661" width="0.0119%" height="15" fill="rgb(237,100,13)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="671.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="74.4625%" y="645" width="0.0119%" height="15" fill="rgb(213,55,26)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="655.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="74.4625%" y="629" width="0.0119%" height="15" fill="rgb(216,17,4)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="639.50"></text></g><g><title>_rjem_je_malloc_default (1 samples, 0.01%)</title><rect x="74.4625%" y="613" width="0.0119%" height="15" fill="rgb(220,153,47)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="623.50"></text></g><g><title>_rjem_je_tcache_alloc_small_hard (1 samples, 0.01%)</title><rect x="74.4625%" y="597" width="0.0119%" height="15" fill="rgb(215,131,9)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="607.50"></text></g><g><title>_rjem_je_arena_cache_bin_fill_small (1 samples, 0.01%)</title><rect x="74.4625%" y="581" width="0.0119%" height="15" fill="rgb(233,46,42)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="591.50"></text></g><g><title>arena_slab_alloc (1 samples, 0.01%)</title><rect x="74.4625%" y="565" width="0.0119%" height="15" fill="rgb(226,86,7)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="575.50"></text></g><g><title>_rjem_je_pa_alloc (1 samples, 0.01%)</title><rect x="74.4625%" y="549" width="0.0119%" height="15" fill="rgb(239,226,21)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="559.50"></text></g><g><title>pai_alloc (1 samples, 0.01%)</title><rect x="74.4625%" y="533" width="0.0119%" height="15" fill="rgb(244,137,22)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="543.50"></text></g><g><title>pac_alloc_impl (1 samples, 0.01%)</title><rect x="74.4625%" y="517" width="0.0119%" height="15" fill="rgb(211,139,35)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="527.50"></text></g><g><title>pac_alloc_real (1 samples, 0.01%)</title><rect x="74.4625%" y="501" width="0.0119%" height="15" fill="rgb(214,62,50)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="511.50"></text></g><g><title>_rjem_je_ecache_alloc_grow (1 samples, 0.01%)</title><rect x="74.4625%" y="485" width="0.0119%" height="15" fill="rgb(212,113,44)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="495.50"></text></g><g><title>_rjem_je_extent_alloc_wrapper (1 samples, 0.01%)</title><rect x="74.4625%" y="469" width="0.0119%" height="15" fill="rgb(226,150,43)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="479.50"></text></g><g><title>ehooks_alloc (1 samples, 0.01%)</title><rect x="74.4625%" y="453" width="0.0119%" height="15" fill="rgb(250,71,37)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="463.50"></text></g><g><title>_rjem_je_ehooks_default_alloc_impl (1 samples, 0.01%)</title><rect x="74.4625%" y="437" width="0.0119%" height="15" fill="rgb(219,76,19)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="447.50"></text></g><g><title>extent_alloc_core (1 samples, 0.01%)</title><rect x="74.4625%" y="421" width="0.0119%" height="15" fill="rgb(250,39,11)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="431.50"></text></g><g><title>_rjem_je_extent_alloc_mmap (1 samples, 0.01%)</title><rect x="74.4625%" y="405" width="0.0119%" height="15" fill="rgb(230,64,31)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="415.50"></text></g><g><title>_rjem_je_pages_map (1 samples, 0.01%)</title><rect x="74.4625%" y="389" width="0.0119%" height="15" fill="rgb(208,222,23)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="399.50"></text></g><g><title>os_pages_map (1 samples, 0.01%)</title><rect x="74.4625%" y="373" width="0.0119%" height="15" fill="rgb(227,125,18)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="383.50"></text></g><g><title>__mmap (1 samples, 0.01%)</title><rect x="74.4625%" y="357" width="0.0119%" height="15" fill="rgb(234,210,9)" fg:x="6269" fg:w="1"/><text x="74.7125%" y="367.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::Yanked as serde::de::Deserialize&gt;::deserialize (1 samples, 0.01%)</title><rect x="74.4744%" y="853" width="0.0119%" height="15" fill="rgb(217,127,24)" fg:x="6270" fg:w="1"/><text x="74.7244%" y="863.50"></text></g><g><title>serde_untagged::UntaggedEnumVisitor&lt;Value&gt;::deserialize (1 samples, 0.01%)</title><rect x="74.4744%" y="837" width="0.0119%" height="15" fill="rgb(239,141,48)" fg:x="6270" fg:w="1"/><text x="74.7244%" y="847.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="74.4744%" y="821" width="0.0119%" height="15" fill="rgb(227,109,8)" fg:x="6270" fg:w="1"/><text x="74.7244%" y="831.50"></text></g><g><title>&lt;serde_untagged::UntaggedEnumVisitor&lt;Value&gt; as serde::de::Visitor&gt;::visit_bool (1 samples, 0.01%)</title><rect x="74.4744%" y="805" width="0.0119%" height="15" fill="rgb(235,184,23)" fg:x="6270" fg:w="1"/><text x="74.7244%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;alloc::boxed::Box&lt;dyn core::ops::function::FnOnce&lt;(u128,)&gt;+Output = core::result::Result&lt;uv_pypi_types::simple_json::Yanked,serde_untagged::error::Error&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="74.4744%" y="789" width="0.0119%" height="15" fill="rgb(227,226,48)" fg:x="6270" fg:w="1"/><text x="74.7244%" y="799.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for alloc::boxed::Box&lt;T&gt;&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.4744%" y="869" width="0.0238%" height="15" fill="rgb(206,150,11)" fg:x="6270" fg:w="2"/><text x="74.7244%" y="879.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::map (1 samples, 0.01%)</title><rect x="74.4863%" y="853" width="0.0119%" height="15" fill="rgb(254,2,33)" fg:x="6271" fg:w="1"/><text x="74.7363%" y="863.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.01%)</title><rect x="74.4863%" y="837" width="0.0119%" height="15" fill="rgb(243,160,20)" fg:x="6271" fg:w="1"/><text x="74.7363%" y="847.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.01%)</title><rect x="74.4863%" y="821" width="0.0119%" height="15" fill="rgb(218,208,30)" fg:x="6271" fg:w="1"/><text x="74.7363%" y="831.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.01%)</title><rect x="74.4863%" y="805" width="0.0119%" height="15" fill="rgb(224,120,49)" fg:x="6271" fg:w="1"/><text x="74.7363%" y="815.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.01%)</title><rect x="74.4863%" y="789" width="0.0119%" height="15" fill="rgb(246,12,2)" fg:x="6271" fg:w="1"/><text x="74.7363%" y="799.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="74.4863%" y="773" width="0.0119%" height="15" fill="rgb(236,117,3)" fg:x="6271" fg:w="1"/><text x="74.7363%" y="783.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="74.4863%" y="757" width="0.0119%" height="15" fill="rgb(216,128,52)" fg:x="6271" fg:w="1"/><text x="74.7363%" y="767.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="74.4863%" y="741" width="0.0119%" height="15" fill="rgb(246,145,19)" fg:x="6271" fg:w="1"/><text x="74.7363%" y="751.50"></text></g><g><title>&lt;&amp;mut dyn erased_serde::de::Visitor as serde::de::Visitor&gt;::visit_borrowed_str (1 samples, 0.01%)</title><rect x="74.4982%" y="421" width="0.0119%" height="15" fill="rgb(222,11,46)" fg:x="6272" fg:w="1"/><text x="74.7482%" y="431.50"></text></g><g><title>&lt;erased_serde::de::erase::Visitor&lt;T&gt; as erased_serde::de::Visitor&gt;::erased_visit_borrowed_str (1 samples, 0.01%)</title><rect x="74.4982%" y="405" width="0.0119%" height="15" fill="rgb(245,82,36)" fg:x="6272" fg:w="1"/><text x="74.7482%" y="415.50"></text></g><g><title>serde::de::Visitor::visit_borrowed_str (1 samples, 0.01%)</title><rect x="74.4982%" y="389" width="0.0119%" height="15" fill="rgb(250,73,51)" fg:x="6272" fg:w="1"/><text x="74.7482%" y="399.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::_::&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::Hashes&gt;::deserialize::__FieldVisitor as serde::de::Visitor&gt;::visit_str (1 samples, 0.01%)</title><rect x="74.4982%" y="373" width="0.0119%" height="15" fill="rgb(221,189,23)" fg:x="6272" fg:w="1"/><text x="74.7482%" y="383.50"></text></g><g><title>core::slice::cmp::_&lt;impl core::cmp::PartialEq&lt;[U]&gt; for [T]&gt;::eq (1 samples, 0.01%)</title><rect x="74.4982%" y="357" width="0.0119%" height="15" fill="rgb(210,33,7)" fg:x="6272" fg:w="1"/><text x="74.7482%" y="367.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.01%)</title><rect x="74.4982%" y="341" width="0.0119%" height="15" fill="rgb(210,107,22)" fg:x="6272" fg:w="1"/><text x="74.7482%" y="351.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.4982%" y="533" width="0.0238%" height="15" fill="rgb(222,116,37)" fg:x="6272" fg:w="2"/><text x="74.7482%" y="543.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::_::&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::Hashes&gt;::deserialize::__Field as serde::de::Deserialize&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.4982%" y="517" width="0.0238%" height="15" fill="rgb(254,17,48)" fg:x="6272" fg:w="2"/><text x="74.7482%" y="527.50"></text></g><g><title>erased_serde::de::_&lt;impl serde::de::Deserializer for alloc::boxed::Box&lt;dyn erased_serde::de::Deserializer&gt;&gt;::deserialize_identifier (2 samples, 0.02%)</title><rect x="74.4982%" y="501" width="0.0238%" height="15" fill="rgb(224,36,32)" fg:x="6272" fg:w="2"/><text x="74.7482%" y="511.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T&gt; as erased_serde::de::Deserializer&gt;::erased_deserialize_identifier (2 samples, 0.02%)</title><rect x="74.4982%" y="485" width="0.0238%" height="15" fill="rgb(232,90,46)" fg:x="6272" fg:w="2"/><text x="74.7482%" y="495.50"></text></g><g><title>&lt;erased_serde::de::erase::Deserializer&lt;T&gt; as erased_serde::de::Deserializer&gt;::erased_deserialize_identifier (2 samples, 0.02%)</title><rect x="74.4982%" y="469" width="0.0238%" height="15" fill="rgb(241,66,40)" fg:x="6272" fg:w="2"/><text x="74.7482%" y="479.50"></text></g><g><title>&lt;serde_json::de::MapKey&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_identifier (2 samples, 0.02%)</title><rect x="74.4982%" y="453" width="0.0238%" height="15" fill="rgb(249,184,29)" fg:x="6272" fg:w="2"/><text x="74.7482%" y="463.50"></text></g><g><title>&lt;serde_json::de::MapKey&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_any (2 samples, 0.02%)</title><rect x="74.4982%" y="437" width="0.0238%" height="15" fill="rgb(231,181,1)" fg:x="6272" fg:w="2"/><text x="74.7482%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::clear (1 samples, 0.01%)</title><rect x="74.5100%" y="421" width="0.0119%" height="15" fill="rgb(224,94,2)" fg:x="6273" fg:w="1"/><text x="74.7600%" y="431.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut::precondition_check (1 samples, 0.01%)</title><rect x="74.5100%" y="405" width="0.0119%" height="15" fill="rgb(229,170,15)" fg:x="6273" fg:w="1"/><text x="74.7600%" y="415.50"></text></g><g><title>serde::de::MapAccess::next_key (3 samples, 0.04%)</title><rect x="74.4982%" y="629" width="0.0356%" height="15" fill="rgb(240,127,35)" fg:x="6272" fg:w="3"/><text x="74.7482%" y="639.50"></text></g><g><title>&lt;serde_untagged::map::Map as serde::de::MapAccess&gt;::next_key_seed (3 samples, 0.04%)</title><rect x="74.4982%" y="613" width="0.0356%" height="15" fill="rgb(248,196,34)" fg:x="6272" fg:w="3"/><text x="74.7482%" y="623.50"></text></g><g><title>&lt;Access as serde_untagged::map::ErasedMapAccess&gt;::erased_next_key_seed (3 samples, 0.04%)</title><rect x="74.4982%" y="597" width="0.0356%" height="15" fill="rgb(236,137,7)" fg:x="6272" fg:w="3"/><text x="74.7482%" y="607.50"></text></g><g><title>&lt;serde_json::de::MapAccess&lt;R&gt; as serde::de::MapAccess&gt;::next_key_seed (3 samples, 0.04%)</title><rect x="74.4982%" y="581" width="0.0356%" height="15" fill="rgb(235,127,16)" fg:x="6272" fg:w="3"/><text x="74.7482%" y="591.50"></text></g><g><title>&lt;&amp;mut dyn serde_untagged::seed::ErasedDeserializeSeed as serde::de::DeserializeSeed&gt;::deserialize (3 samples, 0.04%)</title><rect x="74.4982%" y="565" width="0.0356%" height="15" fill="rgb(250,192,54)" fg:x="6272" fg:w="3"/><text x="74.7482%" y="575.50"></text></g><g><title>&lt;core::option::Option&lt;Seed&gt; as serde_untagged::seed::ErasedDeserializeSeed&gt;::erased_deserialize (3 samples, 0.04%)</title><rect x="74.4982%" y="549" width="0.0356%" height="15" fill="rgb(218,98,20)" fg:x="6272" fg:w="3"/><text x="74.7482%" y="559.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::map (1 samples, 0.01%)</title><rect x="74.5219%" y="533" width="0.0119%" height="15" fill="rgb(230,176,47)" fg:x="6274" fg:w="1"/><text x="74.7719%" y="543.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.5338%" y="533" width="0.0238%" height="15" fill="rgb(244,2,33)" fg:x="6275" fg:w="2"/><text x="74.7838%" y="543.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for core::option::Option&lt;T&gt;&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.5338%" y="517" width="0.0238%" height="15" fill="rgb(231,100,17)" fg:x="6275" fg:w="2"/><text x="74.7838%" y="527.50"></text></g><g><title>erased_serde::de::_&lt;impl serde::de::Deserializer for alloc::boxed::Box&lt;dyn erased_serde::de::Deserializer&gt;&gt;::deserialize_option (2 samples, 0.02%)</title><rect x="74.5338%" y="501" width="0.0238%" height="15" fill="rgb(245,23,12)" fg:x="6275" fg:w="2"/><text x="74.7838%" y="511.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T&gt; as erased_serde::de::Deserializer&gt;::erased_deserialize_option (2 samples, 0.02%)</title><rect x="74.5338%" y="485" width="0.0238%" height="15" fill="rgb(249,55,22)" fg:x="6275" fg:w="2"/><text x="74.7838%" y="495.50"></text></g><g><title>&lt;erased_serde::de::erase::Deserializer&lt;T&gt; as erased_serde::de::Deserializer&gt;::erased_deserialize_option (2 samples, 0.02%)</title><rect x="74.5338%" y="469" width="0.0238%" height="15" fill="rgb(207,134,9)" fg:x="6275" fg:w="2"/><text x="74.7838%" y="479.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_option (2 samples, 0.02%)</title><rect x="74.5338%" y="453" width="0.0238%" height="15" fill="rgb(218,134,0)" fg:x="6275" fg:w="2"/><text x="74.7838%" y="463.50"></text></g><g><title>&lt;&amp;mut dyn erased_serde::de::Visitor as serde::de::Visitor&gt;::visit_some (2 samples, 0.02%)</title><rect x="74.5338%" y="437" width="0.0238%" height="15" fill="rgb(213,212,33)" fg:x="6275" fg:w="2"/><text x="74.7838%" y="447.50"></text></g><g><title>&lt;erased_serde::de::erase::Visitor&lt;T&gt; as erased_serde::de::Visitor&gt;::erased_visit_some (1 samples, 0.01%)</title><rect x="74.5457%" y="421" width="0.0119%" height="15" fill="rgb(252,106,18)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="431.50"></text></g><g><title>&lt;serde::de::impls::OptionVisitor&lt;T&gt; as serde::de::Visitor&gt;::visit_some (1 samples, 0.01%)</title><rect x="74.5457%" y="405" width="0.0119%" height="15" fill="rgb(208,126,42)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="415.50"></text></g><g><title>&lt;uv_small_str::SmallString as serde::de::Deserialize&gt;::deserialize (1 samples, 0.01%)</title><rect x="74.5457%" y="389" width="0.0119%" height="15" fill="rgb(246,175,29)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="399.50"></text></g><g><title>&lt;&amp;mut dyn erased_serde::de::Deserializer as serde::de::Deserializer&gt;::deserialize_str (1 samples, 0.01%)</title><rect x="74.5457%" y="373" width="0.0119%" height="15" fill="rgb(215,13,50)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="383.50"></text></g><g><title>&lt;erased_serde::de::erase::Deserializer&lt;T&gt; as erased_serde::de::Deserializer&gt;::erased_deserialize_str (1 samples, 0.01%)</title><rect x="74.5457%" y="357" width="0.0119%" height="15" fill="rgb(216,172,15)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="367.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_str (1 samples, 0.01%)</title><rect x="74.5457%" y="341" width="0.0119%" height="15" fill="rgb(212,103,13)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="351.50"></text></g><g><title>&lt;&amp;mut dyn erased_serde::de::Visitor as serde::de::Visitor&gt;::visit_borrowed_str (1 samples, 0.01%)</title><rect x="74.5457%" y="325" width="0.0119%" height="15" fill="rgb(231,171,36)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="335.50"></text></g><g><title>&lt;erased_serde::de::erase::Visitor&lt;T&gt; as erased_serde::de::Visitor&gt;::erased_visit_borrowed_str (1 samples, 0.01%)</title><rect x="74.5457%" y="309" width="0.0119%" height="15" fill="rgb(250,123,20)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="319.50"></text></g><g><title>serde::de::Visitor::visit_borrowed_str (1 samples, 0.01%)</title><rect x="74.5457%" y="293" width="0.0119%" height="15" fill="rgb(212,53,50)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="303.50"></text></g><g><title>&lt;&lt;uv_small_str::SmallString as serde::de::Deserialize&gt;::deserialize::Visitor as serde::de::Visitor&gt;::visit_str (1 samples, 0.01%)</title><rect x="74.5457%" y="277" width="0.0119%" height="15" fill="rgb(243,54,12)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="287.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.01%)</title><rect x="74.5457%" y="261" width="0.0119%" height="15" fill="rgb(234,101,34)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="271.50"></text></g><g><title>&lt;uv_small_str::SmallString as core::convert::From&lt;&amp;str&gt;&gt;::from (1 samples, 0.01%)</title><rect x="74.5457%" y="245" width="0.0119%" height="15" fill="rgb(254,67,22)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="255.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.01%)</title><rect x="74.5457%" y="229" width="0.0119%" height="15" fill="rgb(250,35,47)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="239.50"></text></g><g><title>&lt;arcstr::arc_str::ArcStr as core::convert::From&lt;&amp;str&gt;&gt;::from (1 samples, 0.01%)</title><rect x="74.5457%" y="213" width="0.0119%" height="15" fill="rgb(226,126,38)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="223.50"></text></g><g><title>arcstr::arc_str::ThinInner::allocate (1 samples, 0.01%)</title><rect x="74.5457%" y="197" width="0.0119%" height="15" fill="rgb(216,138,53)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="207.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate (1 samples, 0.01%)</title><rect x="74.5457%" y="181" width="0.0119%" height="15" fill="rgb(246,199,43)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="191.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate_with (1 samples, 0.01%)</title><rect x="74.5457%" y="165" width="0.0119%" height="15" fill="rgb(232,125,11)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="175.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate::_{{closure}} (1 samples, 0.01%)</title><rect x="74.5457%" y="149" width="0.0119%" height="15" fill="rgb(218,219,45)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="159.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="74.5457%" y="133" width="0.0119%" height="15" fill="rgb(216,102,54)" fg:x="6276" fg:w="1"/><text x="74.7957%" y="143.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_any (6 samples, 0.07%)</title><rect x="74.4982%" y="789" width="0.0713%" height="15" fill="rgb(250,228,7)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="799.50"></text></g><g><title>&lt;serde_untagged::UntaggedEnumVisitor&lt;Value&gt; as serde::de::Visitor&gt;::visit_map (6 samples, 0.07%)</title><rect x="74.4982%" y="773" width="0.0713%" height="15" fill="rgb(226,125,25)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="783.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (6 samples, 0.07%)</title><rect x="74.4982%" y="757" width="0.0713%" height="15" fill="rgb(224,165,27)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="767.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (6 samples, 0.07%)</title><rect x="74.4982%" y="741" width="0.0713%" height="15" fill="rgb(233,86,3)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="751.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::CoreMetadata as serde::de::Deserialize&gt;::deserialize::_{{closure}} (6 samples, 0.07%)</title><rect x="74.4982%" y="725" width="0.0713%" height="15" fill="rgb(228,116,20)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="735.50"></text></g><g><title>serde_untagged::map::Map::deserialize (6 samples, 0.07%)</title><rect x="74.4982%" y="709" width="0.0713%" height="15" fill="rgb(209,192,17)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="719.50"></text></g><g><title>uv_pypi_types::simple_json::_::_&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::Hashes&gt;::deserialize (6 samples, 0.07%)</title><rect x="74.4982%" y="693" width="0.0713%" height="15" fill="rgb(224,88,34)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="703.50"></text></g><g><title>&lt;serde::de::value::MapAccessDeserializer&lt;A&gt; as serde::de::Deserializer&gt;::deserialize_struct (6 samples, 0.07%)</title><rect x="74.4982%" y="677" width="0.0713%" height="15" fill="rgb(233,38,6)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="687.50"></text></g><g><title>&lt;serde::de::value::MapAccessDeserializer&lt;A&gt; as serde::de::Deserializer&gt;::deserialize_any (6 samples, 0.07%)</title><rect x="74.4982%" y="661" width="0.0713%" height="15" fill="rgb(212,59,30)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="671.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::_::&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::Hashes&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_map (6 samples, 0.07%)</title><rect x="74.4982%" y="645" width="0.0713%" height="15" fill="rgb(213,80,3)" fg:x="6272" fg:w="6"/><text x="74.7482%" y="655.50"></text></g><g><title>serde::de::MapAccess::next_value (3 samples, 0.04%)</title><rect x="74.5338%" y="629" width="0.0356%" height="15" fill="rgb(251,178,7)" fg:x="6275" fg:w="3"/><text x="74.7838%" y="639.50"></text></g><g><title>&lt;serde_untagged::map::Map as serde::de::MapAccess&gt;::next_value_seed (3 samples, 0.04%)</title><rect x="74.5338%" y="613" width="0.0356%" height="15" fill="rgb(213,154,26)" fg:x="6275" fg:w="3"/><text x="74.7838%" y="623.50"></text></g><g><title>&lt;Access as serde_untagged::map::ErasedMapAccess&gt;::erased_next_value_seed (3 samples, 0.04%)</title><rect x="74.5338%" y="597" width="0.0356%" height="15" fill="rgb(238,165,49)" fg:x="6275" fg:w="3"/><text x="74.7838%" y="607.50"></text></g><g><title>&lt;serde_json::de::MapAccess&lt;R&gt; as serde::de::MapAccess&gt;::next_value_seed (3 samples, 0.04%)</title><rect x="74.5338%" y="581" width="0.0356%" height="15" fill="rgb(248,91,46)" fg:x="6275" fg:w="3"/><text x="74.7838%" y="591.50"></text></g><g><title>&lt;&amp;mut dyn serde_untagged::seed::ErasedDeserializeSeed as serde::de::DeserializeSeed&gt;::deserialize (3 samples, 0.04%)</title><rect x="74.5338%" y="565" width="0.0356%" height="15" fill="rgb(244,21,52)" fg:x="6275" fg:w="3"/><text x="74.7838%" y="575.50"></text></g><g><title>&lt;core::option::Option&lt;Seed&gt; as serde_untagged::seed::ErasedDeserializeSeed&gt;::erased_deserialize (3 samples, 0.04%)</title><rect x="74.5338%" y="549" width="0.0356%" height="15" fill="rgb(247,122,20)" fg:x="6275" fg:w="3"/><text x="74.7838%" y="559.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::map (1 samples, 0.01%)</title><rect x="74.5575%" y="533" width="0.0119%" height="15" fill="rgb(218,27,9)" fg:x="6277" fg:w="1"/><text x="74.8075%" y="543.50"></text></g><g><title>&lt;core::option::Option&lt;Seed&gt; as serde_untagged::seed::ErasedDeserializeSeed&gt;::erased_deserialize::_{{closure}} (1 samples, 0.01%)</title><rect x="74.5575%" y="517" width="0.0119%" height="15" fill="rgb(246,7,6)" fg:x="6277" fg:w="1"/><text x="74.8075%" y="527.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.01%)</title><rect x="74.5575%" y="501" width="0.0119%" height="15" fill="rgb(227,135,54)" fg:x="6277" fg:w="1"/><text x="74.8075%" y="511.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.01%)</title><rect x="74.5575%" y="485" width="0.0119%" height="15" fill="rgb(247,14,11)" fg:x="6277" fg:w="1"/><text x="74.8075%" y="495.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.01%)</title><rect x="74.5575%" y="469" width="0.0119%" height="15" fill="rgb(206,149,34)" fg:x="6277" fg:w="1"/><text x="74.8075%" y="479.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.01%)</title><rect x="74.5575%" y="453" width="0.0119%" height="15" fill="rgb(227,228,4)" fg:x="6277" fg:w="1"/><text x="74.8075%" y="463.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="74.5575%" y="437" width="0.0119%" height="15" fill="rgb(238,218,28)" fg:x="6277" fg:w="1"/><text x="74.8075%" y="447.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="74.5575%" y="421" width="0.0119%" height="15" fill="rgb(252,86,40)" fg:x="6277" fg:w="1"/><text x="74.8075%" y="431.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="74.5575%" y="405" width="0.0119%" height="15" fill="rgb(251,225,11)" fg:x="6277" fg:w="1"/><text x="74.8075%" y="415.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::CoreMetadata as serde::de::Deserialize&gt;::deserialize (7 samples, 0.08%)</title><rect x="74.4982%" y="821" width="0.0831%" height="15" fill="rgb(206,46,49)" fg:x="6272" fg:w="7"/><text x="74.7482%" y="831.50"></text></g><g><title>serde_untagged::UntaggedEnumVisitor&lt;Value&gt;::deserialize (7 samples, 0.08%)</title><rect x="74.4982%" y="805" width="0.0831%" height="15" fill="rgb(245,128,24)" fg:x="6272" fg:w="7"/><text x="74.7482%" y="815.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="74.5694%" y="789" width="0.0119%" height="15" fill="rgb(219,177,34)" fg:x="6278" fg:w="1"/><text x="74.8194%" y="799.50"></text></g><g><title>&lt;serde_json::read::SliceRead as serde_json::read::Read&gt;::parse_str (1 samples, 0.01%)</title><rect x="74.5813%" y="757" width="0.0119%" height="15" fill="rgb(218,60,48)" fg:x="6279" fg:w="1"/><text x="74.8313%" y="767.50"></text></g><g><title>serde_json::read::SliceRead::skip_to_escape (1 samples, 0.01%)</title><rect x="74.5813%" y="741" width="0.0119%" height="15" fill="rgb(221,11,5)" fg:x="6279" fg:w="1"/><text x="74.8313%" y="751.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for core::option::Option&lt;T&gt;&gt;::deserialize (9 samples, 0.11%)</title><rect x="74.4982%" y="869" width="0.1069%" height="15" fill="rgb(220,148,13)" fg:x="6272" fg:w="9"/><text x="74.7482%" y="879.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_option (9 samples, 0.11%)</title><rect x="74.4982%" y="853" width="0.1069%" height="15" fill="rgb(210,16,3)" fg:x="6272" fg:w="9"/><text x="74.7482%" y="863.50"></text></g><g><title>&lt;serde::de::impls::OptionVisitor&lt;T&gt; as serde::de::Visitor&gt;::visit_some (9 samples, 0.11%)</title><rect x="74.4982%" y="837" width="0.1069%" height="15" fill="rgb(236,80,2)" fg:x="6272" fg:w="9"/><text x="74.7482%" y="847.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for alloc::borrow::Cow&lt;T&gt;&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.5813%" y="821" width="0.0238%" height="15" fill="rgb(239,129,19)" fg:x="6279" fg:w="2"/><text x="74.8313%" y="831.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for alloc::string::String&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.5813%" y="805" width="0.0238%" height="15" fill="rgb(220,106,35)" fg:x="6279" fg:w="2"/><text x="74.8313%" y="815.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_string (2 samples, 0.02%)</title><rect x="74.5813%" y="789" width="0.0238%" height="15" fill="rgb(252,139,45)" fg:x="6279" fg:w="2"/><text x="74.8313%" y="799.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_str (2 samples, 0.02%)</title><rect x="74.5813%" y="773" width="0.0238%" height="15" fill="rgb(229,8,36)" fg:x="6279" fg:w="2"/><text x="74.8313%" y="783.50"></text></g><g><title>serde_json::de::Deserializer&lt;R&gt;::parse_whitespace (1 samples, 0.01%)</title><rect x="74.5932%" y="757" width="0.0119%" height="15" fill="rgb(230,126,33)" fg:x="6280" fg:w="1"/><text x="74.8432%" y="767.50"></text></g><g><title>serde_json::de::Deserializer&lt;R&gt;::parse_number (1 samples, 0.01%)</title><rect x="74.6169%" y="805" width="0.0119%" height="15" fill="rgb(239,140,21)" fg:x="6282" fg:w="1"/><text x="74.8669%" y="815.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for u64&gt;::deserialize (3 samples, 0.04%)</title><rect x="74.6051%" y="869" width="0.0356%" height="15" fill="rgb(254,104,9)" fg:x="6281" fg:w="3"/><text x="74.8551%" y="879.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_u64 (3 samples, 0.04%)</title><rect x="74.6051%" y="853" width="0.0356%" height="15" fill="rgb(239,52,14)" fg:x="6281" fg:w="3"/><text x="74.8551%" y="863.50"></text></g><g><title>serde_json::de::Deserializer&lt;R&gt;::deserialize_number (3 samples, 0.04%)</title><rect x="74.6051%" y="837" width="0.0356%" height="15" fill="rgb(208,227,44)" fg:x="6281" fg:w="3"/><text x="74.8551%" y="847.50"></text></g><g><title>serde_json::de::Deserializer&lt;R&gt;::parse_integer (3 samples, 0.04%)</title><rect x="74.6051%" y="821" width="0.0356%" height="15" fill="rgb(246,18,19)" fg:x="6281" fg:w="3"/><text x="74.8551%" y="831.50"></text></g><g><title>serde_json::de::Deserializer&lt;R&gt;::peek_or_null (1 samples, 0.01%)</title><rect x="74.6288%" y="805" width="0.0119%" height="15" fill="rgb(235,228,25)" fg:x="6283" fg:w="1"/><text x="74.8788%" y="815.50"></text></g><g><title>serde_json::de::Deserializer&lt;R&gt;::peek (1 samples, 0.01%)</title><rect x="74.6288%" y="789" width="0.0119%" height="15" fill="rgb(240,156,20)" fg:x="6283" fg:w="1"/><text x="74.8788%" y="799.50"></text></g><g><title>&lt;serde_json::read::SliceRead as serde_json::read::Read&gt;::peek (1 samples, 0.01%)</title><rect x="74.6288%" y="773" width="0.0119%" height="15" fill="rgb(224,8,20)" fg:x="6283" fg:w="1"/><text x="74.8788%" y="783.50"></text></g><g><title>serde::de::MapAccess::next_key (1 samples, 0.01%)</title><rect x="74.6407%" y="821" width="0.0119%" height="15" fill="rgb(214,12,52)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="831.50"></text></g><g><title>&lt;serde_json::de::MapAccess&lt;R&gt; as serde::de::MapAccess&gt;::next_key_seed (1 samples, 0.01%)</title><rect x="74.6407%" y="805" width="0.0119%" height="15" fill="rgb(211,220,47)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="815.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (1 samples, 0.01%)</title><rect x="74.6407%" y="789" width="0.0119%" height="15" fill="rgb(250,173,5)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="799.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::_::&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::Hashes&gt;::deserialize::__Field as serde::de::Deserialize&gt;::deserialize (1 samples, 0.01%)</title><rect x="74.6407%" y="773" width="0.0119%" height="15" fill="rgb(250,125,52)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="783.50"></text></g><g><title>&lt;serde_json::de::MapKey&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_identifier (1 samples, 0.01%)</title><rect x="74.6407%" y="757" width="0.0119%" height="15" fill="rgb(209,133,18)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="767.50"></text></g><g><title>&lt;serde_json::de::MapKey&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="74.6407%" y="741" width="0.0119%" height="15" fill="rgb(216,173,22)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="751.50"></text></g><g><title>&lt;serde_json::read::SliceRead as serde_json::read::Read&gt;::parse_str (1 samples, 0.01%)</title><rect x="74.6407%" y="725" width="0.0119%" height="15" fill="rgb(205,3,22)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="735.50"></text></g><g><title>serde_json::read::SliceRead::parse_str_bytes (1 samples, 0.01%)</title><rect x="74.6407%" y="709" width="0.0119%" height="15" fill="rgb(248,22,20)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="719.50"></text></g><g><title>serde_json::read::SliceRead::skip_to_escape (1 samples, 0.01%)</title><rect x="74.6407%" y="693" width="0.0119%" height="15" fill="rgb(233,6,29)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="703.50"></text></g><g><title>serde_json::read::is_escape (1 samples, 0.01%)</title><rect x="74.6407%" y="677" width="0.0119%" height="15" fill="rgb(240,22,54)" fg:x="6284" fg:w="1"/><text x="74.8907%" y="687.50"></text></g><g><title>&lt;serde_json::read::SliceRead as serde_json::read::Read&gt;::parse_str (1 samples, 0.01%)</title><rect x="74.6526%" y="693" width="0.0119%" height="15" fill="rgb(231,133,32)" fg:x="6285" fg:w="1"/><text x="74.9026%" y="703.50"></text></g><g><title>serde_json::read::SliceRead::parse_str_bytes (1 samples, 0.01%)</title><rect x="74.6526%" y="677" width="0.0119%" height="15" fill="rgb(248,193,4)" fg:x="6285" fg:w="1"/><text x="74.9026%" y="687.50"></text></g><g><title>serde_json::read::SliceRead::skip_to_escape (1 samples, 0.01%)</title><rect x="74.6526%" y="661" width="0.0119%" height="15" fill="rgb(211,178,46)" fg:x="6285" fg:w="1"/><text x="74.9026%" y="671.50"></text></g><g><title>serde_json::read::is_escape (1 samples, 0.01%)</title><rect x="74.6526%" y="645" width="0.0119%" height="15" fill="rgb(224,5,42)" fg:x="6285" fg:w="1"/><text x="74.9026%" y="655.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (32 samples, 0.38%)</title><rect x="74.2962%" y="885" width="0.3801%" height="15" fill="rgb(239,176,25)" fg:x="6255" fg:w="32"/><text x="74.5462%" y="895.50"></text></g><g><title>uv_pypi_types::simple_json::_::_&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::Hashes&gt;::deserialize (3 samples, 0.04%)</title><rect x="74.6407%" y="869" width="0.0356%" height="15" fill="rgb(245,187,50)" fg:x="6284" fg:w="3"/><text x="74.8907%" y="879.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_struct (3 samples, 0.04%)</title><rect x="74.6407%" y="853" width="0.0356%" height="15" fill="rgb(248,24,15)" fg:x="6284" fg:w="3"/><text x="74.8907%" y="863.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::_::&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::Hashes&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_map (3 samples, 0.04%)</title><rect x="74.6407%" y="837" width="0.0356%" height="15" fill="rgb(205,166,13)" fg:x="6284" fg:w="3"/><text x="74.8907%" y="847.50"></text></g><g><title>serde::de::MapAccess::next_value (2 samples, 0.02%)</title><rect x="74.6526%" y="821" width="0.0238%" height="15" fill="rgb(208,114,23)" fg:x="6285" fg:w="2"/><text x="74.9026%" y="831.50"></text></g><g><title>&lt;serde_json::de::MapAccess&lt;R&gt; as serde::de::MapAccess&gt;::next_value_seed (2 samples, 0.02%)</title><rect x="74.6526%" y="805" width="0.0238%" height="15" fill="rgb(239,127,18)" fg:x="6285" fg:w="2"/><text x="74.9026%" y="815.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.6526%" y="789" width="0.0238%" height="15" fill="rgb(219,154,28)" fg:x="6285" fg:w="2"/><text x="74.9026%" y="799.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for core::option::Option&lt;T&gt;&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.6526%" y="773" width="0.0238%" height="15" fill="rgb(225,157,23)" fg:x="6285" fg:w="2"/><text x="74.9026%" y="783.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_option (2 samples, 0.02%)</title><rect x="74.6526%" y="757" width="0.0238%" height="15" fill="rgb(219,8,6)" fg:x="6285" fg:w="2"/><text x="74.9026%" y="767.50"></text></g><g><title>&lt;serde::de::impls::OptionVisitor&lt;T&gt; as serde::de::Visitor&gt;::visit_some (2 samples, 0.02%)</title><rect x="74.6526%" y="741" width="0.0238%" height="15" fill="rgb(212,47,6)" fg:x="6285" fg:w="2"/><text x="74.9026%" y="751.50"></text></g><g><title>&lt;uv_small_str::SmallString as serde::de::Deserialize&gt;::deserialize (2 samples, 0.02%)</title><rect x="74.6526%" y="725" width="0.0238%" height="15" fill="rgb(224,190,4)" fg:x="6285" fg:w="2"/><text x="74.9026%" y="735.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_str (2 samples, 0.02%)</title><rect x="74.6526%" y="709" width="0.0238%" height="15" fill="rgb(239,183,29)" fg:x="6285" fg:w="2"/><text x="74.9026%" y="719.50"></text></g><g><title>serde::de::Visitor::visit_borrowed_str (1 samples, 0.01%)</title><rect x="74.6644%" y="693" width="0.0119%" height="15" fill="rgb(213,57,7)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="703.50"></text></g><g><title>&lt;&lt;uv_small_str::SmallString as serde::de::Deserialize&gt;::deserialize::Visitor as serde::de::Visitor&gt;::visit_str (1 samples, 0.01%)</title><rect x="74.6644%" y="677" width="0.0119%" height="15" fill="rgb(216,148,1)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="687.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.01%)</title><rect x="74.6644%" y="661" width="0.0119%" height="15" fill="rgb(236,182,29)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="671.50"></text></g><g><title>&lt;uv_small_str::SmallString as core::convert::From&lt;&amp;str&gt;&gt;::from (1 samples, 0.01%)</title><rect x="74.6644%" y="645" width="0.0119%" height="15" fill="rgb(244,120,48)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="655.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.01%)</title><rect x="74.6644%" y="629" width="0.0119%" height="15" fill="rgb(206,71,34)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="639.50"></text></g><g><title>&lt;arcstr::arc_str::ArcStr as core::convert::From&lt;&amp;str&gt;&gt;::from (1 samples, 0.01%)</title><rect x="74.6644%" y="613" width="0.0119%" height="15" fill="rgb(242,32,6)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="623.50"></text></g><g><title>arcstr::arc_str::ThinInner::allocate (1 samples, 0.01%)</title><rect x="74.6644%" y="597" width="0.0119%" height="15" fill="rgb(241,35,3)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="607.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate (1 samples, 0.01%)</title><rect x="74.6644%" y="581" width="0.0119%" height="15" fill="rgb(222,62,19)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="591.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate_with (1 samples, 0.01%)</title><rect x="74.6644%" y="565" width="0.0119%" height="15" fill="rgb(223,110,41)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="575.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate_maybe_uninit (1 samples, 0.01%)</title><rect x="74.6644%" y="549" width="0.0119%" height="15" fill="rgb(208,224,4)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="559.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.01%)</title><rect x="74.6644%" y="533" width="0.0119%" height="15" fill="rgb(241,137,19)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="543.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="74.6644%" y="517" width="0.0119%" height="15" fill="rgb(244,24,17)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="527.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="74.6644%" y="501" width="0.0119%" height="15" fill="rgb(245,178,49)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="511.50"></text></g><g><title>tikv_jemallocator::layout_to_flags (1 samples, 0.01%)</title><rect x="74.6644%" y="485" width="0.0119%" height="15" fill="rgb(219,160,38)" fg:x="6286" fg:w="1"/><text x="74.9144%" y="495.50"></text></g><g><title>serde_json::de::from_slice (63 samples, 0.75%)</title><rect x="73.9399%" y="1221" width="0.7483%" height="15" fill="rgb(228,137,14)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1231.50"></text></g><g><title>serde_json::de::from_trait (63 samples, 0.75%)</title><rect x="73.9399%" y="1205" width="0.7483%" height="15" fill="rgb(237,134,11)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1215.50"></text></g><g><title>uv_pypi_types::simple_json::_::_&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::SimpleJson&gt;::deserialize (63 samples, 0.75%)</title><rect x="73.9399%" y="1189" width="0.7483%" height="15" fill="rgb(211,126,44)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1199.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_struct (63 samples, 0.75%)</title><rect x="73.9399%" y="1173" width="0.7483%" height="15" fill="rgb(226,171,33)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1183.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::_::&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::SimpleJson&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_map (63 samples, 0.75%)</title><rect x="73.9399%" y="1157" width="0.7483%" height="15" fill="rgb(253,99,13)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1167.50"></text></g><g><title>serde::de::MapAccess::next_value (63 samples, 0.75%)</title><rect x="73.9399%" y="1141" width="0.7483%" height="15" fill="rgb(244,48,7)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1151.50"></text></g><g><title>&lt;serde_json::de::MapAccess&lt;R&gt; as serde::de::MapAccess&gt;::next_value_seed (63 samples, 0.75%)</title><rect x="73.9399%" y="1125" width="0.7483%" height="15" fill="rgb(244,217,54)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1135.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (63 samples, 0.75%)</title><rect x="73.9399%" y="1109" width="0.7483%" height="15" fill="rgb(224,15,18)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1119.50"></text></g><g><title>&lt;&lt;uv_pypi_types::simple_json::_::&lt;impl serde::de::Deserialize for uv_pypi_types::simple_json::SimpleJson&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_map::__DeserializeWith as serde::de::Deserialize&gt;::deserialize (63 samples, 0.75%)</title><rect x="73.9399%" y="1093" width="0.7483%" height="15" fill="rgb(244,99,12)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1103.50"></text></g><g><title>uv_pypi_types::simple_json::sorted_simple_json_files (63 samples, 0.75%)</title><rect x="73.9399%" y="1077" width="0.7483%" height="15" fill="rgb(233,226,8)" fg:x="6225" fg:w="63"/><text x="74.1899%" y="1087.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for alloc::vec::Vec&lt;T&gt;&gt;::deserialize (62 samples, 0.74%)</title><rect x="73.9518%" y="1061" width="0.7364%" height="15" fill="rgb(229,211,3)" fg:x="6226" fg:w="62"/><text x="74.2018%" y="1071.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_seq (62 samples, 0.74%)</title><rect x="73.9518%" y="1045" width="0.7364%" height="15" fill="rgb(216,140,21)" fg:x="6226" fg:w="62"/><text x="74.2018%" y="1055.50"></text></g><g><title>&lt;serde::de::impls::&lt;impl serde::de::Deserialize for alloc::vec::Vec&lt;T&gt;&gt;::deserialize::VecVisitor&lt;T&gt; as serde::de::Visitor&gt;::visit_seq (62 samples, 0.74%)</title><rect x="73.9518%" y="1029" width="0.7364%" height="15" fill="rgb(234,122,30)" fg:x="6226" fg:w="62"/><text x="74.2018%" y="1039.50"></text></g><g><title>serde::de::SeqAccess::next_element (61 samples, 0.72%)</title><rect x="73.9637%" y="1013" width="0.7246%" height="15" fill="rgb(236,25,46)" fg:x="6227" fg:w="61"/><text x="74.2137%" y="1023.50"></text></g><g><title>&lt;serde_json::de::SeqAccess&lt;R&gt; as serde::de::SeqAccess&gt;::next_element_seed (61 samples, 0.72%)</title><rect x="73.9637%" y="997" width="0.7246%" height="15" fill="rgb(217,52,54)" fg:x="6227" fg:w="61"/><text x="74.2137%" y="1007.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (61 samples, 0.72%)</title><rect x="73.9637%" y="981" width="0.7246%" height="15" fill="rgb(222,29,26)" fg:x="6227" fg:w="61"/><text x="74.2137%" y="991.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::File as serde::de::Deserialize&gt;::deserialize (61 samples, 0.72%)</title><rect x="73.9637%" y="965" width="0.7246%" height="15" fill="rgb(216,177,29)" fg:x="6227" fg:w="61"/><text x="74.2137%" y="975.50"></text></g><g><title>&lt;&amp;mut serde_json::de::Deserializer&lt;R&gt; as serde::de::Deserializer&gt;::deserialize_map (61 samples, 0.72%)</title><rect x="73.9637%" y="949" width="0.7246%" height="15" fill="rgb(247,136,51)" fg:x="6227" fg:w="61"/><text x="74.2137%" y="959.50"></text></g><g><title>&lt;&lt;uv_pypi_types::simple_json::File as serde::de::Deserialize&gt;::deserialize::FileVisitor as serde::de::Visitor&gt;::visit_map (61 samples, 0.72%)</title><rect x="73.9637%" y="933" width="0.7246%" height="15" fill="rgb(231,47,47)" fg:x="6227" fg:w="61"/><text x="74.2137%" y="943.50"></text></g><g><title>serde::de::MapAccess::next_value (33 samples, 0.39%)</title><rect x="74.2962%" y="917" width="0.3920%" height="15" fill="rgb(211,192,36)" fg:x="6255" fg:w="33"/><text x="74.5462%" y="927.50"></text></g><g><title>&lt;serde_json::de::MapAccess&lt;R&gt; as serde::de::MapAccess&gt;::next_value_seed (33 samples, 0.39%)</title><rect x="74.2962%" y="901" width="0.3920%" height="15" fill="rgb(229,156,32)" fg:x="6255" fg:w="33"/><text x="74.5462%" y="911.50"></text></g><g><title>serde_json::de::Deserializer&lt;R&gt;::parse_object_colon (1 samples, 0.01%)</title><rect x="74.6763%" y="885" width="0.0119%" height="15" fill="rgb(248,213,20)" fg:x="6287" fg:w="1"/><text x="74.9263%" y="895.50"></text></g><g><title>&lt;uv_distribution_filename::wheel::WheelFilename as core::str::traits::FromStr&gt;::from_str (1 samples, 0.01%)</title><rect x="74.6882%" y="1205" width="0.0119%" height="15" fill="rgb(217,64,7)" fg:x="6288" fg:w="1"/><text x="74.9382%" y="1215.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="74.7001%" y="1205" width="0.0119%" height="15" fill="rgb(232,142,8)" fg:x="6289" fg:w="1"/><text x="74.9501%" y="1215.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::entry (1 samples, 0.01%)</title><rect x="74.7120%" y="1205" width="0.0119%" height="15" fill="rgb(224,92,44)" fg:x="6290" fg:w="1"/><text x="74.9620%" y="1215.50"></text></g><g><title>alloc::collections::btree::search::_&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::search_tree (1 samples, 0.01%)</title><rect x="74.7120%" y="1189" width="0.0119%" height="15" fill="rgb(214,169,17)" fg:x="6290" fg:w="1"/><text x="74.9620%" y="1199.50"></text></g><g><title>alloc::collections::btree::search::_&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;&gt;::find_key_index (1 samples, 0.01%)</title><rect x="74.7120%" y="1173" width="0.0119%" height="15" fill="rgb(210,59,37)" fg:x="6290" fg:w="1"/><text x="74.9620%" y="1183.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="74.7120%" y="1157" width="0.0119%" height="15" fill="rgb(214,116,48)" fg:x="6290" fg:w="1"/><text x="74.9620%" y="1167.50"></text></g><g><title>&lt;memchr::memchr::Memchr as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="74.7238%" y="1157" width="0.0119%" height="15" fill="rgb(244,191,6)" fg:x="6291" fg:w="1"/><text x="74.9738%" y="1167.50"></text></g><g><title>&lt;memchr::memchr::Memchr as core::iter::traits::iterator::Iterator&gt;::next::_{{closure}} (1 samples, 0.01%)</title><rect x="74.7238%" y="1141" width="0.0119%" height="15" fill="rgb(241,50,52)" fg:x="6291" fg:w="1"/><text x="74.9738%" y="1151.50"></text></g><g><title>&lt;uv_small_str::SmallString as core::convert::From&lt;&amp;str&gt;&gt;::from (1 samples, 0.01%)</title><rect x="74.7357%" y="1125" width="0.0119%" height="15" fill="rgb(236,75,39)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="1135.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.01%)</title><rect x="74.7357%" y="1109" width="0.0119%" height="15" fill="rgb(236,99,0)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="1119.50"></text></g><g><title>&lt;arcstr::arc_str::ArcStr as core::convert::From&lt;&amp;str&gt;&gt;::from (1 samples, 0.01%)</title><rect x="74.7357%" y="1093" width="0.0119%" height="15" fill="rgb(207,202,15)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="1103.50"></text></g><g><title>arcstr::arc_str::ThinInner::allocate (1 samples, 0.01%)</title><rect x="74.7357%" y="1077" width="0.0119%" height="15" fill="rgb(233,207,14)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="1087.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate (1 samples, 0.01%)</title><rect x="74.7357%" y="1061" width="0.0119%" height="15" fill="rgb(226,27,51)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="1071.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate_with (1 samples, 0.01%)</title><rect x="74.7357%" y="1045" width="0.0119%" height="15" fill="rgb(206,104,42)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="1055.50"></text></g><g><title>arcstr::arc_str::ThinInner::try_allocate_maybe_uninit (1 samples, 0.01%)</title><rect x="74.7357%" y="1029" width="0.0119%" height="15" fill="rgb(212,225,4)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="1039.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.01%)</title><rect x="74.7357%" y="1013" width="0.0119%" height="15" fill="rgb(233,96,42)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="1023.50"></text></g><g><title>__rustc::__rust_alloc (1 samples, 0.01%)</title><rect x="74.7357%" y="997" width="0.0119%" height="15" fill="rgb(229,21,32)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="1007.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.01%)</title><rect x="74.7357%" y="981" width="0.0119%" height="15" fill="rgb(226,216,24)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="991.50"></text></g><g><title>_rjem_malloc (1 samples, 0.01%)</title><rect x="74.7357%" y="965" width="0.0119%" height="15" fill="rgb(221,163,17)" fg:x="6292" fg:w="1"/><text x="74.9857%" y="975.50"></text></g><g><title>&lt;uv_normalize::package_name::PackageName as core::str::traits::FromStr&gt;::from_str (2 samples, 0.02%)</title><rect x="74.7357%" y="1157" width="0.0238%" height="15" fill="rgb(216,216,42)" fg:x="6292" fg:w="2"/><text x="74.9857%" y="1167.50"></text></g><g><title>uv_normalize::validate_and_normalize_ref (2 samples, 0.02%)</title><rect x="74.7357%" y="1141" width="0.0238%" height="15" fill="rgb(240,118,7)" fg:x="6292" fg:w="2"/><text x="74.9857%" y="1151.50"></text></g><g><title>&lt;uv_small_str::SmallString as core::convert::From&lt;alloc::string::String&gt;&gt;::from (1 samples, 0.01%)</title><rect x="74.7476%" y="1125" width="0.0119%" height="15" fill="rgb(221,67,37)" fg:x="6293" fg:w="1"/><text x="74.9976%" y="1135.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.01%)</title><rect x="74.7476%" y="1109" width="0.0119%" height="15" fill="rgb(241,32,44)" fg:x="6293" fg:w="1"/><text x="74.9976%" y="1119.50"></text></g><g><title>&lt;arcstr::arc_str::ArcStr as core::convert::From&lt;alloc::string::String&gt;&gt;::from (1 samples, 0.01%)</title><rect x="74.7476%" y="1093" width="0.0119%" height="15" fill="rgb(235,204,43)" fg:x="6293" fg:w="1"/><text x="74.9976%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1 samples, 0.01%)</title><rect x="74.7476%" y="1077" width="0.0119%" height="15" fill="rgb(213,116,10)" fg:x="6293" fg:w="1"/><text x="74.9976%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="74.7476%" y="1061" width="0.0119%" height="15" fill="rgb(239,15,48)" fg:x="6293" fg:w="1"/><text x="74.9976%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.01%)</title><rect x="74.7476%" y="1045" width="0.0119%" height="15" fill="rgb(207,123,36)" fg:x="6293" fg:w="1"/><text x="74.9976%" y="1055.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="74.7476%" y="1029" width="0.0119%" height="15" fill="rgb(209,103,30)" fg:x="6293" fg:w="1"/><text x="74.9976%" y="1039.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="74.7476%" y="1013" width="0.0119%" height="15" fill="rgb(238,100,19)" fg:x="6293" fg:w="1"/><text x="74.9976%" y="1023.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="74.7476%" y="997" width="0.0119%" height="15" fill="rgb(244,30,14)" fg:x="6293" fg:w="1"/><text x="74.9976%" y="1007.50"></text></g><g><title>core::bool::_&lt;impl bool&gt;::then (1 samples, 0.01%)</title><rect x="74.7595%" y="1157" width="0.0119%" height="15" fill="rgb(249,174,6)" fg:x="6294" fg:w="1"/><text x="75.0095%" y="1167.50"></text></g><g><title>uv_distribution_filename::wheel::WheelFilename::parse::_{{closure}} (1 samples, 0.01%)</title><rect x="74.7595%" y="1141" width="0.0119%" height="15" fill="rgb(235,213,41)" fg:x="6294" fg:w="1"/><text x="75.0095%" y="1151.50"></text></g><g><title>&lt;uv_platform_tags::abi_tag::AbiTag as core::str::traits::FromStr&gt;::from_str (1 samples, 0.01%)</title><rect x="74.7595%" y="1125" width="0.0119%" height="15" fill="rgb(213,118,6)" fg:x="6294" fg:w="1"/><text x="75.0095%" y="1135.50"></text></g><g><title>&lt;uv_platform_tags::abi_tag::AbiTag as core::str::traits::FromStr&gt;::from_str::parse_python_version (1 samples, 0.01%)</title><rect x="74.7595%" y="1109" width="0.0119%" height="15" fill="rgb(235,44,51)" fg:x="6294" fg:w="1"/><text x="75.0095%" y="1119.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (1 samples, 0.01%)</title><rect x="74.7595%" y="1093" width="0.0119%" height="15" fill="rgb(217,9,53)" fg:x="6294" fg:w="1"/><text x="75.0095%" y="1103.50"></text></g><g><title>&lt;memchr::memchr::Memchr as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="74.7714%" y="1045" width="0.0119%" height="15" fill="rgb(237,172,34)" fg:x="6295" fg:w="1"/><text x="75.0214%" y="1055.50"></text></g><g><title>&lt;memchr::memchr::Memchr as core::iter::traits::iterator::Iterator&gt;::next::_{{closure}} (1 samples, 0.01%)</title><rect x="74.7714%" y="1029" width="0.0119%" height="15" fill="rgb(206,206,11)" fg:x="6295" fg:w="1"/><text x="75.0214%" y="1039.50"></text></g><g><title>memchr::memchr::memchr_raw (1 samples, 0.01%)</title><rect x="74.7714%" y="1013" width="0.0119%" height="15" fill="rgb(214,149,29)" fg:x="6295" fg:w="1"/><text x="75.0214%" y="1023.50"></text></g><g><title>memchr::arch::aarch64::neon::memchr::One::new_unchecked (1 samples, 0.01%)</title><rect x="74.7714%" y="997" width="0.0119%" height="15" fill="rgb(208,123,3)" fg:x="6295" fg:w="1"/><text x="75.0214%" y="1007.50"></text></g><g><title>core::core_arch::arm_shared::neon::generated::vdupq_n_u8 (1 samples, 0.01%)</title><rect x="74.7714%" y="981" width="0.0119%" height="15" fill="rgb(229,126,4)" fg:x="6295" fg:w="1"/><text x="75.0214%" y="991.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (1 samples, 0.01%)</title><rect x="74.7832%" y="1045" width="0.0119%" height="15" fill="rgb(222,92,36)" fg:x="6296" fg:w="1"/><text x="75.0332%" y="1055.50"></text></g><g><title>core::ops::function::FnMut::call_mut (1 samples, 0.01%)</title><rect x="74.7832%" y="1029" width="0.0119%" height="15" fill="rgb(216,39,41)" fg:x="6296" fg:w="1"/><text x="75.0332%" y="1039.50"></text></g><g><title>&lt;uv_platform_tags::language_tag::LanguageTag as core::str::traits::FromStr&gt;::from_str (1 samples, 0.01%)</title><rect x="74.7832%" y="1013" width="0.0119%" height="15" fill="rgb(253,127,28)" fg:x="6296" fg:w="1"/><text x="75.0332%" y="1023.50"></text></g><g><title>core::cmp::impls::_&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.01%)</title><rect x="74.7832%" y="997" width="0.0119%" height="15" fill="rgb(249,152,51)" fg:x="6296" fg:w="1"/><text x="75.0332%" y="1007.50"></text></g><g><title>&lt;uv_distribution_filename::wheel::WheelFilename as core::str::traits::FromStr&gt;::from_str (7 samples, 0.08%)</title><rect x="74.7238%" y="1189" width="0.0831%" height="15" fill="rgb(209,123,42)" fg:x="6291" fg:w="7"/><text x="74.9738%" y="1199.50"></text></g><g><title>uv_distribution_filename::wheel::WheelFilename::parse (7 samples, 0.08%)</title><rect x="74.7238%" y="1173" width="0.0831%" height="15" fill="rgb(241,118,22)" fg:x="6291" fg:w="7"/><text x="74.9738%" y="1183.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (3 samples, 0.04%)</title><rect x="74.7714%" y="1157" width="0.0356%" height="15" fill="rgb(208,25,7)" fg:x="6295" fg:w="3"/><text x="75.0214%" y="1167.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::iter::traits::collect::FromIterator&lt;&lt;A as smallvec::Array&gt;::Item&gt;&gt;::from_iter (3 samples, 0.04%)</title><rect x="74.7714%" y="1141" width="0.0356%" height="15" fill="rgb(243,144,39)" fg:x="6295" fg:w="3"/><text x="75.0214%" y="1151.50"></text></g><g><title>&lt;smallvec::SmallVec&lt;A&gt; as core::iter::traits::collect::Extend&lt;&lt;A as smallvec::Array&gt;::Item&gt;&gt;::extend (3 samples, 0.04%)</title><rect x="74.7714%" y="1125" width="0.0356%" height="15" fill="rgb(250,50,5)" fg:x="6295" fg:w="3"/><text x="75.0214%" y="1135.50"></text></g><g><title>&lt;core::iter::adapters::filter_map::FilterMap&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.04%)</title><rect x="74.7714%" y="1109" width="0.0356%" height="15" fill="rgb(207,67,11)" fg:x="6295" fg:w="3"/><text x="75.0214%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find_map (3 samples, 0.04%)</title><rect x="74.7714%" y="1093" width="0.0356%" height="15" fill="rgb(245,204,40)" fg:x="6295" fg:w="3"/><text x="75.0214%" y="1103.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.04%)</title><rect x="74.7714%" y="1077" width="0.0356%" height="15" fill="rgb(238,228,24)" fg:x="6295" fg:w="3"/><text x="75.0214%" y="1087.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.04%)</title><rect x="74.7714%" y="1061" width="0.0356%" height="15" fill="rgb(217,116,22)" fg:x="6295" fg:w="3"/><text x="75.0214%" y="1071.50"></text></g><g><title>core::str::traits::_&lt;impl core::ops::index::Index&lt;I&gt; for str&gt;::index (1 samples, 0.01%)</title><rect x="74.7951%" y="1045" width="0.0119%" height="15" fill="rgb(234,98,12)" fg:x="6297" fg:w="1"/><text x="75.0451%" y="1055.50"></text></g><g><title>core::str::traits::_&lt;impl core::slice::index::SliceIndex&lt;str&gt; for core::ops::range::RangeFrom&lt;usize&gt;&gt;::index (1 samples, 0.01%)</title><rect x="74.7951%" y="1029" width="0.0119%" height="15" fill="rgb(242,170,50)" fg:x="6297" fg:w="1"/><text x="75.0451%" y="1039.50"></text></g><g><title>core::str::traits::_&lt;impl core::slice::index::SliceIndex&lt;str&gt; for core::ops::range::RangeFrom&lt;usize&gt;&gt;::get (1 samples, 0.01%)</title><rect x="74.7951%" y="1013" width="0.0119%" height="15" fill="rgb(235,7,5)" fg:x="6297" fg:w="1"/><text x="75.0451%" y="1023.50"></text></g><g><title>uv_distribution_filename::extension::DistExtension::from_path (1 samples, 0.01%)</title><rect x="74.8070%" y="1189" width="0.0119%" height="15" fill="rgb(241,114,28)" fg:x="6298" fg:w="1"/><text x="75.0570%" y="1199.50"></text></g><g><title>uv_distribution_filename::extension::SourceDistExtension::from_path (1 samples, 0.01%)</title><rect x="74.8070%" y="1173" width="0.0119%" height="15" fill="rgb(246,112,42)" fg:x="6298" fg:w="1"/><text x="75.0570%" y="1183.50"></text></g><g><title>uv_distribution_filename::extension::SourceDistExtension::from_path::is_tar (1 samples, 0.01%)</title><rect x="74.8070%" y="1157" width="0.0119%" height="15" fill="rgb(248,228,14)" fg:x="6298" fg:w="1"/><text x="75.0570%" y="1167.50"></text></g><g><title>core::option::Option&lt;T&gt;::is_some_and (1 samples, 0.01%)</title><rect x="74.8070%" y="1141" width="0.0119%" height="15" fill="rgb(208,133,18)" fg:x="6298" fg:w="1"/><text x="75.0570%" y="1151.50"></text></g><g><title>uv_distribution_filename::extension::SourceDistExtension::from_path::is_tar::_{{closure}} (1 samples, 0.01%)</title><rect x="74.8070%" y="1125" width="0.0119%" height="15" fill="rgb(207,35,49)" fg:x="6298" fg:w="1"/><text x="75.0570%" y="1135.50"></text></g><g><title>core::option::Option&lt;T&gt;::is_some_and (1 samples, 0.01%)</title><rect x="74.8070%" y="1109" width="0.0119%" height="15" fill="rgb(205,68,36)" fg:x="6298" fg:w="1"/><text x="75.0570%" y="1119.50"></text></g><g><title>uv_distribution_filename::extension::SourceDistExtension::from_path::is_tar::_{{closure}}::_{{closure}} (1 samples, 0.01%)</title><rect x="74.8070%" y="1093" width="0.0119%" height="15" fill="rgb(245,62,40)" fg:x="6298" fg:w="1"/><text x="75.0570%" y="1103.50"></text></g><g><title>std::ffi::os_str::OsStr::eq_ignore_ascii_case (1 samples, 0.01%)</title><rect x="74.8070%" y="1077" width="0.0119%" height="15" fill="rgb(228,27,24)" fg:x="6298" fg:w="1"/><text x="75.0570%" y="1087.50"></text></g><g><title>core::slice::ascii::_&lt;impl [u8]&gt;::eq_ignore_ascii_case (1 samples, 0.01%)</title><rect x="74.8070%" y="1061" width="0.0119%" height="15" fill="rgb(253,19,12)" fg:x="6298" fg:w="1"/><text x="75.0570%" y="1071.50"></text></g><g><title>uv_distribution_filename::DistFilename::try_from_filename (9 samples, 0.11%)</title><rect x="74.7238%" y="1205" width="0.1069%" height="15" fill="rgb(232,28,20)" fg:x="6291" fg:w="9"/><text x="74.9738%" y="1215.50"></text></g><g><title>uv_distribution_filename::source_dist::SourceDistFilename::parse (1 samples, 0.01%)</title><rect x="74.8189%" y="1189" width="0.0119%" height="15" fill="rgb(218,35,51)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_normalize::package_name::PackageName&gt; (1 samples, 0.01%)</title><rect x="74.8189%" y="1173" width="0.0119%" height="15" fill="rgb(212,90,40)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_small_str::SmallString&gt; (1 samples, 0.01%)</title><rect x="74.8189%" y="1157" width="0.0119%" height="15" fill="rgb(220,172,12)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;arcstr::arc_str::ArcStr&gt; (1 samples, 0.01%)</title><rect x="74.8189%" y="1141" width="0.0119%" height="15" fill="rgb(226,159,20)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1151.50"></text></g><g><title>&lt;arcstr::arc_str::ArcStr as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="74.8189%" y="1125" width="0.0119%" height="15" fill="rgb(234,205,16)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1135.50"></text></g><g><title>arcstr::arc_str::ThinInner::destroy_cold (1 samples, 0.01%)</title><rect x="74.8189%" y="1109" width="0.0119%" height="15" fill="rgb(207,9,39)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1119.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.01%)</title><rect x="74.8189%" y="1093" width="0.0119%" height="15" fill="rgb(249,143,15)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1103.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="74.8189%" y="1077" width="0.0119%" height="15" fill="rgb(253,133,29)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1087.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="74.8189%" y="1061" width="0.0119%" height="15" fill="rgb(221,187,0)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1071.50"></text></g><g><title>tikv_jemallocator::layout_to_flags (1 samples, 0.01%)</title><rect x="74.8189%" y="1045" width="0.0119%" height="15" fill="rgb(205,204,26)" fg:x="6299" fg:w="1"/><text x="75.0689%" y="1055.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (1 samples, 0.01%)</title><rect x="74.8307%" y="1077" width="0.0119%" height="15" fill="rgb(224,68,54)" fg:x="6300" fg:w="1"/><text x="75.0807%" y="1087.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="74.8307%" y="1061" width="0.0119%" height="15" fill="rgb(209,67,4)" fg:x="6300" fg:w="1"/><text x="75.0807%" y="1071.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (1 samples, 0.01%)</title><rect x="74.8307%" y="1045" width="0.0119%" height="15" fill="rgb(228,229,18)" fg:x="6300" fg:w="1"/><text x="75.0807%" y="1055.50"></text></g><g><title>&lt;core::array::iter::IntoIter&lt;T,_&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="74.8307%" y="1029" width="0.0119%" height="15" fill="rgb(231,89,13)" fg:x="6300" fg:w="1"/><text x="75.0807%" y="1039.50"></text></g><g><title>core::array::iter::iter_inner::PolymorphicIter&lt;[core::mem::maybe_uninit::MaybeUninit&lt;T&gt;]&gt;::next (1 samples, 0.01%)</title><rect x="74.8307%" y="1013" width="0.0119%" height="15" fill="rgb(210,182,18)" fg:x="6300" fg:w="1"/><text x="75.0807%" y="1023.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.02%)</title><rect x="74.8307%" y="1109" width="0.0238%" height="15" fill="rgb(240,105,2)" fg:x="6300" fg:w="2"/><text x="75.0807%" y="1119.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.02%)</title><rect x="74.8307%" y="1093" width="0.0238%" height="15" fill="rgb(207,170,50)" fg:x="6300" fg:w="2"/><text x="75.0807%" y="1103.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="74.8426%" y="1077" width="0.0119%" height="15" fill="rgb(232,133,24)" fg:x="6301" fg:w="1"/><text x="75.0926%" y="1087.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (3 samples, 0.04%)</title><rect x="74.8307%" y="1189" width="0.0356%" height="15" fill="rgb(235,166,27)" fg:x="6300" fg:w="3"/><text x="75.0807%" y="1199.50"></text></g><g><title>core::ops::function::FnOnce::call_once (3 samples, 0.04%)</title><rect x="74.8307%" y="1173" width="0.0356%" height="15" fill="rgb(209,19,13)" fg:x="6300" fg:w="3"/><text x="75.0807%" y="1183.50"></text></g><g><title>jiff::timestamp::Timestamp::as_millisecond (3 samples, 0.04%)</title><rect x="74.8307%" y="1157" width="0.0356%" height="15" fill="rgb(226,79,39)" fg:x="6300" fg:w="3"/><text x="75.0807%" y="1167.50"></text></g><g><title>jiff::timestamp::Timestamp::as_millisecond_ranged (3 samples, 0.04%)</title><rect x="74.8307%" y="1141" width="0.0356%" height="15" fill="rgb(222,163,10)" fg:x="6300" fg:w="3"/><text x="75.0807%" y="1151.50"></text></g><g><title>jiff::util::rangeint::ri64&lt;_,_&gt;::vary_many (3 samples, 0.04%)</title><rect x="74.8307%" y="1125" width="0.0356%" height="15" fill="rgb(214,44,19)" fg:x="6300" fg:w="3"/><text x="75.0807%" y="1135.50"></text></g><g><title>core::array::_&lt;impl [T (1 samples, 0.01%)</title><rect x="74.8545%" y="1109" width="0.0119%" height="15" fill="rgb(210,217,13)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="1119.50"></text></g><g><title> N]&gt;::map (1 samples, 0.01%)</title><rect x="74.8545%" y="1093" width="0.0119%" height="15" fill="rgb(237,61,54)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="1103.50"></text></g><g><title>core::array::drain::drain_array_with (1 samples, 0.01%)</title><rect x="74.8545%" y="1077" width="0.0119%" height="15" fill="rgb(226,184,24)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="1087.50"></text></g><g><title>core::array::_&lt;impl [T (1 samples, 0.01%)</title><rect x="74.8545%" y="1061" width="0.0119%" height="15" fill="rgb(223,226,4)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="1071.50"></text></g><g><title> N]&gt;::try_map::_{{closure}} (1 samples, 0.01%)</title><rect x="74.8545%" y="1045" width="0.0119%" height="15" fill="rgb(210,26,41)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="1055.50"></text></g><g><title>core::array::try_from_trusted_iterator (1 samples, 0.01%)</title><rect x="74.8545%" y="1029" width="0.0119%" height="15" fill="rgb(220,221,6)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="1039.50"></text></g><g><title>core::array::try_from_fn (1 samples, 0.01%)</title><rect x="74.8545%" y="1013" width="0.0119%" height="15" fill="rgb(225,89,49)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="1023.50"></text></g><g><title>core::array::try_from_fn_erased (1 samples, 0.01%)</title><rect x="74.8545%" y="997" width="0.0119%" height="15" fill="rgb(218,70,45)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::array::try_from_trusted_iterator::next&lt;core::ops::try_trait::NeverShortCircuit&lt;jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;&gt;,core::iter::adapters::map::Map&lt;core::array::drain::Drain&lt;jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;&gt;,core::ops::try_trait::NeverShortCircuit&lt;jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;&gt;::wrap_mut_1&lt;jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;,jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;::vary_many&lt;2_usize,2_usize,.9223372036854775808_i128,9223372036854775807_i128,jiff::timestamp::Timestamp::as_millisecond_ranged::{{closure}}&gt;::{{closure}}&gt;::{{closure}}&gt;&gt;::{{closure}}&gt; (1 samples, 0.01%)</title><rect x="74.8545%" y="981" width="0.0119%" height="15" fill="rgb(238,166,21)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::iter::adapters::map::Map&lt;core::array::drain::Drain&lt;jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;&gt;,core::ops::try_trait::NeverShortCircuit&lt;jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;&gt;::wrap_mut_1&lt;jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;,jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;::vary_many&lt;2_usize,2_usize,.9223372036854775808_i128,9223372036854775807_i128,jiff::timestamp::Timestamp::as_millisecond_ranged::{{closure}}&gt;::{{closure}}&gt;::{{closure}}&gt;&gt; (1 samples, 0.01%)</title><rect x="74.8545%" y="965" width="0.0119%" height="15" fill="rgb(224,141,44)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::array::drain::Drain&lt;jiff::util::rangeint::ri64&lt;.9223372036854775808_i128,9223372036854775807_i128&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="74.8545%" y="949" width="0.0119%" height="15" fill="rgb(230,12,49)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="959.50"></text></g><g><title>&lt;core::array::drain::Drain&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="74.8545%" y="933" width="0.0119%" height="15" fill="rgb(212,174,12)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="943.50"></text></g><g><title>core::slice::iter::IterMut&lt;T&gt;::as_mut_slice (1 samples, 0.01%)</title><rect x="74.8545%" y="917" width="0.0119%" height="15" fill="rgb(246,67,9)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="927.50"></text></g><g><title>core::slice::raw::from_raw_parts_mut::precondition_check (1 samples, 0.01%)</title><rect x="74.8545%" y="901" width="0.0119%" height="15" fill="rgb(239,35,23)" fg:x="6302" fg:w="1"/><text x="75.1045%" y="911.50"></text></g><g><title>uv_client::registry_client::SimpleMetadata::from_files (16 samples, 0.19%)</title><rect x="74.6882%" y="1221" width="0.1900%" height="15" fill="rgb(211,167,0)" fg:x="6288" fg:w="16"/><text x="74.9382%" y="1231.50"></text></g><g><title>uv_distribution_types::file::File::try_from (4 samples, 0.05%)</title><rect x="74.8307%" y="1205" width="0.0475%" height="15" fill="rgb(225,119,45)" fg:x="6300" fg:w="4"/><text x="75.0807%" y="1215.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;uv_pypi_types::simple_json::CoreMetadata&gt;&gt; (1 samples, 0.01%)</title><rect x="74.8664%" y="1189" width="0.0119%" height="15" fill="rgb(210,162,6)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_pypi_types::simple_json::CoreMetadata&gt; (1 samples, 0.01%)</title><rect x="74.8664%" y="1173" width="0.0119%" height="15" fill="rgb(208,118,35)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_pypi_types::simple_json::Hashes&gt; (1 samples, 0.01%)</title><rect x="74.8664%" y="1157" width="0.0119%" height="15" fill="rgb(239,4,53)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;uv_small_str::SmallString&gt;&gt; (1 samples, 0.01%)</title><rect x="74.8664%" y="1141" width="0.0119%" height="15" fill="rgb(213,130,21)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_small_str::SmallString&gt; (1 samples, 0.01%)</title><rect x="74.8664%" y="1125" width="0.0119%" height="15" fill="rgb(235,148,0)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;arcstr::arc_str::ArcStr&gt; (1 samples, 0.01%)</title><rect x="74.8664%" y="1109" width="0.0119%" height="15" fill="rgb(244,224,18)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1119.50"></text></g><g><title>&lt;arcstr::arc_str::ArcStr as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="74.8664%" y="1093" width="0.0119%" height="15" fill="rgb(211,214,4)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1103.50"></text></g><g><title>arcstr::arc_str::ThinInner::destroy_cold (1 samples, 0.01%)</title><rect x="74.8664%" y="1077" width="0.0119%" height="15" fill="rgb(206,119,25)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1087.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.01%)</title><rect x="74.8664%" y="1061" width="0.0119%" height="15" fill="rgb(243,93,47)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1071.50"></text></g><g><title>__rustc::__rust_dealloc (1 samples, 0.01%)</title><rect x="74.8664%" y="1045" width="0.0119%" height="15" fill="rgb(224,194,6)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1055.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.01%)</title><rect x="74.8664%" y="1029" width="0.0119%" height="15" fill="rgb(243,229,6)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1039.50"></text></g><g><title>_rjem_sdallocx (1 samples, 0.01%)</title><rect x="74.8664%" y="1013" width="0.0119%" height="15" fill="rgb(207,23,50)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1023.50"></text></g><g><title>_rjem_je_sdallocx_default (1 samples, 0.01%)</title><rect x="74.8664%" y="997" width="0.0119%" height="15" fill="rgb(253,192,32)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="1007.50"></text></g><g><title>_rjem_je_tcache_bin_flush_small (1 samples, 0.01%)</title><rect x="74.8664%" y="981" width="0.0119%" height="15" fill="rgb(213,21,6)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="991.50"></text></g><g><title>bitmap_unset (1 samples, 0.01%)</title><rect x="74.8664%" y="965" width="0.0119%" height="15" fill="rgb(243,151,13)" fg:x="6303" fg:w="1"/><text x="75.1164%" y="975.50"></text></g><g><title>rkyv::ser::writer::WriterExt::align_for (1 samples, 0.01%)</title><rect x="74.8783%" y="693" width="0.0119%" height="15" fill="rgb(233,165,41)" fg:x="6304" fg:w="1"/><text x="75.1283%" y="703.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::HashDigests as rkyv::traits::Serialize&lt;__S&gt;&gt;::serialize (2 samples, 0.02%)</title><rect x="74.8783%" y="789" width="0.0238%" height="15" fill="rgb(246,176,45)" fg:x="6304" fg:w="2"/><text x="75.1283%" y="799.50"></text></g><g><title>rkyv::impls::alloc::boxed::_&lt;impl rkyv::traits::Serialize&lt;S&gt; for alloc::boxed::Box&lt;T&gt;&gt;::serialize (2 samples, 0.02%)</title><rect x="74.8783%" y="773" width="0.0238%" height="15" fill="rgb(217,170,52)" fg:x="6304" fg:w="2"/><text x="75.1283%" y="783.50"></text></g><g><title>rkyv::boxed::ArchivedBox&lt;T&gt;::serialize_from_ref (2 samples, 0.02%)</title><rect x="74.8783%" y="757" width="0.0238%" height="15" fill="rgb(214,203,54)" fg:x="6304" fg:w="2"/><text x="75.1283%" y="767.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for [T]&gt;::serialize_unsized (2 samples, 0.02%)</title><rect x="74.8783%" y="741" width="0.0238%" height="15" fill="rgb(248,215,49)" fg:x="6304" fg:w="2"/><text x="75.1283%" y="751.50"></text></g><g><title>rkyv::util::ser_vec::SerVec&lt;T&gt;::with_capacity (2 samples, 0.02%)</title><rect x="74.8783%" y="725" width="0.0238%" height="15" fill="rgb(208,46,10)" fg:x="6304" fg:w="2"/><text x="75.1283%" y="735.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for [T]&gt;::serialize_unsized::_{{closure}} (2 samples, 0.02%)</title><rect x="74.8783%" y="709" width="0.0238%" height="15" fill="rgb(254,5,31)" fg:x="6304" fg:w="2"/><text x="75.1283%" y="719.50"></text></g><g><title>rkyv::ser::writer::WriterExt::resolve_aligned (1 samples, 0.01%)</title><rect x="74.8901%" y="693" width="0.0119%" height="15" fill="rgb(222,104,33)" fg:x="6305" fg:w="1"/><text x="75.1401%" y="703.50"></text></g><g><title>&lt;uv_pypi_types::simple_json::HashDigest as rkyv::traits::Archive&gt;::resolve (1 samples, 0.01%)</title><rect x="74.8901%" y="677" width="0.0119%" height="15" fill="rgb(248,49,16)" fg:x="6305" fg:w="1"/><text x="75.1401%" y="687.50"></text></g><g><title>&lt;uv_small_str::SmallString as rkyv::traits::Archive&gt;::resolve (1 samples, 0.01%)</title><rect x="74.8901%" y="661" width="0.0119%" height="15" fill="rgb(232,198,41)" fg:x="6305" fg:w="1"/><text x="75.1401%" y="671.50"></text></g><g><title>rkyv::string::ArchivedString::resolve_from_str (1 samples, 0.01%)</title><rect x="74.8901%" y="645" width="0.0119%" height="15" fill="rgb(214,125,3)" fg:x="6305" fg:w="1"/><text x="75.1401%" y="655.50"></text></g><g><title>rkyv::string::repr::ArchivedStringRepr::emplace_out_of_line (1 samples, 0.01%)</title><rect x="74.8901%" y="629" width="0.0119%" height="15" fill="rgb(229,220,28)" fg:x="6305" fg:w="1"/><text x="75.1401%" y="639.50"></text></g><g><title>rkyv::string::repr::ArchivedStringRepr::try_emplace_out_of_line (1 samples, 0.01%)</title><rect x="74.8901%" y="613" width="0.0119%" height="15" fill="rgb(222,64,37)" fg:x="6305" fg:w="1"/><text x="75.1401%" y="623.50"></text></g><g><title>&lt;rancor::Strategy&lt;T,E&gt; as rkyv::ser::writer::Writer&lt;E&gt;&gt;::write (1 samples, 0.01%)</title><rect x="74.9020%" y="677" width="0.0119%" height="15" fill="rgb(249,184,13)" fg:x="6306" fg:w="1"/><text x="75.1520%" y="687.50"></text></g><g><title>&lt;rkyv::ser::Serializer&lt;W,A,S&gt; as rkyv::ser::writer::Writer&lt;E&gt;&gt;::write (1 samples, 0.01%)</title><rect x="74.9020%" y="661" width="0.0119%" height="15" fill="rgb(252,176,6)" fg:x="6306" fg:w="1"/><text x="75.1520%" y="671.50"></text></g><g><title>rkyv::ser::writer::alloc::_&lt;impl rkyv::ser::writer::Writer&lt;E&gt; for rkyv::util::alloc::aligned_vec::AlignedVec&lt;_&gt;&gt;::write (1 samples, 0.01%)</title><rect x="74.9020%" y="645" width="0.0119%" height="15" fill="rgb(228,153,7)" fg:x="6306" fg:w="1"/><text x="75.1520%" y="655.50"></text></g><g><title>rkyv::util::alloc::aligned_vec::AlignedVec&lt;_&gt;::extend_from_slice (1 samples, 0.01%)</title><rect x="74.9020%" y="629" width="0.0119%" height="15" fill="rgb(242,193,5)" fg:x="6306" fg:w="1"/><text x="75.1520%" y="639.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="74.9020%" y="613" width="0.0119%" height="15" fill="rgb(232,140,9)" fg:x="6306" fg:w="1"/><text x="75.1520%" y="623.50"></text></g><g><title>&lt;uv_client::registry_client::VersionWheel as rkyv::traits::Serialize&lt;__S&gt;&gt;::serialize (4 samples, 0.05%)</title><rect x="74.8783%" y="821" width="0.0475%" height="15" fill="rgb(213,222,16)" fg:x="6304" fg:w="4"/><text x="75.1283%" y="831.50"></text></g><g><title>&lt;uv_distribution_types::file::File as rkyv::traits::Serialize&lt;__S&gt;&gt;::serialize (4 samples, 0.05%)</title><rect x="74.8783%" y="805" width="0.0475%" height="15" fill="rgb(222,75,50)" fg:x="6304" fg:w="4"/><text x="75.1283%" y="815.50"></text></g><g><title>rkyv::impls::core::option::_&lt;impl rkyv::traits::Serialize&lt;S&gt; for core::option::Option&lt;T&gt;&gt;::serialize (2 samples, 0.02%)</title><rect x="74.9020%" y="789" width="0.0238%" height="15" fill="rgb(205,180,2)" fg:x="6306" fg:w="2"/><text x="75.1520%" y="799.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (2 samples, 0.02%)</title><rect x="74.9020%" y="773" width="0.0238%" height="15" fill="rgb(216,34,7)" fg:x="6306" fg:w="2"/><text x="75.1520%" y="783.50"></text></g><g><title>rkyv::impls::core::option::_&lt;impl rkyv::traits::Serialize&lt;S&gt; for core::option::Option&lt;T&gt;&gt;::serialize::_{{closure}} (2 samples, 0.02%)</title><rect x="74.9020%" y="757" width="0.0238%" height="15" fill="rgb(253,16,32)" fg:x="6306" fg:w="2"/><text x="75.1520%" y="767.50"></text></g><g><title>rkyv::impls::alloc::boxed::_&lt;impl rkyv::traits::Serialize&lt;S&gt; for alloc::boxed::Box&lt;T&gt;&gt;::serialize (2 samples, 0.02%)</title><rect x="74.9020%" y="741" width="0.0238%" height="15" fill="rgb(208,97,28)" fg:x="6306" fg:w="2"/><text x="75.1520%" y="751.50"></text></g><g><title>rkyv::boxed::ArchivedBox&lt;T&gt;::serialize_from_ref (2 samples, 0.02%)</title><rect x="74.9020%" y="725" width="0.0238%" height="15" fill="rgb(225,92,11)" fg:x="6306" fg:w="2"/><text x="75.1520%" y="735.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for T&gt;::serialize_unsized (2 samples, 0.02%)</title><rect x="74.9020%" y="709" width="0.0238%" height="15" fill="rgb(243,38,12)" fg:x="6306" fg:w="2"/><text x="75.1520%" y="719.50"></text></g><g><title>rkyv::ser::writer::WriterExt::resolve_aligned (2 samples, 0.02%)</title><rect x="74.9020%" y="693" width="0.0238%" height="15" fill="rgb(208,139,16)" fg:x="6306" fg:w="2"/><text x="75.1520%" y="703.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::as_slice (1 samples, 0.01%)</title><rect x="74.9139%" y="677" width="0.0119%" height="15" fill="rgb(227,24,9)" fg:x="6307" fg:w="1"/><text x="75.1639%" y="687.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::LayoutRaw for T&gt;::layout_raw (1 samples, 0.01%)</title><rect x="74.9139%" y="661" width="0.0119%" height="15" fill="rgb(206,62,11)" fg:x="6307" fg:w="1"/><text x="75.1639%" y="671.50"></text></g><g><title>core::alloc::layout::Layout::new (1 samples, 0.01%)</title><rect x="74.9139%" y="645" width="0.0119%" height="15" fill="rgb(228,134,27)" fg:x="6307" fg:w="1"/><text x="75.1639%" y="655.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::new_unchecked (1 samples, 0.01%)</title><rect x="74.9258%" y="757" width="0.0119%" height="15" fill="rgb(205,55,33)" fg:x="6308" fg:w="1"/><text x="75.1758%" y="767.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked (1 samples, 0.01%)</title><rect x="74.9258%" y="741" width="0.0119%" height="15" fill="rgb(243,75,43)" fg:x="6308" fg:w="1"/><text x="75.1758%" y="751.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked::precondition_check (1 samples, 0.01%)</title><rect x="74.9258%" y="725" width="0.0119%" height="15" fill="rgb(223,27,42)" fg:x="6308" fg:w="1"/><text x="75.1758%" y="735.50"></text></g><g><title>&lt;uv_client::registry_client::VersionSourceDist as rkyv::traits::Archive&gt;::resolve (2 samples, 0.02%)</title><rect x="74.9258%" y="805" width="0.0238%" height="15" fill="rgb(232,189,33)" fg:x="6308" fg:w="2"/><text x="75.1758%" y="815.50"></text></g><g><title>&lt;uv_distribution_types::file::File as rkyv::traits::Archive&gt;::resolve (2 samples, 0.02%)</title><rect x="74.9258%" y="789" width="0.0238%" height="15" fill="rgb(210,9,39)" fg:x="6308" fg:w="2"/><text x="75.1758%" y="799.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::from_field_unchecked (2 samples, 0.02%)</title><rect x="74.9258%" y="773" width="0.0238%" height="15" fill="rgb(242,85,26)" fg:x="6308" fg:w="2"/><text x="75.1758%" y="783.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::ptr (1 samples, 0.01%)</title><rect x="74.9376%" y="757" width="0.0119%" height="15" fill="rgb(248,44,4)" fg:x="6309" fg:w="1"/><text x="75.1876%" y="767.50"></text></g><g><title>&lt;uv_normalize::package_name::PackageName as rkyv::traits::Archive&gt;::resolve (1 samples, 0.01%)</title><rect x="74.9495%" y="773" width="0.0119%" height="15" fill="rgb(250,96,46)" fg:x="6310" fg:w="1"/><text x="75.1995%" y="783.50"></text></g><g><title>&lt;uv_small_str::SmallString as rkyv::traits::Archive&gt;::resolve (1 samples, 0.01%)</title><rect x="74.9495%" y="757" width="0.0119%" height="15" fill="rgb(229,116,26)" fg:x="6310" fg:w="1"/><text x="75.1995%" y="767.50"></text></g><g><title>rkyv::string::ArchivedString::resolve_from_str (1 samples, 0.01%)</title><rect x="74.9495%" y="741" width="0.0119%" height="15" fill="rgb(246,94,34)" fg:x="6310" fg:w="1"/><text x="75.1995%" y="751.50"></text></g><g><title>rkyv::string::repr::ArchivedStringRepr::emplace_out_of_line (1 samples, 0.01%)</title><rect x="74.9495%" y="725" width="0.0119%" height="15" fill="rgb(251,73,21)" fg:x="6310" fg:w="1"/><text x="75.1995%" y="735.50"></text></g><g><title>rkyv::string::repr::ArchivedStringRepr::try_emplace_out_of_line (1 samples, 0.01%)</title><rect x="74.9495%" y="709" width="0.0119%" height="15" fill="rgb(254,121,25)" fg:x="6310" fg:w="1"/><text x="75.1995%" y="719.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::write (1 samples, 0.01%)</title><rect x="74.9495%" y="693" width="0.0119%" height="15" fill="rgb(215,161,49)" fg:x="6310" fg:w="1"/><text x="75.1995%" y="703.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::write_unchecked (1 samples, 0.01%)</title><rect x="74.9495%" y="677" width="0.0119%" height="15" fill="rgb(221,43,13)" fg:x="6310" fg:w="1"/><text x="75.1995%" y="687.50"></text></g><g><title>uv_platform_tags::abi_tag::_::_&lt;impl rkyv::traits::Archive for uv_platform_tags::abi_tag::AbiTag&gt;::resolve (1 samples, 0.01%)</title><rect x="74.9614%" y="741" width="0.0119%" height="15" fill="rgb(249,5,37)" fg:x="6311" fg:w="1"/><text x="75.2114%" y="751.50"></text></g><g><title>uv_platform_tags::language_tag::_::_&lt;impl rkyv::traits::Archive for uv_platform_tags::language_tag::LanguageTag&gt;::resolve (1 samples, 0.01%)</title><rect x="74.9733%" y="741" width="0.0119%" height="15" fill="rgb(226,25,44)" fg:x="6312" fg:w="1"/><text x="75.2233%" y="751.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::Archive for (T0,T1)&gt;::resolve (1 samples, 0.01%)</title><rect x="74.9733%" y="725" width="0.0119%" height="15" fill="rgb(238,189,16)" fg:x="6312" fg:w="1"/><text x="75.2233%" y="735.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::from_field_unchecked (1 samples, 0.01%)</title><rect x="74.9733%" y="709" width="0.0119%" height="15" fill="rgb(251,186,8)" fg:x="6312" fg:w="1"/><text x="75.2233%" y="719.50"></text></g><g><title>&lt;uv_distribution_filename::wheel::WheelFilename as rkyv::traits::Archive&gt;::resolve (4 samples, 0.05%)</title><rect x="74.9495%" y="789" width="0.0475%" height="15" fill="rgb(254,34,31)" fg:x="6310" fg:w="4"/><text x="75.1995%" y="799.50"></text></g><g><title>uv_distribution_filename::wheel_tag::_::_&lt;impl rkyv::traits::Archive for uv_distribution_filename::wheel_tag::WheelTag&gt;::resolve (3 samples, 0.04%)</title><rect x="74.9614%" y="773" width="0.0356%" height="15" fill="rgb(225,215,27)" fg:x="6311" fg:w="3"/><text x="75.2114%" y="783.50"></text></g><g><title>&lt;uv_distribution_filename::wheel_tag::WheelTagSmall as rkyv::traits::Archive&gt;::resolve (3 samples, 0.04%)</title><rect x="74.9614%" y="757" width="0.0356%" height="15" fill="rgb(221,192,48)" fg:x="6311" fg:w="3"/><text x="75.2114%" y="767.50"></text></g><g><title>uv_platform_tags::platform_tag::_::_&lt;impl rkyv::traits::Archive for uv_platform_tags::platform_tag::PlatformTag&gt;::resolve (1 samples, 0.01%)</title><rect x="74.9852%" y="741" width="0.0119%" height="15" fill="rgb(219,137,20)" fg:x="6313" fg:w="1"/><text x="75.2352%" y="751.50"></text></g><g><title>uv_platform_tags::platform::_::_&lt;impl rkyv::traits::Archive for uv_platform_tags::platform::Arch&gt;::resolve (1 samples, 0.01%)</title><rect x="74.9852%" y="725" width="0.0119%" height="15" fill="rgb(219,84,11)" fg:x="6313" fg:w="1"/><text x="75.2352%" y="735.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::cast_unchecked (1 samples, 0.01%)</title><rect x="74.9852%" y="709" width="0.0119%" height="15" fill="rgb(224,10,23)" fg:x="6313" fg:w="1"/><text x="75.2352%" y="719.50"></text></g><g><title>&lt;uv_pep440::version_specifier::VersionSpecifiers as rkyv::traits::Archive&gt;::resolve (1 samples, 0.01%)</title><rect x="74.9970%" y="757" width="0.0119%" height="15" fill="rgb(248,22,39)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="767.50"></text></g><g><title>rkyv::impls::alloc::boxed::_&lt;impl rkyv::traits::Archive for alloc::boxed::Box&lt;T&gt;&gt;::resolve (1 samples, 0.01%)</title><rect x="74.9970%" y="741" width="0.0119%" height="15" fill="rgb(212,154,20)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="751.50"></text></g><g><title>rkyv::boxed::ArchivedBox&lt;T&gt;::resolve_from_ref (1 samples, 0.01%)</title><rect x="74.9970%" y="725" width="0.0119%" height="15" fill="rgb(236,199,50)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="735.50"></text></g><g><title>rkyv::boxed::ArchivedBox&lt;T&gt;::resolve_from_raw_parts (1 samples, 0.01%)</title><rect x="74.9970%" y="709" width="0.0119%" height="15" fill="rgb(211,9,17)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="719.50"></text></g><g><title>rkyv::rel_ptr::RelPtr&lt;T,O&gt;::emplace_unsized (1 samples, 0.01%)</title><rect x="74.9970%" y="693" width="0.0119%" height="15" fill="rgb(243,216,36)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="703.50"></text></g><g><title>rkyv::rel_ptr::RelPtr&lt;T,O&gt;::try_emplace_unsized (1 samples, 0.01%)</title><rect x="74.9970%" y="677" width="0.0119%" height="15" fill="rgb(250,2,10)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="687.50"></text></g><g><title>munge::__macro::restructure_destructurer (1 samples, 0.01%)</title><rect x="74.9970%" y="661" width="0.0119%" height="15" fill="rgb(226,50,48)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="671.50"></text></g><g><title>&lt;rkyv::place::Place&lt;T&gt; as munge::Restructure&lt;U&gt;&gt;::restructure (1 samples, 0.01%)</title><rect x="74.9970%" y="645" width="0.0119%" height="15" fill="rgb(243,81,16)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="655.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::from_field_unchecked (1 samples, 0.01%)</title><rect x="74.9970%" y="629" width="0.0119%" height="15" fill="rgb(250,14,2)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="639.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::new_unchecked (1 samples, 0.01%)</title><rect x="74.9970%" y="613" width="0.0119%" height="15" fill="rgb(233,135,29)" fg:x="6314" fg:w="1"/><text x="75.2470%" y="623.50"></text></g><g><title>rkyv::impls::alloc::boxed::_&lt;impl rkyv::traits::Archive for alloc::boxed::Box&lt;T&gt;&gt;::resolve (1 samples, 0.01%)</title><rect x="75.0089%" y="757" width="0.0119%" height="15" fill="rgb(224,64,43)" fg:x="6315" fg:w="1"/><text x="75.2589%" y="767.50"></text></g><g><title>rkyv::boxed::ArchivedBox&lt;T&gt;::resolve_from_ref (1 samples, 0.01%)</title><rect x="75.0089%" y="741" width="0.0119%" height="15" fill="rgb(238,84,13)" fg:x="6315" fg:w="1"/><text x="75.2589%" y="751.50"></text></g><g><title>rkyv::boxed::ArchivedBox&lt;T&gt;::resolve_from_raw_parts (1 samples, 0.01%)</title><rect x="75.0089%" y="725" width="0.0119%" height="15" fill="rgb(253,48,26)" fg:x="6315" fg:w="1"/><text x="75.2589%" y="735.50"></text></g><g><title>rkyv::rel_ptr::RelPtr&lt;T,O&gt;::emplace_unsized (1 samples, 0.01%)</title><rect x="75.0089%" y="709" width="0.0119%" height="15" fill="rgb(205,223,31)" fg:x="6315" fg:w="1"/><text x="75.2589%" y="719.50"></text></g><g><title>rkyv::rel_ptr::RelPtr&lt;T,O&gt;::try_emplace_unsized (1 samples, 0.01%)</title><rect x="75.0089%" y="693" width="0.0119%" height="15" fill="rgb(221,41,32)" fg:x="6315" fg:w="1"/><text x="75.2589%" y="703.50"></text></g><g><title>munge::__macro::restructure_destructurer (1 samples, 0.01%)</title><rect x="75.0089%" y="677" width="0.0119%" height="15" fill="rgb(213,158,31)" fg:x="6315" fg:w="1"/><text x="75.2589%" y="687.50"></text></g><g><title>&lt;rkyv::place::Place&lt;T&gt; as munge::Restructure&lt;U&gt;&gt;::restructure (1 samples, 0.01%)</title><rect x="75.0089%" y="661" width="0.0119%" height="15" fill="rgb(245,126,43)" fg:x="6315" fg:w="1"/><text x="75.2589%" y="671.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::from_field_unchecked (1 samples, 0.01%)</title><rect x="75.0089%" y="645" width="0.0119%" height="15" fill="rgb(227,7,22)" fg:x="6315" fg:w="1"/><text x="75.2589%" y="655.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::new_unchecked (1 samples, 0.01%)</title><rect x="75.0089%" y="629" width="0.0119%" height="15" fill="rgb(252,90,44)" fg:x="6315" fg:w="1"/><text x="75.2589%" y="639.50"></text></g><g><title>rkyv::impls::core::option::_&lt;impl rkyv::traits::Archive for core::option::Option&lt;T&gt;&gt;::resolve (3 samples, 0.04%)</title><rect x="74.9970%" y="773" width="0.0356%" height="15" fill="rgb(253,91,0)" fg:x="6314" fg:w="3"/><text x="75.2470%" y="783.50"></text></g><g><title>rkyv::place::Place&lt;T&gt;::cast_unchecked (1 samples, 0.01%)</title><rect x="75.0208%" y="757" width="0.0119%" height="15" fill="rgb(252,175,49)" fg:x="6316" fg:w="1"/><text x="75.2708%" y="767.50"></text></g><g><title>rkyv::ser::writer::WriterExt::resolve_aligned (10 samples, 0.12%)</title><rect x="74.9258%" y="821" width="0.1188%" height="15" fill="rgb(246,150,1)" fg:x="6308" fg:w="10"/><text x="75.1758%" y="831.50"></text></g><g><title>&lt;uv_client::registry_client::VersionWheel as rkyv::traits::Archive&gt;::resolve (8 samples, 0.10%)</title><rect x="74.9495%" y="805" width="0.0950%" height="15" fill="rgb(241,192,25)" fg:x="6310" fg:w="8"/><text x="75.1995%" y="815.50"></text></g><g><title>&lt;uv_distribution_types::file::File as rkyv::traits::Archive&gt;::resolve (4 samples, 0.05%)</title><rect x="74.9970%" y="789" width="0.0475%" height="15" fill="rgb(239,187,11)" fg:x="6314" fg:w="4"/><text x="75.2470%" y="799.50"></text></g><g><title>uv_distribution_types::file::_::_&lt;impl rkyv::traits::Archive for uv_distribution_types::file::FileLocation&gt;::resolve (1 samples, 0.01%)</title><rect x="75.0327%" y="773" width="0.0119%" height="15" fill="rgb(218,202,51)" fg:x="6317" fg:w="1"/><text x="75.2827%" y="783.50"></text></g><g><title>&lt;uv_distribution_types::file::UrlString as rkyv::traits::Archive&gt;::resolve (1 samples, 0.01%)</title><rect x="75.0327%" y="757" width="0.0119%" height="15" fill="rgb(225,176,8)" fg:x="6317" fg:w="1"/><text x="75.2827%" y="767.50"></text></g><g><title>&lt;uv_small_str::SmallString as rkyv::traits::Archive&gt;::resolve (1 samples, 0.01%)</title><rect x="75.0327%" y="741" width="0.0119%" height="15" fill="rgb(219,122,41)" fg:x="6317" fg:w="1"/><text x="75.2827%" y="751.50"></text></g><g><title>rkyv::string::ArchivedString::resolve_from_str (1 samples, 0.01%)</title><rect x="75.0327%" y="725" width="0.0119%" height="15" fill="rgb(248,140,20)" fg:x="6317" fg:w="1"/><text x="75.2827%" y="735.50"></text></g><g><title>rkyv::string::repr::ArchivedStringRepr::emplace_out_of_line (1 samples, 0.01%)</title><rect x="75.0327%" y="709" width="0.0119%" height="15" fill="rgb(245,41,37)" fg:x="6317" fg:w="1"/><text x="75.2827%" y="719.50"></text></g><g><title>rkyv::string::repr::ArchivedStringRepr::try_emplace_out_of_line (1 samples, 0.01%)</title><rect x="75.0327%" y="693" width="0.0119%" height="15" fill="rgb(235,82,39)" fg:x="6317" fg:w="1"/><text x="75.2827%" y="703.50"></text></g><g><title>munge::__macro::restructure_destructurer (1 samples, 0.01%)</title><rect x="75.0327%" y="677" width="0.0119%" height="15" fill="rgb(230,108,42)" fg:x="6317" fg:w="1"/><text x="75.2827%" y="687.50"></text></g><g><title>&lt;rkyv::place::Place&lt;T&gt; as munge::Restructure&lt;U&gt;&gt;::restructure (1 samples, 0.01%)</title><rect x="75.0327%" y="661" width="0.0119%" height="15" fill="rgb(215,150,50)" fg:x="6317" fg:w="1"/><text x="75.2827%" y="671.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (124 samples, 1.47%)</title><rect x="73.5836%" y="1285" width="1.4729%" height="15" fill="rgb(233,212,5)" fg:x="6195" fg:w="124"/><text x="73.8336%" y="1295.50"></text></g><g><title>&lt;tracing::instrument::Instrumented&lt;T&gt; as core::future::future::Future&gt;::poll (124 samples, 1.47%)</title><rect x="73.5836%" y="1269" width="1.4729%" height="15" fill="rgb(245,80,22)" fg:x="6195" fg:w="124"/><text x="73.8336%" y="1279.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (124 samples, 1.47%)</title><rect x="73.5836%" y="1253" width="1.4729%" height="15" fill="rgb(238,129,16)" fg:x="6195" fg:w="124"/><text x="73.8336%" y="1263.50"></text></g><g><title>uv_client::registry_client::RegistryClient::fetch_remote_index::_{{closure}}::_{{closure}}::_{{closure}} (124 samples, 1.47%)</title><rect x="73.5836%" y="1237" width="1.4729%" height="15" fill="rgb(240,19,0)" fg:x="6195" fg:w="124"/><text x="73.8336%" y="1247.50"></text></g><g><title>uv_client::rkyvutil::OwnedArchive&lt;A&gt;::from_unarchived (15 samples, 0.18%)</title><rect x="74.8783%" y="1221" width="0.1782%" height="15" fill="rgb(232,42,35)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1231.50"></text></g><g><title>rkyv::api::high::to_bytes (15 samples, 0.18%)</title><rect x="74.8783%" y="1205" width="0.1782%" height="15" fill="rgb(223,130,24)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1215.50"></text></g><g><title>rkyv::api::high::to_bytes_in (15 samples, 0.18%)</title><rect x="74.8783%" y="1189" width="0.1782%" height="15" fill="rgb(237,16,22)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1199.50"></text></g><g><title>rkyv::util::alloc::arena::with_arena (15 samples, 0.18%)</title><rect x="74.8783%" y="1173" width="0.1782%" height="15" fill="rgb(248,192,20)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1183.50"></text></g><g><title>rkyv::util::alloc::arena::detail::with_arena (15 samples, 0.18%)</title><rect x="74.8783%" y="1157" width="0.1782%" height="15" fill="rgb(233,167,2)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1167.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (15 samples, 0.18%)</title><rect x="74.8783%" y="1141" width="0.1782%" height="15" fill="rgb(252,71,44)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1151.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (15 samples, 0.18%)</title><rect x="74.8783%" y="1125" width="0.1782%" height="15" fill="rgb(238,37,47)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1135.50"></text></g><g><title>rkyv::util::alloc::arena::detail::with_arena::_{{closure}} (15 samples, 0.18%)</title><rect x="74.8783%" y="1109" width="0.1782%" height="15" fill="rgb(214,202,54)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1119.50"></text></g><g><title>rkyv::api::high::to_bytes_in::_{{closure}} (15 samples, 0.18%)</title><rect x="74.8783%" y="1093" width="0.1782%" height="15" fill="rgb(254,165,40)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1103.50"></text></g><g><title>rkyv::api::high::to_bytes_in_with_alloc (15 samples, 0.18%)</title><rect x="74.8783%" y="1077" width="0.1782%" height="15" fill="rgb(246,173,38)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1087.50"></text></g><g><title>rkyv::api::serialize_using (15 samples, 0.18%)</title><rect x="74.8783%" y="1061" width="0.1782%" height="15" fill="rgb(215,3,27)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1071.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for T&gt;::serialize_unsized (15 samples, 0.18%)</title><rect x="74.8783%" y="1045" width="0.1782%" height="15" fill="rgb(239,169,51)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1055.50"></text></g><g><title>&lt;uv_client::registry_client::SimpleMetadata as rkyv::traits::Serialize&lt;__S&gt;&gt;::serialize (15 samples, 0.18%)</title><rect x="74.8783%" y="1029" width="0.1782%" height="15" fill="rgb(212,5,25)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1039.50"></text></g><g><title>rkyv::impls::alloc::vec::_&lt;impl rkyv::traits::Serialize&lt;S&gt; for alloc::vec::Vec&lt;T&gt;&gt;::serialize (15 samples, 0.18%)</title><rect x="74.8783%" y="1013" width="0.1782%" height="15" fill="rgb(243,45,17)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1023.50"></text></g><g><title>rkyv::vec::ArchivedVec&lt;T&gt;::serialize_from_slice (15 samples, 0.18%)</title><rect x="74.8783%" y="997" width="0.1782%" height="15" fill="rgb(242,97,9)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="1007.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for [T]&gt;::serialize_unsized (15 samples, 0.18%)</title><rect x="74.8783%" y="981" width="0.1782%" height="15" fill="rgb(228,71,31)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="991.50"></text></g><g><title>rkyv::util::ser_vec::SerVec&lt;T&gt;::with_capacity (15 samples, 0.18%)</title><rect x="74.8783%" y="965" width="0.1782%" height="15" fill="rgb(252,184,16)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="975.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for [T]&gt;::serialize_unsized::_{{closure}} (15 samples, 0.18%)</title><rect x="74.8783%" y="949" width="0.1782%" height="15" fill="rgb(236,169,46)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="959.50"></text></g><g><title>&lt;uv_client::registry_client::SimpleMetadatum as rkyv::traits::Serialize&lt;__S&gt;&gt;::serialize (15 samples, 0.18%)</title><rect x="74.8783%" y="933" width="0.1782%" height="15" fill="rgb(207,17,47)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="943.50"></text></g><g><title>&lt;uv_client::registry_client::VersionFiles as rkyv::traits::Serialize&lt;__S&gt;&gt;::serialize (15 samples, 0.18%)</title><rect x="74.8783%" y="917" width="0.1782%" height="15" fill="rgb(206,201,28)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="927.50"></text></g><g><title>rkyv::impls::alloc::vec::_&lt;impl rkyv::traits::Serialize&lt;S&gt; for alloc::vec::Vec&lt;T&gt;&gt;::serialize (15 samples, 0.18%)</title><rect x="74.8783%" y="901" width="0.1782%" height="15" fill="rgb(224,184,23)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="911.50"></text></g><g><title>rkyv::vec::ArchivedVec&lt;T&gt;::serialize_from_slice (15 samples, 0.18%)</title><rect x="74.8783%" y="885" width="0.1782%" height="15" fill="rgb(208,139,48)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="895.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for [T]&gt;::serialize_unsized (15 samples, 0.18%)</title><rect x="74.8783%" y="869" width="0.1782%" height="15" fill="rgb(208,130,10)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="879.50"></text></g><g><title>rkyv::util::ser_vec::SerVec&lt;T&gt;::with_capacity (15 samples, 0.18%)</title><rect x="74.8783%" y="853" width="0.1782%" height="15" fill="rgb(211,213,45)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="863.50"></text></g><g><title>rkyv::impls::core::_&lt;impl rkyv::traits::SerializeUnsized&lt;S&gt; for [T]&gt;::serialize_unsized::_{{closure}} (15 samples, 0.18%)</title><rect x="74.8783%" y="837" width="0.1782%" height="15" fill="rgb(235,100,30)" fg:x="6304" fg:w="15"/><text x="75.1283%" y="847.50"></text></g><g><title>rkyv::util::ser_vec::SerVec&lt;T&gt;::push_unchecked (1 samples, 0.01%)</title><rect x="75.0445%" y="821" width="0.0119%" height="15" fill="rgb(206,144,31)" fg:x="6318" fg:w="1"/><text x="75.2945%" y="831.50"></text></g><g><title>rkyv::util::ser_vec::SerVec&lt;T&gt;::as_mut_ptr (1 samples, 0.01%)</title><rect x="75.0445%" y="805" width="0.0119%" height="15" fill="rgb(224,200,26)" fg:x="6318" fg:w="1"/><text x="75.2945%" y="815.50"></text></g><g><title>fs_err::tokio::write::_{{closure}} (1 samples, 0.01%)</title><rect x="75.0564%" y="1237" width="0.0119%" height="15" fill="rgb(247,104,53)" fg:x="6319" fg:w="1"/><text x="75.3064%" y="1247.50"></text></g><g><title>tokio::fs::write::write::_{{closure}} (1 samples, 0.01%)</title><rect x="75.0564%" y="1221" width="0.0119%" height="15" fill="rgb(220,14,17)" fg:x="6319" fg:w="1"/><text x="75.3064%" y="1231.50"></text></g><g><title>tokio::util::as_ref::upgrade (1 samples, 0.01%)</title><rect x="75.0564%" y="1205" width="0.0119%" height="15" fill="rgb(230,140,40)" fg:x="6319" fg:w="1"/><text x="75.3064%" y="1215.50"></text></g><g><title>alloc::slice::_&lt;impl alloc::borrow::ToOwned for [T]&gt;::to_owned (1 samples, 0.01%)</title><rect x="75.0564%" y="1189" width="0.0119%" height="15" fill="rgb(229,2,41)" fg:x="6319" fg:w="1"/><text x="75.3064%" y="1199.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="75.0564%" y="1173" width="0.0119%" height="15" fill="rgb(232,89,16)" fg:x="6319" fg:w="1"/><text x="75.3064%" y="1183.50"></text></g><g><title>&lt;futures_util::stream::stream::next::Next&lt;St&gt; as core::future::future::Future&gt;::poll (146 samples, 1.73%)</title><rect x="73.3460%" y="1605" width="1.7342%" height="15" fill="rgb(247,59,52)" fg:x="6175" fg:w="146"/><text x="73.5960%" y="1615.50"></text></g><g><title>futures_util::stream::stream::StreamExt::poll_next_unpin (146 samples, 1.73%)</title><rect x="73.3460%" y="1589" width="1.7342%" height="15" fill="rgb(226,110,21)" fg:x="6175" fg:w="146"/><text x="73.5960%" y="1599.50"></text></g><g><title>&lt;futures_util::stream::stream::buffer_unordered::BufferUnordered&lt;St&gt; as futures_core::stream::Stream&gt;::poll_next (146 samples, 1.73%)</title><rect x="73.3460%" y="1573" width="1.7342%" height="15" fill="rgb(224,176,43)" fg:x="6175" fg:w="146"/><text x="73.5960%" y="1583.50"></text></g><g><title>futures_util::stream::stream::StreamExt::poll_next_unpin (146 samples, 1.73%)</title><rect x="73.3460%" y="1557" width="1.7342%" height="15" fill="rgb(221,73,6)" fg:x="6175" fg:w="146"/><text x="73.5960%" y="1567.50"></text></g><g><title>&lt;futures_util::stream::futures_unordered::FuturesUnordered&lt;Fut&gt; as futures_core::stream::Stream&gt;::poll_next (146 samples, 1.73%)</title><rect x="73.3460%" y="1541" width="1.7342%" height="15" fill="rgb(232,78,19)" fg:x="6175" fg:w="146"/><text x="73.5960%" y="1551.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (146 samples, 1.73%)</title><rect x="73.3460%" y="1525" width="1.7342%" height="15" fill="rgb(233,112,48)" fg:x="6175" fg:w="146"/><text x="73.5960%" y="1535.50"></text></g><g><title>uv_resolver::resolver::ResolverState&lt;InstalledPackages&gt;::process_request::_{{closure}} (146 samples, 1.73%)</title><rect x="73.3460%" y="1509" width="1.7342%" height="15" fill="rgb(243,131,47)" fg:x="6175" fg:w="146"/><text x="73.5960%" y="1519.50"></text></g><g><title>uv_resolver::resolver::ResolverState&lt;InstalledPackages&gt;::process_request::_{{closure}}::_{{closure}} (146 samples, 1.73%)</title><rect x="73.3460%" y="1493" width="1.7342%" height="15" fill="rgb(226,51,1)" fg:x="6175" fg:w="146"/><text x="73.5960%" y="1503.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (146 samples, 1.73%)</title><rect x="73.3460%" y="1477" width="1.7342%" height="15" fill="rgb(247,58,7)" fg:x="6175" fg:w="146"/><text x="73.5960%" y="1487.50"></text></g><g><title>&lt;uv_resolver::resolver::provider::DefaultResolverProvider&lt;Context&gt; as uv_resolver::resolver::provider::ResolverProvider&gt;::get_package_versions::_{{closure}} (134 samples, 1.59%)</title><rect x="73.4885%" y="1461" width="1.5916%" height="15" fill="rgb(209,7,32)" fg:x="6187" fg:w="134"/><text x="73.7385%" y="1471.50"></text></g><g><title>uv_distribution::distribution_database::ManagedClient::manual::_{{closure}} (133 samples, 1.58%)</title><rect x="73.5004%" y="1445" width="1.5798%" height="15" fill="rgb(209,39,41)" fg:x="6188" fg:w="133"/><text x="73.7504%" y="1455.50"></text></g><g><title>uv_client::registry_client::RegistryClient::package_metadata::_{{closure}} (133 samples, 1.58%)</title><rect x="73.5004%" y="1429" width="1.5798%" height="15" fill="rgb(226,182,46)" fg:x="6188" fg:w="133"/><text x="73.7504%" y="1439.50"></text></g><g><title>uv_client::registry_client::RegistryClient::package_metadata::_{{closure}}::_{{closure}} (133 samples, 1.58%)</title><rect x="73.5004%" y="1413" width="1.5798%" height="15" fill="rgb(230,219,10)" fg:x="6188" fg:w="133"/><text x="73.7504%" y="1423.50"></text></g><g><title>uv_client::registry_client::RegistryClient::simple_single_index::_{{closure}} (133 samples, 1.58%)</title><rect x="73.5004%" y="1397" width="1.5798%" height="15" fill="rgb(227,175,30)" fg:x="6188" fg:w="133"/><text x="73.7504%" y="1407.50"></text></g><g><title>uv_client::registry_client::RegistryClient::fetch_remote_index::_{{closure}} (133 samples, 1.58%)</title><rect x="73.5004%" y="1381" width="1.5798%" height="15" fill="rgb(217,2,50)" fg:x="6188" fg:w="133"/><text x="73.7504%" y="1391.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable_with_retry::_{{closure}} (133 samples, 1.58%)</title><rect x="73.5004%" y="1365" width="1.5798%" height="15" fill="rgb(229,160,0)" fg:x="6188" fg:w="133"/><text x="73.7504%" y="1375.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable_with_retry::_{{closure}}::_{{closure}} (133 samples, 1.58%)</title><rect x="73.5004%" y="1349" width="1.5798%" height="15" fill="rgb(207,78,37)" fg:x="6188" fg:w="133"/><text x="73.7504%" y="1359.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable::_{{closure}} (133 samples, 1.58%)</title><rect x="73.5004%" y="1333" width="1.5798%" height="15" fill="rgb(225,57,0)" fg:x="6188" fg:w="133"/><text x="73.7504%" y="1343.50"></text></g><g><title>uv_client::cached_client::CachedClient::get_cacheable::_{{closure}}::_{{closure}} (133 samples, 1.58%)</title><rect x="73.5004%" y="1317" width="1.5798%" height="15" fill="rgb(232,154,2)" fg:x="6188" fg:w="133"/><text x="73.7504%" y="1327.50"></text></g><g><title>uv_client::cached_client::CachedClient::run_response_callback::_{{closure}} (126 samples, 1.50%)</title><rect x="73.5836%" y="1301" width="1.4966%" height="15" fill="rgb(241,212,25)" fg:x="6195" fg:w="126"/><text x="73.8336%" y="1311.50"></text></g><g><title>&lt;tracing::instrument::Instrumented&lt;T&gt; as core::future::future::Future&gt;::poll (2 samples, 0.02%)</title><rect x="75.0564%" y="1285" width="0.0238%" height="15" fill="rgb(226,69,20)" fg:x="6319" fg:w="2"/><text x="75.3064%" y="1295.50"></text></g><g><title>uv_client::cached_client::CachedClient::run_response_callback::_{{closure}}::_{{closure}} (2 samples, 0.02%)</title><rect x="75.0564%" y="1269" width="0.0238%" height="15" fill="rgb(247,184,54)" fg:x="6319" fg:w="2"/><text x="75.3064%" y="1279.50"></text></g><g><title>uv_fs::write_atomic::_{{closure}} (2 samples, 0.02%)</title><rect x="75.0564%" y="1253" width="0.0238%" height="15" fill="rgb(210,145,0)" fg:x="6319" fg:w="2"/><text x="75.3064%" y="1263.50"></text></g><g><title>uv_fs::persist_with_retry::_{{closure}} (1 samples, 0.01%)</title><rect x="75.0683%" y="1237" width="0.0119%" height="15" fill="rgb(253,82,12)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1247.50"></text></g><g><title>uv_fs::persist_with_retry::_{{closure}}::_{{closure}} (1 samples, 0.01%)</title><rect x="75.0683%" y="1221" width="0.0119%" height="15" fill="rgb(245,42,11)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1231.50"></text></g><g><title>fs_err::rename (1 samples, 0.01%)</title><rect x="75.0683%" y="1205" width="0.0119%" height="15" fill="rgb(219,147,32)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1215.50"></text></g><g><title>core::ptr::drop_in_place&lt;tempfile::file::NamedTempFile&gt; (1 samples, 0.01%)</title><rect x="75.0683%" y="1189" width="0.0119%" height="15" fill="rgb(246,12,7)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::fs::File&gt; (1 samples, 0.01%)</title><rect x="75.0683%" y="1173" width="0.0119%" height="15" fill="rgb(243,50,9)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys::fs::unix::File&gt; (1 samples, 0.01%)</title><rect x="75.0683%" y="1157" width="0.0119%" height="15" fill="rgb(219,149,6)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys::fd::unix::FileDesc&gt; (1 samples, 0.01%)</title><rect x="75.0683%" y="1141" width="0.0119%" height="15" fill="rgb(241,51,42)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::os::fd::owned::OwnedFd&gt; (1 samples, 0.01%)</title><rect x="75.0683%" y="1125" width="0.0119%" height="15" fill="rgb(226,128,27)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1135.50"></text></g><g><title>&lt;std::os::fd::owned::OwnedFd as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="75.0683%" y="1109" width="0.0119%" height="15" fill="rgb(244,144,4)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1119.50"></text></g><g><title>std::sys::fs::unix::debug_assert_fd_is_open (1 samples, 0.01%)</title><rect x="75.0683%" y="1093" width="0.0119%" height="15" fill="rgb(221,4,13)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1103.50"></text></g><g><title>__fcntl (1 samples, 0.01%)</title><rect x="75.0683%" y="1077" width="0.0119%" height="15" fill="rgb(208,170,28)" fg:x="6320" fg:w="1"/><text x="75.3183%" y="1087.50"></text></g><g><title>&lt;core::future::poll_fn::PollFn&lt;F&gt; as core::future::future::Future&gt;::poll (147 samples, 1.75%)</title><rect x="73.3460%" y="1685" width="1.7461%" height="15" fill="rgb(226,131,13)" fg:x="6175" fg:w="147"/><text x="73.5960%" y="1695.50"></text></g><g><title>uv_resolver::resolver::Resolver&lt;Provider,InstalledPackages&gt;::resolve::_{{closure}}::_{{closure}} (147 samples, 1.75%)</title><rect x="73.3460%" y="1669" width="1.7461%" height="15" fill="rgb(215,72,41)" fg:x="6175" fg:w="147"/><text x="73.5960%" y="1679.50"></text></g><g><title>&lt;tokio::future::maybe_done::MaybeDone&lt;Fut&gt; as core::future::future::Future&gt;::poll (147 samples, 1.75%)</title><rect x="73.3460%" y="1653" width="1.7461%" height="15" fill="rgb(243,108,20)" fg:x="6175" fg:w="147"/><text x="73.5960%" y="1663.50"></text></g><g><title>&lt;futures_util::future::future::fuse::Fuse&lt;Fut&gt; as core::future::future::Future&gt;::poll (147 samples, 1.75%)</title><rect x="73.3460%" y="1637" width="1.7461%" height="15" fill="rgb(230,189,17)" fg:x="6175" fg:w="147"/><text x="73.5960%" y="1647.50"></text></g><g><title>uv_resolver::resolver::ResolverState&lt;InstalledPackages&gt;::fetch::_{{closure}} (147 samples, 1.75%)</title><rect x="73.3460%" y="1621" width="1.7461%" height="15" fill="rgb(220,50,17)" fg:x="6175" fg:w="147"/><text x="73.5960%" y="1631.50"></text></g><g><title>uv_once_map::OnceMap&lt;K,V,H&gt;::done (1 samples, 0.01%)</title><rect x="75.0802%" y="1605" width="0.0119%" height="15" fill="rgb(248,152,48)" fg:x="6321" fg:w="1"/><text x="75.3302%" y="1615.50"></text></g><g><title>tokio::sync::notify::Notify::notify_waiters (1 samples, 0.01%)</title><rect x="75.0802%" y="1589" width="0.0119%" height="15" fill="rgb(244,91,11)" fg:x="6321" fg:w="1"/><text x="75.3302%" y="1599.50"></text></g><g><title>tokio::util::wake_list::WakeList::wake_all (1 samples, 0.01%)</title><rect x="75.0802%" y="1573" width="0.0119%" height="15" fill="rgb(220,157,5)" fg:x="6321" fg:w="1"/><text x="75.3302%" y="1583.50"></text></g><g><title>core::task::wake::Waker::wake (1 samples, 0.01%)</title><rect x="75.0802%" y="1557" width="0.0119%" height="15" fill="rgb(253,137,8)" fg:x="6321" fg:w="1"/><text x="75.3302%" y="1567.50"></text></g><g><title>futures_util::stream::futures_unordered::task::waker_ref::wake_arc_raw (1 samples, 0.01%)</title><rect x="75.0802%" y="1541" width="0.0119%" height="15" fill="rgb(217,137,51)" fg:x="6321" fg:w="1"/><text x="75.3302%" y="1551.50"></text></g><g><title>futures_task::arc_wake::ArcWake::wake (1 samples, 0.01%)</title><rect x="75.0802%" y="1525" width="0.0119%" height="15" fill="rgb(218,209,53)" fg:x="6321" fg:w="1"/><text x="75.3302%" y="1535.50"></text></g><g><title>&lt;futures_util::stream::futures_unordered::task::Task&lt;Fut&gt; as futures_task::arc_wake::ArcWake&gt;::wake_by_ref (1 samples, 0.01%)</title><rect x="75.0802%" y="1509" width="0.0119%" height="15" fill="rgb(249,137,25)" fg:x="6321" fg:w="1"/><text x="75.3302%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;futures_util::stream::futures_unordered::ready_to_run_queue::ReadyToRunQueue&lt;core::pin::Pin&lt;alloc::boxed::Box&lt;dyn core::future::future::Future+Output = core::result::Result&lt;core::option::Option&lt;uv_resolver::resolver::Response&gt;,uv_resolver::error::ResolveError&gt;&gt;&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="75.0802%" y="1493" width="0.0119%" height="15" fill="rgb(239,155,26)" fg:x="6321" fg:w="1"/><text x="75.3302%" y="1503.50"></text></g><g><title>core::sync::atomic::atomic_sub (1 samples, 0.01%)</title><rect x="75.0802%" y="1477" width="0.0119%" height="15" fill="rgb(227,85,46)" fg:x="6321" fg:w="1"/><text x="75.3302%" y="1487.50"></text></g><g><title>uv_resolver::resolver::Resolver&lt;Provider,InstalledPackages&gt;::resolve::_{{closure}} (148 samples, 1.76%)</title><rect x="73.3460%" y="1701" width="1.7579%" height="15" fill="rgb(251,107,43)" fg:x="6175" fg:w="148"/><text x="73.5960%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;uv_resolver::resolver::ResolverState&lt;uv_installer::site_packages::SitePackages&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1685" width="0.0119%" height="15" fill="rgb(234,170,33)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1695.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="75.0921%" y="1669" width="0.0119%" height="15" fill="rgb(206,29,35)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1679.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.01%)</title><rect x="75.0921%" y="1653" width="0.0119%" height="15" fill="rgb(227,138,25)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv_resolver::resolver::ResolverState&lt;uv_installer::site_packages::SitePackages&gt;&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1637" width="0.0119%" height="15" fill="rgb(249,131,35)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;alloc::sync::Arc&lt;dyn uv_resolver::resolver::reporter::Reporter&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1621" width="0.0119%" height="15" fill="rgb(239,6,40)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;dyn uv_resolver::resolver::reporter::Reporter&gt;&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1605" width="0.0119%" height="15" fill="rgb(246,136,47)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1615.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="75.0921%" y="1589" width="0.0119%" height="15" fill="rgb(253,58,26)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1599.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.01%)</title><rect x="75.0921%" y="1573" width="0.0119%" height="15" fill="rgb(237,141,10)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;dyn uv_resolver::resolver::reporter::Reporter&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1557" width="0.0119%" height="15" fill="rgb(234,156,12)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv::commands::reporters::ResolverReporter&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1541" width="0.0119%" height="15" fill="rgb(243,224,36)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;uv::commands::reporters::ProgressReporter&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1525" width="0.0119%" height="15" fill="rgb(205,229,51)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;indicatif::progress_bar::ProgressBar&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1509" width="0.0119%" height="15" fill="rgb(223,189,4)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;std::sync::poison::mutex::Mutex&lt;core::option::Option&lt;indicatif::progress_bar::Ticker&gt;&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1493" width="0.0119%" height="15" fill="rgb(249,167,54)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1503.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="75.0921%" y="1477" width="0.0119%" height="15" fill="rgb(218,34,28)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1487.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.01%)</title><rect x="75.0921%" y="1461" width="0.0119%" height="15" fill="rgb(232,109,42)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sync::poison::mutex::Mutex&lt;core::option::Option&lt;indicatif::progress_bar::Ticker&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1445" width="0.0119%" height="15" fill="rgb(248,214,46)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;core::option::Option&lt;indicatif::progress_bar::Ticker&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1429" width="0.0119%" height="15" fill="rgb(244,216,40)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;indicatif::progress_bar::Ticker&gt;&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1413" width="0.0119%" height="15" fill="rgb(231,226,31)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1423.50"></text></g><g><title>core::ptr::drop_in_place&lt;indicatif::progress_bar::Ticker&gt; (1 samples, 0.01%)</title><rect x="75.0921%" y="1397" width="0.0119%" height="15" fill="rgb(238,38,43)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1407.50"></text></g><g><title>&lt;indicatif::progress_bar::Ticker as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="75.0921%" y="1381" width="0.0119%" height="15" fill="rgb(208,88,43)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1391.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.01%)</title><rect x="75.0921%" y="1365" width="0.0119%" height="15" fill="rgb(205,136,37)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1375.50"></text></g><g><title>&lt;indicatif::progress_bar::Ticker as core::ops::drop::Drop&gt;::drop::_{{closure}} (1 samples, 0.01%)</title><rect x="75.0921%" y="1349" width="0.0119%" height="15" fill="rgb(237,34,14)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1359.50"></text></g><g><title>std::thread::JoinHandle&lt;T&gt;::join (1 samples, 0.01%)</title><rect x="75.0921%" y="1333" width="0.0119%" height="15" fill="rgb(236,193,44)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1343.50"></text></g><g><title>std::thread::JoinInner&lt;T&gt;::join (1 samples, 0.01%)</title><rect x="75.0921%" y="1317" width="0.0119%" height="15" fill="rgb(231,48,10)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1327.50"></text></g><g><title>std::sys::pal::unix::thread::Thread::join (1 samples, 0.01%)</title><rect x="75.0921%" y="1301" width="0.0119%" height="15" fill="rgb(213,141,34)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1311.50"></text></g><g><title>_pthread_join (1 samples, 0.01%)</title><rect x="75.0921%" y="1285" width="0.0119%" height="15" fill="rgb(249,130,34)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1295.50"></text></g><g><title>_pthread_deallocate (1 samples, 0.01%)</title><rect x="75.0921%" y="1269" width="0.0119%" height="15" fill="rgb(219,42,41)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1279.50"></text></g><g><title>_kernelrpc_mach_vm_deallocate_trap (1 samples, 0.01%)</title><rect x="75.0921%" y="1253" width="0.0119%" height="15" fill="rgb(224,100,54)" fg:x="6322" fg:w="1"/><text x="75.3421%" y="1263.50"></text></g><g><title>uv::commands::pip::operations::resolve::_{{closure}} (150 samples, 1.78%)</title><rect x="73.3341%" y="1717" width="1.7817%" height="15" fill="rgb(229,200,27)" fg:x="6174" fg:w="150"/><text x="73.5841%" y="1727.50">u..</text></g><g><title>uv_resolver::resolver::Resolver&lt;uv_resolver::resolver::provider::DefaultResolverProvider&lt;Context&gt;,InstalledPackages&gt;::new (1 samples, 0.01%)</title><rect x="75.1039%" y="1701" width="0.0119%" height="15" fill="rgb(217,118,10)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1711.50"></text></g><g><title>uv_resolver::yanks::AllowedYanks::from_manifest (1 samples, 0.01%)</title><rect x="75.1039%" y="1685" width="0.0119%" height="15" fill="rgb(206,22,3)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1695.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="75.1039%" y="1669" width="0.0119%" height="15" fill="rgb(232,163,46)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1679.50"></text></g><g><title>core::iter::adapters::chain::and_then_or_clear (1 samples, 0.01%)</title><rect x="75.1039%" y="1653" width="0.0119%" height="15" fill="rgb(206,95,13)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1663.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="75.1039%" y="1637" width="0.0119%" height="15" fill="rgb(253,154,18)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1647.50"></text></g><g><title>either::iterator::_&lt;impl core::iter::traits::iterator::Iterator for either::Either&lt;L,R&gt;&gt;::next (1 samples, 0.01%)</title><rect x="75.1039%" y="1621" width="0.0119%" height="15" fill="rgb(219,32,23)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1631.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="75.1039%" y="1605" width="0.0119%" height="15" fill="rgb(230,191,45)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1615.50"></text></g><g><title>core::option::Option&lt;T&gt;::or_else (1 samples, 0.01%)</title><rect x="75.1039%" y="1589" width="0.0119%" height="15" fill="rgb(229,64,36)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1599.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next::_{{closure}} (1 samples, 0.01%)</title><rect x="75.1039%" y="1573" width="0.0119%" height="15" fill="rgb(205,129,25)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1583.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="75.1039%" y="1557" width="0.0119%" height="15" fill="rgb(254,112,7)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1567.50"></text></g><g><title>&lt;core::iter::adapters::filter::Filter&lt;I,P&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="75.1039%" y="1541" width="0.0119%" height="15" fill="rgb(226,53,48)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1551.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find (1 samples, 0.01%)</title><rect x="75.1039%" y="1525" width="0.0119%" height="15" fill="rgb(214,153,38)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1535.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlatMap&lt;I,U,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1 samples, 0.01%)</title><rect x="75.1039%" y="1509" width="0.0119%" height="15" fill="rgb(243,101,7)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1519.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1 samples, 0.01%)</title><rect x="75.1039%" y="1493" width="0.0119%" height="15" fill="rgb(240,140,22)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1503.50"></text></g><g><title>core::iter::adapters::flatten::FlattenCompat&lt;I,U&gt;::iter_try_fold (1 samples, 0.01%)</title><rect x="75.1039%" y="1477" width="0.0119%" height="15" fill="rgb(235,114,2)" fg:x="6323" fg:w="1"/><text x="75.3539%" y="1487.50"></text></g><g><title>uv_client::registry_client::RegistryClientBuilder::build (1 samples, 0.01%)</title><rect x="75.1158%" y="1717" width="0.0119%" height="15" fill="rgb(242,59,12)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1727.50"></text></g><g><title>uv_client::base_client::BaseClientBuilder::build (1 samples, 0.01%)</title><rect x="75.1158%" y="1701" width="0.0119%" height="15" fill="rgb(252,134,9)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1711.50"></text></g><g><title>uv_client::base_client::BaseClientBuilder::create_client (1 samples, 0.01%)</title><rect x="75.1158%" y="1685" width="0.0119%" height="15" fill="rgb(236,4,44)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1695.50"></text></g><g><title>reqwest::async_impl::client::ClientBuilder::build (1 samples, 0.01%)</title><rect x="75.1158%" y="1669" width="0.0119%" height="15" fill="rgb(254,172,41)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1679.50"></text></g><g><title>&lt;rustls::webpki::anchors::RootCertStore as core::iter::traits::collect::Extend&lt;rustls_pki_types::TrustAnchor&gt;&gt;::extend (1 samples, 0.01%)</title><rect x="75.1158%" y="1653" width="0.0119%" height="15" fill="rgb(244,63,20)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1663.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::iter::traits::collect::Extend&lt;T&gt;&gt;::extend (1 samples, 0.01%)</title><rect x="75.1158%" y="1637" width="0.0119%" height="15" fill="rgb(250,73,31)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1647.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (1 samples, 0.01%)</title><rect x="75.1158%" y="1621" width="0.0119%" height="15" fill="rgb(241,38,36)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1631.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (1 samples, 0.01%)</title><rect x="75.1158%" y="1605" width="0.0119%" height="15" fill="rgb(245,211,2)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1615.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.01%)</title><rect x="75.1158%" y="1589" width="0.0119%" height="15" fill="rgb(206,120,28)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1599.50"></text></g><g><title>&lt;core::iter::adapters::cloned::Cloned&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.01%)</title><rect x="75.1158%" y="1573" width="0.0119%" height="15" fill="rgb(211,59,34)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1583.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.01%)</title><rect x="75.1158%" y="1557" width="0.0119%" height="15" fill="rgb(233,168,5)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1567.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (1 samples, 0.01%)</title><rect x="75.1158%" y="1541" width="0.0119%" height="15" fill="rgb(234,33,13)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1551.50"></text></g><g><title>core::ops::function::FnMut::call_mut (1 samples, 0.01%)</title><rect x="75.1158%" y="1525" width="0.0119%" height="15" fill="rgb(231,150,26)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1535.50"></text></g><g><title>&lt;rustls_pki_types::TrustAnchor as core::clone::Clone&gt;::clone (1 samples, 0.01%)</title><rect x="75.1158%" y="1509" width="0.0119%" height="15" fill="rgb(217,191,4)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1519.50"></text></g><g><title>&lt;rustls_pki_types::Der as core::clone::Clone&gt;::clone (1 samples, 0.01%)</title><rect x="75.1158%" y="1493" width="0.0119%" height="15" fill="rgb(246,198,38)" fg:x="6324" fg:w="1"/><text x="75.3658%" y="1503.50"></text></g><g><title>uv_distribution_types::index_url::IndexLocations::cache_index_credentials (1 samples, 0.01%)</title><rect x="75.1277%" y="1717" width="0.0119%" height="15" fill="rgb(245,64,37)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1727.50"></text></g><g><title>uv_distribution_types::index_url::IndexLocations::allowed_indexes (1 samples, 0.01%)</title><rect x="75.1277%" y="1701" width="0.0119%" height="15" fill="rgb(250,30,36)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1711.50"></text></g><g><title>&lt;std::sync::lazy_lock::LazyLock&lt;T,F&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="75.1277%" y="1685" width="0.0119%" height="15" fill="rgb(217,86,53)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1695.50"></text></g><g><title>std::sync::poison::once::Once::call_once (1 samples, 0.01%)</title><rect x="75.1277%" y="1669" width="0.0119%" height="15" fill="rgb(228,157,16)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1679.50"></text></g><g><title>std::sys::sync::once::queue::Once::call (1 samples, 0.01%)</title><rect x="75.1277%" y="1653" width="0.0119%" height="15" fill="rgb(217,59,31)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1663.50"></text></g><g><title>std::sync::poison::once::Once::call_once::_{{closure}} (1 samples, 0.01%)</title><rect x="75.1277%" y="1637" width="0.0119%" height="15" fill="rgb(237,138,41)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1647.50"></text></g><g><title>std::sync::lazy_lock::LazyLock&lt;T,F&gt;::force::_{{closure}} (1 samples, 0.01%)</title><rect x="75.1277%" y="1621" width="0.0119%" height="15" fill="rgb(227,91,49)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1631.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="75.1277%" y="1605" width="0.0119%" height="15" fill="rgb(247,21,44)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1615.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="75.1277%" y="1589" width="0.0119%" height="15" fill="rgb(219,210,51)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1599.50"></text></g><g><title>uv_distribution_types::index_url::DEFAULT_INDEX::_{{closure}} (1 samples, 0.01%)</title><rect x="75.1277%" y="1573" width="0.0119%" height="15" fill="rgb(209,140,6)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1583.50"></text></g><g><title>&lt;std::sync::lazy_lock::LazyLock&lt;T,F&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="75.1277%" y="1557" width="0.0119%" height="15" fill="rgb(221,188,24)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1567.50"></text></g><g><title>std::sync::poison::once::Once::call_once (1 samples, 0.01%)</title><rect x="75.1277%" y="1541" width="0.0119%" height="15" fill="rgb(232,154,20)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1551.50"></text></g><g><title>std::sys::sync::once::queue::Once::call (1 samples, 0.01%)</title><rect x="75.1277%" y="1525" width="0.0119%" height="15" fill="rgb(244,137,50)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1535.50"></text></g><g><title>std::sync::poison::once::Once::call_once::_{{closure}} (1 samples, 0.01%)</title><rect x="75.1277%" y="1509" width="0.0119%" height="15" fill="rgb(225,185,43)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1519.50"></text></g><g><title>std::sync::lazy_lock::LazyLock&lt;T,F&gt;::force::_{{closure}} (1 samples, 0.01%)</title><rect x="75.1277%" y="1493" width="0.0119%" height="15" fill="rgb(213,205,38)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1503.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="75.1277%" y="1477" width="0.0119%" height="15" fill="rgb(236,73,12)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1487.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="75.1277%" y="1461" width="0.0119%" height="15" fill="rgb(235,219,13)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1471.50"></text></g><g><title>uv_distribution_types::index_url::PYPI_URL::_{{closure}} (1 samples, 0.01%)</title><rect x="75.1277%" y="1445" width="0.0119%" height="15" fill="rgb(218,59,36)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1455.50"></text></g><g><title>uv_redacted::DisplaySafeUrl::parse (1 samples, 0.01%)</title><rect x="75.1277%" y="1429" width="0.0119%" height="15" fill="rgb(205,110,39)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1439.50"></text></g><g><title>url::Url::parse (1 samples, 0.01%)</title><rect x="75.1277%" y="1413" width="0.0119%" height="15" fill="rgb(218,206,42)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1423.50"></text></g><g><title>url::ParseOptions::parse (1 samples, 0.01%)</title><rect x="75.1277%" y="1397" width="0.0119%" height="15" fill="rgb(248,125,24)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1407.50"></text></g><g><title>url::parser::Parser::parse_url (1 samples, 0.01%)</title><rect x="75.1277%" y="1381" width="0.0119%" height="15" fill="rgb(242,28,27)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1391.50"></text></g><g><title>url::parser::Parser::parse_with_scheme (1 samples, 0.01%)</title><rect x="75.1277%" y="1365" width="0.0119%" height="15" fill="rgb(216,228,15)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1375.50"></text></g><g><title>url::parser::Parser::after_double_slash (1 samples, 0.01%)</title><rect x="75.1277%" y="1349" width="0.0119%" height="15" fill="rgb(235,116,46)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1359.50"></text></g><g><title>url::parser::Parser::parse_host_and_port (1 samples, 0.01%)</title><rect x="75.1277%" y="1333" width="0.0119%" height="15" fill="rgb(224,18,32)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1343.50"></text></g><g><title>url::parser::Parser::parse_host (1 samples, 0.01%)</title><rect x="75.1277%" y="1317" width="0.0119%" height="15" fill="rgb(252,5,12)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1327.50"></text></g><g><title>url::host::Host::parse (1 samples, 0.01%)</title><rect x="75.1277%" y="1301" width="0.0119%" height="15" fill="rgb(251,36,5)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1311.50"></text></g><g><title>url::host::Host::domain_to_ascii (1 samples, 0.01%)</title><rect x="75.1277%" y="1285" width="0.0119%" height="15" fill="rgb(217,53,14)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1295.50"></text></g><g><title>idna::domain_to_ascii_cow (1 samples, 0.01%)</title><rect x="75.1277%" y="1269" width="0.0119%" height="15" fill="rgb(215,86,45)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1279.50"></text></g><g><title>idna::uts46::Uts46::new (1 samples, 0.01%)</title><rect x="75.1277%" y="1253" width="0.0119%" height="15" fill="rgb(242,169,11)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1263.50"></text></g><g><title>icu_normalizer::uts46::Uts46Mapper::new (1 samples, 0.01%)</title><rect x="75.1277%" y="1237" width="0.0119%" height="15" fill="rgb(211,213,45)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1247.50"></text></g><g><title>icu_normalizer::ComposingNormalizer::new_uts46 (1 samples, 0.01%)</title><rect x="75.1277%" y="1221" width="0.0119%" height="15" fill="rgb(205,88,11)" fg:x="6325" fg:w="1"/><text x="75.3777%" y="1231.50"></text></g><g><title>uv_installer::site_packages::SitePackages::from_environment (1 samples, 0.01%)</title><rect x="75.1396%" y="1717" width="0.0119%" height="15" fill="rgb(252,69,26)" fg:x="6326" fg:w="1"/><text x="75.3896%" y="1727.50"></text></g><g><title>uv_installer::site_packages::SitePackages::from_interpreter (1 samples, 0.01%)</title><rect x="75.1396%" y="1701" width="0.0119%" height="15" fill="rgb(246,123,37)" fg:x="6326" fg:w="1"/><text x="75.3896%" y="1711.50"></text></g><g><title>fs_err::dir::read_dir (1 samples, 0.01%)</title><rect x="75.1396%" y="1685" width="0.0119%" height="15" fill="rgb(212,205,5)" fg:x="6326" fg:w="1"/><text x="75.3896%" y="1695.50"></text></g><g><title>std::fs::read_dir (1 samples, 0.01%)</title><rect x="75.1396%" y="1669" width="0.0119%" height="15" fill="rgb(253,148,0)" fg:x="6326" fg:w="1"/><text x="75.3896%" y="1679.50"></text></g><g><title>std::sys::fs::read_dir (1 samples, 0.01%)</title><rect x="75.1396%" y="1653" width="0.0119%" height="15" fill="rgb(239,22,4)" fg:x="6326" fg:w="1"/><text x="75.3896%" y="1663.50"></text></g><g><title>__opendir2 (1 samples, 0.01%)</title><rect x="75.1396%" y="1637" width="0.0119%" height="15" fill="rgb(226,26,53)" fg:x="6326" fg:w="1"/><text x="75.3896%" y="1647.50"></text></g><g><title>__open_nocancel (1 samples, 0.01%)</title><rect x="75.1396%" y="1621" width="0.0119%" height="15" fill="rgb(225,229,45)" fg:x="6326" fg:w="1"/><text x="75.3896%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;tempfile::dir::TempDir&gt; (1 samples, 0.01%)</title><rect x="75.1514%" y="1461" width="0.0119%" height="15" fill="rgb(220,60,37)" fg:x="6327" fg:w="1"/><text x="75.4014%" y="1471.50"></text></g><g><title>&lt;tempfile::dir::TempDir as core::ops::drop::Drop&gt;::drop (1 samples, 0.01%)</title><rect x="75.1514%" y="1445" width="0.0119%" height="15" fill="rgb(217,180,35)" fg:x="6327" fg:w="1"/><text x="75.4014%" y="1455.50"></text></g><g><title>std::fs::remove_dir_all (1 samples, 0.01%)</title><rect x="75.1514%" y="1429" width="0.0119%" height="15" fill="rgb(229,7,53)" fg:x="6327" fg:w="1"/><text x="75.4014%" y="1439.50"></text></g><g><title>std::sys::fs::remove_dir_all (1 samples, 0.01%)</title><rect x="75.1514%" y="1413" width="0.0119%" height="15" fill="rgb(254,137,3)" fg:x="6327" fg:w="1"/><text x="75.4014%" y="1423.50"></text></g><g><title>std::sys::fs::unix::remove_dir_impl::remove_dir_all_recursive (1 samples, 0.01%)</title><rect x="75.1514%" y="1397" width="0.0119%" height="15" fill="rgb(215,140,41)" fg:x="6327" fg:w="1"/><text x="75.4014%" y="1407.50"></text></g><g><title>__unlinkat (1 samples, 0.01%)</title><rect x="75.1514%" y="1381" width="0.0119%" height="15" fill="rgb(250,80,15)" fg:x="6327" fg:w="1"/><text x="75.4014%" y="1391.50"></text></g><g><title>uv::commands::pip::install::pip_install::_{{closure}} (6,275 samples, 74.53%)</title><rect x="0.6414%" y="1733" width="74.5338%" height="15" fill="rgb(252,191,6)" fg:x="54" fg:w="6275"/><text x="0.8914%" y="1743.50">uv::commands::pip::install::pip_install::_{{closure}}</text></g><g><title>uv_python::environment::PythonEnvironment::find (2 samples, 0.02%)</title><rect x="75.1514%" y="1717" width="0.0238%" height="15" fill="rgb(246,217,18)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1727.50"></text></g><g><title>uv_python::discovery::find_python_installation (2 samples, 0.02%)</title><rect x="75.1514%" y="1701" width="0.0238%" height="15" fill="rgb(223,93,7)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1711.50"></text></g><g><title>alloc::boxed::iter::_&lt;impl core::iter::traits::iterator::Iterator for alloc::boxed::Box&lt;I,A&gt;&gt;::next (2 samples, 0.02%)</title><rect x="75.1514%" y="1685" width="0.0238%" height="15" fill="rgb(225,55,52)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1695.50"></text></g><g><title>&lt;itertools::adaptors::map::MapSpecialCase&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.02%)</title><rect x="75.1514%" y="1669" width="0.0238%" height="15" fill="rgb(240,31,24)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1679.50"></text></g><g><title>&lt;itertools::adaptors::FilterOk&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.02%)</title><rect x="75.1514%" y="1653" width="0.0238%" height="15" fill="rgb(205,56,52)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1663.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find (2 samples, 0.02%)</title><rect x="75.1514%" y="1637" width="0.0238%" height="15" fill="rgb(246,146,12)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1647.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (2 samples, 0.02%)</title><rect x="75.1514%" y="1621" width="0.0238%" height="15" fill="rgb(239,84,36)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1631.50"></text></g><g><title>&lt;itertools::adaptors::FilterOk&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.02%)</title><rect x="75.1514%" y="1605" width="0.0238%" height="15" fill="rgb(207,41,40)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1615.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find (2 samples, 0.02%)</title><rect x="75.1514%" y="1589" width="0.0238%" height="15" fill="rgb(241,179,25)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1599.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (2 samples, 0.02%)</title><rect x="75.1514%" y="1573" width="0.0238%" height="15" fill="rgb(210,0,34)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1583.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (2 samples, 0.02%)</title><rect x="75.1514%" y="1557" width="0.0238%" height="15" fill="rgb(225,217,29)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1567.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (2 samples, 0.02%)</title><rect x="75.1514%" y="1541" width="0.0238%" height="15" fill="rgb(216,191,38)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1551.50"></text></g><g><title>uv_python::discovery::python_interpreters_from_executables::_{{closure}} (2 samples, 0.02%)</title><rect x="75.1514%" y="1525" width="0.0238%" height="15" fill="rgb(232,140,52)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1535.50"></text></g><g><title>uv_python::interpreter::Interpreter::query (2 samples, 0.02%)</title><rect x="75.1514%" y="1509" width="0.0238%" height="15" fill="rgb(223,158,51)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1519.50"></text></g><g><title>uv_python::interpreter::InterpreterInfo::query_cached (2 samples, 0.02%)</title><rect x="75.1514%" y="1493" width="0.0238%" height="15" fill="rgb(235,29,51)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1503.50"></text></g><g><title>uv_python::interpreter::InterpreterInfo::query (2 samples, 0.02%)</title><rect x="75.1514%" y="1477" width="0.0238%" height="15" fill="rgb(215,181,18)" fg:x="6327" fg:w="2"/><text x="75.4014%" y="1487.50"></text></g><g><title>uv_python::interpreter::InterpreterInfo::setup_python_query_files (1 samples, 0.01%)</title><rect x="75.1633%" y="1461" width="0.0119%" height="15" fill="rgb(227,125,34)" fg:x="6328" fg:w="1"/><text x="75.4133%" y="1471.50"></text></g><g><title>fs_err::write (1 samples, 0.01%)</title><rect x="75.1633%" y="1445" width="0.0119%" height="15" fill="rgb(230,197,49)" fg:x="6328" fg:w="1"/><text x="75.4133%" y="1455.50"></text></g><g><title>std::io::Write::write_all (1 samples, 0.01%)</title><rect x="75.1633%" y="1429" width="0.0119%" height="15" fill="rgb(239,141,16)" fg:x="6328" fg:w="1"/><text x="75.4133%" y="1439.50"></text></g><g><title>write (1 samples, 0.01%)</title><rect x="75.1633%" y="1413" width="0.0119%" height="15" fill="rgb(225,105,43)" fg:x="6328" fg:w="1"/><text x="75.4133%" y="1423.50"></text></g><g><title>uv::logging::setup_logging (1 samples, 0.01%)</title><rect x="75.1752%" y="1733" width="0.0119%" height="15" fill="rgb(214,131,14)" fg:x="6329" fg:w="1"/><text x="75.4252%" y="1743.50"></text></g><g><title>tracing_subscriber::filter::env::builder::Builder::from_env (1 samples, 0.01%)</title><rect x="75.1752%" y="1717" width="0.0119%" height="15" fill="rgb(229,177,11)" fg:x="6329" fg:w="1"/><text x="75.4252%" y="1727.50"></text></g><g><title>tracing_subscriber::filter::env::builder::Builder::parse (1 samples, 0.01%)</title><rect x="75.1752%" y="1701" width="0.0119%" height="15" fill="rgb(231,180,14)" fg:x="6329" fg:w="1"/><text x="75.4252%" y="1711.50"></text></g><g><title>tracing_subscriber::filter::env::builder::Builder::from_directives (1 samples, 0.01%)</title><rect x="75.1752%" y="1685" width="0.0119%" height="15" fill="rgb(232,88,2)" fg:x="6329" fg:w="1"/><text x="75.4252%" y="1695.50"></text></g><g><title>tracing_subscriber::filter::directive::DirectiveSet&lt;T&gt;::is_empty (1 samples, 0.01%)</title><rect x="75.1752%" y="1669" width="0.0119%" height="15" fill="rgb(205,220,8)" fg:x="6329" fg:w="1"/><text x="75.4252%" y="1679.50"></text></g><g><title>smallvec::SmallVec&lt;A&gt;::is_empty (1 samples, 0.01%)</title><rect x="75.1752%" y="1653" width="0.0119%" height="15" fill="rgb(225,23,53)" fg:x="6329" fg:w="1"/><text x="75.4252%" y="1663.50"></text></g><g><title>smallvec::SmallVec&lt;A&gt;::len (1 samples, 0.01%)</title><rect x="75.1752%" y="1637" width="0.0119%" height="15" fill="rgb(213,62,29)" fg:x="6329" fg:w="1"/><text x="75.4252%" y="1647.50"></text></g><g><title>uv::settings::PipInstallSettings::resolve (1 samples, 0.01%)</title><rect x="75.1871%" y="1733" width="0.0119%" height="15" fill="rgb(227,75,7)" fg:x="6330" fg:w="1"/><text x="75.4371%" y="1743.50"></text></g><g><title>core::iter::traits::iterator::Iterator::map (1 samples, 0.01%)</title><rect x="75.1871%" y="1717" width="0.0119%" height="15" fill="rgb(207,105,14)" fg:x="6330" fg:w="1"/><text x="75.4371%" y="1727.50"></text></g><g><title>&lt;toml_edit::document::ImDocument&lt;alloc::string::String&gt; as core::str::traits::FromStr&gt;::from_str (1 samples, 0.01%)</title><rect x="75.1990%" y="1701" width="0.0119%" height="15" fill="rgb(245,62,29)" fg:x="6331" fg:w="1"/><text x="75.4490%" y="1711.50"></text></g><g><title>toml_edit::document::ImDocument&lt;S&gt;::parse (1 samples, 0.01%)</title><rect x="75.1990%" y="1685" width="0.0119%" height="15" fill="rgb(236,202,4)" fg:x="6331" fg:w="1"/><text x="75.4490%" y="1695.50"></text></g><g><title>toml_edit::parser::parse_document (1 samples, 0.01%)</title><rect x="75.1990%" y="1669" width="0.0119%" height="15" fill="rgb(250,67,1)" fg:x="6331" fg:w="1"/><text x="75.4490%" y="1679.50"></text></g><g><title>toml_edit::parser::state::ParseState::new (1 samples, 0.01%)</title><rect x="75.1990%" y="1653" width="0.0119%" height="15" fill="rgb(253,115,44)" fg:x="6331" fg:w="1"/><text x="75.4490%" y="1663.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (6,303 samples, 74.87%)</title><rect x="0.3563%" y="1797" width="74.8664%" height="15" fill="rgb(251,139,18)" fg:x="30" fg:w="6303"/><text x="0.6063%" y="1807.50">&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (6,303 samples, 74.87%)</title><rect x="0.3563%" y="1781" width="74.8664%" height="15" fill="rgb(218,22,32)" fg:x="30" fg:w="6303"/><text x="0.6063%" y="1791.50">&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll</text></g><g><title>uv::run::_{{closure}} (6,303 samples, 74.87%)</title><rect x="0.3563%" y="1765" width="74.8664%" height="15" fill="rgb(243,53,5)" fg:x="30" fg:w="6303"/><text x="0.6063%" y="1775.50">uv::run::_{{closure}}</text></g><g><title>uv::run::_{{closure}}::_{{closure}} (6,301 samples, 74.84%)</title><rect x="0.3801%" y="1749" width="74.8426%" height="15" fill="rgb(227,56,16)" fg:x="32" fg:w="6301"/><text x="0.6301%" y="1759.50">uv::run::_{{closure}}::_{{closure}}</text></g><g><title>uv_workspace::workspace::Workspace::discover::_{{closure}} (2 samples, 0.02%)</title><rect x="75.1990%" y="1733" width="0.0238%" height="15" fill="rgb(245,53,0)" fg:x="6331" fg:w="2"/><text x="75.4490%" y="1743.50"></text></g><g><title>uv_workspace::pyproject::PyProjectToml::from_string (2 samples, 0.02%)</title><rect x="75.1990%" y="1717" width="0.0238%" height="15" fill="rgb(216,170,35)" fg:x="6331" fg:w="2"/><text x="75.4490%" y="1727.50"></text></g><g><title>uv_workspace::pyproject::_::_&lt;impl serde::de::Deserialize for uv_workspace::pyproject::PyProjectToml&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1701" width="0.0119%" height="15" fill="rgb(211,200,8)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1711.50"></text></g><g><title>&lt;toml_edit::de::Deserializer&lt;S&gt; as serde::de::Deserializer&gt;::deserialize_struct (1 samples, 0.01%)</title><rect x="75.2108%" y="1685" width="0.0119%" height="15" fill="rgb(228,204,44)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1695.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_struct (1 samples, 0.01%)</title><rect x="75.2108%" y="1669" width="0.0119%" height="15" fill="rgb(214,121,17)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1679.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1653" width="0.0119%" height="15" fill="rgb(233,64,38)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1663.50"></text></g><g><title>&lt;toml_edit::de::table::TableDeserializer as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1637" width="0.0119%" height="15" fill="rgb(253,54,19)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1647.50"></text></g><g><title>&lt;uv_workspace::pyproject::_::&lt;impl serde::de::Deserialize for uv_workspace::pyproject::PyProjectToml&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_map (1 samples, 0.01%)</title><rect x="75.2108%" y="1621" width="0.0119%" height="15" fill="rgb(253,94,18)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1631.50"></text></g><g><title>serde::de::MapAccess::next_value (1 samples, 0.01%)</title><rect x="75.2108%" y="1605" width="0.0119%" height="15" fill="rgb(227,57,52)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1615.50"></text></g><g><title>&lt;toml_edit::de::table::TableMapAccess as serde::de::MapAccess&gt;::next_value_seed (1 samples, 0.01%)</title><rect x="75.2108%" y="1589" width="0.0119%" height="15" fill="rgb(230,228,50)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1599.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1573" width="0.0119%" height="15" fill="rgb(217,205,27)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1583.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for core::option::Option&lt;T&gt;&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1557" width="0.0119%" height="15" fill="rgb(252,71,50)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1567.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_option (1 samples, 0.01%)</title><rect x="75.2108%" y="1541" width="0.0119%" height="15" fill="rgb(209,86,4)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1551.50"></text></g><g><title>&lt;serde::de::impls::OptionVisitor&lt;T&gt; as serde::de::Visitor&gt;::visit_some (1 samples, 0.01%)</title><rect x="75.2108%" y="1525" width="0.0119%" height="15" fill="rgb(229,94,0)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1535.50"></text></g><g><title>uv_workspace::pyproject::_::_&lt;impl serde::de::Deserialize for uv_workspace::pyproject::Tool&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1509" width="0.0119%" height="15" fill="rgb(252,223,21)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1519.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_struct (1 samples, 0.01%)</title><rect x="75.2108%" y="1493" width="0.0119%" height="15" fill="rgb(230,210,4)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1503.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1477" width="0.0119%" height="15" fill="rgb(240,149,38)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1487.50"></text></g><g><title>&lt;toml_edit::de::table::TableDeserializer as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1461" width="0.0119%" height="15" fill="rgb(254,105,20)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1471.50"></text></g><g><title>&lt;uv_workspace::pyproject::_::&lt;impl serde::de::Deserialize for uv_workspace::pyproject::Tool&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_map (1 samples, 0.01%)</title><rect x="75.2108%" y="1445" width="0.0119%" height="15" fill="rgb(253,87,46)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1455.50"></text></g><g><title>serde::de::MapAccess::next_value (1 samples, 0.01%)</title><rect x="75.2108%" y="1429" width="0.0119%" height="15" fill="rgb(253,116,33)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1439.50"></text></g><g><title>&lt;toml_edit::de::table::TableMapAccess as serde::de::MapAccess&gt;::next_value_seed (1 samples, 0.01%)</title><rect x="75.2108%" y="1413" width="0.0119%" height="15" fill="rgb(229,198,5)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1423.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1397" width="0.0119%" height="15" fill="rgb(242,38,37)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1407.50"></text></g><g><title>&lt;serde::de::ignored_any::IgnoredAny as serde::de::Deserialize&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1381" width="0.0119%" height="15" fill="rgb(242,69,53)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1391.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_ignored_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1365" width="0.0119%" height="15" fill="rgb(249,80,16)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1375.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1349" width="0.0119%" height="15" fill="rgb(206,128,11)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1359.50"></text></g><g><title>&lt;toml_edit::de::table::TableDeserializer as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1333" width="0.0119%" height="15" fill="rgb(212,35,20)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1343.50"></text></g><g><title>&lt;serde::de::ignored_any::IgnoredAny as serde::de::Visitor&gt;::visit_map (1 samples, 0.01%)</title><rect x="75.2108%" y="1317" width="0.0119%" height="15" fill="rgb(236,79,13)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1327.50"></text></g><g><title>serde::de::MapAccess::next_entry (1 samples, 0.01%)</title><rect x="75.2108%" y="1301" width="0.0119%" height="15" fill="rgb(233,123,3)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1311.50"></text></g><g><title>serde::de::MapAccess::next_entry_seed (1 samples, 0.01%)</title><rect x="75.2108%" y="1285" width="0.0119%" height="15" fill="rgb(214,93,52)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1295.50"></text></g><g><title>&lt;toml_edit::de::table::TableMapAccess as serde::de::MapAccess&gt;::next_value_seed (1 samples, 0.01%)</title><rect x="75.2108%" y="1269" width="0.0119%" height="15" fill="rgb(251,37,40)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1279.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1253" width="0.0119%" height="15" fill="rgb(227,80,54)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1263.50"></text></g><g><title>&lt;serde::de::ignored_any::IgnoredAny as serde::de::Deserialize&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1237" width="0.0119%" height="15" fill="rgb(254,48,11)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1247.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_ignored_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1221" width="0.0119%" height="15" fill="rgb(235,193,26)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1231.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1205" width="0.0119%" height="15" fill="rgb(229,99,21)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1215.50"></text></g><g><title>&lt;toml_edit::de::array::ArrayDeserializer as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1189" width="0.0119%" height="15" fill="rgb(211,140,41)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1199.50"></text></g><g><title>&lt;serde::de::ignored_any::IgnoredAny as serde::de::Visitor&gt;::visit_seq (1 samples, 0.01%)</title><rect x="75.2108%" y="1173" width="0.0119%" height="15" fill="rgb(240,227,30)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1183.50"></text></g><g><title>serde::de::SeqAccess::next_element (1 samples, 0.01%)</title><rect x="75.2108%" y="1157" width="0.0119%" height="15" fill="rgb(215,224,45)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1167.50"></text></g><g><title>&lt;toml_edit::de::array::ArraySeqAccess as serde::de::SeqAccess&gt;::next_element_seed (1 samples, 0.01%)</title><rect x="75.2108%" y="1141" width="0.0119%" height="15" fill="rgb(206,123,31)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1151.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1125" width="0.0119%" height="15" fill="rgb(210,138,16)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1135.50"></text></g><g><title>&lt;serde::de::ignored_any::IgnoredAny as serde::de::Deserialize&gt;::deserialize (1 samples, 0.01%)</title><rect x="75.2108%" y="1109" width="0.0119%" height="15" fill="rgb(228,57,28)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1119.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_ignored_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1093" width="0.0119%" height="15" fill="rgb(242,170,10)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1103.50"></text></g><g><title>&lt;toml_edit::de::value::ValueDeserializer as serde::de::Deserializer&gt;::deserialize_any (1 samples, 0.01%)</title><rect x="75.2108%" y="1077" width="0.0119%" height="15" fill="rgb(228,214,39)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1087.50"></text></g><g><title>toml_edit::de::table::_&lt;impl toml_edit::inline_table::InlineTable&gt;::into_deserializer (1 samples, 0.01%)</title><rect x="75.2108%" y="1061" width="0.0119%" height="15" fill="rgb(218,179,33)" fg:x="6332" fg:w="1"/><text x="75.4608%" y="1071.50"></text></g><g><title>tokio::runtime::scheduler::current_thread::Context::enter (6,307 samples, 74.91%)</title><rect x="0.3207%" y="1845" width="74.9139%" height="15" fill="rgb(235,193,39)" fg:x="27" fg:w="6307"/><text x="0.5707%" y="1855.50">tokio::runtime::scheduler::current_thread::Context::enter</text></g><g><title>tokio::task::coop::with_budget (6,305 samples, 74.89%)</title><rect x="0.3445%" y="1829" width="74.8901%" height="15" fill="rgb(219,221,36)" fg:x="29" fg:w="6305"/><text x="0.5945%" y="1839.50">tokio::task::coop::with_budget</text></g><g><title>tokio::runtime::scheduler::current_thread::CoreGuard::block_on::_{{closure}}::_{{closure}}::_{{closure}} (6,304 samples, 74.88%)</title><rect x="0.3563%" y="1813" width="74.8783%" height="15" fill="rgb(248,218,19)" fg:x="30" fg:w="6304"/><text x="0.6063%" y="1823.50">tokio::runtime::scheduler::current_thread::CoreGuard::block_on::_{{closure}}::_{{closure}}::_{{closure}}</text></g><g><title>core::pin::Pin&lt;Ptr&gt;::as_mut (1 samples, 0.01%)</title><rect x="75.2227%" y="1797" width="0.0119%" height="15" fill="rgb(205,50,9)" fg:x="6333" fg:w="1"/><text x="75.4727%" y="1807.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="75.2465%" y="1829" width="0.0119%" height="15" fill="rgb(238,81,28)" fg:x="6335" fg:w="1"/><text x="75.4965%" y="1839.50"></text></g><g><title>core::option::Option&lt;T&gt;::take (1 samples, 0.01%)</title><rect x="75.2583%" y="1829" width="0.0119%" height="15" fill="rgb(235,110,19)" fg:x="6336" fg:w="1"/><text x="75.5083%" y="1839.50"></text></g><g><title>tokio::runtime::metrics::batch::MetricsBatch::unparked (1 samples, 0.01%)</title><rect x="75.2702%" y="1829" width="0.0119%" height="15" fill="rgb(214,7,14)" fg:x="6337" fg:w="1"/><text x="75.5202%" y="1839.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::borrow_mut (2 samples, 0.02%)</title><rect x="75.2940%" y="1813" width="0.0238%" height="15" fill="rgb(211,77,3)" fg:x="6339" fg:w="2"/><text x="75.5440%" y="1823.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::try_borrow_mut (2 samples, 0.02%)</title><rect x="75.2940%" y="1797" width="0.0238%" height="15" fill="rgb(229,5,9)" fg:x="6339" fg:w="2"/><text x="75.5440%" y="1807.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;alloc::boxed::Box&lt;tokio::runtime::scheduler::current_thread::Core&gt;&gt;&gt; (1 samples, 0.01%)</title><rect x="75.3177%" y="1813" width="0.0119%" height="15" fill="rgb(225,90,11)" fg:x="6341" fg:w="1"/><text x="75.5677%" y="1823.50"></text></g><g><title>core::cmp::PartialOrd::gt (1 samples, 0.01%)</title><rect x="75.3652%" y="1733" width="0.0119%" height="15" fill="rgb(242,56,8)" fg:x="6345" fg:w="1"/><text x="75.6152%" y="1743.50"></text></g><g><title>&lt;core::time::Duration as core::cmp::PartialOrd&gt;::partial_cmp (1 samples, 0.01%)</title><rect x="75.3652%" y="1717" width="0.0119%" height="15" fill="rgb(249,212,39)" fg:x="6345" fg:w="1"/><text x="75.6152%" y="1727.50"></text></g><g><title>std::sync::poison::Flag::guard (1 samples, 0.01%)</title><rect x="75.3771%" y="1701" width="0.0119%" height="15" fill="rgb(236,90,9)" fg:x="6346" fg:w="1"/><text x="75.6271%" y="1711.50"></text></g><g><title>std::sync::poison::map_result (2 samples, 0.02%)</title><rect x="75.3890%" y="1701" width="0.0238%" height="15" fill="rgb(206,88,35)" fg:x="6347" fg:w="2"/><text x="75.6390%" y="1711.50"></text></g><g><title>tokio::loom::std::mutex::Mutex&lt;T&gt;::lock (4 samples, 0.05%)</title><rect x="75.3771%" y="1733" width="0.0475%" height="15" fill="rgb(205,126,30)" fg:x="6346" fg:w="4"/><text x="75.6271%" y="1743.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::lock (4 samples, 0.05%)</title><rect x="75.3771%" y="1717" width="0.0475%" height="15" fill="rgb(230,176,12)" fg:x="6346" fg:w="4"/><text x="75.6271%" y="1727.50"></text></g><g><title>std::sys::sync::once_box::OnceBox&lt;T&gt;::get_or_init (1 samples, 0.01%)</title><rect x="75.4128%" y="1701" width="0.0119%" height="15" fill="rgb(243,19,9)" fg:x="6349" fg:w="1"/><text x="75.6628%" y="1711.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="75.4128%" y="1685" width="0.0119%" height="15" fill="rgb(245,171,17)" fg:x="6349" fg:w="1"/><text x="75.6628%" y="1695.50"></text></g><g><title>tokio::process::imp::get_orphan_queue (1 samples, 0.01%)</title><rect x="75.4365%" y="1669" width="0.0119%" height="15" fill="rgb(227,52,21)" fg:x="6351" fg:w="1"/><text x="75.6865%" y="1679.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::is_empty (1 samples, 0.01%)</title><rect x="75.4603%" y="1653" width="0.0119%" height="15" fill="rgb(238,69,14)" fg:x="6353" fg:w="1"/><text x="75.7103%" y="1663.50"></text></g><g><title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="75.4721%" y="1621" width="0.0119%" height="15" fill="rgb(241,156,39)" fg:x="6354" fg:w="1"/><text x="75.7221%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sync::poison::mutex::MutexGuard&lt;alloc::vec::Vec&lt;std::process::Child&gt;&gt;&gt; (2 samples, 0.02%)</title><rect x="75.4721%" y="1653" width="0.0238%" height="15" fill="rgb(212,227,28)" fg:x="6354" fg:w="2"/><text x="75.7221%" y="1663.50"></text></g><g><title>&lt;std::sync::poison::mutex::MutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.02%)</title><rect x="75.4721%" y="1637" width="0.0238%" height="15" fill="rgb(209,118,27)" fg:x="6354" fg:w="2"/><text x="75.7221%" y="1647.50"></text></g><g><title>std::sync::poison::Flag::done (1 samples, 0.01%)</title><rect x="75.4840%" y="1621" width="0.0119%" height="15" fill="rgb(226,102,5)" fg:x="6355" fg:w="1"/><text x="75.7340%" y="1631.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="75.4840%" y="1605" width="0.0119%" height="15" fill="rgb(223,34,3)" fg:x="6355" fg:w="1"/><text x="75.7340%" y="1615.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="75.4959%" y="1621" width="0.0119%" height="15" fill="rgb(221,81,38)" fg:x="6356" fg:w="1"/><text x="75.7459%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sync::poison::mutex::MutexGuard&lt;core::option::Option&lt;tokio::sync::watch::Receiver&lt;()&gt;&gt;&gt;&gt; (2 samples, 0.02%)</title><rect x="75.4959%" y="1653" width="0.0238%" height="15" fill="rgb(236,219,28)" fg:x="6356" fg:w="2"/><text x="75.7459%" y="1663.50"></text></g><g><title>&lt;std::sync::poison::mutex::MutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.02%)</title><rect x="75.4959%" y="1637" width="0.0238%" height="15" fill="rgb(213,200,14)" fg:x="6356" fg:w="2"/><text x="75.7459%" y="1647.50"></text></g><g><title>std::sync::poison::Flag::done (1 samples, 0.01%)</title><rect x="75.5078%" y="1621" width="0.0119%" height="15" fill="rgb(240,33,19)" fg:x="6357" fg:w="1"/><text x="75.7578%" y="1631.50"></text></g><g><title>std::sync::poison::Flag::guard (3 samples, 0.04%)</title><rect x="75.5315%" y="1621" width="0.0356%" height="15" fill="rgb(233,113,27)" fg:x="6359" fg:w="3"/><text x="75.7815%" y="1631.50"></text></g><g><title>core::sync::atomic::atomic_load (3 samples, 0.04%)</title><rect x="75.5315%" y="1605" width="0.0356%" height="15" fill="rgb(220,221,18)" fg:x="6359" fg:w="3"/><text x="75.7815%" y="1615.50"></text></g><g><title>tokio::loom::std::mutex::Mutex&lt;T&gt;::lock (5 samples, 0.06%)</title><rect x="75.5197%" y="1653" width="0.0594%" height="15" fill="rgb(238,92,8)" fg:x="6358" fg:w="5"/><text x="75.7697%" y="1663.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::lock (5 samples, 0.06%)</title><rect x="75.5197%" y="1637" width="0.0594%" height="15" fill="rgb(222,164,16)" fg:x="6358" fg:w="5"/><text x="75.7697%" y="1647.50"></text></g><g><title>std::sys::sync::once_box::OnceBox&lt;T&gt;::get_or_init (1 samples, 0.01%)</title><rect x="75.5672%" y="1621" width="0.0119%" height="15" fill="rgb(241,119,3)" fg:x="6362" fg:w="1"/><text x="75.8172%" y="1631.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="75.5672%" y="1605" width="0.0119%" height="15" fill="rgb(241,44,8)" fg:x="6362" fg:w="1"/><text x="75.8172%" y="1615.50"></text></g><g><title>std::sync::poison::Flag::guard (2 samples, 0.02%)</title><rect x="75.5909%" y="1621" width="0.0238%" height="15" fill="rgb(230,36,40)" fg:x="6364" fg:w="2"/><text x="75.8409%" y="1631.50"></text></g><g><title>std::sync::poison::map_result (1 samples, 0.01%)</title><rect x="75.6147%" y="1621" width="0.0119%" height="15" fill="rgb(243,16,36)" fg:x="6366" fg:w="1"/><text x="75.8647%" y="1631.50"></text></g><g><title>std::sync::poison::mutex::MutexGuard&lt;T&gt;::new::_{{closure}} (1 samples, 0.01%)</title><rect x="75.6147%" y="1605" width="0.0119%" height="15" fill="rgb(231,4,26)" fg:x="6366" fg:w="1"/><text x="75.8647%" y="1615.50"></text></g><g><title>tokio::process::imp::GlobalOrphanQueue::reap_orphans (19 samples, 0.23%)</title><rect x="75.4365%" y="1685" width="0.2257%" height="15" fill="rgb(240,9,31)" fg:x="6351" fg:w="19"/><text x="75.6865%" y="1695.50"></text></g><g><title>tokio::process::imp::orphan::OrphanQueueImpl&lt;T&gt;::reap_orphans (18 samples, 0.21%)</title><rect x="75.4484%" y="1669" width="0.2138%" height="15" fill="rgb(207,173,15)" fg:x="6352" fg:w="18"/><text x="75.6984%" y="1679.50"></text></g><g><title>tokio::loom::std::mutex::Mutex&lt;T&gt;::try_lock (7 samples, 0.08%)</title><rect x="75.5790%" y="1653" width="0.0831%" height="15" fill="rgb(224,192,53)" fg:x="6363" fg:w="7"/><text x="75.8290%" y="1663.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::try_lock (6 samples, 0.07%)</title><rect x="75.5909%" y="1637" width="0.0713%" height="15" fill="rgb(223,67,28)" fg:x="6364" fg:w="6"/><text x="75.8409%" y="1647.50"></text></g><g><title>std::sys::sync::once_box::OnceBox&lt;T&gt;::get_or_init (3 samples, 0.04%)</title><rect x="75.6266%" y="1621" width="0.0356%" height="15" fill="rgb(211,20,47)" fg:x="6367" fg:w="3"/><text x="75.8766%" y="1631.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="75.6503%" y="1605" width="0.0119%" height="15" fill="rgb(240,228,2)" fg:x="6369" fg:w="1"/><text x="75.9003%" y="1615.50"></text></g><g><title>&lt;mio::event::events::Iter as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.04%)</title><rect x="75.6978%" y="1637" width="0.0356%" height="15" fill="rgb(248,151,12)" fg:x="6373" fg:w="3"/><text x="75.9478%" y="1647.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (3 samples, 0.04%)</title><rect x="75.6978%" y="1621" width="0.0356%" height="15" fill="rgb(244,8,39)" fg:x="6373" fg:w="3"/><text x="75.9478%" y="1631.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_slice (3 samples, 0.04%)</title><rect x="75.6978%" y="1605" width="0.0356%" height="15" fill="rgb(222,26,8)" fg:x="6373" fg:w="3"/><text x="75.9478%" y="1615.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (3 samples, 0.04%)</title><rect x="75.6978%" y="1589" width="0.0356%" height="15" fill="rgb(213,106,44)" fg:x="6373" fg:w="3"/><text x="75.9478%" y="1599.50"></text></g><g><title>kevent (1 samples, 0.01%)</title><rect x="75.7335%" y="1621" width="0.0119%" height="15" fill="rgb(214,129,20)" fg:x="6376" fg:w="1"/><text x="75.9835%" y="1631.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.01%)</title><rect x="75.7453%" y="1605" width="0.0119%" height="15" fill="rgb(212,32,13)" fg:x="6377" fg:w="1"/><text x="75.9953%" y="1615.50"></text></g><g><title>mio::sys::unix::selector::Selector::select::_{{closure}} (1 samples, 0.01%)</title><rect x="75.7453%" y="1589" width="0.0119%" height="15" fill="rgb(208,168,33)" fg:x="6377" fg:w="1"/><text x="75.9953%" y="1599.50"></text></g><g><title>core::time::Duration::as_secs (1 samples, 0.01%)</title><rect x="75.7453%" y="1573" width="0.0119%" height="15" fill="rgb(231,207,8)" fg:x="6377" fg:w="1"/><text x="75.9953%" y="1583.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::map (3 samples, 0.04%)</title><rect x="75.7572%" y="1605" width="0.0356%" height="15" fill="rgb(235,219,23)" fg:x="6378" fg:w="3"/><text x="76.0072%" y="1615.50"></text></g><g><title>mio::sys::unix::selector::Selector::select::_{{closure}} (1 samples, 0.01%)</title><rect x="75.7810%" y="1589" width="0.0119%" height="15" fill="rgb(226,216,26)" fg:x="6380" fg:w="1"/><text x="76.0310%" y="1599.50"></text></g><g><title>mio::poll::Poll::poll (39 samples, 0.46%)</title><rect x="75.7335%" y="1637" width="0.4632%" height="15" fill="rgb(239,137,16)" fg:x="6376" fg:w="39"/><text x="75.9835%" y="1647.50"></text></g><g><title>mio::sys::unix::selector::Selector::select (38 samples, 0.45%)</title><rect x="75.7453%" y="1621" width="0.4514%" height="15" fill="rgb(207,12,36)" fg:x="6377" fg:w="38"/><text x="75.9953%" y="1631.50"></text></g><g><title>kevent (34 samples, 0.40%)</title><rect x="75.7928%" y="1605" width="0.4038%" height="15" fill="rgb(210,214,24)" fg:x="6381" fg:w="34"/><text x="76.0428%" y="1615.50"></text></g><g><title>std::sync::poison::Flag::guard (1 samples, 0.01%)</title><rect x="76.1967%" y="1605" width="0.0119%" height="15" fill="rgb(206,56,30)" fg:x="6415" fg:w="1"/><text x="76.4467%" y="1615.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="76.1967%" y="1589" width="0.0119%" height="15" fill="rgb(228,143,26)" fg:x="6415" fg:w="1"/><text x="76.4467%" y="1599.50"></text></g><g><title>tokio::loom::std::mutex::Mutex&lt;T&gt;::lock (2 samples, 0.02%)</title><rect x="76.1967%" y="1637" width="0.0238%" height="15" fill="rgb(216,218,46)" fg:x="6415" fg:w="2"/><text x="76.4467%" y="1647.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::lock (2 samples, 0.02%)</title><rect x="76.1967%" y="1621" width="0.0238%" height="15" fill="rgb(206,6,19)" fg:x="6415" fg:w="2"/><text x="76.4467%" y="1631.50"></text></g><g><title>std::sys::pal::unix::sync::mutex::Mutex::lock (1 samples, 0.01%)</title><rect x="76.2086%" y="1605" width="0.0119%" height="15" fill="rgb(239,177,51)" fg:x="6416" fg:w="1"/><text x="76.4586%" y="1615.50"></text></g><g><title>DYLD-STUB$$pthread_mutex_lock (1 samples, 0.01%)</title><rect x="76.2086%" y="1589" width="0.0119%" height="15" fill="rgb(216,55,25)" fg:x="6416" fg:w="1"/><text x="76.4586%" y="1599.50"></text></g><g><title>tokio::loom::std::mutex::Mutex&lt;T&gt;::lock (1 samples, 0.01%)</title><rect x="76.2205%" y="1621" width="0.0119%" height="15" fill="rgb(231,163,29)" fg:x="6417" fg:w="1"/><text x="76.4705%" y="1631.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::lock (1 samples, 0.01%)</title><rect x="76.2205%" y="1605" width="0.0119%" height="15" fill="rgb(232,149,50)" fg:x="6417" fg:w="1"/><text x="76.4705%" y="1615.50"></text></g><g><title>tokio::runtime::time::Driver::park_thread_timeout (69 samples, 0.82%)</title><rect x="75.4246%" y="1733" width="0.8196%" height="15" fill="rgb(223,142,48)" fg:x="6350" fg:w="69"/><text x="75.6746%" y="1743.50"></text></g><g><title>tokio::runtime::driver::IoStack::park_timeout (68 samples, 0.81%)</title><rect x="75.4365%" y="1717" width="0.8077%" height="15" fill="rgb(245,83,23)" fg:x="6351" fg:w="68"/><text x="75.6865%" y="1727.50"></text></g><g><title>tokio::runtime::process::Driver::park_timeout (68 samples, 0.81%)</title><rect x="75.4365%" y="1701" width="0.8077%" height="15" fill="rgb(224,63,2)" fg:x="6351" fg:w="68"/><text x="75.6865%" y="1711.50"></text></g><g><title>tokio::runtime::signal::Driver::park_timeout (49 samples, 0.58%)</title><rect x="75.6622%" y="1685" width="0.5820%" height="15" fill="rgb(218,65,53)" fg:x="6370" fg:w="49"/><text x="75.9122%" y="1695.50"></text></g><g><title>tokio::runtime::io::driver::Driver::park_timeout (48 samples, 0.57%)</title><rect x="75.6741%" y="1669" width="0.5701%" height="15" fill="rgb(221,84,29)" fg:x="6371" fg:w="48"/><text x="75.9241%" y="1679.50"></text></g><g><title>tokio::runtime::io::driver::Driver::turn (48 samples, 0.57%)</title><rect x="75.6741%" y="1653" width="0.5701%" height="15" fill="rgb(234,0,32)" fg:x="6371" fg:w="48"/><text x="75.9241%" y="1663.50"></text></g><g><title>tokio::runtime::io::scheduled_io::ScheduledIo::wake (2 samples, 0.02%)</title><rect x="76.2205%" y="1637" width="0.0238%" height="15" fill="rgb(206,20,16)" fg:x="6417" fg:w="2"/><text x="76.4705%" y="1647.50"></text></g><g><title>tokio::util::wake_list::WakeList::wake_all (1 samples, 0.01%)</title><rect x="76.2323%" y="1621" width="0.0119%" height="15" fill="rgb(244,172,18)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1631.50"></text></g><g><title>core::task::wake::Waker::wake (1 samples, 0.01%)</title><rect x="76.2323%" y="1605" width="0.0119%" height="15" fill="rgb(254,133,1)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1615.50"></text></g><g><title>tokio::runtime::task::waker::wake_by_val (1 samples, 0.01%)</title><rect x="76.2323%" y="1589" width="0.0119%" height="15" fill="rgb(222,206,41)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1599.50"></text></g><g><title>tokio::runtime::task::harness::_&lt;impl tokio::runtime::task::raw::RawTask&gt;::wake_by_val (1 samples, 0.01%)</title><rect x="76.2323%" y="1573" width="0.0119%" height="15" fill="rgb(212,3,42)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1583.50"></text></g><g><title>tokio::runtime::task::raw::RawTask::schedule (1 samples, 0.01%)</title><rect x="76.2323%" y="1557" width="0.0119%" height="15" fill="rgb(241,11,4)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1567.50"></text></g><g><title>tokio::runtime::task::raw::schedule (1 samples, 0.01%)</title><rect x="76.2323%" y="1541" width="0.0119%" height="15" fill="rgb(205,19,26)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1551.50"></text></g><g><title>tokio::runtime::scheduler::current_thread::_&lt;impl tokio::runtime::task::Schedule for alloc::sync::Arc&lt;tokio::runtime::scheduler::current_thread::Handle&gt;&gt;::schedule (1 samples, 0.01%)</title><rect x="76.2323%" y="1525" width="0.0119%" height="15" fill="rgb(210,179,32)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1535.50"></text></g><g><title>tokio::runtime::context::with_scheduler (1 samples, 0.01%)</title><rect x="76.2323%" y="1509" width="0.0119%" height="15" fill="rgb(227,116,49)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1519.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.01%)</title><rect x="76.2323%" y="1493" width="0.0119%" height="15" fill="rgb(211,146,6)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1503.50"></text></g><g><title>tokio::runtime::context::with_scheduler::_{{closure}} (1 samples, 0.01%)</title><rect x="76.2323%" y="1477" width="0.0119%" height="15" fill="rgb(219,44,39)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1487.50"></text></g><g><title>tokio::runtime::context::scoped::Scoped&lt;T&gt;::with (1 samples, 0.01%)</title><rect x="76.2323%" y="1461" width="0.0119%" height="15" fill="rgb(234,128,11)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1471.50"></text></g><g><title>tokio::runtime::scheduler::current_thread::_&lt;impl tokio::runtime::task::Schedule for alloc::sync::Arc&lt;tokio::runtime::scheduler::current_thread::Handle&gt;&gt;::schedule::_{{closure}} (1 samples, 0.01%)</title><rect x="76.2323%" y="1445" width="0.0119%" height="15" fill="rgb(220,183,53)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1455.50"></text></g><g><title>tokio::runtime::scheduler::current_thread::Core::push_task (1 samples, 0.01%)</title><rect x="76.2323%" y="1429" width="0.0119%" height="15" fill="rgb(213,219,32)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1439.50"></text></g><g><title>alloc::collections::vec_deque::VecDeque&lt;T,A&gt;::push_back (1 samples, 0.01%)</title><rect x="76.2323%" y="1413" width="0.0119%" height="15" fill="rgb(232,156,16)" fg:x="6418" fg:w="1"/><text x="76.4823%" y="1423.50"></text></g><g><title>std::sys::pal::unix::sync::mutex::Mutex::lock (1 samples, 0.01%)</title><rect x="76.2442%" y="1653" width="0.0119%" height="15" fill="rgb(246,135,34)" fg:x="6419" fg:w="1"/><text x="76.4942%" y="1663.50"></text></g><g><title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="76.2442%" y="1637" width="0.0119%" height="15" fill="rgb(241,99,0)" fg:x="6419" fg:w="1"/><text x="76.4942%" y="1647.50"></text></g><g><title>tokio::runtime::time::Inner::lock (2 samples, 0.02%)</title><rect x="76.2442%" y="1701" width="0.0238%" height="15" fill="rgb(222,103,45)" fg:x="6419" fg:w="2"/><text x="76.4942%" y="1711.50"></text></g><g><title>tokio::loom::std::mutex::Mutex&lt;T&gt;::lock (2 samples, 0.02%)</title><rect x="76.2442%" y="1685" width="0.0238%" height="15" fill="rgb(212,57,4)" fg:x="6419" fg:w="2"/><text x="76.4942%" y="1695.50"></text></g><g><title>std::sync::poison::mutex::Mutex&lt;T&gt;::lock (2 samples, 0.02%)</title><rect x="76.2442%" y="1669" width="0.0238%" height="15" fill="rgb(215,68,47)" fg:x="6419" fg:w="2"/><text x="76.4942%" y="1679.50"></text></g><g><title>std::sys::sync::once_box::OnceBox&lt;T&gt;::get_or_init (1 samples, 0.01%)</title><rect x="76.2561%" y="1653" width="0.0119%" height="15" fill="rgb(230,84,2)" fg:x="6420" fg:w="1"/><text x="76.5061%" y="1663.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::elapsed (1 samples, 0.01%)</title><rect x="76.2680%" y="1701" width="0.0119%" height="15" fill="rgb(220,102,14)" fg:x="6421" fg:w="1"/><text x="76.5180%" y="1711.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.04%)</title><rect x="76.2917%" y="1669" width="0.0356%" height="15" fill="rgb(240,10,32)" fg:x="6423" fg:w="3"/><text x="76.5417%" y="1679.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::no_expirations_before (3 samples, 0.04%)</title><rect x="76.3274%" y="1669" width="0.0356%" height="15" fill="rgb(215,47,27)" fg:x="6426" fg:w="3"/><text x="76.5774%" y="1679.50"></text></g><g><title>core::array::_&lt;impl core::ops::index::Index&lt;I&gt; for [T (2 samples, 0.02%)</title><rect x="76.3392%" y="1653" width="0.0238%" height="15" fill="rgb(233,188,43)" fg:x="6427" fg:w="2"/><text x="76.5892%" y="1663.50"></text></g><g><title> N]&gt;::index (2 samples, 0.02%)</title><rect x="76.3392%" y="1637" width="0.0238%" height="15" fill="rgb(253,190,1)" fg:x="6427" fg:w="2"/><text x="76.5892%" y="1647.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (2 samples, 0.02%)</title><rect x="76.3392%" y="1621" width="0.0238%" height="15" fill="rgb(206,114,52)" fg:x="6427" fg:w="2"/><text x="76.5892%" y="1631.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked::precondition_check (2 samples, 0.02%)</title><rect x="76.3392%" y="1605" width="0.0238%" height="15" fill="rgb(233,120,37)" fg:x="6427" fg:w="2"/><text x="76.5892%" y="1615.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::next_expiration (10 samples, 0.12%)</title><rect x="76.2917%" y="1685" width="0.1188%" height="15" fill="rgb(214,52,39)" fg:x="6423" fg:w="10"/><text x="76.5417%" y="1695.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::next_expiration (4 samples, 0.05%)</title><rect x="76.3630%" y="1669" width="0.0475%" height="15" fill="rgb(223,80,29)" fg:x="6429" fg:w="4"/><text x="76.6130%" y="1679.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::next_occupied_slot (3 samples, 0.04%)</title><rect x="76.3749%" y="1653" width="0.0356%" height="15" fill="rgb(230,101,40)" fg:x="6430" fg:w="3"/><text x="76.6249%" y="1663.50"></text></g><g><title>tokio::runtime::time::wheel::level::slot_range (1 samples, 0.01%)</title><rect x="76.3986%" y="1637" width="0.0119%" height="15" fill="rgb(219,211,8)" fg:x="6432" fg:w="1"/><text x="76.6486%" y="1647.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::pow (1 samples, 0.01%)</title><rect x="76.3986%" y="1621" width="0.0119%" height="15" fill="rgb(252,126,28)" fg:x="6432" fg:w="1"/><text x="76.6486%" y="1631.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::poll (12 samples, 0.14%)</title><rect x="76.2798%" y="1701" width="0.1425%" height="15" fill="rgb(215,56,38)" fg:x="6422" fg:w="12"/><text x="76.5298%" y="1711.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::next_expiration (1 samples, 0.01%)</title><rect x="76.4105%" y="1685" width="0.0119%" height="15" fill="rgb(249,55,44)" fg:x="6433" fg:w="1"/><text x="76.6605%" y="1695.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::iter (1 samples, 0.01%)</title><rect x="76.4343%" y="1669" width="0.0119%" height="15" fill="rgb(220,221,32)" fg:x="6435" fg:w="1"/><text x="76.6843%" y="1679.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::new (1 samples, 0.01%)</title><rect x="76.4343%" y="1653" width="0.0119%" height="15" fill="rgb(212,216,41)" fg:x="6435" fg:w="1"/><text x="76.6843%" y="1663.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::no_expirations_before (1 samples, 0.01%)</title><rect x="76.4461%" y="1669" width="0.0119%" height="15" fill="rgb(228,213,43)" fg:x="6436" fg:w="1"/><text x="76.6961%" y="1679.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::next_expiration (1 samples, 0.01%)</title><rect x="76.4461%" y="1653" width="0.0119%" height="15" fill="rgb(211,31,26)" fg:x="6436" fg:w="1"/><text x="76.6961%" y="1663.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.01%)</title><rect x="76.4461%" y="1637" width="0.0119%" height="15" fill="rgb(229,202,19)" fg:x="6436" fg:w="1"/><text x="76.6961%" y="1647.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::next_occupied_slot (1 samples, 0.01%)</title><rect x="76.4699%" y="1653" width="0.0119%" height="15" fill="rgb(229,105,46)" fg:x="6438" fg:w="1"/><text x="76.7199%" y="1663.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::next_expiration (3 samples, 0.04%)</title><rect x="76.4580%" y="1669" width="0.0356%" height="15" fill="rgb(235,108,1)" fg:x="6437" fg:w="3"/><text x="76.7080%" y="1679.50"></text></g><g><title>tokio::runtime::time::wheel::level::slot_range (1 samples, 0.01%)</title><rect x="76.4818%" y="1653" width="0.0119%" height="15" fill="rgb(245,111,35)" fg:x="6439" fg:w="1"/><text x="76.7318%" y="1663.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::pow (1 samples, 0.01%)</title><rect x="76.4818%" y="1637" width="0.0119%" height="15" fill="rgb(219,185,31)" fg:x="6439" fg:w="1"/><text x="76.7318%" y="1647.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::poll_at (7 samples, 0.08%)</title><rect x="76.4224%" y="1701" width="0.0831%" height="15" fill="rgb(214,4,43)" fg:x="6434" fg:w="7"/><text x="76.6724%" y="1711.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::next_expiration (6 samples, 0.07%)</title><rect x="76.4343%" y="1685" width="0.0713%" height="15" fill="rgb(235,227,40)" fg:x="6435" fg:w="6"/><text x="76.6843%" y="1695.50"></text></g><g><title>tokio::util::linked_list::LinkedList&lt;L,&lt;L as tokio::util::linked_list::Link&gt;::Target&gt;::is_empty (1 samples, 0.01%)</title><rect x="76.4936%" y="1669" width="0.0119%" height="15" fill="rgb(230,88,30)" fg:x="6440" fg:w="1"/><text x="76.7436%" y="1679.50"></text></g><g><title>core::option::Option&lt;T&gt;::is_none (1 samples, 0.01%)</title><rect x="76.4936%" y="1653" width="0.0119%" height="15" fill="rgb(216,217,1)" fg:x="6440" fg:w="1"/><text x="76.7436%" y="1663.50"></text></g><g><title>tokio::util::wake_list::WakeList::new (1 samples, 0.01%)</title><rect x="76.5055%" y="1701" width="0.0119%" height="15" fill="rgb(248,139,50)" fg:x="6441" fg:w="1"/><text x="76.7555%" y="1711.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="76.5055%" y="1685" width="0.0119%" height="15" fill="rgb(233,1,21)" fg:x="6441" fg:w="1"/><text x="76.7555%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;[core::task::wake::Waker]&gt; (1 samples, 0.01%)</title><rect x="76.5174%" y="1653" width="0.0119%" height="15" fill="rgb(215,183,12)" fg:x="6442" fg:w="1"/><text x="76.7674%" y="1663.50"></text></g><g><title>tokio::runtime::time::_&lt;impl tokio::runtime::time::handle::Handle&gt;::process_at_time (25 samples, 0.30%)</title><rect x="76.2442%" y="1717" width="0.2969%" height="15" fill="rgb(229,104,42)" fg:x="6419" fg:w="25"/><text x="76.4942%" y="1727.50"></text></g><g><title>tokio::util::wake_list::WakeList::wake_all (2 samples, 0.02%)</title><rect x="76.5174%" y="1701" width="0.0238%" height="15" fill="rgb(243,34,48)" fg:x="6442" fg:w="2"/><text x="76.7674%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;tokio::util::wake_list::WakeList::wake_all::DropGuard&gt; (2 samples, 0.02%)</title><rect x="76.5174%" y="1685" width="0.0238%" height="15" fill="rgb(239,11,44)" fg:x="6442" fg:w="2"/><text x="76.7674%" y="1695.50"></text></g><g><title>&lt;tokio::util::wake_list::WakeList::wake_all::DropGuard as core::ops::drop::Drop&gt;::drop (2 samples, 0.02%)</title><rect x="76.5174%" y="1669" width="0.0238%" height="15" fill="rgb(231,98,35)" fg:x="6442" fg:w="2"/><text x="76.7674%" y="1679.50"></text></g><g><title>core::ptr::slice_from_raw_parts_mut (1 samples, 0.01%)</title><rect x="76.5293%" y="1653" width="0.0119%" height="15" fill="rgb(233,28,25)" fg:x="6443" fg:w="1"/><text x="76.7793%" y="1663.50"></text></g><g><title>tokio::runtime::time::source::TimeSource::instant_to_tick (1 samples, 0.01%)</title><rect x="76.5412%" y="1701" width="0.0119%" height="15" fill="rgb(234,123,11)" fg:x="6444" fg:w="1"/><text x="76.7912%" y="1711.50"></text></g><g><title>tokio::time::instant::Instant::saturating_duration_since (1 samples, 0.01%)</title><rect x="76.5412%" y="1685" width="0.0119%" height="15" fill="rgb(220,69,3)" fg:x="6444" fg:w="1"/><text x="76.7912%" y="1695.50"></text></g><g><title>std::time::Instant::duration_since (1 samples, 0.01%)</title><rect x="76.5412%" y="1669" width="0.0119%" height="15" fill="rgb(214,64,36)" fg:x="6444" fg:w="1"/><text x="76.7912%" y="1679.50"></text></g><g><title>std::sys::pal::unix::time::Timespec::sub_timespec (1 samples, 0.01%)</title><rect x="76.5412%" y="1653" width="0.0119%" height="15" fill="rgb(211,138,32)" fg:x="6444" fg:w="1"/><text x="76.7912%" y="1663.50"></text></g><g><title>tokio::runtime::time::_&lt;impl tokio::runtime::time::handle::Handle&gt;::process (29 samples, 0.34%)</title><rect x="76.2442%" y="1733" width="0.3445%" height="15" fill="rgb(213,118,47)" fg:x="6419" fg:w="29"/><text x="76.4942%" y="1743.50"></text></g><g><title>tokio::runtime::time::source::TimeSource::now (4 samples, 0.05%)</title><rect x="76.5412%" y="1717" width="0.0475%" height="15" fill="rgb(243,124,49)" fg:x="6444" fg:w="4"/><text x="76.7912%" y="1727.50"></text></g><g><title>tokio::time::clock::Clock::now (3 samples, 0.04%)</title><rect x="76.5530%" y="1701" width="0.0356%" height="15" fill="rgb(221,30,28)" fg:x="6445" fg:w="3"/><text x="76.8030%" y="1711.50"></text></g><g><title>tokio::time::clock::now (3 samples, 0.04%)</title><rect x="76.5530%" y="1685" width="0.0356%" height="15" fill="rgb(246,37,13)" fg:x="6445" fg:w="3"/><text x="76.8030%" y="1695.50"></text></g><g><title>std::sys::pal::unix::time::Timespec::now (3 samples, 0.04%)</title><rect x="76.5530%" y="1669" width="0.0356%" height="15" fill="rgb(249,66,14)" fg:x="6445" fg:w="3"/><text x="76.8030%" y="1679.50"></text></g><g><title>clock_gettime (2 samples, 0.02%)</title><rect x="76.5649%" y="1653" width="0.0238%" height="15" fill="rgb(213,166,5)" fg:x="6446" fg:w="2"/><text x="76.8149%" y="1663.50"></text></g><g><title>clock_gettime_nsec_np (2 samples, 0.02%)</title><rect x="76.5649%" y="1637" width="0.0238%" height="15" fill="rgb(221,66,24)" fg:x="6446" fg:w="2"/><text x="76.8149%" y="1647.50"></text></g><g><title>mach_absolute_time (2 samples, 0.02%)</title><rect x="76.5649%" y="1621" width="0.0238%" height="15" fill="rgb(210,132,17)" fg:x="6446" fg:w="2"/><text x="76.8149%" y="1631.50"></text></g><g><title>tokio::runtime::time::handle::Handle::is_shutdown (1 samples, 0.01%)</title><rect x="76.5887%" y="1733" width="0.0119%" height="15" fill="rgb(243,202,5)" fg:x="6448" fg:w="1"/><text x="76.8387%" y="1743.50"></text></g><g><title>tokio::runtime::time::Inner::is_shutdown (1 samples, 0.01%)</title><rect x="76.5887%" y="1717" width="0.0119%" height="15" fill="rgb(233,70,48)" fg:x="6448" fg:w="1"/><text x="76.8387%" y="1727.50"></text></g><g><title>core::sync::atomic::AtomicBool::load (1 samples, 0.01%)</title><rect x="76.5887%" y="1701" width="0.0119%" height="15" fill="rgb(238,41,26)" fg:x="6448" fg:w="1"/><text x="76.8387%" y="1711.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.01%)</title><rect x="76.5887%" y="1685" width="0.0119%" height="15" fill="rgb(241,19,31)" fg:x="6448" fg:w="1"/><text x="76.8387%" y="1695.50"></text></g><g><title>tokio::runtime::time::source::TimeSource::instant_to_tick (1 samples, 0.01%)</title><rect x="76.6005%" y="1717" width="0.0119%" height="15" fill="rgb(214,76,10)" fg:x="6449" fg:w="1"/><text x="76.8505%" y="1727.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="76.6005%" y="1701" width="0.0119%" height="15" fill="rgb(254,202,22)" fg:x="6449" fg:w="1"/><text x="76.8505%" y="1711.50"></text></g><g><title>tokio::runtime::time::source::TimeSource::now (2 samples, 0.02%)</title><rect x="76.6005%" y="1733" width="0.0238%" height="15" fill="rgb(214,72,24)" fg:x="6449" fg:w="2"/><text x="76.8505%" y="1743.50"></text></g><g><title>tokio::time::clock::Clock::now (1 samples, 0.01%)</title><rect x="76.6124%" y="1717" width="0.0119%" height="15" fill="rgb(221,92,46)" fg:x="6450" fg:w="1"/><text x="76.8624%" y="1727.50"></text></g><g><title>tokio::time::clock::now (1 samples, 0.01%)</title><rect x="76.6124%" y="1701" width="0.0119%" height="15" fill="rgb(246,13,50)" fg:x="6450" fg:w="1"/><text x="76.8624%" y="1711.50"></text></g><g><title>std::sys::pal::unix::time::Timespec::now (1 samples, 0.01%)</title><rect x="76.6124%" y="1685" width="0.0119%" height="15" fill="rgb(240,165,38)" fg:x="6450" fg:w="1"/><text x="76.8624%" y="1695.50"></text></g><g><title>clock_gettime (1 samples, 0.01%)</title><rect x="76.6124%" y="1669" width="0.0119%" height="15" fill="rgb(241,24,51)" fg:x="6450" fg:w="1"/><text x="76.8624%" y="1679.50"></text></g><g><title>clock_gettime_nsec_np (1 samples, 0.01%)</title><rect x="76.6124%" y="1653" width="0.0119%" height="15" fill="rgb(227,51,44)" fg:x="6450" fg:w="1"/><text x="76.8624%" y="1663.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="76.6243%" y="1701" width="0.0119%" height="15" fill="rgb(231,121,3)" fg:x="6451" fg:w="1"/><text x="76.8743%" y="1711.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.01%)</title><rect x="76.6243%" y="1685" width="0.0119%" height="15" fill="rgb(245,3,41)" fg:x="6451" fg:w="1"/><text x="76.8743%" y="1695.50"></text></g><g><title>core::array::_&lt;impl core::ops::index::Index&lt;I&gt; for [T (1 samples, 0.01%)</title><rect x="76.6362%" y="1685" width="0.0119%" height="15" fill="rgb(214,13,26)" fg:x="6452" fg:w="1"/><text x="76.8862%" y="1695.50"></text></g><g><title> N]&gt;::index (1 samples, 0.01%)</title><rect x="76.6362%" y="1669" width="0.0119%" height="15" fill="rgb(252,75,11)" fg:x="6452" fg:w="1"/><text x="76.8862%" y="1679.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (1 samples, 0.01%)</title><rect x="76.6362%" y="1653" width="0.0119%" height="15" fill="rgb(218,226,17)" fg:x="6452" fg:w="1"/><text x="76.8862%" y="1663.50"></text></g><g><title>tokio::runtime::driver::Driver::park (112 samples, 1.33%)</title><rect x="75.3296%" y="1797" width="1.3303%" height="15" fill="rgb(248,89,38)" fg:x="6342" fg:w="112"/><text x="75.5796%" y="1807.50"></text></g><g><title>tokio::runtime::driver::TimeDriver::park (111 samples, 1.32%)</title><rect x="75.3415%" y="1781" width="1.3184%" height="15" fill="rgb(237,73,46)" fg:x="6343" fg:w="111"/><text x="75.5915%" y="1791.50"></text></g><g><title>tokio::runtime::time::Driver::park (110 samples, 1.31%)</title><rect x="75.3534%" y="1765" width="1.3066%" height="15" fill="rgb(242,78,33)" fg:x="6344" fg:w="110"/><text x="75.6034%" y="1775.50"></text></g><g><title>tokio::runtime::time::Driver::park_internal (110 samples, 1.31%)</title><rect x="75.3534%" y="1749" width="1.3066%" height="15" fill="rgb(235,60,3)" fg:x="6344" fg:w="110"/><text x="75.6034%" y="1759.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::next_expiration_time (3 samples, 0.04%)</title><rect x="76.6243%" y="1733" width="0.0356%" height="15" fill="rgb(216,172,19)" fg:x="6451" fg:w="3"/><text x="76.8743%" y="1743.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::next_expiration (3 samples, 0.04%)</title><rect x="76.6243%" y="1717" width="0.0356%" height="15" fill="rgb(227,6,42)" fg:x="6451" fg:w="3"/><text x="76.8743%" y="1727.50"></text></g><g><title>tokio::runtime::time::wheel::Wheel::no_expirations_before (2 samples, 0.02%)</title><rect x="76.6362%" y="1701" width="0.0238%" height="15" fill="rgb(223,207,42)" fg:x="6452" fg:w="2"/><text x="76.8862%" y="1711.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::next_expiration (1 samples, 0.01%)</title><rect x="76.6481%" y="1685" width="0.0119%" height="15" fill="rgb(246,138,30)" fg:x="6453" fg:w="1"/><text x="76.8981%" y="1695.50"></text></g><g><title>tokio::runtime::time::wheel::level::Level::next_occupied_slot (1 samples, 0.01%)</title><rect x="76.6481%" y="1669" width="0.0119%" height="15" fill="rgb(251,199,47)" fg:x="6453" fg:w="1"/><text x="76.8981%" y="1679.50"></text></g><g><title>tokio::runtime::scheduler::current_thread::Context::enter (118 samples, 1.40%)</title><rect x="75.2821%" y="1829" width="1.4016%" height="15" fill="rgb(228,218,44)" fg:x="6338" fg:w="118"/><text x="75.5321%" y="1839.50"></text></g><g><title>tokio::runtime::scheduler::current_thread::Context::park::_{{closure}} (114 samples, 1.35%)</title><rect x="75.3296%" y="1813" width="1.3541%" height="15" fill="rgb(220,68,6)" fg:x="6342" fg:w="114"/><text x="75.5796%" y="1823.50"></text></g><g><title>tokio::runtime::scheduler::defer::Defer::wake (2 samples, 0.02%)</title><rect x="76.6599%" y="1797" width="0.0238%" height="15" fill="rgb(240,60,26)" fg:x="6454" fg:w="2"/><text x="76.9099%" y="1807.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::borrow_mut (2 samples, 0.02%)</title><rect x="76.6599%" y="1781" width="0.0238%" height="15" fill="rgb(211,200,19)" fg:x="6454" fg:w="2"/><text x="76.9099%" y="1791.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::try_borrow_mut (2 samples, 0.02%)</title><rect x="76.6599%" y="1765" width="0.0238%" height="15" fill="rgb(242,145,30)" fg:x="6454" fg:w="2"/><text x="76.9099%" y="1775.50"></text></g><g><title>tokio::runtime::scheduler::current_thread::Context::park (125 samples, 1.48%)</title><rect x="75.2346%" y="1845" width="1.4847%" height="15" fill="rgb(225,64,13)" fg:x="6334" fg:w="125"/><text x="75.4846%" y="1855.50"></text></g><g><title>tokio::runtime::scheduler::current_thread::Core::submit_metrics (3 samples, 0.04%)</title><rect x="76.6837%" y="1829" width="0.0356%" height="15" fill="rgb(218,103,35)" fg:x="6456" fg:w="3"/><text x="76.9337%" y="1839.50"></text></g><g><title>tokio::runtime::metrics::batch::MetricsBatch::submit (3 samples, 0.04%)</title><rect x="76.6837%" y="1813" width="0.0356%" height="15" fill="rgb(216,93,46)" fg:x="6456" fg:w="3"/><text x="76.9337%" y="1823.50"></text></g><g><title>tokio::util::metric_atomics::MetricAtomicU64::store (2 samples, 0.02%)</title><rect x="76.6956%" y="1797" width="0.0238%" height="15" fill="rgb(225,159,27)" fg:x="6457" fg:w="2"/><text x="76.9456%" y="1807.50"></text></g><g><title>core::sync::atomic::AtomicU64::store (2 samples, 0.02%)</title><rect x="76.6956%" y="1781" width="0.0238%" height="15" fill="rgb(225,204,11)" fg:x="6457" fg:w="2"/><text x="76.9456%" y="1791.50"></text></g><g><title>core::sync::atomic::atomic_store (2 samples, 0.02%)</title><rect x="76.6956%" y="1765" width="0.0238%" height="15" fill="rgb(205,56,4)" fg:x="6457" fg:w="2"/><text x="76.9456%" y="1775.50"></text></g><g><title>tokio::runtime::context::budget (1 samples, 0.01%)</title><rect x="76.7193%" y="1797" width="0.0119%" height="15" fill="rgb(206,6,35)" fg:x="6459" fg:w="1"/><text x="76.9693%" y="1807.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.01%)</title><rect x="76.7193%" y="1781" width="0.0119%" height="15" fill="rgb(247,73,52)" fg:x="6459" fg:w="1"/><text x="76.9693%" y="1791.50"></text></g><g><title>tokio::runtime::context::budget::_{{closure}} (1 samples, 0.01%)</title><rect x="76.7193%" y="1765" width="0.0119%" height="15" fill="rgb(246,97,4)" fg:x="6459" fg:w="1"/><text x="76.9693%" y="1775.50"></text></g><g><title>tokio::task::coop::with_budget::_{{closure}} (1 samples, 0.01%)</title><rect x="76.7193%" y="1749" width="0.0119%" height="15" fill="rgb(212,37,15)" fg:x="6459" fg:w="1"/><text x="76.9693%" y="1759.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::complete (1 samples, 0.01%)</title><rect x="76.7312%" y="1717" width="0.0119%" height="15" fill="rgb(208,130,40)" fg:x="6460" fg:w="1"/><text x="76.9812%" y="1727.50"></text></g><g><title>tokio::runtime::task::state::State::transition_to_complete (1 samples, 0.01%)</title><rect x="76.7312%" y="1701" width="0.0119%" height="15" fill="rgb(236,55,29)" fg:x="6460" fg:w="1"/><text x="76.9812%" y="1711.50"></text></g><g><title>core::sync::atomic::AtomicUsize::fetch_xor (1 samples, 0.01%)</title><rect x="76.7312%" y="1685" width="0.0119%" height="15" fill="rgb(209,156,45)" fg:x="6460" fg:w="1"/><text x="76.9812%" y="1695.50"></text></g><g><title>&lt;tracing::span::Span as core::clone::Clone&gt;::clone (1 samples, 0.01%)</title><rect x="76.7668%" y="1429" width="0.0119%" height="15" fill="rgb(249,107,4)" fg:x="6463" fg:w="1"/><text x="77.0168%" y="1439.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.01%)</title><rect x="76.7668%" y="1413" width="0.0119%" height="15" fill="rgb(227,7,13)" fg:x="6463" fg:w="1"/><text x="77.0168%" y="1423.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.01%)</title><rect x="76.7787%" y="1349" width="0.0119%" height="15" fill="rgb(250,129,14)" fg:x="6464" fg:w="1"/><text x="77.0287%" y="1359.50"></text></g><g><title>&lt;&amp;mut T as core::convert::AsRef&lt;U&gt;&gt;::as_ref (1 samples, 0.01%)</title><rect x="76.7906%" y="1301" width="0.0119%" height="15" fill="rgb(229,92,13)" fg:x="6465" fg:w="1"/><text x="77.0406%" y="1311.50"></text></g><g><title>&lt;bytes::bytes_mut::BytesMut as core::convert::AsRef&lt;[u8]&gt;&gt;::as_ref (1 samples, 0.01%)</title><rect x="76.7906%" y="1285" width="0.0119%" height="15" fill="rgb(245,98,39)" fg:x="6465" fg:w="1"/><text x="77.0406%" y="1295.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (1 samples, 0.01%)</title><rect x="76.8025%" y="1301" width="0.0119%" height="15" fill="rgb(234,135,48)" fg:x="6466" fg:w="1"/><text x="77.0525%" y="1311.50"></text></g><g><title>bytes::bytes_mut::BytesMut::reserve (4 samples, 0.05%)</title><rect x="76.7906%" y="1333" width="0.0475%" height="15" fill="rgb(230,98,28)" fg:x="6465" fg:w="4"/><text x="77.0406%" y="1343.50"></text></g><g><title>bytes::bytes_mut::BytesMut::reserve_inner (4 samples, 0.05%)</title><rect x="76.7906%" y="1317" width="0.0475%" height="15" fill="rgb(223,121,0)" fg:x="6465" fg:w="4"/><text x="77.0406%" y="1327.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (2 samples, 0.02%)</title><rect x="76.8143%" y="1301" width="0.0238%" height="15" fill="rgb(234,173,33)" fg:x="6467" fg:w="2"/><text x="77.0643%" y="1311.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (2 samples, 0.02%)</title><rect x="76.8143%" y="1285" width="0.0238%" height="15" fill="rgb(245,47,8)" fg:x="6467" fg:w="2"/><text x="77.0643%" y="1295.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (2 samples, 0.02%)</title><rect x="76.8143%" y="1269" width="0.0238%" height="15" fill="rgb(205,17,20)" fg:x="6467" fg:w="2"/><text x="77.0643%" y="1279.50"></text></g><g><title>__rustc::__rust_alloc (2 samples, 0.02%)</title><rect x="76.8143%" y="1253" width="0.0238%" height="15" fill="rgb(232,151,16)" fg:x="6467" fg:w="2"/><text x="77.0643%" y="1263.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (2 samples, 0.02%)</title><rect x="76.8143%" y="1237" width="0.0238%" height="15" fill="rgb(208,30,32)" fg:x="6467" fg:w="2"/><text x="77.0643%" y="1247.50"></text></g><g><title>_rjem_malloc (2 samples, 0.02%)</title><rect x="76.8143%" y="1221" width="0.0238%" height="15" fill="rgb(254,26,3)" fg:x="6467" fg:w="2"/><text x="77.0643%" y="1231.50"></text></g><g><title>_rjem_je_malloc_default (2 samples, 0.02%)</title><rect x="76.8143%" y="1205" width="0.0238%" height="15" fill="rgb(240,177,30)" fg:x="6467" fg:w="2"/><text x="77.0643%" y="1215.50"></text></g><g><title>_rjem_je_te_event_trigger (1 samples, 0.01%)</title><rect x="76.8262%" y="1189" width="0.0119%" height="15" fill="rgb(248,76,44)" fg:x="6468" fg:w="1"/><text x="77.0762%" y="1199.50"></text></g><g><title>_rjem_je_tcache_gc_event_handler (1 samples, 0.01%)</title><rect x="76.8262%" y="1173" width="0.0119%" height="15" fill="rgb(241,186,54)" fg:x="6468" fg:w="1"/><text x="77.0762%" y="1183.50"></text></g><g><title>tcache_event (1 samples, 0.01%)</title><rect x="76.8262%" y="1157" width="0.0119%" height="15" fill="rgb(249,171,29)" fg:x="6468" fg:w="1"/><text x="77.0762%" y="1167.50"></text></g><g><title>tcache_gc_small (1 samples, 0.01%)</title><rect x="76.8262%" y="1141" width="0.0119%" height="15" fill="rgb(237,151,44)" fg:x="6468" fg:w="1"/><text x="77.0762%" y="1151.50"></text></g><g><title>_rjem_je_tcache_bin_flush_small (1 samples, 0.01%)</title><rect x="76.8262%" y="1125" width="0.0119%" height="15" fill="rgb(228,174,30)" fg:x="6468" fg:w="1"/><text x="77.0762%" y="1135.50"></text></g><g><title>tcache_bin_flush_edatas_lookup (1 samples, 0.01%)</title><rect x="76.8262%" y="1109" width="0.0119%" height="15" fill="rgb(252,14,37)" fg:x="6468" fg:w="1"/><text x="77.0762%" y="1119.50"></text></g><g><title>tcache_bin_flush_metadata_visitor (1 samples, 0.01%)</title><rect x="76.8262%" y="1093" width="0.0119%" height="15" fill="rgb(207,111,40)" fg:x="6468" fg:w="1"/><text x="77.0762%" y="1103.50"></text></g><g><title>bytes::buf::buf_impl::Buf::get_uint (2 samples, 0.02%)</title><rect x="76.8381%" y="1317" width="0.0238%" height="15" fill="rgb(248,171,54)" fg:x="6469" fg:w="2"/><text x="77.0881%" y="1327.50"></text></g><g><title>bytes::buf::buf_impl::Buf::copy_to_slice (2 samples, 0.02%)</title><rect x="76.8381%" y="1301" width="0.0238%" height="15" fill="rgb(211,127,2)" fg:x="6469" fg:w="2"/><text x="77.0881%" y="1311.50"></text></g><g><title>&lt;std::io::cursor::Cursor&lt;T&gt; as bytes::buf::buf_impl::Buf&gt;::advance (1 samples, 0.01%)</title><rect x="76.8500%" y="1285" width="0.0119%" height="15" fill="rgb(236,87,47)" fg:x="6470" fg:w="1"/><text x="77.1000%" y="1295.50"></text></g><g><title>___chkstk_darwin (1 samples, 0.01%)</title><rect x="76.8856%" y="1173" width="0.0119%" height="15" fill="rgb(223,190,45)" fg:x="6473" fg:w="1"/><text x="77.1356%" y="1183.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="76.8975%" y="1157" width="0.0119%" height="15" fill="rgb(215,5,16)" fg:x="6474" fg:w="1"/><text x="77.1475%" y="1167.50"></text></g><g><title>_rjem_je_arena_ralloc_no_move (1 samples, 0.01%)</title><rect x="76.9094%" y="1157" width="0.0119%" height="15" fill="rgb(252,82,33)" fg:x="6475" fg:w="1"/><text x="77.1594%" y="1167.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (7 samples, 0.08%)</title><rect x="76.8619%" y="1285" width="0.0831%" height="15" fill="rgb(247,213,44)" fg:x="6471" fg:w="7"/><text x="77.1119%" y="1295.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (7 samples, 0.08%)</title><rect x="76.8619%" y="1269" width="0.0831%" height="15" fill="rgb(205,196,44)" fg:x="6471" fg:w="7"/><text x="77.1119%" y="1279.50"></text></g><g><title>alloc::raw_vec::finish_grow (7 samples, 0.08%)</title><rect x="76.8619%" y="1253" width="0.0831%" height="15" fill="rgb(237,96,54)" fg:x="6471" fg:w="7"/><text x="77.1119%" y="1263.50"></text></g><g><title>__rustc::__rust_realloc (6 samples, 0.07%)</title><rect x="76.8737%" y="1237" width="0.0713%" height="15" fill="rgb(230,113,34)" fg:x="6472" fg:w="6"/><text x="77.1237%" y="1247.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (6 samples, 0.07%)</title><rect x="76.8737%" y="1221" width="0.0713%" height="15" fill="rgb(221,224,12)" fg:x="6472" fg:w="6"/><text x="77.1237%" y="1231.50"></text></g><g><title>_rjem_realloc (5 samples, 0.06%)</title><rect x="76.8856%" y="1205" width="0.0594%" height="15" fill="rgb(219,112,44)" fg:x="6473" fg:w="5"/><text x="77.1356%" y="1215.50"></text></g><g><title>do_rallocx (5 samples, 0.06%)</title><rect x="76.8856%" y="1189" width="0.0594%" height="15" fill="rgb(210,31,13)" fg:x="6473" fg:w="5"/><text x="77.1356%" y="1199.50"></text></g><g><title>_rjem_je_arena_ralloc (4 samples, 0.05%)</title><rect x="76.8975%" y="1173" width="0.0475%" height="15" fill="rgb(230,25,16)" fg:x="6474" fg:w="4"/><text x="77.1475%" y="1183.50"></text></g><g><title>arena_ralloc_move_helper (2 samples, 0.02%)</title><rect x="76.9212%" y="1157" width="0.0238%" height="15" fill="rgb(246,108,53)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1167.50"></text></g><g><title>_rjem_je_tcache_alloc_small_hard (2 samples, 0.02%)</title><rect x="76.9212%" y="1141" width="0.0238%" height="15" fill="rgb(241,172,50)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1151.50"></text></g><g><title>_rjem_je_arena_cache_bin_fill_small (2 samples, 0.02%)</title><rect x="76.9212%" y="1125" width="0.0238%" height="15" fill="rgb(235,141,10)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1135.50"></text></g><g><title>arena_slab_alloc (2 samples, 0.02%)</title><rect x="76.9212%" y="1109" width="0.0238%" height="15" fill="rgb(220,174,43)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1119.50"></text></g><g><title>_rjem_je_pa_alloc (2 samples, 0.02%)</title><rect x="76.9212%" y="1093" width="0.0238%" height="15" fill="rgb(215,181,40)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1103.50"></text></g><g><title>pai_alloc (2 samples, 0.02%)</title><rect x="76.9212%" y="1077" width="0.0238%" height="15" fill="rgb(230,97,2)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1087.50"></text></g><g><title>pac_alloc_impl (2 samples, 0.02%)</title><rect x="76.9212%" y="1061" width="0.0238%" height="15" fill="rgb(211,25,27)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1071.50"></text></g><g><title>pac_alloc_real (2 samples, 0.02%)</title><rect x="76.9212%" y="1045" width="0.0238%" height="15" fill="rgb(230,87,26)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1055.50"></text></g><g><title>_rjem_je_ecache_alloc (2 samples, 0.02%)</title><rect x="76.9212%" y="1029" width="0.0238%" height="15" fill="rgb(227,160,17)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1039.50"></text></g><g><title>extent_recycle (2 samples, 0.02%)</title><rect x="76.9212%" y="1013" width="0.0238%" height="15" fill="rgb(244,85,34)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1023.50"></text></g><g><title>extent_recycle_extract (2 samples, 0.02%)</title><rect x="76.9212%" y="997" width="0.0238%" height="15" fill="rgb(207,70,0)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="1007.50"></text></g><g><title>extent_activate_locked (2 samples, 0.02%)</title><rect x="76.9212%" y="981" width="0.0238%" height="15" fill="rgb(223,129,7)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="991.50"></text></g><g><title>_rjem_je_eset_remove (2 samples, 0.02%)</title><rect x="76.9212%" y="965" width="0.0238%" height="15" fill="rgb(246,105,7)" fg:x="6476" fg:w="2"/><text x="77.1712%" y="975.50"></text></g><g><title>_rjem_je_edata_heap_remove (1 samples, 0.01%)</title><rect x="76.9331%" y="949" width="0.0119%" height="15" fill="rgb(215,154,42)" fg:x="6477" fg:w="1"/><text x="77.1831%" y="959.50"></text></g><g><title>&lt;tokio_util::codec::length_delimited::LengthDelimitedCodec as tokio_util::codec::decoder::Decoder&gt;::decode (14 samples, 0.17%)</title><rect x="76.7906%" y="1349" width="0.1663%" height="15" fill="rgb(220,215,30)" fg:x="6465" fg:w="14"/><text x="77.0406%" y="1359.50"></text></g><g><title>tokio_util::codec::length_delimited::LengthDelimitedCodec::decode_head (10 samples, 0.12%)</title><rect x="76.8381%" y="1333" width="0.1188%" height="15" fill="rgb(228,81,51)" fg:x="6469" fg:w="10"/><text x="77.0881%" y="1343.50"></text></g><g><title>bytes::bytes_mut::BytesMut::reserve (8 samples, 0.10%)</title><rect x="76.8619%" y="1317" width="0.0950%" height="15" fill="rgb(247,71,54)" fg:x="6471" fg:w="8"/><text x="77.1119%" y="1327.50"></text></g><g><title>bytes::bytes_mut::BytesMut::reserve_inner (8 samples, 0.10%)</title><rect x="76.8619%" y="1301" width="0.0950%" height="15" fill="rgb(234,176,34)" fg:x="6471" fg:w="8"/><text x="77.1119%" y="1311.50"></text></g><g><title>bytes::bytes_mut::rebuild_vec (1 samples, 0.01%)</title><rect x="76.9450%" y="1285" width="0.0119%" height="15" fill="rgb(241,103,54)" fg:x="6478" fg:w="1"/><text x="77.1950%" y="1295.50"></text></g><g><title>&lt;core::pin::Pin&lt;Ptr&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="76.9688%" y="1221" width="0.0119%" height="15" fill="rgb(228,22,34)" fg:x="6480" fg:w="1"/><text x="77.2188%" y="1231.50"></text></g><g><title>&lt;alloc::collections::vec_deque::VecDeque&lt;T,A&gt; as core::ops::index::Index&lt;usize&gt;&gt;::index (1 samples, 0.01%)</title><rect x="76.9806%" y="1173" width="0.0119%" height="15" fill="rgb(241,179,48)" fg:x="6481" fg:w="1"/><text x="77.2306%" y="1183.50"></text></g><g><title>alloc::collections::vec_deque::VecDeque&lt;T,A&gt;::get (1 samples, 0.01%)</title><rect x="76.9806%" y="1157" width="0.0119%" height="15" fill="rgb(235,167,37)" fg:x="6481" fg:w="1"/><text x="77.2306%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.01%)</title><rect x="76.9925%" y="1173" width="0.0119%" height="15" fill="rgb(213,109,30)" fg:x="6482" fg:w="1"/><text x="77.2425%" y="1183.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="76.9925%" y="1157" width="0.0119%" height="15" fill="rgb(222,172,16)" fg:x="6482" fg:w="1"/><text x="77.2425%" y="1167.50"></text></g><g><title>rustls::vecbuf::ChunkVecBuffer::consume (3 samples, 0.04%)</title><rect x="77.0044%" y="1173" width="0.0356%" height="15" fill="rgb(233,192,5)" fg:x="6483" fg:w="3"/><text x="77.2544%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;alloc::vec::Vec&lt;u8&gt;&gt;&gt; (3 samples, 0.04%)</title><rect x="77.0044%" y="1157" width="0.0356%" height="15" fill="rgb(247,189,41)" fg:x="6483" fg:w="3"/><text x="77.2544%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (2 samples, 0.02%)</title><rect x="77.0163%" y="1141" width="0.0238%" height="15" fill="rgb(218,134,47)" fg:x="6484" fg:w="2"/><text x="77.2663%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (2 samples, 0.02%)</title><rect x="77.0163%" y="1125" width="0.0238%" height="15" fill="rgb(216,29,3)" fg:x="6484" fg:w="2"/><text x="77.2663%" y="1135.50"></text></g><g><title>__rustc::__rust_dealloc (2 samples, 0.02%)</title><rect x="77.0163%" y="1109" width="0.0238%" height="15" fill="rgb(246,140,12)" fg:x="6484" fg:w="2"/><text x="77.2663%" y="1119.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (2 samples, 0.02%)</title><rect x="77.0163%" y="1093" width="0.0238%" height="15" fill="rgb(230,136,11)" fg:x="6484" fg:w="2"/><text x="77.2663%" y="1103.50"></text></g><g><title>_rjem_sdallocx (2 samples, 0.02%)</title><rect x="77.0163%" y="1077" width="0.0238%" height="15" fill="rgb(247,22,47)" fg:x="6484" fg:w="2"/><text x="77.2663%" y="1087.50"></text></g><g><title>_rjem_je_sdallocx_default (2 samples, 0.02%)</title><rect x="77.0163%" y="1061" width="0.0238%" height="15" fill="rgb(218,84,22)" fg:x="6484" fg:w="2"/><text x="77.2663%" y="1071.50"></text></g><g><title>_rjem_je_te_event_trigger (1 samples, 0.01%)</title><rect x="77.0282%" y="1045" width="0.0119%" height="15" fill="rgb(216,87,39)" fg:x="6485" fg:w="1"/><text x="77.2782%" y="1055.50"></text></g><g><title>_rjem_je_tcache_gc_dalloc_event_handler (1 samples, 0.01%)</title><rect x="77.0282%" y="1029" width="0.0119%" height="15" fill="rgb(221,178,8)" fg:x="6485" fg:w="1"/><text x="77.2782%" y="1039.50"></text></g><g><title>tcache_event (1 samples, 0.01%)</title><rect x="77.0282%" y="1013" width="0.0119%" height="15" fill="rgb(230,42,11)" fg:x="6485" fg:w="1"/><text x="77.2782%" y="1023.50"></text></g><g><title>tcache_gc_small (1 samples, 0.01%)</title><rect x="77.0282%" y="997" width="0.0119%" height="15" fill="rgb(237,229,4)" fg:x="6485" fg:w="1"/><text x="77.2782%" y="1007.50"></text></g><g><title>_rjem_je_tcache_bin_flush_small (1 samples, 0.01%)</title><rect x="77.0282%" y="981" width="0.0119%" height="15" fill="rgb(222,31,33)" fg:x="6485" fg:w="1"/><text x="77.2782%" y="991.50"></text></g><g><title>tcache_bin_flush_edatas_lookup (1 samples, 0.01%)</title><rect x="77.0282%" y="965" width="0.0119%" height="15" fill="rgb(210,17,39)" fg:x="6485" fg:w="1"/><text x="77.2782%" y="975.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::copy_from_slice (1 samples, 0.01%)</title><rect x="77.0400%" y="1157" width="0.0119%" height="15" fill="rgb(244,93,20)" fg:x="6486" fg:w="1"/><text x="77.2900%" y="1167.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="77.0400%" y="1141" width="0.0119%" height="15" fill="rgb(210,40,47)" fg:x="6486" fg:w="1"/><text x="77.2900%" y="1151.50"></text></g><g><title>&lt;rustls::conn::connection::Reader as std::io::Read&gt;::read (7 samples, 0.08%)</title><rect x="76.9806%" y="1205" width="0.0831%" height="15" fill="rgb(239,211,47)" fg:x="6481" fg:w="7"/><text x="77.2306%" y="1215.50"></text></g><g><title>rustls::vecbuf::ChunkVecBuffer::read (7 samples, 0.08%)</title><rect x="76.9806%" y="1189" width="0.0831%" height="15" fill="rgb(251,223,49)" fg:x="6481" fg:w="7"/><text x="77.2306%" y="1199.50"></text></g><g><title>std::io::impls::_&lt;impl std::io::Read for &amp;[u8]&gt;::read (2 samples, 0.02%)</title><rect x="77.0400%" y="1173" width="0.0238%" height="15" fill="rgb(221,149,5)" fg:x="6486" fg:w="2"/><text x="77.2900%" y="1183.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_unchecked (1 samples, 0.01%)</title><rect x="77.0519%" y="1157" width="0.0119%" height="15" fill="rgb(219,224,51)" fg:x="6487" fg:w="1"/><text x="77.3019%" y="1167.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="77.0519%" y="1141" width="0.0119%" height="15" fill="rgb(223,7,8)" fg:x="6487" fg:w="1"/><text x="77.3019%" y="1151.50"></text></g><g><title>&lt;rustls::enums::ContentType as rustls::msgs::codec::Codec&gt;::read (1 samples, 0.01%)</title><rect x="77.0638%" y="1093" width="0.0119%" height="15" fill="rgb(241,217,22)" fg:x="6488" fg:w="1"/><text x="77.3138%" y="1103.50"></text></g><g><title>&lt;u8 as rustls::msgs::codec::Codec&gt;::read (1 samples, 0.01%)</title><rect x="77.0638%" y="1077" width="0.0119%" height="15" fill="rgb(248,209,0)" fg:x="6488" fg:w="1"/><text x="77.3138%" y="1087.50"></text></g><g><title>rustls::msgs::codec::Reader::take (1 samples, 0.01%)</title><rect x="77.0638%" y="1061" width="0.0119%" height="15" fill="rgb(217,205,4)" fg:x="6488" fg:w="1"/><text x="77.3138%" y="1071.50"></text></g><g><title>rustls::msgs::codec::Reader::left (1 samples, 0.01%)</title><rect x="77.0638%" y="1045" width="0.0119%" height="15" fill="rgb(228,124,39)" fg:x="6488" fg:w="1"/><text x="77.3138%" y="1055.50"></text></g><g><title>&lt;rustls::msgs::deframer::DeframerIter as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.04%)</title><rect x="77.0638%" y="1125" width="0.0356%" height="15" fill="rgb(250,116,42)" fg:x="6488" fg:w="3"/><text x="77.3138%" y="1135.50"></text></g><g><title>rustls::msgs::message::outbound::read_opaque_message_header (3 samples, 0.04%)</title><rect x="77.0638%" y="1109" width="0.0356%" height="15" fill="rgb(223,202,9)" fg:x="6488" fg:w="3"/><text x="77.3138%" y="1119.50"></text></g><g><title>&lt;rustls::enums::ProtocolVersion as rustls::msgs::codec::Codec&gt;::read (2 samples, 0.02%)</title><rect x="77.0757%" y="1093" width="0.0238%" height="15" fill="rgb(242,222,40)" fg:x="6489" fg:w="2"/><text x="77.3257%" y="1103.50"></text></g><g><title>&lt;u16 as rustls::msgs::codec::Codec&gt;::read (2 samples, 0.02%)</title><rect x="77.0757%" y="1077" width="0.0238%" height="15" fill="rgb(229,99,46)" fg:x="6489" fg:w="2"/><text x="77.3257%" y="1087.50"></text></g><g><title>rustls::msgs::codec::Reader::take (1 samples, 0.01%)</title><rect x="77.0875%" y="1061" width="0.0119%" height="15" fill="rgb(225,56,46)" fg:x="6490" fg:w="1"/><text x="77.3375%" y="1071.50"></text></g><g><title>rustls::msgs::codec::Reader::left (1 samples, 0.01%)</title><rect x="77.0875%" y="1045" width="0.0119%" height="15" fill="rgb(227,94,5)" fg:x="6490" fg:w="1"/><text x="77.3375%" y="1055.50"></text></g><g><title>ring::aead::Aad&lt;A&gt;::from (1 samples, 0.01%)</title><rect x="77.0994%" y="1093" width="0.0119%" height="15" fill="rgb(205,112,38)" fg:x="6491" fg:w="1"/><text x="77.3494%" y="1103.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_mut (1 samples, 0.01%)</title><rect x="77.1113%" y="1061" width="0.0119%" height="15" fill="rgb(231,133,46)" fg:x="6492" fg:w="1"/><text x="77.3613%" y="1071.50"></text></g><g><title>ring::aead::aes::_&lt;impl ring::aead::aes::ffi::Counter&gt;::one (1 samples, 0.01%)</title><rect x="77.1232%" y="997" width="0.0119%" height="15" fill="rgb(217,16,9)" fg:x="6493" fg:w="1"/><text x="77.3732%" y="1007.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::copy_from_slice (1 samples, 0.01%)</title><rect x="77.1232%" y="981" width="0.0119%" height="15" fill="rgb(249,173,9)" fg:x="6493" fg:w="1"/><text x="77.3732%" y="991.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping::precondition_check (1 samples, 0.01%)</title><rect x="77.1232%" y="965" width="0.0119%" height="15" fill="rgb(205,163,53)" fg:x="6493" fg:w="1"/><text x="77.3732%" y="975.50"></text></g><g><title>core::ops::function::FnOnce::call_once (13 samples, 0.15%)</title><rect x="77.1351%" y="981" width="0.1544%" height="15" fill="rgb(217,54,41)" fg:x="6494" fg:w="13"/><text x="77.3851%" y="991.50"></text></g><g><title>ring::aead::aes_gcm::aarch64::open_whole (13 samples, 0.15%)</title><rect x="77.1351%" y="965" width="0.1544%" height="15" fill="rgb(228,216,12)" fg:x="6494" fg:w="13"/><text x="77.3851%" y="975.50"></text></g><g><title>ring::aead::overlapping::base::Overlapping&lt;T&gt;::with_input_output_len (13 samples, 0.15%)</title><rect x="77.1351%" y="949" width="0.1544%" height="15" fill="rgb(244,228,15)" fg:x="6494" fg:w="13"/><text x="77.3851%" y="959.50"></text></g><g><title>ring::aead::aes_gcm::aarch64::open_whole::_{{closure}} (13 samples, 0.15%)</title><rect x="77.1351%" y="933" width="0.1544%" height="15" fill="rgb(221,176,53)" fg:x="6494" fg:w="13"/><text x="77.3851%" y="943.50"></text></g><g><title>ring_core_0_17_14__aes_gcm_dec_kernel (13 samples, 0.15%)</title><rect x="77.1351%" y="917" width="0.1544%" height="15" fill="rgb(205,94,34)" fg:x="6494" fg:w="13"/><text x="77.3851%" y="927.50"></text></g><g><title>ring::aead::aes_gcm::open_finish (1 samples, 0.01%)</title><rect x="77.2895%" y="981" width="0.0119%" height="15" fill="rgb(213,110,48)" fg:x="6507" fg:w="1"/><text x="77.5395%" y="991.50"></text></g><g><title>ring::polyfill::sliceutil::overwrite_at_start (1 samples, 0.01%)</title><rect x="77.2895%" y="965" width="0.0119%" height="15" fill="rgb(236,142,28)" fg:x="6507" fg:w="1"/><text x="77.5395%" y="975.50"></text></g><g><title>core::iter::traits::iterator::Iterator::zip (1 samples, 0.01%)</title><rect x="77.2895%" y="949" width="0.0119%" height="15" fill="rgb(225,135,29)" fg:x="6507" fg:w="1"/><text x="77.5395%" y="959.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::new (1 samples, 0.01%)</title><rect x="77.2895%" y="933" width="0.0119%" height="15" fill="rgb(252,45,31)" fg:x="6507" fg:w="1"/><text x="77.5395%" y="943.50"></text></g><g><title>core::iter::adapters::zip::TrustedRandomAccessNoCoerce::size (1 samples, 0.01%)</title><rect x="77.2895%" y="917" width="0.0119%" height="15" fill="rgb(211,187,50)" fg:x="6507" fg:w="1"/><text x="77.5395%" y="927.50"></text></g><g><title>&lt;core::slice::iter::IterMut&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (1 samples, 0.01%)</title><rect x="77.2895%" y="901" width="0.0119%" height="15" fill="rgb(229,109,7)" fg:x="6507" fg:w="1"/><text x="77.5395%" y="911.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::offset_from_unsigned (1 samples, 0.01%)</title><rect x="77.2895%" y="885" width="0.0119%" height="15" fill="rgb(251,131,51)" fg:x="6507" fg:w="1"/><text x="77.5395%" y="895.50"></text></g><g><title>core::ptr::const_ptr::_&lt;impl *const T&gt;::offset_from_unsigned::precondition_check (1 samples, 0.01%)</title><rect x="77.2895%" y="869" width="0.0119%" height="15" fill="rgb(251,180,35)" fg:x="6507" fg:w="1"/><text x="77.5395%" y="879.50"></text></g><g><title>ring::aead::overlapping::base::Overlapping&lt;T&gt;::new (1 samples, 0.01%)</title><rect x="77.3013%" y="981" width="0.0119%" height="15" fill="rgb(211,46,32)" fg:x="6508" fg:w="1"/><text x="77.5513%" y="991.50"></text></g><g><title>ring::aead::less_safe_key::LessSafeKey::open_in_place (18 samples, 0.21%)</title><rect x="77.1113%" y="1093" width="0.2138%" height="15" fill="rgb(248,123,17)" fg:x="6492" fg:w="18"/><text x="77.3613%" y="1103.50"></text></g><g><title>ring::aead::less_safe_key::LessSafeKey::open_within (18 samples, 0.21%)</title><rect x="77.1113%" y="1077" width="0.2138%" height="15" fill="rgb(227,141,18)" fg:x="6492" fg:w="18"/><text x="77.3613%" y="1087.50"></text></g><g><title>ring::aead::less_safe_key::LessSafeKey::open_in_place_separate_tag (17 samples, 0.20%)</title><rect x="77.1232%" y="1061" width="0.2019%" height="15" fill="rgb(216,102,9)" fg:x="6493" fg:w="17"/><text x="77.3732%" y="1071.50"></text></g><g><title>ring::aead::algorithm::Algorithm::open_within (17 samples, 0.20%)</title><rect x="77.1232%" y="1045" width="0.2019%" height="15" fill="rgb(253,47,13)" fg:x="6493" fg:w="17"/><text x="77.3732%" y="1055.50"></text></g><g><title>ring::aead::algorithm::aes_gcm_open (17 samples, 0.20%)</title><rect x="77.1232%" y="1029" width="0.2019%" height="15" fill="rgb(226,93,23)" fg:x="6493" fg:w="17"/><text x="77.3732%" y="1039.50"></text></g><g><title>ring::aead::aes_gcm::open (17 samples, 0.20%)</title><rect x="77.1232%" y="1013" width="0.2019%" height="15" fill="rgb(247,104,17)" fg:x="6493" fg:w="17"/><text x="77.3732%" y="1023.50"></text></g><g><title>ring::aead::aes_gcm::open_whole_partial (16 samples, 0.19%)</title><rect x="77.1351%" y="997" width="0.1900%" height="15" fill="rgb(233,203,26)" fg:x="6494" fg:w="16"/><text x="77.3851%" y="1007.50"></text></g><g><title>ring::polyfill::sliceutil::overwrite_at_start (1 samples, 0.01%)</title><rect x="77.3132%" y="981" width="0.0119%" height="15" fill="rgb(244,98,49)" fg:x="6509" fg:w="1"/><text x="77.5632%" y="991.50"></text></g><g><title>core::iter::traits::iterator::Iterator::zip (1 samples, 0.01%)</title><rect x="77.3132%" y="965" width="0.0119%" height="15" fill="rgb(235,134,22)" fg:x="6509" fg:w="1"/><text x="77.5632%" y="975.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::new (1 samples, 0.01%)</title><rect x="77.3132%" y="949" width="0.0119%" height="15" fill="rgb(221,70,32)" fg:x="6509" fg:w="1"/><text x="77.5632%" y="959.50"></text></g><g><title>core::iter::adapters::zip::TrustedRandomAccessNoCoerce::size (1 samples, 0.01%)</title><rect x="77.3132%" y="933" width="0.0119%" height="15" fill="rgb(238,15,50)" fg:x="6509" fg:w="1"/><text x="77.5632%" y="943.50"></text></g><g><title>&lt;core::slice::iter::IterMut&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (1 samples, 0.01%)</title><rect x="77.3132%" y="917" width="0.0119%" height="15" fill="rgb(215,221,48)" fg:x="6509" fg:w="1"/><text x="77.5632%" y="927.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::offset_from_unsigned (1 samples, 0.01%)</title><rect x="77.3132%" y="901" width="0.0119%" height="15" fill="rgb(236,73,3)" fg:x="6509" fg:w="1"/><text x="77.5632%" y="911.50"></text></g><g><title>core::array::_&lt;impl core::ops::index::IndexMut&lt;I&gt; for [T (1 samples, 0.01%)</title><rect x="77.3251%" y="1077" width="0.0119%" height="15" fill="rgb(250,107,11)" fg:x="6510" fg:w="1"/><text x="77.5751%" y="1087.50"></text></g><g><title> N]&gt;::index_mut (1 samples, 0.01%)</title><rect x="77.3251%" y="1061" width="0.0119%" height="15" fill="rgb(242,39,14)" fg:x="6510" fg:w="1"/><text x="77.5751%" y="1071.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (1 samples, 0.01%)</title><rect x="77.3251%" y="1045" width="0.0119%" height="15" fill="rgb(248,164,37)" fg:x="6510" fg:w="1"/><text x="77.5751%" y="1055.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.01%)</title><rect x="77.3370%" y="1077" width="0.0119%" height="15" fill="rgb(217,60,12)" fg:x="6511" fg:w="1"/><text x="77.5870%" y="1087.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.01%)</title><rect x="77.3370%" y="1061" width="0.0119%" height="15" fill="rgb(240,125,29)" fg:x="6511" fg:w="1"/><text x="77.5870%" y="1071.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::fold (1 samples, 0.01%)</title><rect x="77.3370%" y="1045" width="0.0119%" height="15" fill="rgb(208,207,28)" fg:x="6511" fg:w="1"/><text x="77.5870%" y="1055.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::_{{closure}} (1 samples, 0.01%)</title><rect x="77.3370%" y="1029" width="0.0119%" height="15" fill="rgb(209,159,27)" fg:x="6511" fg:w="1"/><text x="77.5870%" y="1039.50"></text></g><g><title>rustls::crypto::cipher::Nonce::new (3 samples, 0.04%)</title><rect x="77.3251%" y="1093" width="0.0356%" height="15" fill="rgb(251,176,53)" fg:x="6510" fg:w="3"/><text x="77.5751%" y="1103.50"></text></g><g><title>rustls::msgs::codec::put_u64 (1 samples, 0.01%)</title><rect x="77.3489%" y="1077" width="0.0119%" height="15" fill="rgb(211,85,7)" fg:x="6512" fg:w="1"/><text x="77.5989%" y="1087.50"></text></g><g><title>&lt;core::ops::range::RangeTo&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (1 samples, 0.01%)</title><rect x="77.3489%" y="1061" width="0.0119%" height="15" fill="rgb(216,64,54)" fg:x="6512" fg:w="1"/><text x="77.5989%" y="1071.50"></text></g><g><title>&lt;rustls::enums::ContentType as core::cmp::PartialEq&gt;::eq (1 samples, 0.01%)</title><rect x="77.3607%" y="1077" width="0.0119%" height="15" fill="rgb(217,54,24)" fg:x="6513" fg:w="1"/><text x="77.6107%" y="1087.50"></text></g><g><title>rustls::conn::ConnectionCore&lt;Data&gt;::process_more_input (27 samples, 0.32%)</title><rect x="77.0638%" y="1141" width="0.3207%" height="15" fill="rgb(208,206,53)" fg:x="6488" fg:w="27"/><text x="77.3138%" y="1151.50"></text></g><g><title>rustls::record_layer::RecordLayer::decrypt_incoming (24 samples, 0.29%)</title><rect x="77.0994%" y="1125" width="0.2851%" height="15" fill="rgb(251,74,39)" fg:x="6491" fg:w="24"/><text x="77.3494%" y="1135.50"></text></g><g><title>&lt;rustls::crypto::ring::tls13::Tls13MessageDecrypter as rustls::crypto::cipher::MessageDecrypter&gt;::decrypt (24 samples, 0.29%)</title><rect x="77.0994%" y="1109" width="0.2851%" height="15" fill="rgb(226,47,5)" fg:x="6491" fg:w="24"/><text x="77.3494%" y="1119.50"></text></g><g><title>rustls::msgs::message::inbound::InboundOpaqueMessage::into_tls13_unpadded_message (2 samples, 0.02%)</title><rect x="77.3607%" y="1093" width="0.0238%" height="15" fill="rgb(234,111,33)" fg:x="6513" fg:w="2"/><text x="77.6107%" y="1103.50"></text></g><g><title>rustls::msgs::message::inbound::unpad_tls13_payload (1 samples, 0.01%)</title><rect x="77.3726%" y="1077" width="0.0119%" height="15" fill="rgb(251,14,10)" fg:x="6514" fg:w="1"/><text x="77.6226%" y="1087.50"></text></g><g><title>rustls::msgs::message::inbound::BorrowedPayload::pop (1 samples, 0.01%)</title><rect x="77.3726%" y="1061" width="0.0119%" height="15" fill="rgb(232,43,0)" fg:x="6514" fg:w="1"/><text x="77.6226%" y="1071.50"></text></g><g><title>rustls::msgs::message::inbound::BorrowedPayload::truncate (1 samples, 0.01%)</title><rect x="77.3726%" y="1045" width="0.0119%" height="15" fill="rgb(222,68,43)" fg:x="6514" fg:w="1"/><text x="77.6226%" y="1055.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_mut (1 samples, 0.01%)</title><rect x="77.3726%" y="1029" width="0.0119%" height="15" fill="rgb(217,24,23)" fg:x="6514" fg:w="1"/><text x="77.6226%" y="1039.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::split_at_mut_unchecked (1 samples, 0.01%)</title><rect x="77.3726%" y="1013" width="0.0119%" height="15" fill="rgb(229,209,14)" fg:x="6514" fg:w="1"/><text x="77.6226%" y="1023.50"></text></g><g><title>rustls::conn::ConnectionCore&lt;Data&gt;::deframe (28 samples, 0.33%)</title><rect x="77.0638%" y="1157" width="0.3326%" height="15" fill="rgb(250,149,48)" fg:x="6488" fg:w="28"/><text x="77.3138%" y="1167.50"></text></g><g><title>rustls::msgs::deframer::handshake::HandshakeDeframer::has_message_ready (1 samples, 0.01%)</title><rect x="77.3845%" y="1141" width="0.0119%" height="15" fill="rgb(210,120,37)" fg:x="6515" fg:w="1"/><text x="77.6345%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.01%)</title><rect x="77.3845%" y="1125" width="0.0119%" height="15" fill="rgb(210,21,8)" fg:x="6515" fg:w="1"/><text x="77.6345%" y="1135.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_slice (1 samples, 0.01%)</title><rect x="77.3845%" y="1109" width="0.0119%" height="15" fill="rgb(243,145,7)" fg:x="6515" fg:w="1"/><text x="77.6345%" y="1119.50"></text></g><g><title>core::slice::raw::from_raw_parts::precondition_check (1 samples, 0.01%)</title><rect x="77.3845%" y="1093" width="0.0119%" height="15" fill="rgb(238,178,32)" fg:x="6515" fg:w="1"/><text x="77.6345%" y="1103.50"></text></g><g><title>&lt;rustls::msgs::message::Message as core::convert::TryFrom&lt;rustls::msgs::message::inbound::InboundPlainMessage&gt;&gt;::try_from (1 samples, 0.01%)</title><rect x="77.3964%" y="1141" width="0.0119%" height="15" fill="rgb(222,4,10)" fg:x="6516" fg:w="1"/><text x="77.6464%" y="1151.50"></text></g><g><title>rustls::msgs::message::MessagePayload::new (1 samples, 0.01%)</title><rect x="77.3964%" y="1125" width="0.0119%" height="15" fill="rgb(239,7,37)" fg:x="6516" fg:w="1"/><text x="77.6464%" y="1135.50"></text></g><g><title>_platform_memmove (3 samples, 0.04%)</title><rect x="77.4320%" y="1045" width="0.0356%" height="15" fill="rgb(215,31,37)" fg:x="6519" fg:w="3"/><text x="77.6820%" y="1055.50"></text></g><g><title>_rjem_je_tcache_alloc_small_hard (1 samples, 0.01%)</title><rect x="77.4676%" y="949" width="0.0119%" height="15" fill="rgb(224,83,33)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="959.50"></text></g><g><title>_rjem_je_arena_cache_bin_fill_small (1 samples, 0.01%)</title><rect x="77.4676%" y="933" width="0.0119%" height="15" fill="rgb(239,55,3)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="943.50"></text></g><g><title>arena_slab_alloc (1 samples, 0.01%)</title><rect x="77.4676%" y="917" width="0.0119%" height="15" fill="rgb(247,92,11)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="927.50"></text></g><g><title>_rjem_je_pa_alloc (1 samples, 0.01%)</title><rect x="77.4676%" y="901" width="0.0119%" height="15" fill="rgb(239,200,7)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="911.50"></text></g><g><title>pai_alloc (1 samples, 0.01%)</title><rect x="77.4676%" y="885" width="0.0119%" height="15" fill="rgb(227,115,8)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="895.50"></text></g><g><title>pac_alloc_impl (1 samples, 0.01%)</title><rect x="77.4676%" y="869" width="0.0119%" height="15" fill="rgb(215,189,27)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="879.50"></text></g><g><title>pac_alloc_real (1 samples, 0.01%)</title><rect x="77.4676%" y="853" width="0.0119%" height="15" fill="rgb(251,216,39)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="863.50"></text></g><g><title>_rjem_je_ecache_alloc (1 samples, 0.01%)</title><rect x="77.4676%" y="837" width="0.0119%" height="15" fill="rgb(207,29,47)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="847.50"></text></g><g><title>extent_recycle (1 samples, 0.01%)</title><rect x="77.4676%" y="821" width="0.0119%" height="15" fill="rgb(210,71,34)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="831.50"></text></g><g><title>extent_recycle_extract (1 samples, 0.01%)</title><rect x="77.4676%" y="805" width="0.0119%" height="15" fill="rgb(253,217,51)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="815.50"></text></g><g><title>_rjem_je_eset_fit (1 samples, 0.01%)</title><rect x="77.4676%" y="789" width="0.0119%" height="15" fill="rgb(222,117,46)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="799.50"></text></g><g><title>eset_first_fit (1 samples, 0.01%)</title><rect x="77.4676%" y="773" width="0.0119%" height="15" fill="rgb(226,132,6)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="783.50"></text></g><g><title>fb_ffs (1 samples, 0.01%)</title><rect x="77.4676%" y="757" width="0.0119%" height="15" fill="rgb(254,145,51)" fg:x="6522" fg:w="1"/><text x="77.7176%" y="767.50"></text></g><g><title>rustls::conn::ConnectionCommon&lt;Data&gt;::process_new_packets (36 samples, 0.43%)</title><rect x="77.0638%" y="1189" width="0.4276%" height="15" fill="rgb(231,199,27)" fg:x="6488" fg:w="36"/><text x="77.3138%" y="1199.50"></text></g><g><title>rustls::conn::ConnectionCore&lt;Data&gt;::process_new_packets (36 samples, 0.43%)</title><rect x="77.0638%" y="1173" width="0.4276%" height="15" fill="rgb(245,158,14)" fg:x="6488" fg:w="36"/><text x="77.3138%" y="1183.50"></text></g><g><title>rustls::conn::ConnectionCore&lt;Data&gt;::process_msg (8 samples, 0.10%)</title><rect x="77.3964%" y="1157" width="0.0950%" height="15" fill="rgb(240,113,14)" fg:x="6516" fg:w="8"/><text x="77.6464%" y="1167.50"></text></g><g><title>rustls::common_state::CommonState::process_main_protocol (7 samples, 0.08%)</title><rect x="77.4082%" y="1141" width="0.0831%" height="15" fill="rgb(210,20,13)" fg:x="6517" fg:w="7"/><text x="77.6582%" y="1151.50"></text></g><g><title>&lt;rustls::client::tls13::ExpectTraffic as rustls::common_state::State&lt;rustls::client::client_conn::ClientConnectionData&gt;&gt;::handle (7 samples, 0.08%)</title><rect x="77.4082%" y="1125" width="0.0831%" height="15" fill="rgb(241,144,13)" fg:x="6517" fg:w="7"/><text x="77.6582%" y="1135.50"></text></g><g><title>rustls::common_state::CommonState::take_received_plaintext (7 samples, 0.08%)</title><rect x="77.4082%" y="1109" width="0.0831%" height="15" fill="rgb(235,43,34)" fg:x="6517" fg:w="7"/><text x="77.6582%" y="1119.50"></text></g><g><title>rustls::msgs::base::Payload::into_vec (7 samples, 0.08%)</title><rect x="77.4082%" y="1093" width="0.0831%" height="15" fill="rgb(208,36,20)" fg:x="6517" fg:w="7"/><text x="77.6582%" y="1103.50"></text></g><g><title>alloc::slice::_&lt;impl [T]&gt;::to_vec (7 samples, 0.08%)</title><rect x="77.4082%" y="1077" width="0.0831%" height="15" fill="rgb(239,204,10)" fg:x="6517" fg:w="7"/><text x="77.6582%" y="1087.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (7 samples, 0.08%)</title><rect x="77.4082%" y="1061" width="0.0831%" height="15" fill="rgb(217,84,43)" fg:x="6517" fg:w="7"/><text x="77.6582%" y="1071.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (2 samples, 0.02%)</title><rect x="77.4676%" y="1045" width="0.0238%" height="15" fill="rgb(241,170,50)" fg:x="6522" fg:w="2"/><text x="77.7176%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (2 samples, 0.02%)</title><rect x="77.4676%" y="1029" width="0.0238%" height="15" fill="rgb(226,205,29)" fg:x="6522" fg:w="2"/><text x="77.7176%" y="1039.50"></text></g><g><title>__rustc::__rust_alloc (2 samples, 0.02%)</title><rect x="77.4676%" y="1013" width="0.0238%" height="15" fill="rgb(233,113,1)" fg:x="6522" fg:w="2"/><text x="77.7176%" y="1023.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::alloc (2 samples, 0.02%)</title><rect x="77.4676%" y="997" width="0.0238%" height="15" fill="rgb(253,98,13)" fg:x="6522" fg:w="2"/><text x="77.7176%" y="1007.50"></text></g><g><title>_rjem_malloc (2 samples, 0.02%)</title><rect x="77.4676%" y="981" width="0.0238%" height="15" fill="rgb(211,115,12)" fg:x="6522" fg:w="2"/><text x="77.7176%" y="991.50"></text></g><g><title>_rjem_je_malloc_default (2 samples, 0.02%)</title><rect x="77.4676%" y="965" width="0.0238%" height="15" fill="rgb(208,12,16)" fg:x="6522" fg:w="2"/><text x="77.7176%" y="975.50"></text></g><g><title>_rjem_je_te_event_trigger (1 samples, 0.01%)</title><rect x="77.4795%" y="949" width="0.0119%" height="15" fill="rgb(237,193,54)" fg:x="6523" fg:w="1"/><text x="77.7295%" y="959.50"></text></g><g><title>te_adjust_thresholds_helper (1 samples, 0.01%)</title><rect x="77.4795%" y="933" width="0.0119%" height="15" fill="rgb(243,22,42)" fg:x="6523" fg:w="1"/><text x="77.7295%" y="943.50"></text></g><g><title>_rjem_je_te_recompute_fast_threshold (1 samples, 0.01%)</title><rect x="77.4795%" y="917" width="0.0119%" height="15" fill="rgb(233,151,36)" fg:x="6523" fg:w="1"/><text x="77.7295%" y="927.50"></text></g><g><title>te_ctx_next_event_fast_update (1 samples, 0.01%)</title><rect x="77.4795%" y="901" width="0.0119%" height="15" fill="rgb(237,57,45)" fg:x="6523" fg:w="1"/><text x="77.7295%" y="911.50"></text></g><g><title>&lt;core::pin::Pin&lt;Ptr&gt; as core::ops::deref::DerefMut&gt;::deref_mut (1 samples, 0.01%)</title><rect x="77.4914%" y="1125" width="0.0119%" height="15" fill="rgb(221,88,17)" fg:x="6524" fg:w="1"/><text x="77.7414%" y="1135.50"></text></g><g><title>&lt;&amp;mut T as core::ops::deref::DerefMut&gt;::deref_mut (1 samples, 0.01%)</title><rect x="77.4914%" y="1109" width="0.0119%" height="15" fill="rgb(230,79,15)" fg:x="6524" fg:w="1"/><text x="77.7414%" y="1119.50"></text></g><g><title>&lt;&amp;std::net::tcp::TcpStream as std::io::Read&gt;::read (49 samples, 0.58%)</title><rect x="77.5033%" y="981" width="0.5820%" height="15" fill="rgb(213,57,13)" fg:x="6525" fg:w="49"/><text x="77.7533%" y="991.50"></text></g><g><title>__recvfrom (49 samples, 0.58%)</title><rect x="77.5033%" y="965" width="0.5820%" height="15" fill="rgb(222,116,39)" fg:x="6525" fg:w="49"/><text x="77.7533%" y="975.50"></text></g><g><title>&lt;&amp;mio::net::tcp::stream::TcpStream as std::io::Read&gt;::read (50 samples, 0.59%)</title><rect x="77.5033%" y="1045" width="0.5939%" height="15" fill="rgb(245,107,2)" fg:x="6525" fg:w="50"/><text x="77.7533%" y="1055.50"></text></g><g><title>mio::io_source::IoSource&lt;T&gt;::do_io (50 samples, 0.59%)</title><rect x="77.5033%" y="1029" width="0.5939%" height="15" fill="rgb(238,1,10)" fg:x="6525" fg:w="50"/><text x="77.7533%" y="1039.50"></text></g><g><title>mio::sys::unix::selector::stateless_io_source::IoSourceState::do_io (50 samples, 0.59%)</title><rect x="77.5033%" y="1013" width="0.5939%" height="15" fill="rgb(249,4,48)" fg:x="6525" fg:w="50"/><text x="77.7533%" y="1023.50"></text></g><g><title>&lt;&amp;mio::net::tcp::stream::TcpStream as std::io::Read&gt;::read::_{{closure}} (50 samples, 0.59%)</title><rect x="77.5033%" y="997" width="0.5939%" height="15" fill="rgb(223,151,18)" fg:x="6525" fg:w="50"/><text x="77.7533%" y="1007.50"></text></g><g><title>__recvfrom (1 samples, 0.01%)</title><rect x="78.0853%" y="981" width="0.0119%" height="15" fill="rgb(227,65,43)" fg:x="6574" fg:w="1"/><text x="78.3353%" y="991.50"></text></g><g><title>tokio::runtime::io::scheduled_io::ScheduledIo::clear_readiness::_{{closure}} (1 samples, 0.01%)</title><rect x="78.1090%" y="965" width="0.0119%" height="15" fill="rgb(218,40,45)" fg:x="6576" fg:w="1"/><text x="78.3590%" y="975.50"></text></g><g><title>tokio::runtime::io::registration::Registration::clear_readiness (3 samples, 0.04%)</title><rect x="78.0972%" y="1045" width="0.0356%" height="15" fill="rgb(252,121,31)" fg:x="6575" fg:w="3"/><text x="78.3472%" y="1055.50"></text></g><g><title>tokio::runtime::io::scheduled_io::ScheduledIo::clear_readiness (3 samples, 0.04%)</title><rect x="78.0972%" y="1029" width="0.0356%" height="15" fill="rgb(219,158,43)" fg:x="6575" fg:w="3"/><text x="78.3472%" y="1039.50"></text></g><g><title>tokio::runtime::io::scheduled_io::ScheduledIo::set_readiness (2 samples, 0.02%)</title><rect x="78.1090%" y="1013" width="0.0238%" height="15" fill="rgb(231,162,42)" fg:x="6576" fg:w="2"/><text x="78.3590%" y="1023.50"></text></g><g><title>core::sync::atomic::AtomicUsize::fetch_update (2 samples, 0.02%)</title><rect x="78.1090%" y="997" width="0.0238%" height="15" fill="rgb(217,179,25)" fg:x="6576" fg:w="2"/><text x="78.3590%" y="1007.50"></text></g><g><title>tokio::runtime::io::scheduled_io::ScheduledIo::set_readiness::_{{closure}} (2 samples, 0.02%)</title><rect x="78.1090%" y="981" width="0.0238%" height="15" fill="rgb(206,212,31)" fg:x="6576" fg:w="2"/><text x="78.3590%" y="991.50"></text></g><g><title>tokio::util::bit::Pack::pack (1 samples, 0.01%)</title><rect x="78.1209%" y="965" width="0.0119%" height="15" fill="rgb(235,144,12)" fg:x="6577" fg:w="1"/><text x="78.3709%" y="975.50"></text></g><g><title>tokio::util::bit::Pack::max_value (1 samples, 0.01%)</title><rect x="78.1209%" y="949" width="0.0119%" height="15" fill="rgb(213,51,10)" fg:x="6577" fg:w="1"/><text x="78.3709%" y="959.50"></text></g><g><title>&lt;tokio_rustls::common::SyncReadAdapter&lt;T&gt; as std::io::Read&gt;::read (55 samples, 0.65%)</title><rect x="77.4914%" y="1157" width="0.6533%" height="15" fill="rgb(231,145,14)" fg:x="6524" fg:w="55"/><text x="77.7414%" y="1167.50"></text></g><g><title>&lt;&amp;mut T as tokio::io::async_read::AsyncRead&gt;::poll_read (55 samples, 0.65%)</title><rect x="77.4914%" y="1141" width="0.6533%" height="15" fill="rgb(235,15,28)" fg:x="6524" fg:w="55"/><text x="77.7414%" y="1151.50"></text></g><g><title>&lt;hyper_util::rt::tokio::TokioIo&lt;T&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (54 samples, 0.64%)</title><rect x="77.5033%" y="1125" width="0.6414%" height="15" fill="rgb(237,206,10)" fg:x="6525" fg:w="54"/><text x="77.7533%" y="1135.50"></text></g><g><title>&lt;hyper_util::rt::tokio::TokioIo&lt;T&gt; as hyper::rt::io::Read&gt;::poll_read (54 samples, 0.64%)</title><rect x="77.5033%" y="1109" width="0.6414%" height="15" fill="rgb(236,227,27)" fg:x="6525" fg:w="54"/><text x="77.7533%" y="1119.50"></text></g><g><title>&lt;tokio::net::tcp::stream::TcpStream as tokio::io::async_read::AsyncRead&gt;::poll_read (54 samples, 0.64%)</title><rect x="77.5033%" y="1093" width="0.6414%" height="15" fill="rgb(246,83,35)" fg:x="6525" fg:w="54"/><text x="77.7533%" y="1103.50"></text></g><g><title>tokio::net::tcp::stream::TcpStream::poll_read_priv (54 samples, 0.64%)</title><rect x="77.5033%" y="1077" width="0.6414%" height="15" fill="rgb(220,136,24)" fg:x="6525" fg:w="54"/><text x="77.7533%" y="1087.50"></text></g><g><title>tokio::io::poll_evented::PollEvented&lt;E&gt;::poll_read (54 samples, 0.64%)</title><rect x="77.5033%" y="1061" width="0.6414%" height="15" fill="rgb(217,3,25)" fg:x="6525" fg:w="54"/><text x="77.7533%" y="1071.50"></text></g><g><title>tokio::runtime::io::registration::Registration::poll_read_ready (1 samples, 0.01%)</title><rect x="78.1328%" y="1045" width="0.0119%" height="15" fill="rgb(239,24,14)" fg:x="6578" fg:w="1"/><text x="78.3828%" y="1055.50"></text></g><g><title>tokio::runtime::io::registration::Registration::poll_ready (1 samples, 0.01%)</title><rect x="78.1328%" y="1029" width="0.0119%" height="15" fill="rgb(244,16,53)" fg:x="6578" fg:w="1"/><text x="78.3828%" y="1039.50"></text></g><g><title>tokio::runtime::io::scheduled_io::ScheduledIo::poll_readiness (1 samples, 0.01%)</title><rect x="78.1328%" y="1013" width="0.0119%" height="15" fill="rgb(208,175,44)" fg:x="6578" fg:w="1"/><text x="78.3828%" y="1023.50"></text></g><g><title>tokio::util::bit::Pack::unpack (1 samples, 0.01%)</title><rect x="78.1328%" y="997" width="0.0119%" height="15" fill="rgb(252,18,48)" fg:x="6578" fg:w="1"/><text x="78.3828%" y="1007.50"></text></g><g><title>tokio::util::bit::unpack (1 samples, 0.01%)</title><rect x="78.1328%" y="981" width="0.0119%" height="15" fill="rgb(234,199,32)" fg:x="6578" fg:w="1"/><text x="78.3828%" y="991.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (1 samples, 0.01%)</title><rect x="78.2278%" y="1109" width="0.0119%" height="15" fill="rgb(225,77,54)" fg:x="6586" fg:w="1"/><text x="78.4778%" y="1119.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.01%)</title><rect x="78.2278%" y="1093" width="0.0119%" height="15" fill="rgb(225,42,25)" fg:x="6586" fg:w="1"/><text x="78.4778%" y="1103.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.01%)</title><rect x="78.2278%" y="1077" width="0.0119%" height="15" fill="rgb(242,227,46)" fg:x="6586" fg:w="1"/><text x="78.4778%" y="1087.50"></text></g><g><title>__rustc::__rust_realloc (1 samples, 0.01%)</title><rect x="78.2278%" y="1061" width="0.0119%" height="15" fill="rgb(246,197,35)" fg:x="6586" fg:w="1"/><text x="78.4778%" y="1071.50"></text></g><g><title>&lt;tikv_jemallocator::Jemalloc as core::alloc::global::GlobalAlloc&gt;::realloc (1 samples, 0.01%)</title><rect x="78.2278%" y="1045" width="0.0119%" height="15" fill="rgb(215,159,26)" fg:x="6586" fg:w="1"/><text x="78.4778%" y="1055.50"></text></g><g><title>_rjem_realloc (1 samples, 0.01%)</title><rect x="78.2278%" y="1029" width="0.0119%" height="15" fill="rgb(212,194,50)" fg:x="6586" fg:w="1"/><text x="78.4778%" y="1039.50"></text></g><g><title>do_rallocx (1 samples, 0.01%)</title><rect x="78.2278%" y="1013" width="0.0119%" height="15" fill="rgb(246,132,1)" fg:x="6586" fg:w="1"/><text x="78.4778%" y="1023.50"></text></g><g><title>_rjem_je_arena_ralloc (1 samples, 0.01%)</title><rect x="78.2278%" y="997" width="0.0119%" height="15" fill="rgb(217,71,7)" fg:x="6586" fg:w="1"/><text x="78.4778%" y="1007.50"></text></g><g><title>_platform_memmove (1 samples, 0.01%)</title><rect x="78.2278%" y="981" width="0.0119%" height="15" fill="rgb(252,59,32)" fg:x="6586" fg:w="1"/><text x="78.4778%" y="991.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::resize (14 samples, 0.17%)</title><rect x="78.1447%" y="1141" width="0.1663%" height="15" fill="rgb(253,204,25)" fg:x="6579" fg:w="14"/><text x="78.3947%" y="1151.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_with (13 samples, 0.15%)</title><rect x="78.1566%" y="1125" width="0.1544%" height="15" fill="rgb(232,21,16)" fg:x="6580" fg:w="13"/><text x="78.4066%" y="1135.50"></text></g><g><title>core::num::_&lt;impl usize&gt;::unchecked_add::precondition_check (6 samples, 0.07%)</title><rect x="78.2397%" y="1109" width="0.0713%" height="15" fill="rgb(248,90,29)" fg:x="6587" fg:w="6"/><text x="78.4897%" y="1119.50"></text></g><g><title>&lt;hyper_util::rt::tokio::TokioIo&lt;T&gt; as hyper::rt::io::Read&gt;::poll_read (114 samples, 1.35%)</title><rect x="76.9688%" y="1253" width="1.3541%" height="15" fill="rgb(249,223,7)" fg:x="6480" fg:w="114"/><text x="77.2188%" y="1263.50"></text></g><g><title>&lt;tokio_rustls::client::TlsStream&lt;IO&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (114 samples, 1.35%)</title><rect x="76.9688%" y="1237" width="1.3541%" height="15" fill="rgb(231,119,42)" fg:x="6480" fg:w="114"/><text x="77.2188%" y="1247.50"></text></g><g><title>&lt;tokio_rustls::common::Stream&lt;IO,C&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (113 samples, 1.34%)</title><rect x="76.9806%" y="1221" width="1.3422%" height="15" fill="rgb(215,41,35)" fg:x="6481" fg:w="113"/><text x="77.2306%" y="1231.50"></text></g><g><title>tokio_rustls::common::Stream&lt;IO,C&gt;::read_io (106 samples, 1.26%)</title><rect x="77.0638%" y="1205" width="1.2591%" height="15" fill="rgb(220,44,45)" fg:x="6488" fg:w="106"/><text x="77.3138%" y="1215.50"></text></g><g><title>rustls::conn::ConnectionCommon&lt;Data&gt;::read_tls (70 samples, 0.83%)</title><rect x="77.4914%" y="1189" width="0.8315%" height="15" fill="rgb(253,197,36)" fg:x="6524" fg:w="70"/><text x="77.7414%" y="1199.50"></text></g><g><title>rustls::msgs::deframer::buffers::DeframerVecBuffer::read (70 samples, 0.83%)</title><rect x="77.4914%" y="1173" width="0.8315%" height="15" fill="rgb(245,225,54)" fg:x="6524" fg:w="70"/><text x="77.7414%" y="1183.50"></text></g><g><title>rustls::msgs::deframer::buffers::DeframerVecBuffer::prepare_read (15 samples, 0.18%)</title><rect x="78.1447%" y="1157" width="0.1782%" height="15" fill="rgb(239,94,37)" fg:x="6579" fg:w="15"/><text x="78.3947%" y="1167.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.01%)</title><rect x="78.3110%" y="1141" width="0.0119%" height="15" fill="rgb(242,217,10)" fg:x="6593" fg:w="1"/><text x="78.5610%" y="1151.50"></text></g><g><title>&lt;reqwest::connect::sealed::Conn as hyper::rt::io::Read&gt;::poll_read (115 samples, 1.37%)</title><rect x="76.9688%" y="1301" width="1.3660%" height="15" fill="rgb(250,193,7)" fg:x="6480" fg:w="115"/><text x="77.2188%" y="1311.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T&gt; as hyper::rt::io::Read&gt;::poll_read (115 samples, 1.37%)</title><rect x="76.9688%" y="1285" width="1.3660%" height="15" fill="rgb(230,104,19)" fg:x="6480" fg:w="115"/><text x="77.2188%" y="1295.50"></text></g><g><title>&lt;reqwest::connect::rustls_tls_conn::RustlsTlsConn&lt;T&gt; as hyper::rt::io::Read&gt;::poll_read (115 samples, 1.37%)</title><rect x="76.9688%" y="1269" width="1.3660%" height="15" fill="rgb(230,181,4)" fg:x="6480" fg:w="115"/><text x="77.2188%" y="1279.50"></text></g><g><title>reqwest::connect::rustls_tls_conn::_::_&lt;impl reqwest::connect::rustls_tls_conn::RustlsTlsConn&lt;T&gt;&gt;::project (1 samples, 0.01%)</title><rect x="78.3228%" y="1253" width="0.0119%" height="15" fill="rgb(216,219,49)" fg:x="6594" fg:w="1"/><text x="78.5728%" y="1263.50"></text></g><g><title>hyper::rt::io::ReadBuf::set_init (1 samples, 0.01%)</title><rect x="78.3347%" y="1301" width="0.0119%" height="15" fill="rgb(254,144,0)" fg:x="6595" fg:w="1"/><text x="78.5847%" y="1311.50"></text></g><g><title>core::cmp::Ord::max (1 samples, 0.01%)</title><rect x="78.3347%" y="1285" width="0.0119%" height="15" fill="rgb(205,209,38)" fg:x="6595" fg:w="1"/><text x="78.5847%" y="1295.50"></text></g><g><title>&lt;tokio_util::codec::framed_read::FramedRead&lt;T,D&gt; as futures_core::stream::Stream&gt;::poll_next (133 samples, 1.58%)</title><rect x="76.7787%" y="1381" width="1.5798%" height="15" fill="rgb(240,21,42)" fg:x="6464" fg:w="133"/><text x="77.0287%" y="1391.50"></text></g><g><title>&lt;tokio_util::codec::framed_impl::FramedImpl&lt;T,U,R&gt; as futures_core::stream::Stream&gt;::poll_next (133 samples, 1.58%)</title><rect x="76.7787%" y="1365" width="1.5798%" height="15" fill="rgb(241,132,3)" fg:x="6464" fg:w="133"/><text x="77.0287%" y="1375.50"></text></g><g><title>tokio_util::util::poll_buf::poll_read_buf (118 samples, 1.40%)</title><rect x="76.9569%" y="1349" width="1.4016%" height="15" fill="rgb(225,14,2)" fg:x="6479" fg:w="118"/><text x="77.2069%" y="1359.50"></text></g><g><title>&lt;h2::codec::framed_write::FramedWrite&lt;T,B&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (117 samples, 1.39%)</title><rect x="76.9688%" y="1333" width="1.3897%" height="15" fill="rgb(210,141,35)" fg:x="6480" fg:w="117"/><text x="77.2188%" y="1343.50"></text></g><g><title>&lt;hyper::common::io::compat::Compat&lt;T&gt; as tokio::io::async_read::AsyncRead&gt;::poll_read (117 samples, 1.39%)</title><rect x=
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment