quantum_queries/linear_vm_flamegraph.svg

491 lines
484 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="2246" onload="init(evt)" viewBox="0 0 1200 2246" 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="2246" 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="2229.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="2229.00"> </text><svg id="frames" x="10" width="1180" total_samples="397738"><g><title>ntdll`RtlImpersonateSelfEx (40 samples, 0.01%)</title><rect x="0.0171%" y="2117" width="0.0101%" height="15" fill="rgb(227,0,7)" fg:x="68" fg:w="40"/><text x="0.2671%" y="2127.50"></text></g><g><title>ntdll`EtwLogTraceEvent (110 samples, 0.03%)</title><rect x="0.0003%" y="2149" width="0.0277%" height="15" fill="rgb(217,0,24)" fg:x="1" fg:w="110"/><text x="0.2503%" y="2159.50"></text></g><g><title>ntdll`EtwLogTraceEvent (110 samples, 0.03%)</title><rect x="0.0003%" y="2133" width="0.0277%" height="15" fill="rgb(221,193,54)" fg:x="1" fg:w="110"/><text x="0.2503%" y="2143.50"></text></g><g><title>ntdll`LdrInitializeThunk (118 samples, 0.03%)</title><rect x="0.0000%" y="2181" width="0.0297%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="118"/><text x="0.2500%" y="2191.50"></text></g><g><title>ntdll`LdrInitializeThunk (117 samples, 0.03%)</title><rect x="0.0003%" y="2165" width="0.0294%" height="15" fill="rgb(208,68,35)" fg:x="1" fg:w="117"/><text x="0.2503%" y="2175.50"></text></g><g><title>ntdll`RtlQueryPerformanceCounter (44 samples, 0.01%)</title><rect x="0.0344%" y="2085" width="0.0111%" height="15" fill="rgb(232,128,0)" fg:x="137" fg:w="44"/><text x="0.2844%" y="2095.50"></text></g><g><title>ntdll`RtlQueryPerformanceCounter (55 samples, 0.01%)</title><rect x="0.0319%" y="2117" width="0.0138%" height="15" fill="rgb(207,160,47)" fg:x="127" fg:w="55"/><text x="0.2819%" y="2127.50"></text></g><g><title>ntdll`RtlQueryPerformanceCounter (55 samples, 0.01%)</title><rect x="0.0319%" y="2101" width="0.0138%" height="15" fill="rgb(228,23,34)" fg:x="127" fg:w="55"/><text x="0.2819%" y="2111.50"></text></g><g><title>ntdll`EtwReplyNotification (57 samples, 0.01%)</title><rect x="0.0319%" y="2133" width="0.0143%" height="15" fill="rgb(218,30,26)" fg:x="127" fg:w="57"/><text x="0.2819%" y="2143.50"></text></g><g><title>ntdll`RtlClearThreadWorkOnBehalfTicket (59 samples, 0.01%)</title><rect x="0.0317%" y="2149" width="0.0148%" height="15" fill="rgb(220,122,19)" fg:x="126" fg:w="59"/><text x="0.2817%" y="2159.50"></text></g><g><title>python310`PyInterpreterState_Enable (64 samples, 0.02%)</title><rect x="0.0468%" y="1957" width="0.0161%" height="15" fill="rgb(250,228,42)" fg:x="186" fg:w="64"/><text x="0.2968%" y="1967.50"></text></g><g><title>python310`PyThread_tss_create (40 samples, 0.01%)</title><rect x="0.0528%" y="1941" width="0.0101%" height="15" fill="rgb(240,193,28)" fg:x="210" fg:w="40"/><text x="0.3028%" y="1951.50"></text></g><g><title>python310`Py_InitializeFromConfig (69 samples, 0.02%)</title><rect x="0.0468%" y="1973" width="0.0173%" height="15" fill="rgb(216,20,37)" fg:x="186" fg:w="69"/><text x="0.2968%" y="1983.50"></text></g><g><title>python310`PyEval_GetGlobals (51 samples, 0.01%)</title><rect x="0.0684%" y="1893" width="0.0128%" height="15" fill="rgb(206,188,39)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1903.50"></text></g><g><title>python310`PyImport_ImportModule (51 samples, 0.01%)</title><rect x="0.0684%" y="1877" width="0.0128%" height="15" fill="rgb(217,207,13)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1887.50"></text></g><g><title>python310`PyImport_Import (51 samples, 0.01%)</title><rect x="0.0684%" y="1861" width="0.0128%" height="15" fill="rgb(231,73,38)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1871.50"></text></g><g><title>python310`PyObject_CallFunction (51 samples, 0.01%)</title><rect x="0.0684%" y="1845" width="0.0128%" height="15" fill="rgb(225,20,46)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1855.50"></text></g><g><title>python310`PyLong_FromDouble (51 samples, 0.01%)</title><rect x="0.0684%" y="1829" width="0.0128%" height="15" fill="rgb(210,31,41)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1839.50"></text></g><g><title>python310`PyBuffer_Release (51 samples, 0.01%)</title><rect x="0.0684%" y="1813" width="0.0128%" height="15" fill="rgb(221,200,47)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1823.50"></text></g><g><title>python310`PyType_IsSubtype (51 samples, 0.01%)</title><rect x="0.0684%" y="1797" width="0.0128%" height="15" fill="rgb(226,26,5)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1807.50"></text></g><g><title>python310`PyMapping_Size (51 samples, 0.01%)</title><rect x="0.0684%" y="1781" width="0.0128%" height="15" fill="rgb(249,33,26)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1791.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (51 samples, 0.01%)</title><rect x="0.0684%" y="1765" width="0.0128%" height="15" fill="rgb(235,183,28)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1775.50"></text></g><g><title>python310`PyThread_free_lock (51 samples, 0.01%)</title><rect x="0.0684%" y="1749" width="0.0128%" height="15" fill="rgb(221,5,38)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1759.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (51 samples, 0.01%)</title><rect x="0.0684%" y="1733" width="0.0128%" height="15" fill="rgb(247,18,42)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1743.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (51 samples, 0.01%)</title><rect x="0.0684%" y="1717" width="0.0128%" height="15" fill="rgb(241,131,45)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1727.50"></text></g><g><title>python310`PyBuffer_Release (51 samples, 0.01%)</title><rect x="0.0684%" y="1701" width="0.0128%" height="15" fill="rgb(249,31,29)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1711.50"></text></g><g><title>python310`PyFunction_Vectorcall (51 samples, 0.01%)</title><rect x="0.0684%" y="1685" width="0.0128%" height="15" fill="rgb(225,111,53)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1695.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (51 samples, 0.01%)</title><rect x="0.0684%" y="1669" width="0.0128%" height="15" fill="rgb(238,160,17)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1679.50"></text></g><g><title>python310`PyFunction_Vectorcall (51 samples, 0.01%)</title><rect x="0.0684%" y="1653" width="0.0128%" height="15" fill="rgb(214,148,48)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1663.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (51 samples, 0.01%)</title><rect x="0.0684%" y="1637" width="0.0128%" height="15" fill="rgb(232,36,49)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1647.50"></text></g><g><title>python310`PyFunction_Vectorcall (51 samples, 0.01%)</title><rect x="0.0684%" y="1621" width="0.0128%" height="15" fill="rgb(209,103,24)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1631.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (51 samples, 0.01%)</title><rect x="0.0684%" y="1605" width="0.0128%" height="15" fill="rgb(229,88,8)" fg:x="272" fg:w="51"/><text x="0.3184%" y="1615.50"></text></g><g><title>python310`PyList_SetItem (66 samples, 0.02%)</title><rect x="0.0684%" y="1925" width="0.0166%" height="15" fill="rgb(213,181,19)" fg:x="272" fg:w="66"/><text x="0.3184%" y="1935.50"></text></g><g><title>python310`PyCodec_Lookup (66 samples, 0.02%)</title><rect x="0.0684%" y="1909" width="0.0166%" height="15" fill="rgb(254,191,54)" fg:x="272" fg:w="66"/><text x="0.3184%" y="1919.50"></text></g><g><title>python310`PyList_Insert (96 samples, 0.02%)</title><rect x="0.0641%" y="1941" width="0.0241%" height="15" fill="rgb(241,83,37)" fg:x="255" fg:w="96"/><text x="0.3141%" y="1951.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (57 samples, 0.01%)</title><rect x="0.1031%" y="213" width="0.0143%" height="15" fill="rgb(233,36,39)" fg:x="410" fg:w="57"/><text x="0.3531%" y="223.50"></text></g><g><title>python310`PyFunction_Vectorcall (43 samples, 0.01%)</title><rect x="0.1066%" y="197" width="0.0108%" height="15" fill="rgb(226,3,54)" fg:x="424" fg:w="43"/><text x="0.3566%" y="207.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (43 samples, 0.01%)</title><rect x="0.1066%" y="181" width="0.0108%" height="15" fill="rgb(245,192,40)" fg:x="424" fg:w="43"/><text x="0.3566%" y="191.50"></text></g><g><title>python310`PyObject_Call (43 samples, 0.01%)</title><rect x="0.1066%" y="165" width="0.0108%" height="15" fill="rgb(238,167,29)" fg:x="424" fg:w="43"/><text x="0.3566%" y="175.50"></text></g><g><title>python310`PyObject_Call (43 samples, 0.01%)</title><rect x="0.1066%" y="149" width="0.0108%" height="15" fill="rgb(232,182,51)" fg:x="424" fg:w="43"/><text x="0.3566%" y="159.50"></text></g><g><title>python310`PyVectorcall_Call (43 samples, 0.01%)</title><rect x="0.1066%" y="133" width="0.0108%" height="15" fill="rgb(231,60,39)" fg:x="424" fg:w="43"/><text x="0.3566%" y="143.50"></text></g><g><title>python310`Py_HashPointer (43 samples, 0.01%)</title><rect x="0.1066%" y="117" width="0.0108%" height="15" fill="rgb(208,69,12)" fg:x="424" fg:w="43"/><text x="0.3566%" y="127.50"></text></g><g><title>python310`PyErr_Restore (43 samples, 0.01%)</title><rect x="0.1066%" y="101" width="0.0108%" height="15" fill="rgb(235,93,37)" fg:x="424" fg:w="43"/><text x="0.3566%" y="111.50"></text></g><g><title>python310`PyErr_Restore (43 samples, 0.01%)</title><rect x="0.1066%" y="85" width="0.0108%" height="15" fill="rgb(213,116,39)" fg:x="424" fg:w="43"/><text x="0.3566%" y="95.50"></text></g><g><title>python310`PyEval_EvalCode (43 samples, 0.01%)</title><rect x="0.1066%" y="69" width="0.0108%" height="15" fill="rgb(222,207,29)" fg:x="424" fg:w="43"/><text x="0.3566%" y="79.50"></text></g><g><title>python310`PyEval_EvalCode (43 samples, 0.01%)</title><rect x="0.1066%" y="53" width="0.0108%" height="15" fill="rgb(206,96,30)" fg:x="424" fg:w="43"/><text x="0.3566%" y="63.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (43 samples, 0.01%)</title><rect x="0.1066%" y="37" width="0.0108%" height="15" fill="rgb(218,138,4)" fg:x="424" fg:w="43"/><text x="0.3566%" y="47.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (79 samples, 0.02%)</title><rect x="0.0998%" y="597" width="0.0199%" height="15" fill="rgb(250,191,14)" fg:x="397" fg:w="79"/><text x="0.3498%" y="607.50"></text></g><g><title>python310`PyFunction_Vectorcall (71 samples, 0.02%)</title><rect x="0.1018%" y="581" width="0.0179%" height="15" fill="rgb(239,60,40)" fg:x="405" fg:w="71"/><text x="0.3518%" y="591.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (71 samples, 0.02%)</title><rect x="0.1018%" y="565" width="0.0179%" height="15" fill="rgb(206,27,48)" fg:x="405" fg:w="71"/><text x="0.3518%" y="575.50"></text></g><g><title>python310`PyObject_Call (71 samples, 0.02%)</title><rect x="0.1018%" y="549" width="0.0179%" height="15" fill="rgb(225,35,8)" fg:x="405" fg:w="71"/><text x="0.3518%" y="559.50"></text></g><g><title>python310`PyObject_Call (71 samples, 0.02%)</title><rect x="0.1018%" y="533" width="0.0179%" height="15" fill="rgb(250,213,24)" fg:x="405" fg:w="71"/><text x="0.3518%" y="543.50"></text></g><g><title>python310`PyVectorcall_Call (71 samples, 0.02%)</title><rect x="0.1018%" y="517" width="0.0179%" height="15" fill="rgb(247,123,22)" fg:x="405" fg:w="71"/><text x="0.3518%" y="527.50"></text></g><g><title>python310`Py_HashPointer (71 samples, 0.02%)</title><rect x="0.1018%" y="501" width="0.0179%" height="15" fill="rgb(231,138,38)" fg:x="405" fg:w="71"/><text x="0.3518%" y="511.50"></text></g><g><title>python310`PyErr_Restore (71 samples, 0.02%)</title><rect x="0.1018%" y="485" width="0.0179%" height="15" fill="rgb(231,145,46)" fg:x="405" fg:w="71"/><text x="0.3518%" y="495.50"></text></g><g><title>python310`PyErr_Restore (71 samples, 0.02%)</title><rect x="0.1018%" y="469" width="0.0179%" height="15" fill="rgb(251,118,11)" fg:x="405" fg:w="71"/><text x="0.3518%" y="479.50"></text></g><g><title>python310`PyEval_EvalCode (71 samples, 0.02%)</title><rect x="0.1018%" y="453" width="0.0179%" height="15" fill="rgb(217,147,25)" fg:x="405" fg:w="71"/><text x="0.3518%" y="463.50"></text></g><g><title>python310`PyEval_EvalCode (71 samples, 0.02%)</title><rect x="0.1018%" y="437" width="0.0179%" height="15" fill="rgb(247,81,37)" fg:x="405" fg:w="71"/><text x="0.3518%" y="447.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (71 samples, 0.02%)</title><rect x="0.1018%" y="421" width="0.0179%" height="15" fill="rgb(209,12,38)" fg:x="405" fg:w="71"/><text x="0.3518%" y="431.50"></text></g><g><title>python310`PySys_GetSizeOf (67 samples, 0.02%)</title><rect x="0.1028%" y="405" width="0.0168%" height="15" fill="rgb(227,1,9)" fg:x="409" fg:w="67"/><text x="0.3528%" y="415.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (67 samples, 0.02%)</title><rect x="0.1028%" y="389" width="0.0168%" height="15" fill="rgb(248,47,43)" fg:x="409" fg:w="67"/><text x="0.3528%" y="399.50"></text></g><g><title>python310`PyThread_free_lock (66 samples, 0.02%)</title><rect x="0.1031%" y="373" width="0.0166%" height="15" fill="rgb(221,10,30)" fg:x="410" fg:w="66"/><text x="0.3531%" y="383.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (66 samples, 0.02%)</title><rect x="0.1031%" y="357" width="0.0166%" height="15" fill="rgb(210,229,1)" fg:x="410" fg:w="66"/><text x="0.3531%" y="367.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (66 samples, 0.02%)</title><rect x="0.1031%" y="341" width="0.0166%" height="15" fill="rgb(222,148,37)" fg:x="410" fg:w="66"/><text x="0.3531%" y="351.50"></text></g><g><title>python310`PyBuffer_Release (66 samples, 0.02%)</title><rect x="0.1031%" y="325" width="0.0166%" height="15" fill="rgb(234,67,33)" fg:x="410" fg:w="66"/><text x="0.3531%" y="335.50"></text></g><g><title>python310`PyFunction_Vectorcall (66 samples, 0.02%)</title><rect x="0.1031%" y="309" width="0.0166%" height="15" fill="rgb(247,98,35)" fg:x="410" fg:w="66"/><text x="0.3531%" y="319.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (66 samples, 0.02%)</title><rect x="0.1031%" y="293" width="0.0166%" height="15" fill="rgb(247,138,52)" fg:x="410" fg:w="66"/><text x="0.3531%" y="303.50"></text></g><g><title>python310`PyFunction_Vectorcall (66 samples, 0.02%)</title><rect x="0.1031%" y="277" width="0.0166%" height="15" fill="rgb(213,79,30)" fg:x="410" fg:w="66"/><text x="0.3531%" y="287.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (66 samples, 0.02%)</title><rect x="0.1031%" y="261" width="0.0166%" height="15" fill="rgb(246,177,23)" fg:x="410" fg:w="66"/><text x="0.3531%" y="271.50"></text></g><g><title>python310`PyFunction_Vectorcall (66 samples, 0.02%)</title><rect x="0.1031%" y="245" width="0.0166%" height="15" fill="rgb(230,62,27)" fg:x="410" fg:w="66"/><text x="0.3531%" y="255.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (66 samples, 0.02%)</title><rect x="0.1031%" y="229" width="0.0166%" height="15" fill="rgb(216,154,8)" fg:x="410" fg:w="66"/><text x="0.3531%" y="239.50"></text></g><g><title>python310`PyFunction_Vectorcall (85 samples, 0.02%)</title><rect x="0.0998%" y="661" width="0.0214%" height="15" fill="rgb(244,35,45)" fg:x="397" fg:w="85"/><text x="0.3498%" y="671.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (85 samples, 0.02%)</title><rect x="0.0998%" y="645" width="0.0214%" height="15" fill="rgb(251,115,12)" fg:x="397" fg:w="85"/><text x="0.3498%" y="655.50"></text></g><g><title>python310`PyFunction_Vectorcall (85 samples, 0.02%)</title><rect x="0.0998%" y="629" width="0.0214%" height="15" fill="rgb(240,54,50)" fg:x="397" fg:w="85"/><text x="0.3498%" y="639.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (85 samples, 0.02%)</title><rect x="0.0998%" y="613" width="0.0214%" height="15" fill="rgb(233,84,52)" fg:x="397" fg:w="85"/><text x="0.3498%" y="623.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (98 samples, 0.02%)</title><rect x="0.0968%" y="981" width="0.0246%" height="15" fill="rgb(207,117,47)" fg:x="385" fg:w="98"/><text x="0.3468%" y="991.50"></text></g><g><title>python310`PyFunction_Vectorcall (87 samples, 0.02%)</title><rect x="0.0996%" y="965" width="0.0219%" height="15" fill="rgb(249,43,39)" fg:x="396" fg:w="87"/><text x="0.3496%" y="975.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (87 samples, 0.02%)</title><rect x="0.0996%" y="949" width="0.0219%" height="15" fill="rgb(209,38,44)" fg:x="396" fg:w="87"/><text x="0.3496%" y="959.50"></text></g><g><title>python310`PyObject_Call (87 samples, 0.02%)</title><rect x="0.0996%" y="933" width="0.0219%" height="15" fill="rgb(236,212,23)" fg:x="396" fg:w="87"/><text x="0.3496%" y="943.50"></text></g><g><title>python310`PyObject_Call (87 samples, 0.02%)</title><rect x="0.0996%" y="917" width="0.0219%" height="15" fill="rgb(242,79,21)" fg:x="396" fg:w="87"/><text x="0.3496%" y="927.50"></text></g><g><title>python310`PyVectorcall_Call (87 samples, 0.02%)</title><rect x="0.0996%" y="901" width="0.0219%" height="15" fill="rgb(211,96,35)" fg:x="396" fg:w="87"/><text x="0.3496%" y="911.50"></text></g><g><title>python310`Py_HashPointer (87 samples, 0.02%)</title><rect x="0.0996%" y="885" width="0.0219%" height="15" fill="rgb(253,215,40)" fg:x="396" fg:w="87"/><text x="0.3496%" y="895.50"></text></g><g><title>python310`PyErr_Restore (87 samples, 0.02%)</title><rect x="0.0996%" y="869" width="0.0219%" height="15" fill="rgb(211,81,21)" fg:x="396" fg:w="87"/><text x="0.3496%" y="879.50"></text></g><g><title>python310`PyErr_Restore (87 samples, 0.02%)</title><rect x="0.0996%" y="853" width="0.0219%" height="15" fill="rgb(208,190,38)" fg:x="396" fg:w="87"/><text x="0.3496%" y="863.50"></text></g><g><title>python310`PyEval_EvalCode (87 samples, 0.02%)</title><rect x="0.0996%" y="837" width="0.0219%" height="15" fill="rgb(235,213,38)" fg:x="396" fg:w="87"/><text x="0.3496%" y="847.50"></text></g><g><title>python310`PyEval_EvalCode (87 samples, 0.02%)</title><rect x="0.0996%" y="821" width="0.0219%" height="15" fill="rgb(237,122,38)" fg:x="396" fg:w="87"/><text x="0.3496%" y="831.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (87 samples, 0.02%)</title><rect x="0.0996%" y="805" width="0.0219%" height="15" fill="rgb(244,218,35)" fg:x="396" fg:w="87"/><text x="0.3496%" y="815.50"></text></g><g><title>python310`PySys_GetSizeOf (86 samples, 0.02%)</title><rect x="0.0998%" y="789" width="0.0216%" height="15" fill="rgb(240,68,47)" fg:x="397" fg:w="86"/><text x="0.3498%" y="799.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (86 samples, 0.02%)</title><rect x="0.0998%" y="773" width="0.0216%" height="15" fill="rgb(210,16,53)" fg:x="397" fg:w="86"/><text x="0.3498%" y="783.50"></text></g><g><title>python310`PyThread_free_lock (86 samples, 0.02%)</title><rect x="0.0998%" y="757" width="0.0216%" height="15" fill="rgb(235,124,12)" fg:x="397" fg:w="86"/><text x="0.3498%" y="767.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (86 samples, 0.02%)</title><rect x="0.0998%" y="741" width="0.0216%" height="15" fill="rgb(224,169,11)" fg:x="397" fg:w="86"/><text x="0.3498%" y="751.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (86 samples, 0.02%)</title><rect x="0.0998%" y="725" width="0.0216%" height="15" fill="rgb(250,166,2)" fg:x="397" fg:w="86"/><text x="0.3498%" y="735.50"></text></g><g><title>python310`PyBuffer_Release (86 samples, 0.02%)</title><rect x="0.0998%" y="709" width="0.0216%" height="15" fill="rgb(242,216,29)" fg:x="397" fg:w="86"/><text x="0.3498%" y="719.50"></text></g><g><title>python310`PyFunction_Vectorcall (86 samples, 0.02%)</title><rect x="0.0998%" y="693" width="0.0216%" height="15" fill="rgb(230,116,27)" fg:x="397" fg:w="86"/><text x="0.3498%" y="703.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (86 samples, 0.02%)</title><rect x="0.0998%" y="677" width="0.0216%" height="15" fill="rgb(228,99,48)" fg:x="397" fg:w="86"/><text x="0.3498%" y="687.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (46 samples, 0.01%)</title><rect x="0.1265%" y="917" width="0.0116%" height="15" fill="rgb(253,11,6)" fg:x="503" fg:w="46"/><text x="0.3765%" y="927.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (64 samples, 0.02%)</title><rect x="0.1262%" y="965" width="0.0161%" height="15" fill="rgb(247,143,39)" fg:x="502" fg:w="64"/><text x="0.3762%" y="975.50"></text></g><g><title>python310`PyObject_Hash (64 samples, 0.02%)</title><rect x="0.1262%" y="949" width="0.0161%" height="15" fill="rgb(236,97,10)" fg:x="502" fg:w="64"/><text x="0.3762%" y="959.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (64 samples, 0.02%)</title><rect x="0.1262%" y="933" width="0.0161%" height="15" fill="rgb(233,208,19)" fg:x="502" fg:w="64"/><text x="0.3762%" y="943.50"></text></g><g><title>python310`PyFunction_Vectorcall (182 samples, 0.05%)</title><rect x="0.0968%" y="1045" width="0.0458%" height="15" fill="rgb(216,164,2)" fg:x="385" fg:w="182"/><text x="0.3468%" y="1055.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (182 samples, 0.05%)</title><rect x="0.0968%" y="1029" width="0.0458%" height="15" fill="rgb(220,129,5)" fg:x="385" fg:w="182"/><text x="0.3468%" y="1039.50"></text></g><g><title>python310`PyFunction_Vectorcall (182 samples, 0.05%)</title><rect x="0.0968%" y="1013" width="0.0458%" height="15" fill="rgb(242,17,10)" fg:x="385" fg:w="182"/><text x="0.3468%" y="1023.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (182 samples, 0.05%)</title><rect x="0.0968%" y="997" width="0.0458%" height="15" fill="rgb(242,107,0)" fg:x="385" fg:w="182"/><text x="0.3468%" y="1007.50"></text></g><g><title>python310`PyObject_Hash (65 samples, 0.02%)</title><rect x="0.1262%" y="981" width="0.0163%" height="15" fill="rgb(251,28,31)" fg:x="502" fg:w="65"/><text x="0.3762%" y="991.50"></text></g><g><title>python310`PyArena_Free (199 samples, 0.05%)</title><rect x="0.0928%" y="1269" width="0.0500%" height="15" fill="rgb(233,223,10)" fg:x="369" fg:w="199"/><text x="0.3428%" y="1279.50"></text></g><g><title>python310`PyArena_Free (198 samples, 0.05%)</title><rect x="0.0930%" y="1253" width="0.0498%" height="15" fill="rgb(215,21,27)" fg:x="370" fg:w="198"/><text x="0.3430%" y="1263.50"></text></g><g><title>python310`PyEval_EvalCode (198 samples, 0.05%)</title><rect x="0.0930%" y="1237" width="0.0498%" height="15" fill="rgb(232,23,21)" fg:x="370" fg:w="198"/><text x="0.3430%" y="1247.50"></text></g><g><title>python310`PyEval_EvalCode (198 samples, 0.05%)</title><rect x="0.0930%" y="1221" width="0.0498%" height="15" fill="rgb(244,5,23)" fg:x="370" fg:w="198"/><text x="0.3430%" y="1231.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (198 samples, 0.05%)</title><rect x="0.0930%" y="1205" width="0.0498%" height="15" fill="rgb(226,81,46)" fg:x="370" fg:w="198"/><text x="0.3430%" y="1215.50"></text></g><g><title>python310`PyType_IsSubtype (183 samples, 0.05%)</title><rect x="0.0968%" y="1189" width="0.0460%" height="15" fill="rgb(247,70,30)" fg:x="385" fg:w="183"/><text x="0.3468%" y="1199.50"></text></g><g><title>python310`PyMapping_Size (183 samples, 0.05%)</title><rect x="0.0968%" y="1173" width="0.0460%" height="15" fill="rgb(212,68,19)" fg:x="385" fg:w="183"/><text x="0.3468%" y="1183.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (183 samples, 0.05%)</title><rect x="0.0968%" y="1157" width="0.0460%" height="15" fill="rgb(240,187,13)" fg:x="385" fg:w="183"/><text x="0.3468%" y="1167.50"></text></g><g><title>python310`PyThread_free_lock (183 samples, 0.05%)</title><rect x="0.0968%" y="1141" width="0.0460%" height="15" fill="rgb(223,113,26)" fg:x="385" fg:w="183"/><text x="0.3468%" y="1151.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (183 samples, 0.05%)</title><rect x="0.0968%" y="1125" width="0.0460%" height="15" fill="rgb(206,192,2)" fg:x="385" fg:w="183"/><text x="0.3468%" y="1135.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (183 samples, 0.05%)</title><rect x="0.0968%" y="1109" width="0.0460%" height="15" fill="rgb(241,108,4)" fg:x="385" fg:w="183"/><text x="0.3468%" y="1119.50"></text></g><g><title>python310`PyBuffer_Release (183 samples, 0.05%)</title><rect x="0.0968%" y="1093" width="0.0460%" height="15" fill="rgb(247,173,49)" fg:x="385" fg:w="183"/><text x="0.3468%" y="1103.50"></text></g><g><title>python310`PyFunction_Vectorcall (183 samples, 0.05%)</title><rect x="0.0968%" y="1077" width="0.0460%" height="15" fill="rgb(224,114,35)" fg:x="385" fg:w="183"/><text x="0.3468%" y="1087.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (183 samples, 0.05%)</title><rect x="0.0968%" y="1061" width="0.0460%" height="15" fill="rgb(245,159,27)" fg:x="385" fg:w="183"/><text x="0.3468%" y="1071.50"></text></g><g><title>python310`PyErr_Restore (203 samples, 0.05%)</title><rect x="0.0928%" y="1317" width="0.0510%" height="15" fill="rgb(245,172,44)" fg:x="369" fg:w="203"/><text x="0.3428%" y="1327.50"></text></g><g><title>python310`PyErr_Restore (203 samples, 0.05%)</title><rect x="0.0928%" y="1301" width="0.0510%" height="15" fill="rgb(236,23,11)" fg:x="369" fg:w="203"/><text x="0.3428%" y="1311.50"></text></g><g><title>python310`PyRun_StringFlags (203 samples, 0.05%)</title><rect x="0.0928%" y="1285" width="0.0510%" height="15" fill="rgb(205,117,38)" fg:x="369" fg:w="203"/><text x="0.3428%" y="1295.50"></text></g><g><title>python310`PyFunction_Vectorcall (220 samples, 0.06%)</title><rect x="0.0895%" y="1381" width="0.0553%" height="15" fill="rgb(237,72,25)" fg:x="356" fg:w="220"/><text x="0.3395%" y="1391.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (220 samples, 0.06%)</title><rect x="0.0895%" y="1365" width="0.0553%" height="15" fill="rgb(244,70,9)" fg:x="356" fg:w="220"/><text x="0.3395%" y="1375.50"></text></g><g><title>python310`PyFunction_Vectorcall (211 samples, 0.05%)</title><rect x="0.0918%" y="1349" width="0.0530%" height="15" fill="rgb(217,125,39)" fg:x="365" fg:w="211"/><text x="0.3418%" y="1359.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (211 samples, 0.05%)</title><rect x="0.0918%" y="1333" width="0.0530%" height="15" fill="rgb(235,36,10)" fg:x="365" fg:w="211"/><text x="0.3418%" y="1343.50"></text></g><g><title>python310`PyFunction_Vectorcall (238 samples, 0.06%)</title><rect x="0.0895%" y="1445" width="0.0598%" height="15" fill="rgb(251,123,47)" fg:x="356" fg:w="238"/><text x="0.3395%" y="1455.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (238 samples, 0.06%)</title><rect x="0.0895%" y="1429" width="0.0598%" height="15" fill="rgb(221,13,13)" fg:x="356" fg:w="238"/><text x="0.3395%" y="1439.50"></text></g><g><title>python310`PyFunction_Vectorcall (238 samples, 0.06%)</title><rect x="0.0895%" y="1413" width="0.0598%" height="15" fill="rgb(238,131,9)" fg:x="356" fg:w="238"/><text x="0.3395%" y="1423.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (238 samples, 0.06%)</title><rect x="0.0895%" y="1397" width="0.0598%" height="15" fill="rgb(211,50,8)" fg:x="356" fg:w="238"/><text x="0.3395%" y="1407.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (41 samples, 0.01%)</title><rect x="0.1526%" y="869" width="0.0103%" height="15" fill="rgb(245,182,24)" fg:x="607" fg:w="41"/><text x="0.4026%" y="879.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (63 samples, 0.02%)</title><rect x="0.1496%" y="1253" width="0.0158%" height="15" fill="rgb(242,14,37)" fg:x="595" fg:w="63"/><text x="0.3996%" y="1263.50"></text></g><g><title>python310`PyFunction_Vectorcall (54 samples, 0.01%)</title><rect x="0.1519%" y="1237" width="0.0136%" height="15" fill="rgb(246,228,12)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1247.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (54 samples, 0.01%)</title><rect x="0.1519%" y="1221" width="0.0136%" height="15" fill="rgb(213,55,15)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1231.50"></text></g><g><title>python310`PyObject_Call (54 samples, 0.01%)</title><rect x="0.1519%" y="1205" width="0.0136%" height="15" fill="rgb(209,9,3)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1215.50"></text></g><g><title>python310`PyObject_Call (54 samples, 0.01%)</title><rect x="0.1519%" y="1189" width="0.0136%" height="15" fill="rgb(230,59,30)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1199.50"></text></g><g><title>python310`PyVectorcall_Call (54 samples, 0.01%)</title><rect x="0.1519%" y="1173" width="0.0136%" height="15" fill="rgb(209,121,21)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1183.50"></text></g><g><title>python310`Py_HashPointer (54 samples, 0.01%)</title><rect x="0.1519%" y="1157" width="0.0136%" height="15" fill="rgb(220,109,13)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1167.50"></text></g><g><title>python310`PyErr_Restore (54 samples, 0.01%)</title><rect x="0.1519%" y="1141" width="0.0136%" height="15" fill="rgb(232,18,1)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1151.50"></text></g><g><title>python310`PyErr_Restore (54 samples, 0.01%)</title><rect x="0.1519%" y="1125" width="0.0136%" height="15" fill="rgb(215,41,42)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1135.50"></text></g><g><title>python310`PyEval_EvalCode (54 samples, 0.01%)</title><rect x="0.1519%" y="1109" width="0.0136%" height="15" fill="rgb(224,123,36)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1119.50"></text></g><g><title>python310`PyEval_EvalCode (54 samples, 0.01%)</title><rect x="0.1519%" y="1093" width="0.0136%" height="15" fill="rgb(240,125,3)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1103.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (54 samples, 0.01%)</title><rect x="0.1519%" y="1077" width="0.0136%" height="15" fill="rgb(205,98,50)" fg:x="604" fg:w="54"/><text x="0.4019%" y="1087.50"></text></g><g><title>python310`PySys_GetSizeOf (51 samples, 0.01%)</title><rect x="0.1526%" y="1061" width="0.0128%" height="15" fill="rgb(205,185,37)" fg:x="607" fg:w="51"/><text x="0.4026%" y="1071.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (51 samples, 0.01%)</title><rect x="0.1526%" y="1045" width="0.0128%" height="15" fill="rgb(238,207,15)" fg:x="607" fg:w="51"/><text x="0.4026%" y="1055.50"></text></g><g><title>python310`PyThread_free_lock (51 samples, 0.01%)</title><rect x="0.1526%" y="1029" width="0.0128%" height="15" fill="rgb(213,199,42)" fg:x="607" fg:w="51"/><text x="0.4026%" y="1039.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (51 samples, 0.01%)</title><rect x="0.1526%" y="1013" width="0.0128%" height="15" fill="rgb(235,201,11)" fg:x="607" fg:w="51"/><text x="0.4026%" y="1023.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (51 samples, 0.01%)</title><rect x="0.1526%" y="997" width="0.0128%" height="15" fill="rgb(207,46,11)" fg:x="607" fg:w="51"/><text x="0.4026%" y="1007.50"></text></g><g><title>python310`PyBuffer_Release (51 samples, 0.01%)</title><rect x="0.1526%" y="981" width="0.0128%" height="15" fill="rgb(241,35,35)" fg:x="607" fg:w="51"/><text x="0.4026%" y="991.50"></text></g><g><title>python310`PyFunction_Vectorcall (51 samples, 0.01%)</title><rect x="0.1526%" y="965" width="0.0128%" height="15" fill="rgb(243,32,47)" fg:x="607" fg:w="51"/><text x="0.4026%" y="975.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (51 samples, 0.01%)</title><rect x="0.1526%" y="949" width="0.0128%" height="15" fill="rgb(247,202,23)" fg:x="607" fg:w="51"/><text x="0.4026%" y="959.50"></text></g><g><title>python310`PyFunction_Vectorcall (51 samples, 0.01%)</title><rect x="0.1526%" y="933" width="0.0128%" height="15" fill="rgb(219,102,11)" fg:x="607" fg:w="51"/><text x="0.4026%" y="943.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (51 samples, 0.01%)</title><rect x="0.1526%" y="917" width="0.0128%" height="15" fill="rgb(243,110,44)" fg:x="607" fg:w="51"/><text x="0.4026%" y="927.50"></text></g><g><title>python310`PyFunction_Vectorcall (51 samples, 0.01%)</title><rect x="0.1526%" y="901" width="0.0128%" height="15" fill="rgb(222,74,54)" fg:x="607" fg:w="51"/><text x="0.4026%" y="911.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (51 samples, 0.01%)</title><rect x="0.1526%" y="885" width="0.0128%" height="15" fill="rgb(216,99,12)" fg:x="607" fg:w="51"/><text x="0.4026%" y="895.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (312 samples, 0.08%)</title><rect x="0.0885%" y="1637" width="0.0784%" height="15" fill="rgb(226,22,26)" fg:x="352" fg:w="312"/><text x="0.3385%" y="1647.50"></text></g><g><title>python310`PyFunction_Vectorcall (308 samples, 0.08%)</title><rect x="0.0895%" y="1621" width="0.0774%" height="15" fill="rgb(217,163,10)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1631.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (308 samples, 0.08%)</title><rect x="0.0895%" y="1605" width="0.0774%" height="15" fill="rgb(213,25,53)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1615.50"></text></g><g><title>python310`PyObject_Call (308 samples, 0.08%)</title><rect x="0.0895%" y="1589" width="0.0774%" height="15" fill="rgb(252,105,26)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1599.50"></text></g><g><title>python310`PyObject_Call (308 samples, 0.08%)</title><rect x="0.0895%" y="1573" width="0.0774%" height="15" fill="rgb(220,39,43)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1583.50"></text></g><g><title>python310`PyVectorcall_Call (308 samples, 0.08%)</title><rect x="0.0895%" y="1557" width="0.0774%" height="15" fill="rgb(229,68,48)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1567.50"></text></g><g><title>python310`Py_HashPointer (308 samples, 0.08%)</title><rect x="0.0895%" y="1541" width="0.0774%" height="15" fill="rgb(252,8,32)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1551.50"></text></g><g><title>python310`PyErr_Restore (308 samples, 0.08%)</title><rect x="0.0895%" y="1525" width="0.0774%" height="15" fill="rgb(223,20,43)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1535.50"></text></g><g><title>python310`PyErr_Restore (308 samples, 0.08%)</title><rect x="0.0895%" y="1509" width="0.0774%" height="15" fill="rgb(229,81,49)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1519.50"></text></g><g><title>python310`PyEval_EvalCode (308 samples, 0.08%)</title><rect x="0.0895%" y="1493" width="0.0774%" height="15" fill="rgb(236,28,36)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1503.50"></text></g><g><title>python310`PyEval_EvalCode (308 samples, 0.08%)</title><rect x="0.0895%" y="1477" width="0.0774%" height="15" fill="rgb(249,185,26)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1487.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (308 samples, 0.08%)</title><rect x="0.0895%" y="1461" width="0.0774%" height="15" fill="rgb(249,174,33)" fg:x="356" fg:w="308"/><text x="0.3395%" y="1471.50"></text></g><g><title>python310`PySys_GetSizeOf (70 samples, 0.02%)</title><rect x="0.1493%" y="1445" width="0.0176%" height="15" fill="rgb(233,201,37)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1455.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (70 samples, 0.02%)</title><rect x="0.1493%" y="1429" width="0.0176%" height="15" fill="rgb(221,78,26)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1439.50"></text></g><g><title>python310`PyThread_free_lock (70 samples, 0.02%)</title><rect x="0.1493%" y="1413" width="0.0176%" height="15" fill="rgb(250,127,30)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1423.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (70 samples, 0.02%)</title><rect x="0.1493%" y="1397" width="0.0176%" height="15" fill="rgb(230,49,44)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1407.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (70 samples, 0.02%)</title><rect x="0.1493%" y="1381" width="0.0176%" height="15" fill="rgb(229,67,23)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1391.50"></text></g><g><title>python310`PyBuffer_Release (70 samples, 0.02%)</title><rect x="0.1493%" y="1365" width="0.0176%" height="15" fill="rgb(249,83,47)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1375.50"></text></g><g><title>python310`PyFunction_Vectorcall (70 samples, 0.02%)</title><rect x="0.1493%" y="1349" width="0.0176%" height="15" fill="rgb(215,43,3)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1359.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (70 samples, 0.02%)</title><rect x="0.1493%" y="1333" width="0.0176%" height="15" fill="rgb(238,154,13)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1343.50"></text></g><g><title>python310`PyFunction_Vectorcall (70 samples, 0.02%)</title><rect x="0.1493%" y="1317" width="0.0176%" height="15" fill="rgb(219,56,2)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1327.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (70 samples, 0.02%)</title><rect x="0.1493%" y="1301" width="0.0176%" height="15" fill="rgb(233,0,4)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1311.50"></text></g><g><title>python310`PyFunction_Vectorcall (70 samples, 0.02%)</title><rect x="0.1493%" y="1285" width="0.0176%" height="15" fill="rgb(235,30,7)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1295.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (70 samples, 0.02%)</title><rect x="0.1493%" y="1269" width="0.0176%" height="15" fill="rgb(250,79,13)" fg:x="594" fg:w="70"/><text x="0.3993%" y="1279.50"></text></g><g><title>python310`PyLong_FormatBytesWriter (316 samples, 0.08%)</title><rect x="0.0882%" y="1941" width="0.0794%" height="15" fill="rgb(211,146,34)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1951.50"></text></g><g><title>python310`PyImport_ImportModule (316 samples, 0.08%)</title><rect x="0.0882%" y="1925" width="0.0794%" height="15" fill="rgb(228,22,38)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1935.50"></text></g><g><title>python310`PyImport_Import (316 samples, 0.08%)</title><rect x="0.0882%" y="1909" width="0.0794%" height="15" fill="rgb(235,168,5)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1919.50"></text></g><g><title>python310`PyObject_CallFunction (316 samples, 0.08%)</title><rect x="0.0882%" y="1893" width="0.0794%" height="15" fill="rgb(221,155,16)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1903.50"></text></g><g><title>python310`PyLong_FromDouble (316 samples, 0.08%)</title><rect x="0.0882%" y="1877" width="0.0794%" height="15" fill="rgb(215,215,53)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1887.50"></text></g><g><title>python310`PyBuffer_Release (316 samples, 0.08%)</title><rect x="0.0882%" y="1861" width="0.0794%" height="15" fill="rgb(223,4,10)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1871.50"></text></g><g><title>python310`PyType_IsSubtype (316 samples, 0.08%)</title><rect x="0.0882%" y="1845" width="0.0794%" height="15" fill="rgb(234,103,6)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1855.50"></text></g><g><title>python310`PyMapping_Size (316 samples, 0.08%)</title><rect x="0.0882%" y="1829" width="0.0794%" height="15" fill="rgb(227,97,0)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1839.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (316 samples, 0.08%)</title><rect x="0.0882%" y="1813" width="0.0794%" height="15" fill="rgb(234,150,53)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1823.50"></text></g><g><title>python310`PyThread_free_lock (316 samples, 0.08%)</title><rect x="0.0882%" y="1797" width="0.0794%" height="15" fill="rgb(228,201,54)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1807.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (316 samples, 0.08%)</title><rect x="0.0882%" y="1781" width="0.0794%" height="15" fill="rgb(222,22,37)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1791.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (316 samples, 0.08%)</title><rect x="0.0882%" y="1765" width="0.0794%" height="15" fill="rgb(237,53,32)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1775.50"></text></g><g><title>python310`PyBuffer_Release (316 samples, 0.08%)</title><rect x="0.0882%" y="1749" width="0.0794%" height="15" fill="rgb(233,25,53)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1759.50"></text></g><g><title>python310`PyFunction_Vectorcall (316 samples, 0.08%)</title><rect x="0.0882%" y="1733" width="0.0794%" height="15" fill="rgb(210,40,34)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1743.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (316 samples, 0.08%)</title><rect x="0.0882%" y="1717" width="0.0794%" height="15" fill="rgb(241,220,44)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1727.50"></text></g><g><title>python310`PyFunction_Vectorcall (316 samples, 0.08%)</title><rect x="0.0882%" y="1701" width="0.0794%" height="15" fill="rgb(235,28,35)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1711.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (316 samples, 0.08%)</title><rect x="0.0882%" y="1685" width="0.0794%" height="15" fill="rgb(210,56,17)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1695.50"></text></g><g><title>python310`PyFunction_Vectorcall (316 samples, 0.08%)</title><rect x="0.0882%" y="1669" width="0.0794%" height="15" fill="rgb(224,130,29)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1679.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (316 samples, 0.08%)</title><rect x="0.0882%" y="1653" width="0.0794%" height="15" fill="rgb(235,212,8)" fg:x="351" fg:w="316"/><text x="0.3382%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4pyo33gil27prepare_freethreaded_python17h7b7be3062133f399E (517 samples, 0.13%)</title><rect x="0.0465%" y="2053" width="0.1300%" height="15" fill="rgb(223,33,50)" fg:x="185" fg:w="517"/><text x="0.2965%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN11parking_lot4once4Once14call_once_slow17h9880eb8f0d7c2dd9E (517 samples, 0.13%)</title><rect x="0.0465%" y="2037" width="0.1300%" height="15" fill="rgb(219,149,13)" fg:x="185" fg:w="517"/><text x="0.2965%" y="2047.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN11parking_lot4once4Once15call_once_force28_$u7b$$u7b$closure$u7d$$u7d$17h6530e0d5609add85E.llvm.7393249865436353925 (517 samples, 0.13%)</title><rect x="0.0465%" y="2021" width="0.1300%" height="15" fill="rgb(250,156,29)" fg:x="185" fg:w="517"/><text x="0.2965%" y="2031.50"></text></g><g><title>python310`Py_InitializeEx (517 samples, 0.13%)</title><rect x="0.0465%" y="2005" width="0.1300%" height="15" fill="rgb(216,193,19)" fg:x="185" fg:w="517"/><text x="0.2965%" y="2015.50"></text></g><g><title>python310`Py_InitializeFromConfig (516 samples, 0.13%)</title><rect x="0.0468%" y="1989" width="0.1297%" height="15" fill="rgb(216,135,14)" fg:x="186" fg:w="516"/><text x="0.2968%" y="1999.50"></text></g><g><title>python310`Py_NewInterpreter (447 samples, 0.11%)</title><rect x="0.0641%" y="1973" width="0.1124%" height="15" fill="rgb(241,47,5)" fg:x="255" fg:w="447"/><text x="0.3141%" y="1983.50"></text></g><g><title>python310`PyList_Insert (447 samples, 0.11%)</title><rect x="0.0641%" y="1957" width="0.1124%" height="15" fill="rgb(233,42,35)" fg:x="255" fg:w="447"/><text x="0.3141%" y="1967.50"></text></g><g><title>KERNEL32`CreateProcessW (48 samples, 0.01%)</title><rect x="0.1798%" y="1973" width="0.0121%" height="15" fill="rgb(231,13,6)" fg:x="715" fg:w="48"/><text x="0.4298%" y="1983.50"></text></g><g><title>KERNELBASE`CreateProcessW (48 samples, 0.01%)</title><rect x="0.1798%" y="1957" width="0.0121%" height="15" fill="rgb(207,181,40)" fg:x="715" fg:w="48"/><text x="0.4298%" y="1967.50"></text></g><g><title>KERNELBASE`CreateProcessInternalW (48 samples, 0.01%)</title><rect x="0.1798%" y="1941" width="0.0121%" height="15" fill="rgb(254,173,49)" fg:x="715" fg:w="48"/><text x="0.4298%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN63_$LT$criterion..Criterion$u20$as$u20$core..default..Default$GT$7default17h692a1e2aa0164b29E (71 samples, 0.02%)</title><rect x="0.1765%" y="2053" width="0.0179%" height="15" fill="rgb(221,1,38)" fg:x="702" fg:w="71"/><text x="0.4265%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`std::sys_common::once::generic::Once::call (71 samples, 0.02%)</title><rect x="0.1765%" y="2037" width="0.0179%" height="15" fill="rgb(206,124,46)" fg:x="702" fg:w="71"/><text x="0.4265%" y="2047.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std4sync4once4Once9call_once28_$u7b$$u7b$closure$u7d$$u7d$17h7b302eee9b3bb97bE.llvm.18229423596412294872 (71 samples, 0.02%)</title><rect x="0.1765%" y="2021" width="0.0179%" height="15" fill="rgb(249,21,11)" fg:x="702" fg:w="71"/><text x="0.4265%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`std::process::Command::output (63 samples, 0.02%)</title><rect x="0.1785%" y="2005" width="0.0158%" height="15" fill="rgb(222,201,40)" fg:x="710" fg:w="63"/><text x="0.4285%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`std::sys::windows::process::Command::spawn (58 samples, 0.01%)</title><rect x="0.1798%" y="1989" width="0.0146%" height="15" fill="rgb(235,61,29)" fg:x="715" fg:w="58"/><text x="0.4298%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN99_$LT$$RF$mut$u20$adversary..CachedSetIterator$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h1a86428037309447E (1,932 samples, 0.49%)</title><rect x="1.9729%" y="1941" width="0.4857%" height="15" fill="rgb(219,207,3)" fg:x="7847" fg:w="1932"/><text x="2.2229%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary6Prover11find_bounds17he2edb4c6d4984ee6E (33,024 samples, 8.30%)</title><rect x="0.2019%" y="1957" width="8.3030%" height="15" fill="rgb(222,56,46)" fg:x="803" fg:w="33024"/><text x="0.4519%" y="1967.50">search-10075..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run17h5ae7d0c882cb556eE (24,048 samples, 6.05%)</title><rect x="2.4587%" y="1941" width="6.0462%" height="15" fill="rgb(239,76,54)" fg:x="9779" fg:w="24048"/><text x="2.7087%" y="1951.50">search-1..</text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$criterion..routine..Function$LT$M$C$F$C$T$GT$$u20$as$u20$criterion..routine..Routine$LT$M$C$T$GT$$GT$7warm_up17h57ace45e58215862E (33,025 samples, 8.30%)</title><rect x="0.2019%" y="1989" width="8.3032%" height="15" fill="rgb(231,124,27)" fg:x="803" fg:w="33025"/><text x="0.4519%" y="1999.50">search-10075..</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion7bencher16Bencher$LT$M$GT$4iter17h1120b7833b0838c7E (33,025 samples, 8.30%)</title><rect x="0.2019%" y="1973" width="8.3032%" height="15" fill="rgb(249,195,6)" fg:x="803" fg:w="33025"/><text x="0.4519%" y="1983.50">search-10075..</text></g><g><title>search-10075cbc4ecf36f7`ZN99_$LT$$RF$mut$u20$adversary..CachedSetIterator$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h1a86428037309447E (27,080 samples, 6.81%)</title><rect x="19.3389%" y="1941" width="6.8085%" height="15" fill="rgb(237,174,47)" fg:x="76918" fg:w="27080"/><text x="19.5889%" y="1951.50">search-10..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run17h5ae7d0c882cb556eE (280,339 samples, 70.48%)</title><rect x="26.1474%" y="1941" width="70.4833%" height="15" fill="rgb(206,201,31)" fg:x="103998" fg:w="280339"/><text x="26.3974%" y="1951.50">search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run17h5ae7d0c882cb556eE</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion7routine7Routine6sample17h08fb9941e571c98cE (383,536 samples, 96.43%)</title><rect x="0.2016%" y="2005" width="96.4293%" height="15" fill="rgb(231,57,52)" fg:x="802" fg:w="383536"/><text x="0.4516%" y="2015.50">search-10075cbc4ecf36f7`ZN9criterion7routine7Routine6sample17h08fb9941e571c98cE</text></g><g><title>search-10075cbc4ecf36f7`ZN98_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..spec_from_iter..SpecFromIter$LT$T$C$I$GT$$GT$9from_iter17h14c40b78f6e63287E (350,509 samples, 88.13%)</title><rect x="8.5053%" y="1989" width="88.1256%" height="15" fill="rgb(248,177,22)" fg:x="33829" fg:w="350509"/><text x="8.7553%" y="1999.50">search-10075cbc4ecf36f7`ZN98_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..spec_from_iter..SpecFromIter$LT$T$C$I$GT$$GT$9from_iter17h14c40b78..</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion7bencher16Bencher$LT$M$GT$4iter17h1120b7833b0838c7E (350,509 samples, 88.13%)</title><rect x="8.5053%" y="1973" width="88.1256%" height="15" fill="rgb(215,211,37)" fg:x="33829" fg:w="350509"/><text x="8.7553%" y="1983.50">search-10075cbc4ecf36f7`ZN9criterion7bencher16Bencher$LT$M$GT$4iter17h1120b7833b0838c7E</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary6Prover11find_bounds17he2edb4c6d4984ee6E (350,509 samples, 88.13%)</title><rect x="8.5053%" y="1957" width="88.1256%" height="15" fill="rgb(241,128,51)" fg:x="33829" fg:w="350509"/><text x="8.7553%" y="1967.50">search-10075cbc4ecf36f7`ZN9adversary6Prover11find_bounds17he2edb4c6d4984ee6E</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion18Criterion$LT$M$GT$14bench_function17hc32bc2f721233753E (383,678 samples, 96.47%)</title><rect x="0.1943%" y="2053" width="96.4650%" height="15" fill="rgb(227,165,31)" fg:x="773" fg:w="383678"/><text x="0.4443%" y="2063.50">search-10075cbc4ecf36f7`ZN9criterion18Criterion$LT$M$GT$14bench_function17hc32bc2f721233753E</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion15benchmark_group23BenchmarkGroup$LT$M$GT$14bench_function17h33f0346a6c22a4e8E (383,678 samples, 96.47%)</title><rect x="0.1943%" y="2037" width="96.4650%" height="15" fill="rgb(228,167,24)" fg:x="773" fg:w="383678"/><text x="0.4443%" y="2047.50">search-10075cbc4ecf36f7`ZN9criterion15benchmark_group23BenchmarkGroup$LT$M$GT$14bench_function17h33f0346a6c22a4e8E</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis6common17hc3141c7002cfe06dE (383,677 samples, 96.46%)</title><rect x="0.1946%" y="2021" width="96.4648%" height="15" fill="rgb(228,143,12)" fg:x="774" fg:w="383677"/><text x="0.4446%" y="2031.50">search-10075cbc4ecf36f7`ZN9criterion8analysis6common17hc3141c7002cfe06dE</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates17h1a116b55d7a2f84bE (42 samples, 0.01%)</title><rect x="96.6488%" y="2005" width="0.0106%" height="15" fill="rgb(249,149,8)" fg:x="384409" fg:w="42"/><text x="96.8988%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN174_$LT$criterion..estimate.._..$LT$impl$u20$serde..de..Deserialize$u20$for$u20$criterion..estimate..Estimates$GT$..deserialize..__FieldVisitor$u20$as$u20$serde..de..Visitor$GT$9visit_str17h5452485218708b2aE (384,273 samples, 96.61%)</title><rect x="0.0465%" y="2101" width="96.6146%" height="15" fill="rgb(243,35,44)" fg:x="185" fg:w="384273"/><text x="0.2965%" y="2111.50">search-10075cbc4ecf36f7`ZN174_$LT$criterion..estimate.._..$LT$impl$u20$serde..de..Deserialize$u20$for$u20$criterion..estimate..Estimates$GT$..deserialize..__Fiel..</text></g><g><title>search-10075cbc4ecf36f7`ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h6a2aacb0ff006398E (384,273 samples, 96.61%)</title><rect x="0.0465%" y="2085" width="96.6146%" height="15" fill="rgb(246,89,9)" fg:x="185" fg:w="384273"/><text x="0.2965%" y="2095.50">search-10075cbc4ecf36f7`ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h6a2aacb0ff006398E</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8estimate1_91_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$criterion..estimate..ConfidenceInterval$GT$9serialize17h7f8083dfeb99b27bE (384,273 samples, 96.61%)</title><rect x="0.0465%" y="2069" width="96.6146%" height="15" fill="rgb(233,213,13)" fg:x="185" fg:w="384273"/><text x="0.2965%" y="2079.50">search-10075cbc4ecf36f7`ZN9criterion8estimate1_91_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$criterion..estimate..ConfidenceInterval$GT$9serialize17h7f8083df..</text></g><g><title>search-10075cbc4ecf36f7`main (384,274 samples, 96.61%)</title><rect x="0.0465%" y="2133" width="96.6149%" height="15" fill="rgb(233,141,41)" fg:x="185" fg:w="384274"/><text x="0.2965%" y="2143.50">search-10075cbc4ecf36f7`main</text></g><g><title>search-10075cbc4ecf36f7`std::rt::lang_start_internal (384,274 samples, 96.61%)</title><rect x="0.0465%" y="2117" width="96.6149%" height="15" fill="rgb(239,167,4)" fg:x="185" fg:w="384274"/><text x="0.2965%" y="2127.50">search-10075cbc4ecf36f7`std::rt::lang_start_internal</text></g><g><title>search-10075cbc4ecf36f7`__scrt_common_main_seh (384,284 samples, 96.62%)</title><rect x="0.0465%" y="2149" width="96.6174%" height="15" fill="rgb(209,217,16)" fg:x="185" fg:w="384284"/><text x="0.2965%" y="2159.50">search-10075cbc4ecf36f7`__scrt_common_main_seh</text></g><g><title>KERNELBASE`SwitchToThread (42 samples, 0.01%)</title><rect x="96.6654%" y="2069" width="0.0106%" height="15" fill="rgb(219,88,35)" fg:x="384475" fg:w="42"/><text x="96.9154%" y="2079.50"></text></g><g><title>ntdll`RtlDelayExecution (41 samples, 0.01%)</title><rect x="96.6656%" y="2053" width="0.0103%" height="15" fill="rgb(220,193,23)" fg:x="384476" fg:w="41"/><text x="96.9156%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (46 samples, 0.01%)</title><rect x="96.6880%" y="1749" width="0.0116%" height="15" fill="rgb(230,90,52)" fg:x="384565" fg:w="46"/><text x="96.9380%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="96.6880%" y="1733" width="0.0116%" height="15" fill="rgb(252,106,19)" fg:x="384565" fg:w="46"/><text x="96.9380%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (45 samples, 0.01%)</title><rect x="96.6883%" y="1717" width="0.0113%" height="15" fill="rgb(206,74,20)" fg:x="384566" fg:w="45"/><text x="96.9383%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (45 samples, 0.01%)</title><rect x="96.6883%" y="1701" width="0.0113%" height="15" fill="rgb(230,138,44)" fg:x="384566" fg:w="45"/><text x="96.9383%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (45 samples, 0.01%)</title><rect x="96.6883%" y="1685" width="0.0113%" height="15" fill="rgb(235,182,43)" fg:x="384566" fg:w="45"/><text x="96.9383%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (41 samples, 0.01%)</title><rect x="96.6893%" y="1669" width="0.0103%" height="15" fill="rgb(242,16,51)" fg:x="384570" fg:w="41"/><text x="96.9393%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (93 samples, 0.02%)</title><rect x="96.6880%" y="1797" width="0.0234%" height="15" fill="rgb(248,9,4)" fg:x="384565" fg:w="93"/><text x="96.9380%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (93 samples, 0.02%)</title><rect x="96.6880%" y="1781" width="0.0234%" height="15" fill="rgb(210,31,22)" fg:x="384565" fg:w="93"/><text x="96.9380%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (93 samples, 0.02%)</title><rect x="96.6880%" y="1765" width="0.0234%" height="15" fill="rgb(239,54,39)" fg:x="384565" fg:w="93"/><text x="96.9380%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (47 samples, 0.01%)</title><rect x="96.6996%" y="1749" width="0.0118%" height="15" fill="rgb(230,99,41)" fg:x="384611" fg:w="47"/><text x="96.9496%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (47 samples, 0.01%)</title><rect x="96.6996%" y="1733" width="0.0118%" height="15" fill="rgb(253,106,12)" fg:x="384611" fg:w="47"/><text x="96.9496%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (47 samples, 0.01%)</title><rect x="96.6996%" y="1717" width="0.0118%" height="15" fill="rgb(213,46,41)" fg:x="384611" fg:w="47"/><text x="96.9496%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (47 samples, 0.01%)</title><rect x="96.6996%" y="1701" width="0.0118%" height="15" fill="rgb(215,133,35)" fg:x="384611" fg:w="47"/><text x="96.9496%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (47 samples, 0.01%)</title><rect x="96.6996%" y="1685" width="0.0118%" height="15" fill="rgb(213,28,5)" fg:x="384611" fg:w="47"/><text x="96.9496%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (47 samples, 0.01%)</title><rect x="96.7114%" y="1749" width="0.0118%" height="15" fill="rgb(215,77,49)" fg:x="384658" fg:w="47"/><text x="96.9614%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (47 samples, 0.01%)</title><rect x="96.7114%" y="1733" width="0.0118%" height="15" fill="rgb(248,100,22)" fg:x="384658" fg:w="47"/><text x="96.9614%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (47 samples, 0.01%)</title><rect x="96.7114%" y="1717" width="0.0118%" height="15" fill="rgb(208,67,9)" fg:x="384658" fg:w="47"/><text x="96.9614%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (47 samples, 0.01%)</title><rect x="96.7114%" y="1701" width="0.0118%" height="15" fill="rgb(219,133,21)" fg:x="384658" fg:w="47"/><text x="96.9614%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (47 samples, 0.01%)</title><rect x="96.7114%" y="1685" width="0.0118%" height="15" fill="rgb(246,46,29)" fg:x="384658" fg:w="47"/><text x="96.9614%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (188 samples, 0.05%)</title><rect x="96.6880%" y="1845" width="0.0473%" height="15" fill="rgb(246,185,52)" fg:x="384565" fg:w="188"/><text x="96.9380%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (188 samples, 0.05%)</title><rect x="96.6880%" y="1829" width="0.0473%" height="15" fill="rgb(252,136,11)" fg:x="384565" fg:w="188"/><text x="96.9380%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (188 samples, 0.05%)</title><rect x="96.6880%" y="1813" width="0.0473%" height="15" fill="rgb(219,138,53)" fg:x="384565" fg:w="188"/><text x="96.9380%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (95 samples, 0.02%)</title><rect x="96.7114%" y="1797" width="0.0239%" height="15" fill="rgb(211,51,23)" fg:x="384658" fg:w="95"/><text x="96.9614%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (95 samples, 0.02%)</title><rect x="96.7114%" y="1781" width="0.0239%" height="15" fill="rgb(247,221,28)" fg:x="384658" fg:w="95"/><text x="96.9614%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (95 samples, 0.02%)</title><rect x="96.7114%" y="1765" width="0.0239%" height="15" fill="rgb(251,222,45)" fg:x="384658" fg:w="95"/><text x="96.9614%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (48 samples, 0.01%)</title><rect x="96.7232%" y="1749" width="0.0121%" height="15" fill="rgb(217,162,53)" fg:x="384705" fg:w="48"/><text x="96.9732%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (48 samples, 0.01%)</title><rect x="96.7232%" y="1733" width="0.0121%" height="15" fill="rgb(229,93,14)" fg:x="384705" fg:w="48"/><text x="96.9732%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (48 samples, 0.01%)</title><rect x="96.7232%" y="1717" width="0.0121%" height="15" fill="rgb(209,67,49)" fg:x="384705" fg:w="48"/><text x="96.9732%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (48 samples, 0.01%)</title><rect x="96.7232%" y="1701" width="0.0121%" height="15" fill="rgb(213,87,29)" fg:x="384705" fg:w="48"/><text x="96.9732%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (48 samples, 0.01%)</title><rect x="96.7232%" y="1685" width="0.0121%" height="15" fill="rgb(205,151,52)" fg:x="384705" fg:w="48"/><text x="96.9732%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (41 samples, 0.01%)</title><rect x="96.7250%" y="1669" width="0.0103%" height="15" fill="rgb(253,215,39)" fg:x="384712" fg:w="41"/><text x="96.9750%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (52 samples, 0.01%)</title><rect x="96.7355%" y="1749" width="0.0131%" height="15" fill="rgb(221,220,41)" fg:x="384754" fg:w="52"/><text x="96.9855%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (52 samples, 0.01%)</title><rect x="96.7355%" y="1733" width="0.0131%" height="15" fill="rgb(218,133,21)" fg:x="384754" fg:w="52"/><text x="96.9855%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (52 samples, 0.01%)</title><rect x="96.7355%" y="1717" width="0.0131%" height="15" fill="rgb(221,193,43)" fg:x="384754" fg:w="52"/><text x="96.9855%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (52 samples, 0.01%)</title><rect x="96.7355%" y="1701" width="0.0131%" height="15" fill="rgb(240,128,52)" fg:x="384754" fg:w="52"/><text x="96.9855%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (52 samples, 0.01%)</title><rect x="96.7355%" y="1685" width="0.0131%" height="15" fill="rgb(253,114,12)" fg:x="384754" fg:w="52"/><text x="96.9855%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (46 samples, 0.01%)</title><rect x="96.7370%" y="1669" width="0.0116%" height="15" fill="rgb(215,223,47)" fg:x="384760" fg:w="46"/><text x="96.9870%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (104 samples, 0.03%)</title><rect x="96.7355%" y="1797" width="0.0261%" height="15" fill="rgb(248,225,23)" fg:x="384754" fg:w="104"/><text x="96.9855%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (104 samples, 0.03%)</title><rect x="96.7355%" y="1781" width="0.0261%" height="15" fill="rgb(250,108,0)" fg:x="384754" fg:w="104"/><text x="96.9855%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (104 samples, 0.03%)</title><rect x="96.7355%" y="1765" width="0.0261%" height="15" fill="rgb(228,208,7)" fg:x="384754" fg:w="104"/><text x="96.9855%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (52 samples, 0.01%)</title><rect x="96.7486%" y="1749" width="0.0131%" height="15" fill="rgb(244,45,10)" fg:x="384806" fg:w="52"/><text x="96.9986%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (52 samples, 0.01%)</title><rect x="96.7486%" y="1733" width="0.0131%" height="15" fill="rgb(207,125,25)" fg:x="384806" fg:w="52"/><text x="96.9986%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (52 samples, 0.01%)</title><rect x="96.7486%" y="1717" width="0.0131%" height="15" fill="rgb(210,195,18)" fg:x="384806" fg:w="52"/><text x="96.9986%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (52 samples, 0.01%)</title><rect x="96.7486%" y="1701" width="0.0131%" height="15" fill="rgb(249,80,12)" fg:x="384806" fg:w="52"/><text x="96.9986%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (52 samples, 0.01%)</title><rect x="96.7486%" y="1685" width="0.0131%" height="15" fill="rgb(221,65,9)" fg:x="384806" fg:w="52"/><text x="96.9986%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (50 samples, 0.01%)</title><rect x="96.7491%" y="1669" width="0.0126%" height="15" fill="rgb(235,49,36)" fg:x="384808" fg:w="50"/><text x="96.9991%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (52 samples, 0.01%)</title><rect x="96.7617%" y="1749" width="0.0131%" height="15" fill="rgb(225,32,20)" fg:x="384858" fg:w="52"/><text x="97.0117%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (52 samples, 0.01%)</title><rect x="96.7617%" y="1733" width="0.0131%" height="15" fill="rgb(215,141,46)" fg:x="384858" fg:w="52"/><text x="97.0117%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (52 samples, 0.01%)</title><rect x="96.7617%" y="1717" width="0.0131%" height="15" fill="rgb(250,160,47)" fg:x="384858" fg:w="52"/><text x="97.0117%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (52 samples, 0.01%)</title><rect x="96.7617%" y="1701" width="0.0131%" height="15" fill="rgb(216,222,40)" fg:x="384858" fg:w="52"/><text x="97.0117%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (52 samples, 0.01%)</title><rect x="96.7617%" y="1685" width="0.0131%" height="15" fill="rgb(234,217,39)" fg:x="384858" fg:w="52"/><text x="97.0117%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (47 samples, 0.01%)</title><rect x="96.7629%" y="1669" width="0.0118%" height="15" fill="rgb(207,178,40)" fg:x="384863" fg:w="47"/><text x="97.0129%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (51 samples, 0.01%)</title><rect x="96.7748%" y="1717" width="0.0128%" height="15" fill="rgb(221,136,13)" fg:x="384910" fg:w="51"/><text x="97.0248%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (51 samples, 0.01%)</title><rect x="96.7748%" y="1701" width="0.0128%" height="15" fill="rgb(249,199,10)" fg:x="384910" fg:w="51"/><text x="97.0248%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (51 samples, 0.01%)</title><rect x="96.7748%" y="1685" width="0.0128%" height="15" fill="rgb(249,222,13)" fg:x="384910" fg:w="51"/><text x="97.0248%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (43 samples, 0.01%)</title><rect x="96.7768%" y="1669" width="0.0108%" height="15" fill="rgb(244,185,38)" fg:x="384918" fg:w="43"/><text x="97.0268%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h1bb215923262e413E.llvm.15725695388440039465 (410 samples, 0.10%)</title><rect x="96.6848%" y="2069" width="0.1031%" height="15" fill="rgb(236,202,9)" fg:x="384552" fg:w="410"/><text x="96.9348%" y="2079.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN115_$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$9call_once17h556d70c4c0088690E (410 samples, 0.10%)</title><rect x="96.6848%" y="2053" width="0.1031%" height="15" fill="rgb(250,229,37)" fg:x="384552" fg:w="410"/><text x="96.9348%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (409 samples, 0.10%)</title><rect x="96.6850%" y="2037" width="0.1028%" height="15" fill="rgb(206,174,23)" fg:x="384553" fg:w="409"/><text x="96.9350%" y="2047.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (409 samples, 0.10%)</title><rect x="96.6850%" y="2021" width="0.1028%" height="15" fill="rgb(211,33,43)" fg:x="384553" fg:w="409"/><text x="96.9350%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (403 samples, 0.10%)</title><rect x="96.6865%" y="2005" width="0.1013%" height="15" fill="rgb(245,58,50)" fg:x="384559" fg:w="403"/><text x="96.9365%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (403 samples, 0.10%)</title><rect x="96.6865%" y="1989" width="0.1013%" height="15" fill="rgb(244,68,36)" fg:x="384559" fg:w="403"/><text x="96.9365%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (403 samples, 0.10%)</title><rect x="96.6865%" y="1973" width="0.1013%" height="15" fill="rgb(232,229,15)" fg:x="384559" fg:w="403"/><text x="96.9365%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (398 samples, 0.10%)</title><rect x="96.6878%" y="1957" width="0.1001%" height="15" fill="rgb(254,30,23)" fg:x="384564" fg:w="398"/><text x="96.9378%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (398 samples, 0.10%)</title><rect x="96.6878%" y="1941" width="0.1001%" height="15" fill="rgb(235,160,14)" fg:x="384564" fg:w="398"/><text x="96.9378%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (398 samples, 0.10%)</title><rect x="96.6878%" y="1925" width="0.1001%" height="15" fill="rgb(212,155,44)" fg:x="384564" fg:w="398"/><text x="96.9378%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (397 samples, 0.10%)</title><rect x="96.6880%" y="1909" width="0.0998%" height="15" fill="rgb(226,2,50)" fg:x="384565" fg:w="397"/><text x="96.9380%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (397 samples, 0.10%)</title><rect x="96.6880%" y="1893" width="0.0998%" height="15" fill="rgb(234,177,6)" fg:x="384565" fg:w="397"/><text x="96.9380%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (397 samples, 0.10%)</title><rect x="96.6880%" y="1877" width="0.0998%" height="15" fill="rgb(217,24,9)" fg:x="384565" fg:w="397"/><text x="96.9380%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (397 samples, 0.10%)</title><rect x="96.6880%" y="1861" width="0.0998%" height="15" fill="rgb(220,13,46)" fg:x="384565" fg:w="397"/><text x="96.9380%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (209 samples, 0.05%)</title><rect x="96.7353%" y="1845" width="0.0525%" height="15" fill="rgb(239,221,27)" fg:x="384753" fg:w="209"/><text x="96.9853%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (209 samples, 0.05%)</title><rect x="96.7353%" y="1829" width="0.0525%" height="15" fill="rgb(222,198,25)" fg:x="384753" fg:w="209"/><text x="96.9853%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (208 samples, 0.05%)</title><rect x="96.7355%" y="1813" width="0.0523%" height="15" fill="rgb(211,99,13)" fg:x="384754" fg:w="208"/><text x="96.9855%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (104 samples, 0.03%)</title><rect x="96.7617%" y="1797" width="0.0261%" height="15" fill="rgb(232,111,31)" fg:x="384858" fg:w="104"/><text x="97.0117%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (104 samples, 0.03%)</title><rect x="96.7617%" y="1781" width="0.0261%" height="15" fill="rgb(245,82,37)" fg:x="384858" fg:w="104"/><text x="97.0117%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (104 samples, 0.03%)</title><rect x="96.7617%" y="1765" width="0.0261%" height="15" fill="rgb(227,149,46)" fg:x="384858" fg:w="104"/><text x="97.0117%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (52 samples, 0.01%)</title><rect x="96.7748%" y="1749" width="0.0131%" height="15" fill="rgb(218,36,50)" fg:x="384910" fg:w="52"/><text x="97.0248%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (52 samples, 0.01%)</title><rect x="96.7748%" y="1733" width="0.0131%" height="15" fill="rgb(226,80,48)" fg:x="384910" fg:w="52"/><text x="97.0248%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (49 samples, 0.01%)</title><rect x="96.8027%" y="1813" width="0.0123%" height="15" fill="rgb(238,224,15)" fg:x="385021" fg:w="49"/><text x="97.0527%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (49 samples, 0.01%)</title><rect x="96.8027%" y="1797" width="0.0123%" height="15" fill="rgb(241,136,10)" fg:x="385021" fg:w="49"/><text x="97.0527%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (49 samples, 0.01%)</title><rect x="96.8027%" y="1781" width="0.0123%" height="15" fill="rgb(208,32,45)" fg:x="385021" fg:w="49"/><text x="97.0527%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (131 samples, 0.03%)</title><rect x="96.7944%" y="1909" width="0.0329%" height="15" fill="rgb(207,135,9)" fg:x="384988" fg:w="131"/><text x="97.0444%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (131 samples, 0.03%)</title><rect x="96.7944%" y="1893" width="0.0329%" height="15" fill="rgb(206,86,44)" fg:x="384988" fg:w="131"/><text x="97.0444%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (131 samples, 0.03%)</title><rect x="96.7944%" y="1877" width="0.0329%" height="15" fill="rgb(245,177,15)" fg:x="384988" fg:w="131"/><text x="97.0444%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (98 samples, 0.02%)</title><rect x="96.8027%" y="1861" width="0.0246%" height="15" fill="rgb(206,64,50)" fg:x="385021" fg:w="98"/><text x="97.0527%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (98 samples, 0.02%)</title><rect x="96.8027%" y="1845" width="0.0246%" height="15" fill="rgb(234,36,40)" fg:x="385021" fg:w="98"/><text x="97.0527%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (98 samples, 0.02%)</title><rect x="96.8027%" y="1829" width="0.0246%" height="15" fill="rgb(213,64,8)" fg:x="385021" fg:w="98"/><text x="97.0527%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (49 samples, 0.01%)</title><rect x="96.8150%" y="1813" width="0.0123%" height="15" fill="rgb(210,75,36)" fg:x="385070" fg:w="49"/><text x="97.0650%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (49 samples, 0.01%)</title><rect x="96.8150%" y="1797" width="0.0123%" height="15" fill="rgb(229,88,21)" fg:x="385070" fg:w="49"/><text x="97.0650%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (49 samples, 0.01%)</title><rect x="96.8150%" y="1781" width="0.0123%" height="15" fill="rgb(252,204,47)" fg:x="385070" fg:w="49"/><text x="97.0650%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (52 samples, 0.01%)</title><rect x="96.8276%" y="1813" width="0.0131%" height="15" fill="rgb(208,77,27)" fg:x="385120" fg:w="52"/><text x="97.0776%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (52 samples, 0.01%)</title><rect x="96.8276%" y="1797" width="0.0131%" height="15" fill="rgb(221,76,26)" fg:x="385120" fg:w="52"/><text x="97.0776%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (52 samples, 0.01%)</title><rect x="96.8276%" y="1781" width="0.0131%" height="15" fill="rgb(225,139,18)" fg:x="385120" fg:w="52"/><text x="97.0776%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (140 samples, 0.04%)</title><rect x="96.8276%" y="1861" width="0.0352%" height="15" fill="rgb(230,137,11)" fg:x="385120" fg:w="140"/><text x="97.0776%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (140 samples, 0.04%)</title><rect x="96.8276%" y="1845" width="0.0352%" height="15" fill="rgb(212,28,1)" fg:x="385120" fg:w="140"/><text x="97.0776%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (140 samples, 0.04%)</title><rect x="96.8276%" y="1829" width="0.0352%" height="15" fill="rgb(248,164,17)" fg:x="385120" fg:w="140"/><text x="97.0776%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (53 samples, 0.01%)</title><rect x="96.8494%" y="1813" width="0.0133%" height="15" fill="rgb(222,171,42)" fg:x="385207" fg:w="53"/><text x="97.0994%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (53 samples, 0.01%)</title><rect x="96.8494%" y="1797" width="0.0133%" height="15" fill="rgb(243,84,45)" fg:x="385207" fg:w="53"/><text x="97.0994%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (53 samples, 0.01%)</title><rect x="96.8494%" y="1781" width="0.0133%" height="15" fill="rgb(252,49,23)" fg:x="385207" fg:w="53"/><text x="97.0994%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (53 samples, 0.01%)</title><rect x="96.8628%" y="1813" width="0.0133%" height="15" fill="rgb(215,19,7)" fg:x="385260" fg:w="53"/><text x="97.1128%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (53 samples, 0.01%)</title><rect x="96.8628%" y="1797" width="0.0133%" height="15" fill="rgb(238,81,41)" fg:x="385260" fg:w="53"/><text x="97.1128%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (53 samples, 0.01%)</title><rect x="96.8628%" y="1781" width="0.0133%" height="15" fill="rgb(210,199,37)" fg:x="385260" fg:w="53"/><text x="97.1128%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (380 samples, 0.10%)</title><rect x="96.7944%" y="1925" width="0.0955%" height="15" fill="rgb(244,192,49)" fg:x="384988" fg:w="380"/><text x="97.0444%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (249 samples, 0.06%)</title><rect x="96.8273%" y="1909" width="0.0626%" height="15" fill="rgb(226,211,11)" fg:x="385119" fg:w="249"/><text x="97.0773%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (249 samples, 0.06%)</title><rect x="96.8273%" y="1893" width="0.0626%" height="15" fill="rgb(236,162,54)" fg:x="385119" fg:w="249"/><text x="97.0773%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (248 samples, 0.06%)</title><rect x="96.8276%" y="1877" width="0.0624%" height="15" fill="rgb(220,229,9)" fg:x="385120" fg:w="248"/><text x="97.0776%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (108 samples, 0.03%)</title><rect x="96.8628%" y="1861" width="0.0272%" height="15" fill="rgb(250,87,22)" fg:x="385260" fg:w="108"/><text x="97.1128%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (108 samples, 0.03%)</title><rect x="96.8628%" y="1845" width="0.0272%" height="15" fill="rgb(239,43,17)" fg:x="385260" fg:w="108"/><text x="97.1128%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (108 samples, 0.03%)</title><rect x="96.8628%" y="1829" width="0.0272%" height="15" fill="rgb(231,177,25)" fg:x="385260" fg:w="108"/><text x="97.1128%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (55 samples, 0.01%)</title><rect x="96.8761%" y="1813" width="0.0138%" height="15" fill="rgb(219,179,1)" fg:x="385313" fg:w="55"/><text x="97.1261%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (55 samples, 0.01%)</title><rect x="96.8761%" y="1797" width="0.0138%" height="15" fill="rgb(238,219,53)" fg:x="385313" fg:w="55"/><text x="97.1261%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (55 samples, 0.01%)</title><rect x="96.8761%" y="1781" width="0.0138%" height="15" fill="rgb(232,167,36)" fg:x="385313" fg:w="55"/><text x="97.1261%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (381 samples, 0.10%)</title><rect x="96.7944%" y="1973" width="0.0958%" height="15" fill="rgb(244,19,51)" fg:x="384988" fg:w="381"/><text x="97.0444%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (381 samples, 0.10%)</title><rect x="96.7944%" y="1957" width="0.0958%" height="15" fill="rgb(224,6,22)" fg:x="384988" fg:w="381"/><text x="97.0444%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (381 samples, 0.10%)</title><rect x="96.7944%" y="1941" width="0.0958%" height="15" fill="rgb(224,145,5)" fg:x="384988" fg:w="381"/><text x="97.0444%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (450 samples, 0.11%)</title><rect x="96.7881%" y="2021" width="0.1131%" height="15" fill="rgb(234,130,49)" fg:x="384963" fg:w="450"/><text x="97.0381%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (450 samples, 0.11%)</title><rect x="96.7881%" y="2005" width="0.1131%" height="15" fill="rgb(254,6,2)" fg:x="384963" fg:w="450"/><text x="97.0381%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (450 samples, 0.11%)</title><rect x="96.7881%" y="1989" width="0.1131%" height="15" fill="rgb(208,96,46)" fg:x="384963" fg:w="450"/><text x="97.0381%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (44 samples, 0.01%)</title><rect x="96.8902%" y="1973" width="0.0111%" height="15" fill="rgb(239,3,39)" fg:x="385369" fg:w="44"/><text x="97.1402%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (44 samples, 0.01%)</title><rect x="96.8902%" y="1957" width="0.0111%" height="15" fill="rgb(233,210,1)" fg:x="385369" fg:w="44"/><text x="97.1402%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (44 samples, 0.01%)</title><rect x="96.8902%" y="1941" width="0.0111%" height="15" fill="rgb(244,137,37)" fg:x="385369" fg:w="44"/><text x="97.1402%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (40 samples, 0.01%)</title><rect x="96.9168%" y="1237" width="0.0101%" height="15" fill="rgb(240,136,2)" fg:x="385475" fg:w="40"/><text x="97.1668%" y="1247.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (40 samples, 0.01%)</title><rect x="96.9168%" y="1221" width="0.0101%" height="15" fill="rgb(239,18,37)" fg:x="385475" fg:w="40"/><text x="97.1668%" y="1231.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (40 samples, 0.01%)</title><rect x="96.9168%" y="1205" width="0.0101%" height="15" fill="rgb(218,185,22)" fg:x="385475" fg:w="40"/><text x="97.1668%" y="1215.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (44 samples, 0.01%)</title><rect x="96.9168%" y="1349" width="0.0111%" height="15" fill="rgb(225,218,4)" fg:x="385475" fg:w="44"/><text x="97.1668%" y="1359.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (44 samples, 0.01%)</title><rect x="96.9168%" y="1333" width="0.0111%" height="15" fill="rgb(230,182,32)" fg:x="385475" fg:w="44"/><text x="97.1668%" y="1343.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (44 samples, 0.01%)</title><rect x="96.9168%" y="1317" width="0.0111%" height="15" fill="rgb(242,56,43)" fg:x="385475" fg:w="44"/><text x="97.1668%" y="1327.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (44 samples, 0.01%)</title><rect x="96.9168%" y="1301" width="0.0111%" height="15" fill="rgb(233,99,24)" fg:x="385475" fg:w="44"/><text x="97.1668%" y="1311.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (44 samples, 0.01%)</title><rect x="96.9168%" y="1285" width="0.0111%" height="15" fill="rgb(234,209,42)" fg:x="385475" fg:w="44"/><text x="97.1668%" y="1295.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (44 samples, 0.01%)</title><rect x="96.9168%" y="1269" width="0.0111%" height="15" fill="rgb(227,7,12)" fg:x="385475" fg:w="44"/><text x="97.1668%" y="1279.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (44 samples, 0.01%)</title><rect x="96.9168%" y="1253" width="0.0111%" height="15" fill="rgb(245,203,43)" fg:x="385475" fg:w="44"/><text x="97.1668%" y="1263.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (49 samples, 0.01%)</title><rect x="96.9168%" y="1397" width="0.0123%" height="15" fill="rgb(238,205,33)" fg:x="385475" fg:w="49"/><text x="97.1668%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (49 samples, 0.01%)</title><rect x="96.9168%" y="1381" width="0.0123%" height="15" fill="rgb(231,56,7)" fg:x="385475" fg:w="49"/><text x="97.1668%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (49 samples, 0.01%)</title><rect x="96.9168%" y="1365" width="0.0123%" height="15" fill="rgb(244,186,29)" fg:x="385475" fg:w="49"/><text x="97.1668%" y="1375.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (58 samples, 0.01%)</title><rect x="96.9168%" y="1461" width="0.0146%" height="15" fill="rgb(234,111,31)" fg:x="385475" fg:w="58"/><text x="97.1668%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (58 samples, 0.01%)</title><rect x="96.9168%" y="1445" width="0.0146%" height="15" fill="rgb(241,149,10)" fg:x="385475" fg:w="58"/><text x="97.1668%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (58 samples, 0.01%)</title><rect x="96.9168%" y="1429" width="0.0146%" height="15" fill="rgb(249,206,44)" fg:x="385475" fg:w="58"/><text x="97.1668%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (58 samples, 0.01%)</title><rect x="96.9168%" y="1413" width="0.0146%" height="15" fill="rgb(251,153,30)" fg:x="385475" fg:w="58"/><text x="97.1668%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (70 samples, 0.02%)</title><rect x="96.9314%" y="1413" width="0.0176%" height="15" fill="rgb(239,152,38)" fg:x="385533" fg:w="70"/><text x="97.1814%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (70 samples, 0.02%)</title><rect x="96.9314%" y="1397" width="0.0176%" height="15" fill="rgb(249,139,47)" fg:x="385533" fg:w="70"/><text x="97.1814%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (70 samples, 0.02%)</title><rect x="96.9314%" y="1381" width="0.0176%" height="15" fill="rgb(244,64,35)" fg:x="385533" fg:w="70"/><text x="97.1814%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (193 samples, 0.05%)</title><rect x="96.9168%" y="1525" width="0.0485%" height="15" fill="rgb(216,46,15)" fg:x="385475" fg:w="193"/><text x="97.1668%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (193 samples, 0.05%)</title><rect x="96.9168%" y="1509" width="0.0485%" height="15" fill="rgb(250,74,19)" fg:x="385475" fg:w="193"/><text x="97.1668%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (193 samples, 0.05%)</title><rect x="96.9168%" y="1493" width="0.0485%" height="15" fill="rgb(249,42,33)" fg:x="385475" fg:w="193"/><text x="97.1668%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (193 samples, 0.05%)</title><rect x="96.9168%" y="1477" width="0.0485%" height="15" fill="rgb(242,149,17)" fg:x="385475" fg:w="193"/><text x="97.1668%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (135 samples, 0.03%)</title><rect x="96.9314%" y="1461" width="0.0339%" height="15" fill="rgb(244,29,21)" fg:x="385533" fg:w="135"/><text x="97.1814%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (135 samples, 0.03%)</title><rect x="96.9314%" y="1445" width="0.0339%" height="15" fill="rgb(220,130,37)" fg:x="385533" fg:w="135"/><text x="97.1814%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (135 samples, 0.03%)</title><rect x="96.9314%" y="1429" width="0.0339%" height="15" fill="rgb(211,67,2)" fg:x="385533" fg:w="135"/><text x="97.1814%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (65 samples, 0.02%)</title><rect x="96.9490%" y="1413" width="0.0163%" height="15" fill="rgb(235,68,52)" fg:x="385603" fg:w="65"/><text x="97.1990%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (65 samples, 0.02%)</title><rect x="96.9490%" y="1397" width="0.0163%" height="15" fill="rgb(246,142,3)" fg:x="385603" fg:w="65"/><text x="97.1990%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (65 samples, 0.02%)</title><rect x="96.9490%" y="1381" width="0.0163%" height="15" fill="rgb(241,25,7)" fg:x="385603" fg:w="65"/><text x="97.1990%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (195 samples, 0.05%)</title><rect x="96.9166%" y="1573" width="0.0490%" height="15" fill="rgb(242,119,39)" fg:x="385474" fg:w="195"/><text x="97.1666%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (195 samples, 0.05%)</title><rect x="96.9166%" y="1557" width="0.0490%" height="15" fill="rgb(241,98,45)" fg:x="385474" fg:w="195"/><text x="97.1666%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (195 samples, 0.05%)</title><rect x="96.9166%" y="1541" width="0.0490%" height="15" fill="rgb(254,28,30)" fg:x="385474" fg:w="195"/><text x="97.1666%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (196 samples, 0.05%)</title><rect x="96.9166%" y="1621" width="0.0493%" height="15" fill="rgb(241,142,54)" fg:x="385474" fg:w="196"/><text x="97.1666%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (196 samples, 0.05%)</title><rect x="96.9166%" y="1605" width="0.0493%" height="15" fill="rgb(222,85,15)" fg:x="385474" fg:w="196"/><text x="97.1666%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (196 samples, 0.05%)</title><rect x="96.9166%" y="1589" width="0.0493%" height="15" fill="rgb(210,85,47)" fg:x="385474" fg:w="196"/><text x="97.1666%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (198 samples, 0.05%)</title><rect x="96.9166%" y="1781" width="0.0498%" height="15" fill="rgb(224,206,25)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (198 samples, 0.05%)</title><rect x="96.9166%" y="1765" width="0.0498%" height="15" fill="rgb(243,201,19)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (198 samples, 0.05%)</title><rect x="96.9166%" y="1749" width="0.0498%" height="15" fill="rgb(236,59,4)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (198 samples, 0.05%)</title><rect x="96.9166%" y="1733" width="0.0498%" height="15" fill="rgb(254,179,45)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (198 samples, 0.05%)</title><rect x="96.9166%" y="1717" width="0.0498%" height="15" fill="rgb(226,14,10)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (198 samples, 0.05%)</title><rect x="96.9166%" y="1701" width="0.0498%" height="15" fill="rgb(244,27,41)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (198 samples, 0.05%)</title><rect x="96.9166%" y="1685" width="0.0498%" height="15" fill="rgb(235,35,32)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (198 samples, 0.05%)</title><rect x="96.9166%" y="1669" width="0.0498%" height="15" fill="rgb(218,68,31)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (198 samples, 0.05%)</title><rect x="96.9166%" y="1653" width="0.0498%" height="15" fill="rgb(207,120,37)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (198 samples, 0.05%)</title><rect x="96.9166%" y="1637" width="0.0498%" height="15" fill="rgb(227,98,0)" fg:x="385474" fg:w="198"/><text x="97.1666%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (234 samples, 0.06%)</title><rect x="96.9123%" y="1797" width="0.0588%" height="15" fill="rgb(207,7,3)" fg:x="385457" fg:w="234"/><text x="97.1623%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (261 samples, 0.07%)</title><rect x="96.9058%" y="1893" width="0.0656%" height="15" fill="rgb(206,98,19)" fg:x="385431" fg:w="261"/><text x="97.1558%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (261 samples, 0.07%)</title><rect x="96.9058%" y="1877" width="0.0656%" height="15" fill="rgb(217,5,26)" fg:x="385431" fg:w="261"/><text x="97.1558%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (261 samples, 0.07%)</title><rect x="96.9058%" y="1861" width="0.0656%" height="15" fill="rgb(235,190,38)" fg:x="385431" fg:w="261"/><text x="97.1558%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (261 samples, 0.07%)</title><rect x="96.9058%" y="1845" width="0.0656%" height="15" fill="rgb(247,86,24)" fg:x="385431" fg:w="261"/><text x="97.1558%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (235 samples, 0.06%)</title><rect x="96.9123%" y="1829" width="0.0591%" height="15" fill="rgb(205,101,16)" fg:x="385457" fg:w="235"/><text x="97.1623%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (235 samples, 0.06%)</title><rect x="96.9123%" y="1813" width="0.0591%" height="15" fill="rgb(246,168,33)" fg:x="385457" fg:w="235"/><text x="97.1623%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (69 samples, 0.02%)</title><rect x="96.9714%" y="1845" width="0.0173%" height="15" fill="rgb(231,114,1)" fg:x="385692" fg:w="69"/><text x="97.2214%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (69 samples, 0.02%)</title><rect x="96.9714%" y="1829" width="0.0173%" height="15" fill="rgb(207,184,53)" fg:x="385692" fg:w="69"/><text x="97.2214%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (69 samples, 0.02%)</title><rect x="96.9714%" y="1813" width="0.0173%" height="15" fill="rgb(224,95,51)" fg:x="385692" fg:w="69"/><text x="97.2214%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (398 samples, 0.10%)</title><rect x="96.9052%" y="1957" width="0.1001%" height="15" fill="rgb(212,188,45)" fg:x="385429" fg:w="398"/><text x="97.1552%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (397 samples, 0.10%)</title><rect x="96.9055%" y="1941" width="0.0998%" height="15" fill="rgb(223,154,38)" fg:x="385430" fg:w="397"/><text x="97.1555%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (397 samples, 0.10%)</title><rect x="96.9055%" y="1925" width="0.0998%" height="15" fill="rgb(251,22,52)" fg:x="385430" fg:w="397"/><text x="97.1555%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (396 samples, 0.10%)</title><rect x="96.9058%" y="1909" width="0.0996%" height="15" fill="rgb(229,209,22)" fg:x="385431" fg:w="396"/><text x="97.1558%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (135 samples, 0.03%)</title><rect x="96.9714%" y="1893" width="0.0339%" height="15" fill="rgb(234,138,34)" fg:x="385692" fg:w="135"/><text x="97.2214%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (135 samples, 0.03%)</title><rect x="96.9714%" y="1877" width="0.0339%" height="15" fill="rgb(212,95,11)" fg:x="385692" fg:w="135"/><text x="97.2214%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (135 samples, 0.03%)</title><rect x="96.9714%" y="1861" width="0.0339%" height="15" fill="rgb(240,179,47)" fg:x="385692" fg:w="135"/><text x="97.2214%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (66 samples, 0.02%)</title><rect x="96.9887%" y="1845" width="0.0166%" height="15" fill="rgb(240,163,11)" fg:x="385761" fg:w="66"/><text x="97.2387%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (66 samples, 0.02%)</title><rect x="96.9887%" y="1829" width="0.0166%" height="15" fill="rgb(236,37,12)" fg:x="385761" fg:w="66"/><text x="97.2387%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (66 samples, 0.02%)</title><rect x="96.9887%" y="1813" width="0.0166%" height="15" fill="rgb(232,164,16)" fg:x="385761" fg:w="66"/><text x="97.2387%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (456 samples, 0.11%)</title><rect x="96.9012%" y="2021" width="0.1146%" height="15" fill="rgb(244,205,15)" fg:x="385413" fg:w="456"/><text x="97.1512%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (456 samples, 0.11%)</title><rect x="96.9012%" y="2005" width="0.1146%" height="15" fill="rgb(223,117,47)" fg:x="385413" fg:w="456"/><text x="97.1512%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (456 samples, 0.11%)</title><rect x="96.9012%" y="1989" width="0.1146%" height="15" fill="rgb(244,107,35)" fg:x="385413" fg:w="456"/><text x="97.1512%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (456 samples, 0.11%)</title><rect x="96.9012%" y="1973" width="0.1146%" height="15" fill="rgb(205,140,8)" fg:x="385413" fg:w="456"/><text x="97.1512%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (42 samples, 0.01%)</title><rect x="97.0053%" y="1957" width="0.0106%" height="15" fill="rgb(228,84,46)" fg:x="385827" fg:w="42"/><text x="97.2553%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (42 samples, 0.01%)</title><rect x="97.0053%" y="1941" width="0.0106%" height="15" fill="rgb(254,188,9)" fg:x="385827" fg:w="42"/><text x="97.2553%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (42 samples, 0.01%)</title><rect x="97.0053%" y="1925" width="0.0106%" height="15" fill="rgb(206,112,54)" fg:x="385827" fg:w="42"/><text x="97.2553%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (77 samples, 0.02%)</title><rect x="97.0159%" y="1973" width="0.0194%" height="15" fill="rgb(216,84,49)" fg:x="385869" fg:w="77"/><text x="97.2659%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (77 samples, 0.02%)</title><rect x="97.0159%" y="1957" width="0.0194%" height="15" fill="rgb(214,194,35)" fg:x="385869" fg:w="77"/><text x="97.2659%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (77 samples, 0.02%)</title><rect x="97.0159%" y="1941" width="0.0194%" height="15" fill="rgb(249,28,3)" fg:x="385869" fg:w="77"/><text x="97.2659%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (40 samples, 0.01%)</title><rect x="97.0370%" y="1749" width="0.0101%" height="15" fill="rgb(222,56,52)" fg:x="385953" fg:w="40"/><text x="97.2870%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (40 samples, 0.01%)</title><rect x="97.0370%" y="1733" width="0.0101%" height="15" fill="rgb(245,217,50)" fg:x="385953" fg:w="40"/><text x="97.2870%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (40 samples, 0.01%)</title><rect x="97.0370%" y="1717" width="0.0101%" height="15" fill="rgb(213,201,24)" fg:x="385953" fg:w="40"/><text x="97.2870%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (46 samples, 0.01%)</title><rect x="97.0370%" y="1797" width="0.0116%" height="15" fill="rgb(248,116,28)" fg:x="385953" fg:w="46"/><text x="97.2870%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (46 samples, 0.01%)</title><rect x="97.0370%" y="1781" width="0.0116%" height="15" fill="rgb(219,72,43)" fg:x="385953" fg:w="46"/><text x="97.2870%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (46 samples, 0.01%)</title><rect x="97.0370%" y="1765" width="0.0116%" height="15" fill="rgb(209,138,14)" fg:x="385953" fg:w="46"/><text x="97.2870%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (57 samples, 0.01%)</title><rect x="97.0370%" y="1861" width="0.0143%" height="15" fill="rgb(222,18,33)" fg:x="385953" fg:w="57"/><text x="97.2870%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (57 samples, 0.01%)</title><rect x="97.0370%" y="1845" width="0.0143%" height="15" fill="rgb(213,199,7)" fg:x="385953" fg:w="57"/><text x="97.2870%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (57 samples, 0.01%)</title><rect x="97.0370%" y="1829" width="0.0143%" height="15" fill="rgb(250,110,10)" fg:x="385953" fg:w="57"/><text x="97.2870%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (57 samples, 0.01%)</title><rect x="97.0370%" y="1813" width="0.0143%" height="15" fill="rgb(248,123,6)" fg:x="385953" fg:w="57"/><text x="97.2870%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (106 samples, 0.03%)</title><rect x="97.0355%" y="1909" width="0.0267%" height="15" fill="rgb(206,91,31)" fg:x="385947" fg:w="106"/><text x="97.2855%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (106 samples, 0.03%)</title><rect x="97.0355%" y="1893" width="0.0267%" height="15" fill="rgb(211,154,13)" fg:x="385947" fg:w="106"/><text x="97.2855%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (106 samples, 0.03%)</title><rect x="97.0355%" y="1877" width="0.0267%" height="15" fill="rgb(225,148,7)" fg:x="385947" fg:w="106"/><text x="97.2855%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (43 samples, 0.01%)</title><rect x="97.0513%" y="1861" width="0.0108%" height="15" fill="rgb(220,160,43)" fg:x="386010" fg:w="43"/><text x="97.3013%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (43 samples, 0.01%)</title><rect x="97.0513%" y="1845" width="0.0108%" height="15" fill="rgb(213,52,39)" fg:x="386010" fg:w="43"/><text x="97.3013%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (43 samples, 0.01%)</title><rect x="97.0513%" y="1829" width="0.0108%" height="15" fill="rgb(243,137,7)" fg:x="386010" fg:w="43"/><text x="97.3013%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (57 samples, 0.01%)</title><rect x="97.0672%" y="1813" width="0.0143%" height="15" fill="rgb(230,79,13)" fg:x="386073" fg:w="57"/><text x="97.3172%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (57 samples, 0.01%)</title><rect x="97.0672%" y="1797" width="0.0143%" height="15" fill="rgb(247,105,23)" fg:x="386073" fg:w="57"/><text x="97.3172%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (57 samples, 0.01%)</title><rect x="97.0672%" y="1781" width="0.0143%" height="15" fill="rgb(223,179,41)" fg:x="386073" fg:w="57"/><text x="97.3172%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (109 samples, 0.03%)</title><rect x="97.0672%" y="1861" width="0.0274%" height="15" fill="rgb(218,9,34)" fg:x="386073" fg:w="109"/><text x="97.3172%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (109 samples, 0.03%)</title><rect x="97.0672%" y="1845" width="0.0274%" height="15" fill="rgb(222,106,8)" fg:x="386073" fg:w="109"/><text x="97.3172%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (109 samples, 0.03%)</title><rect x="97.0672%" y="1829" width="0.0274%" height="15" fill="rgb(211,220,0)" fg:x="386073" fg:w="109"/><text x="97.3172%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (52 samples, 0.01%)</title><rect x="97.0815%" y="1813" width="0.0131%" height="15" fill="rgb(229,52,16)" fg:x="386130" fg:w="52"/><text x="97.3315%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (52 samples, 0.01%)</title><rect x="97.0815%" y="1797" width="0.0131%" height="15" fill="rgb(212,155,18)" fg:x="386130" fg:w="52"/><text x="97.3315%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (52 samples, 0.01%)</title><rect x="97.0815%" y="1781" width="0.0131%" height="15" fill="rgb(242,21,14)" fg:x="386130" fg:w="52"/><text x="97.3315%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (52 samples, 0.01%)</title><rect x="97.0946%" y="1813" width="0.0131%" height="15" fill="rgb(222,19,48)" fg:x="386182" fg:w="52"/><text x="97.3446%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (52 samples, 0.01%)</title><rect x="97.0946%" y="1797" width="0.0131%" height="15" fill="rgb(232,45,27)" fg:x="386182" fg:w="52"/><text x="97.3446%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (52 samples, 0.01%)</title><rect x="97.0946%" y="1781" width="0.0131%" height="15" fill="rgb(249,103,42)" fg:x="386182" fg:w="52"/><text x="97.3446%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (339 samples, 0.09%)</title><rect x="97.0355%" y="1925" width="0.0852%" height="15" fill="rgb(246,81,33)" fg:x="385947" fg:w="339"/><text x="97.2855%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (213 samples, 0.05%)</title><rect x="97.0672%" y="1909" width="0.0536%" height="15" fill="rgb(252,33,42)" fg:x="386073" fg:w="213"/><text x="97.3172%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (213 samples, 0.05%)</title><rect x="97.0672%" y="1893" width="0.0536%" height="15" fill="rgb(209,212,41)" fg:x="386073" fg:w="213"/><text x="97.3172%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (213 samples, 0.05%)</title><rect x="97.0672%" y="1877" width="0.0536%" height="15" fill="rgb(207,154,6)" fg:x="386073" fg:w="213"/><text x="97.3172%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (104 samples, 0.03%)</title><rect x="97.0946%" y="1861" width="0.0261%" height="15" fill="rgb(223,64,47)" fg:x="386182" fg:w="104"/><text x="97.3446%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (104 samples, 0.03%)</title><rect x="97.0946%" y="1845" width="0.0261%" height="15" fill="rgb(211,161,38)" fg:x="386182" fg:w="104"/><text x="97.3446%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (104 samples, 0.03%)</title><rect x="97.0946%" y="1829" width="0.0261%" height="15" fill="rgb(219,138,40)" fg:x="386182" fg:w="104"/><text x="97.3446%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (52 samples, 0.01%)</title><rect x="97.1076%" y="1813" width="0.0131%" height="15" fill="rgb(241,228,46)" fg:x="386234" fg:w="52"/><text x="97.3576%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (52 samples, 0.01%)</title><rect x="97.1076%" y="1797" width="0.0131%" height="15" fill="rgb(223,209,38)" fg:x="386234" fg:w="52"/><text x="97.3576%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (52 samples, 0.01%)</title><rect x="97.1076%" y="1781" width="0.0131%" height="15" fill="rgb(236,164,45)" fg:x="386234" fg:w="52"/><text x="97.3576%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (341 samples, 0.09%)</title><rect x="97.0352%" y="1973" width="0.0857%" height="15" fill="rgb(231,15,5)" fg:x="385946" fg:w="341"/><text x="97.2852%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (340 samples, 0.09%)</title><rect x="97.0355%" y="1957" width="0.0855%" height="15" fill="rgb(252,35,15)" fg:x="385947" fg:w="340"/><text x="97.2855%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (340 samples, 0.09%)</title><rect x="97.0355%" y="1941" width="0.0855%" height="15" fill="rgb(248,181,18)" fg:x="385947" fg:w="340"/><text x="97.2855%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (151 samples, 0.04%)</title><rect x="97.1210%" y="1877" width="0.0380%" height="15" fill="rgb(233,39,42)" fg:x="386287" fg:w="151"/><text x="97.3710%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (151 samples, 0.04%)</title><rect x="97.1210%" y="1861" width="0.0380%" height="15" fill="rgb(238,110,33)" fg:x="386287" fg:w="151"/><text x="97.3710%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (151 samples, 0.04%)</title><rect x="97.1210%" y="1845" width="0.0380%" height="15" fill="rgb(233,195,10)" fg:x="386287" fg:w="151"/><text x="97.3710%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (74 samples, 0.02%)</title><rect x="97.1403%" y="1829" width="0.0186%" height="15" fill="rgb(254,105,3)" fg:x="386364" fg:w="74"/><text x="97.3903%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (74 samples, 0.02%)</title><rect x="97.1403%" y="1813" width="0.0186%" height="15" fill="rgb(221,225,9)" fg:x="386364" fg:w="74"/><text x="97.3903%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (74 samples, 0.02%)</title><rect x="97.1403%" y="1797" width="0.0186%" height="15" fill="rgb(224,227,45)" fg:x="386364" fg:w="74"/><text x="97.3903%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (69 samples, 0.02%)</title><rect x="97.1589%" y="1829" width="0.0173%" height="15" fill="rgb(229,198,43)" fg:x="386438" fg:w="69"/><text x="97.4089%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (69 samples, 0.02%)</title><rect x="97.1589%" y="1813" width="0.0173%" height="15" fill="rgb(206,209,35)" fg:x="386438" fg:w="69"/><text x="97.4089%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (69 samples, 0.02%)</title><rect x="97.1589%" y="1797" width="0.0173%" height="15" fill="rgb(245,195,53)" fg:x="386438" fg:w="69"/><text x="97.4089%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (71 samples, 0.02%)</title><rect x="97.1763%" y="1797" width="0.0179%" height="15" fill="rgb(240,92,26)" fg:x="386507" fg:w="71"/><text x="97.4263%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (292 samples, 0.07%)</title><rect x="97.1210%" y="1925" width="0.0734%" height="15" fill="rgb(207,40,23)" fg:x="386287" fg:w="292"/><text x="97.3710%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (292 samples, 0.07%)</title><rect x="97.1210%" y="1909" width="0.0734%" height="15" fill="rgb(223,111,35)" fg:x="386287" fg:w="292"/><text x="97.3710%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (292 samples, 0.07%)</title><rect x="97.1210%" y="1893" width="0.0734%" height="15" fill="rgb(229,147,28)" fg:x="386287" fg:w="292"/><text x="97.3710%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (141 samples, 0.04%)</title><rect x="97.1589%" y="1877" width="0.0355%" height="15" fill="rgb(211,29,28)" fg:x="386438" fg:w="141"/><text x="97.4089%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (141 samples, 0.04%)</title><rect x="97.1589%" y="1861" width="0.0355%" height="15" fill="rgb(228,72,33)" fg:x="386438" fg:w="141"/><text x="97.4089%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (141 samples, 0.04%)</title><rect x="97.1589%" y="1845" width="0.0355%" height="15" fill="rgb(205,214,31)" fg:x="386438" fg:w="141"/><text x="97.4089%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (72 samples, 0.02%)</title><rect x="97.1763%" y="1829" width="0.0181%" height="15" fill="rgb(224,111,15)" fg:x="386507" fg:w="72"/><text x="97.4263%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (72 samples, 0.02%)</title><rect x="97.1763%" y="1813" width="0.0181%" height="15" fill="rgb(253,21,26)" fg:x="386507" fg:w="72"/><text x="97.4263%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (70 samples, 0.02%)</title><rect x="97.1944%" y="1829" width="0.0176%" height="15" fill="rgb(245,139,43)" fg:x="386579" fg:w="70"/><text x="97.4444%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (70 samples, 0.02%)</title><rect x="97.1944%" y="1813" width="0.0176%" height="15" fill="rgb(252,170,7)" fg:x="386579" fg:w="70"/><text x="97.4444%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (70 samples, 0.02%)</title><rect x="97.1944%" y="1797" width="0.0176%" height="15" fill="rgb(231,118,14)" fg:x="386579" fg:w="70"/><text x="97.4444%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (142 samples, 0.04%)</title><rect x="97.1944%" y="1877" width="0.0357%" height="15" fill="rgb(238,83,0)" fg:x="386579" fg:w="142"/><text x="97.4444%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (142 samples, 0.04%)</title><rect x="97.1944%" y="1861" width="0.0357%" height="15" fill="rgb(221,39,39)" fg:x="386579" fg:w="142"/><text x="97.4444%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (142 samples, 0.04%)</title><rect x="97.1944%" y="1845" width="0.0357%" height="15" fill="rgb(222,119,46)" fg:x="386579" fg:w="142"/><text x="97.4444%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (72 samples, 0.02%)</title><rect x="97.2120%" y="1829" width="0.0181%" height="15" fill="rgb(222,165,49)" fg:x="386649" fg:w="72"/><text x="97.4620%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (72 samples, 0.02%)</title><rect x="97.2120%" y="1813" width="0.0181%" height="15" fill="rgb(219,113,52)" fg:x="386649" fg:w="72"/><text x="97.4620%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (72 samples, 0.02%)</title><rect x="97.2120%" y="1797" width="0.0181%" height="15" fill="rgb(214,7,15)" fg:x="386649" fg:w="72"/><text x="97.4620%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (76 samples, 0.02%)</title><rect x="97.2301%" y="1829" width="0.0191%" height="15" fill="rgb(235,32,4)" fg:x="386721" fg:w="76"/><text x="97.4801%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (76 samples, 0.02%)</title><rect x="97.2301%" y="1813" width="0.0191%" height="15" fill="rgb(238,90,54)" fg:x="386721" fg:w="76"/><text x="97.4801%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (76 samples, 0.02%)</title><rect x="97.2301%" y="1797" width="0.0191%" height="15" fill="rgb(213,208,19)" fg:x="386721" fg:w="76"/><text x="97.4801%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (40 samples, 0.01%)</title><rect x="97.2492%" y="1781" width="0.0101%" height="15" fill="rgb(233,156,4)" fg:x="386797" fg:w="40"/><text x="97.4992%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (40 samples, 0.01%)</title><rect x="97.2492%" y="1765" width="0.0101%" height="15" fill="rgb(207,194,5)" fg:x="386797" fg:w="40"/><text x="97.4992%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h37a777b7dc0344d6E (40 samples, 0.01%)</title><rect x="97.2492%" y="1749" width="0.0101%" height="15" fill="rgb(206,111,30)" fg:x="386797" fg:w="40"/><text x="97.4992%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h27562d5798327a61E (40 samples, 0.01%)</title><rect x="97.2492%" y="1733" width="0.0101%" height="15" fill="rgb(243,70,54)" fg:x="386797" fg:w="40"/><text x="97.4992%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hc6efc669314a2e89E (40 samples, 0.01%)</title><rect x="97.2492%" y="1717" width="0.0101%" height="15" fill="rgb(242,28,8)" fg:x="386797" fg:w="40"/><text x="97.4992%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (590 samples, 0.15%)</title><rect x="97.1210%" y="1941" width="0.1483%" height="15" fill="rgb(219,106,18)" fg:x="386287" fg:w="590"/><text x="97.3710%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (298 samples, 0.07%)</title><rect x="97.1944%" y="1925" width="0.0749%" height="15" fill="rgb(244,222,10)" fg:x="386579" fg:w="298"/><text x="97.4444%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (298 samples, 0.07%)</title><rect x="97.1944%" y="1909" width="0.0749%" height="15" fill="rgb(236,179,52)" fg:x="386579" fg:w="298"/><text x="97.4444%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (298 samples, 0.07%)</title><rect x="97.1944%" y="1893" width="0.0749%" height="15" fill="rgb(213,23,39)" fg:x="386579" fg:w="298"/><text x="97.4444%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (156 samples, 0.04%)</title><rect x="97.2301%" y="1877" width="0.0392%" height="15" fill="rgb(238,48,10)" fg:x="386721" fg:w="156"/><text x="97.4801%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (156 samples, 0.04%)</title><rect x="97.2301%" y="1861" width="0.0392%" height="15" fill="rgb(251,196,23)" fg:x="386721" fg:w="156"/><text x="97.4801%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (156 samples, 0.04%)</title><rect x="97.2301%" y="1845" width="0.0392%" height="15" fill="rgb(250,152,24)" fg:x="386721" fg:w="156"/><text x="97.4801%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (80 samples, 0.02%)</title><rect x="97.2492%" y="1829" width="0.0201%" height="15" fill="rgb(209,150,17)" fg:x="386797" fg:w="80"/><text x="97.4992%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (80 samples, 0.02%)</title><rect x="97.2492%" y="1813" width="0.0201%" height="15" fill="rgb(234,202,34)" fg:x="386797" fg:w="80"/><text x="97.4992%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (80 samples, 0.02%)</title><rect x="97.2492%" y="1797" width="0.0201%" height="15" fill="rgb(253,148,53)" fg:x="386797" fg:w="80"/><text x="97.4992%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (40 samples, 0.01%)</title><rect x="97.2593%" y="1781" width="0.0101%" height="15" fill="rgb(218,129,16)" fg:x="386837" fg:w="40"/><text x="97.5093%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (40 samples, 0.01%)</title><rect x="97.2593%" y="1765" width="0.0101%" height="15" fill="rgb(216,85,19)" fg:x="386837" fg:w="40"/><text x="97.5093%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (1,915 samples, 0.48%)</title><rect x="96.7881%" y="2037" width="0.4815%" height="15" fill="rgb(235,228,7)" fg:x="384963" fg:w="1915"/><text x="97.0381%" y="2047.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (1,009 samples, 0.25%)</title><rect x="97.0159%" y="2021" width="0.2537%" height="15" fill="rgb(245,175,0)" fg:x="385869" fg:w="1009"/><text x="97.2659%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (1,009 samples, 0.25%)</title><rect x="97.0159%" y="2005" width="0.2537%" height="15" fill="rgb(208,168,36)" fg:x="385869" fg:w="1009"/><text x="97.2659%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (1,009 samples, 0.25%)</title><rect x="97.0159%" y="1989" width="0.2537%" height="15" fill="rgb(246,171,24)" fg:x="385869" fg:w="1009"/><text x="97.2659%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (591 samples, 0.15%)</title><rect x="97.1210%" y="1973" width="0.1486%" height="15" fill="rgb(215,142,24)" fg:x="386287" fg:w="591"/><text x="97.3710%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (591 samples, 0.15%)</title><rect x="97.1210%" y="1957" width="0.1486%" height="15" fill="rgb(250,187,7)" fg:x="386287" fg:w="591"/><text x="97.3710%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (1,918 samples, 0.48%)</title><rect x="96.7878%" y="2069" width="0.4822%" height="15" fill="rgb(228,66,33)" fg:x="384962" fg:w="1918"/><text x="97.0378%" y="2079.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (1,918 samples, 0.48%)</title><rect x="96.7878%" y="2053" width="0.4822%" height="15" fill="rgb(234,215,21)" fg:x="384962" fg:w="1918"/><text x="97.0378%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (40 samples, 0.01%)</title><rect x="97.2779%" y="2021" width="0.0101%" height="15" fill="rgb(222,191,20)" fg:x="386911" fg:w="40"/><text x="97.5279%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h41fca737885e3443E (69 samples, 0.02%)</title><rect x="97.2894%" y="2005" width="0.0173%" height="15" fill="rgb(245,79,54)" fg:x="386957" fg:w="69"/><text x="97.5394%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (44 samples, 0.01%)</title><rect x="97.2957%" y="1989" width="0.0111%" height="15" fill="rgb(240,10,37)" fg:x="386982" fg:w="44"/><text x="97.5457%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h41fca737885e3443E (138 samples, 0.03%)</title><rect x="97.2746%" y="2037" width="0.0347%" height="15" fill="rgb(214,192,32)" fg:x="386898" fg:w="138"/><text x="97.5246%" y="2047.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (85 samples, 0.02%)</title><rect x="97.2879%" y="2021" width="0.0214%" height="15" fill="rgb(209,36,54)" fg:x="386951" fg:w="85"/><text x="97.5379%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h4e48c89854c4261dE.llvm.15725695388440039465 (167 samples, 0.04%)</title><rect x="97.2701%" y="2069" width="0.0420%" height="15" fill="rgb(220,10,11)" fg:x="386880" fg:w="167"/><text x="97.5201%" y="2079.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (167 samples, 0.04%)</title><rect x="97.2701%" y="2053" width="0.0420%" height="15" fill="rgb(221,106,17)" fg:x="386880" fg:w="167"/><text x="97.5201%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (79 samples, 0.02%)</title><rect x="97.3123%" y="1749" width="0.0199%" height="15" fill="rgb(251,142,44)" fg:x="387048" fg:w="79"/><text x="97.5623%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (79 samples, 0.02%)</title><rect x="97.3123%" y="1733" width="0.0199%" height="15" fill="rgb(238,13,15)" fg:x="387048" fg:w="79"/><text x="97.5623%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (79 samples, 0.02%)</title><rect x="97.3123%" y="1717" width="0.0199%" height="15" fill="rgb(208,107,27)" fg:x="387048" fg:w="79"/><text x="97.5623%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (47 samples, 0.01%)</title><rect x="97.3203%" y="1701" width="0.0118%" height="15" fill="rgb(205,136,37)" fg:x="387080" fg:w="47"/><text x="97.5703%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (47 samples, 0.01%)</title><rect x="97.3203%" y="1685" width="0.0118%" height="15" fill="rgb(250,205,27)" fg:x="387080" fg:w="47"/><text x="97.5703%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (129 samples, 0.03%)</title><rect x="97.3123%" y="1765" width="0.0324%" height="15" fill="rgb(210,80,43)" fg:x="387048" fg:w="129"/><text x="97.5623%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (50 samples, 0.01%)</title><rect x="97.3322%" y="1749" width="0.0126%" height="15" fill="rgb(247,160,36)" fg:x="387127" fg:w="50"/><text x="97.5822%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (50 samples, 0.01%)</title><rect x="97.3322%" y="1733" width="0.0126%" height="15" fill="rgb(234,13,49)" fg:x="387127" fg:w="50"/><text x="97.5822%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (131 samples, 0.03%)</title><rect x="97.3120%" y="1877" width="0.0329%" height="15" fill="rgb(234,122,0)" fg:x="387047" fg:w="131"/><text x="97.5620%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (130 samples, 0.03%)</title><rect x="97.3123%" y="1861" width="0.0327%" height="15" fill="rgb(207,146,38)" fg:x="387048" fg:w="130"/><text x="97.5623%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (130 samples, 0.03%)</title><rect x="97.3123%" y="1845" width="0.0327%" height="15" fill="rgb(207,177,25)" fg:x="387048" fg:w="130"/><text x="97.5623%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (130 samples, 0.03%)</title><rect x="97.3123%" y="1829" width="0.0327%" height="15" fill="rgb(211,178,42)" fg:x="387048" fg:w="130"/><text x="97.5623%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (130 samples, 0.03%)</title><rect x="97.3123%" y="1813" width="0.0327%" height="15" fill="rgb(230,69,54)" fg:x="387048" fg:w="130"/><text x="97.5623%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (130 samples, 0.03%)</title><rect x="97.3123%" y="1797" width="0.0327%" height="15" fill="rgb(214,135,41)" fg:x="387048" fg:w="130"/><text x="97.5623%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (130 samples, 0.03%)</title><rect x="97.3123%" y="1781" width="0.0327%" height="15" fill="rgb(237,67,25)" fg:x="387048" fg:w="130"/><text x="97.5623%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (66 samples, 0.02%)</title><rect x="97.3450%" y="1781" width="0.0166%" height="15" fill="rgb(222,189,50)" fg:x="387178" fg:w="66"/><text x="97.5950%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (66 samples, 0.02%)</title><rect x="97.3450%" y="1765" width="0.0166%" height="15" fill="rgb(245,148,34)" fg:x="387178" fg:w="66"/><text x="97.5950%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (66 samples, 0.02%)</title><rect x="97.3450%" y="1749" width="0.0166%" height="15" fill="rgb(222,29,6)" fg:x="387178" fg:w="66"/><text x="97.5950%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (143 samples, 0.04%)</title><rect x="97.3450%" y="1845" width="0.0360%" height="15" fill="rgb(221,189,43)" fg:x="387178" fg:w="143"/><text x="97.5950%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (143 samples, 0.04%)</title><rect x="97.3450%" y="1829" width="0.0360%" height="15" fill="rgb(207,36,27)" fg:x="387178" fg:w="143"/><text x="97.5950%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (143 samples, 0.04%)</title><rect x="97.3450%" y="1813" width="0.0360%" height="15" fill="rgb(217,90,24)" fg:x="387178" fg:w="143"/><text x="97.5950%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (143 samples, 0.04%)</title><rect x="97.3450%" y="1797" width="0.0360%" height="15" fill="rgb(224,66,35)" fg:x="387178" fg:w="143"/><text x="97.5950%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (77 samples, 0.02%)</title><rect x="97.3616%" y="1781" width="0.0194%" height="15" fill="rgb(221,13,50)" fg:x="387244" fg:w="77"/><text x="97.6116%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (77 samples, 0.02%)</title><rect x="97.3616%" y="1765" width="0.0194%" height="15" fill="rgb(236,68,49)" fg:x="387244" fg:w="77"/><text x="97.6116%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (46 samples, 0.01%)</title><rect x="97.3694%" y="1749" width="0.0116%" height="15" fill="rgb(229,146,28)" fg:x="387275" fg:w="46"/><text x="97.6194%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (46 samples, 0.01%)</title><rect x="97.3694%" y="1733" width="0.0116%" height="15" fill="rgb(225,31,38)" fg:x="387275" fg:w="46"/><text x="97.6194%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (46 samples, 0.01%)</title><rect x="97.3694%" y="1717" width="0.0116%" height="15" fill="rgb(250,208,3)" fg:x="387275" fg:w="46"/><text x="97.6194%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (275 samples, 0.07%)</title><rect x="97.3120%" y="1893" width="0.0691%" height="15" fill="rgb(246,54,23)" fg:x="387047" fg:w="275"/><text x="97.5620%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (144 samples, 0.04%)</title><rect x="97.3450%" y="1877" width="0.0362%" height="15" fill="rgb(243,76,11)" fg:x="387178" fg:w="144"/><text x="97.5950%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (144 samples, 0.04%)</title><rect x="97.3450%" y="1861" width="0.0362%" height="15" fill="rgb(245,21,50)" fg:x="387178" fg:w="144"/><text x="97.5950%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (276 samples, 0.07%)</title><rect x="97.3120%" y="1941" width="0.0694%" height="15" fill="rgb(228,9,43)" fg:x="387047" fg:w="276"/><text x="97.5620%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (276 samples, 0.07%)</title><rect x="97.3120%" y="1925" width="0.0694%" height="15" fill="rgb(208,100,47)" fg:x="387047" fg:w="276"/><text x="97.5620%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (276 samples, 0.07%)</title><rect x="97.3120%" y="1909" width="0.0694%" height="15" fill="rgb(232,26,8)" fg:x="387047" fg:w="276"/><text x="97.5620%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (277 samples, 0.07%)</title><rect x="97.3120%" y="1989" width="0.0696%" height="15" fill="rgb(216,166,38)" fg:x="387047" fg:w="277"/><text x="97.5620%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (277 samples, 0.07%)</title><rect x="97.3120%" y="1973" width="0.0696%" height="15" fill="rgb(251,202,51)" fg:x="387047" fg:w="277"/><text x="97.5620%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (277 samples, 0.07%)</title><rect x="97.3120%" y="1957" width="0.0696%" height="15" fill="rgb(254,216,34)" fg:x="387047" fg:w="277"/><text x="97.5620%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h9b1b8dbe16bb67a7E.llvm.4035488946159976951 (280 samples, 0.07%)</title><rect x="97.3120%" y="2069" width="0.0704%" height="15" fill="rgb(251,32,27)" fg:x="387047" fg:w="280"/><text x="97.5620%" y="2079.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h27f97fbe1f349ffeE (280 samples, 0.07%)</title><rect x="97.3120%" y="2053" width="0.0704%" height="15" fill="rgb(208,127,28)" fg:x="387047" fg:w="280"/><text x="97.5620%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN115_$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$9call_once17h10fa78565fd769c2E (280 samples, 0.07%)</title><rect x="97.3120%" y="2037" width="0.0704%" height="15" fill="rgb(224,137,22)" fg:x="387047" fg:w="280"/><text x="97.5620%" y="2047.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (280 samples, 0.07%)</title><rect x="97.3120%" y="2021" width="0.0704%" height="15" fill="rgb(254,70,32)" fg:x="387047" fg:w="280"/><text x="97.5620%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (280 samples, 0.07%)</title><rect x="97.3120%" y="2005" width="0.0704%" height="15" fill="rgb(229,75,37)" fg:x="387047" fg:w="280"/><text x="97.5620%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (43 samples, 0.01%)</title><rect x="97.3935%" y="1797" width="0.0108%" height="15" fill="rgb(252,64,23)" fg:x="387371" fg:w="43"/><text x="97.6435%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (43 samples, 0.01%)</title><rect x="97.3935%" y="1781" width="0.0108%" height="15" fill="rgb(232,162,48)" fg:x="387371" fg:w="43"/><text x="97.6435%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (46 samples, 0.01%)</title><rect x="97.4043%" y="1701" width="0.0116%" height="15" fill="rgb(246,160,12)" fg:x="387414" fg:w="46"/><text x="97.6543%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (61 samples, 0.02%)</title><rect x="97.4043%" y="1765" width="0.0153%" height="15" fill="rgb(247,166,0)" fg:x="387414" fg:w="61"/><text x="97.6543%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (61 samples, 0.02%)</title><rect x="97.4043%" y="1749" width="0.0153%" height="15" fill="rgb(249,219,21)" fg:x="387414" fg:w="61"/><text x="97.6543%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (61 samples, 0.02%)</title><rect x="97.4043%" y="1733" width="0.0153%" height="15" fill="rgb(205,209,3)" fg:x="387414" fg:w="61"/><text x="97.6543%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (61 samples, 0.02%)</title><rect x="97.4043%" y="1717" width="0.0153%" height="15" fill="rgb(243,44,1)" fg:x="387414" fg:w="61"/><text x="97.6543%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (76 samples, 0.02%)</title><rect x="97.4043%" y="1781" width="0.0191%" height="15" fill="rgb(206,159,16)" fg:x="387414" fg:w="76"/><text x="97.6543%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (133 samples, 0.03%)</title><rect x="97.3935%" y="1813" width="0.0334%" height="15" fill="rgb(244,77,30)" fg:x="387371" fg:w="133"/><text x="97.6435%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (90 samples, 0.02%)</title><rect x="97.4043%" y="1797" width="0.0226%" height="15" fill="rgb(218,69,12)" fg:x="387414" fg:w="90"/><text x="97.6543%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (147 samples, 0.04%)</title><rect x="97.3935%" y="1845" width="0.0370%" height="15" fill="rgb(212,87,7)" fg:x="387371" fg:w="147"/><text x="97.6435%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (147 samples, 0.04%)</title><rect x="97.3935%" y="1829" width="0.0370%" height="15" fill="rgb(245,114,25)" fg:x="387371" fg:w="147"/><text x="97.6435%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (43 samples, 0.01%)</title><rect x="97.4305%" y="1829" width="0.0108%" height="15" fill="rgb(210,61,42)" fg:x="387518" fg:w="43"/><text x="97.6805%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (220 samples, 0.06%)</title><rect x="97.3897%" y="1861" width="0.0553%" height="15" fill="rgb(211,52,33)" fg:x="387356" fg:w="220"/><text x="97.6397%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (58 samples, 0.01%)</title><rect x="97.4305%" y="1845" width="0.0146%" height="15" fill="rgb(234,58,33)" fg:x="387518" fg:w="58"/><text x="97.6805%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (40 samples, 0.01%)</title><rect x="97.4451%" y="1861" width="0.0101%" height="15" fill="rgb(220,115,36)" fg:x="387576" fg:w="40"/><text x="97.6951%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (40 samples, 0.01%)</title><rect x="97.4451%" y="1845" width="0.0101%" height="15" fill="rgb(243,153,54)" fg:x="387576" fg:w="40"/><text x="97.6951%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (261 samples, 0.07%)</title><rect x="97.3897%" y="1925" width="0.0656%" height="15" fill="rgb(251,47,18)" fg:x="387356" fg:w="261"/><text x="97.6397%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (261 samples, 0.07%)</title><rect x="97.3897%" y="1909" width="0.0656%" height="15" fill="rgb(242,102,42)" fg:x="387356" fg:w="261"/><text x="97.6397%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (261 samples, 0.07%)</title><rect x="97.3897%" y="1893" width="0.0656%" height="15" fill="rgb(234,31,38)" fg:x="387356" fg:w="261"/><text x="97.6397%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (261 samples, 0.07%)</title><rect x="97.3897%" y="1877" width="0.0656%" height="15" fill="rgb(221,117,51)" fg:x="387356" fg:w="261"/><text x="97.6397%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (44 samples, 0.01%)</title><rect x="97.4554%" y="1845" width="0.0111%" height="15" fill="rgb(212,20,18)" fg:x="387617" fg:w="44"/><text x="97.7054%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (86 samples, 0.02%)</title><rect x="97.4554%" y="1877" width="0.0216%" height="15" fill="rgb(245,133,36)" fg:x="387617" fg:w="86"/><text x="97.7054%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (86 samples, 0.02%)</title><rect x="97.4554%" y="1861" width="0.0216%" height="15" fill="rgb(212,6,19)" fg:x="387617" fg:w="86"/><text x="97.7054%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (42 samples, 0.01%)</title><rect x="97.4664%" y="1845" width="0.0106%" height="15" fill="rgb(218,1,36)" fg:x="387661" fg:w="42"/><text x="97.7164%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (42 samples, 0.01%)</title><rect x="97.4664%" y="1829" width="0.0106%" height="15" fill="rgb(246,84,54)" fg:x="387661" fg:w="42"/><text x="97.7164%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (44 samples, 0.01%)</title><rect x="97.4770%" y="1861" width="0.0111%" height="15" fill="rgb(242,110,6)" fg:x="387703" fg:w="44"/><text x="97.7270%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (173 samples, 0.04%)</title><rect x="97.4554%" y="1893" width="0.0435%" height="15" fill="rgb(214,47,5)" fg:x="387617" fg:w="173"/><text x="97.7054%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (87 samples, 0.02%)</title><rect x="97.4770%" y="1877" width="0.0219%" height="15" fill="rgb(218,159,25)" fg:x="387703" fg:w="87"/><text x="97.7270%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (43 samples, 0.01%)</title><rect x="97.4880%" y="1861" width="0.0108%" height="15" fill="rgb(215,211,28)" fg:x="387747" fg:w="43"/><text x="97.7380%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (43 samples, 0.01%)</title><rect x="97.4880%" y="1845" width="0.0108%" height="15" fill="rgb(238,59,32)" fg:x="387747" fg:w="43"/><text x="97.7380%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (191 samples, 0.05%)</title><rect x="97.4554%" y="1925" width="0.0480%" height="15" fill="rgb(226,82,3)" fg:x="387617" fg:w="191"/><text x="97.7054%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (191 samples, 0.05%)</title><rect x="97.4554%" y="1909" width="0.0480%" height="15" fill="rgb(240,164,32)" fg:x="387617" fg:w="191"/><text x="97.7054%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (45 samples, 0.01%)</title><rect x="97.5109%" y="1781" width="0.0113%" height="15" fill="rgb(232,46,7)" fg:x="387838" fg:w="45"/><text x="97.7609%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (45 samples, 0.01%)</title><rect x="97.5109%" y="1765" width="0.0113%" height="15" fill="rgb(229,129,53)" fg:x="387838" fg:w="45"/><text x="97.7609%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (45 samples, 0.01%)</title><rect x="97.5109%" y="1749" width="0.0113%" height="15" fill="rgb(234,188,29)" fg:x="387838" fg:w="45"/><text x="97.7609%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (45 samples, 0.01%)</title><rect x="97.5109%" y="1733" width="0.0113%" height="15" fill="rgb(246,141,4)" fg:x="387838" fg:w="45"/><text x="97.7609%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (45 samples, 0.01%)</title><rect x="97.5109%" y="1717" width="0.0113%" height="15" fill="rgb(229,23,39)" fg:x="387838" fg:w="45"/><text x="97.7609%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (45 samples, 0.01%)</title><rect x="97.5109%" y="1701" width="0.0113%" height="15" fill="rgb(206,12,3)" fg:x="387838" fg:w="45"/><text x="97.7609%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (45 samples, 0.01%)</title><rect x="97.5109%" y="1685" width="0.0113%" height="15" fill="rgb(252,226,20)" fg:x="387838" fg:w="45"/><text x="97.7609%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (45 samples, 0.01%)</title><rect x="97.5109%" y="1669" width="0.0113%" height="15" fill="rgb(216,123,35)" fg:x="387838" fg:w="45"/><text x="97.7609%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (59 samples, 0.01%)</title><rect x="97.5109%" y="1861" width="0.0148%" height="15" fill="rgb(212,68,40)" fg:x="387838" fg:w="59"/><text x="97.7609%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (59 samples, 0.01%)</title><rect x="97.5109%" y="1845" width="0.0148%" height="15" fill="rgb(254,125,32)" fg:x="387838" fg:w="59"/><text x="97.7609%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (59 samples, 0.01%)</title><rect x="97.5109%" y="1829" width="0.0148%" height="15" fill="rgb(253,97,22)" fg:x="387838" fg:w="59"/><text x="97.7609%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (59 samples, 0.01%)</title><rect x="97.5109%" y="1813" width="0.0148%" height="15" fill="rgb(241,101,14)" fg:x="387838" fg:w="59"/><text x="97.7609%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (59 samples, 0.01%)</title><rect x="97.5109%" y="1797" width="0.0148%" height="15" fill="rgb(238,103,29)" fg:x="387838" fg:w="59"/><text x="97.7609%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (585 samples, 0.15%)</title><rect x="97.3897%" y="1941" width="0.1471%" height="15" fill="rgb(233,195,47)" fg:x="387356" fg:w="585"/><text x="97.6397%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (133 samples, 0.03%)</title><rect x="97.5034%" y="1925" width="0.0334%" height="15" fill="rgb(246,218,30)" fg:x="387808" fg:w="133"/><text x="97.7534%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (133 samples, 0.03%)</title><rect x="97.5034%" y="1909" width="0.0334%" height="15" fill="rgb(219,145,47)" fg:x="387808" fg:w="133"/><text x="97.7534%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (103 samples, 0.03%)</title><rect x="97.5109%" y="1893" width="0.0259%" height="15" fill="rgb(243,12,26)" fg:x="387838" fg:w="103"/><text x="97.7609%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (103 samples, 0.03%)</title><rect x="97.5109%" y="1877" width="0.0259%" height="15" fill="rgb(214,87,16)" fg:x="387838" fg:w="103"/><text x="97.7609%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (616 samples, 0.15%)</title><rect x="97.3895%" y="2005" width="0.1549%" height="15" fill="rgb(208,99,42)" fg:x="387355" fg:w="616"/><text x="97.6395%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (615 samples, 0.15%)</title><rect x="97.3897%" y="1989" width="0.1546%" height="15" fill="rgb(253,99,2)" fg:x="387356" fg:w="615"/><text x="97.6397%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (615 samples, 0.15%)</title><rect x="97.3897%" y="1973" width="0.1546%" height="15" fill="rgb(220,168,23)" fg:x="387356" fg:w="615"/><text x="97.6397%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (615 samples, 0.15%)</title><rect x="97.3897%" y="1957" width="0.1546%" height="15" fill="rgb(242,38,24)" fg:x="387356" fg:w="615"/><text x="97.6397%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (47 samples, 0.01%)</title><rect x="97.5449%" y="1877" width="0.0118%" height="15" fill="rgb(225,182,9)" fg:x="387973" fg:w="47"/><text x="97.7949%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (45 samples, 0.01%)</title><rect x="97.5454%" y="1861" width="0.0113%" height="15" fill="rgb(243,178,37)" fg:x="387975" fg:w="45"/><text x="97.7954%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (45 samples, 0.01%)</title><rect x="97.5454%" y="1845" width="0.0113%" height="15" fill="rgb(232,139,19)" fg:x="387975" fg:w="45"/><text x="97.7954%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (45 samples, 0.01%)</title><rect x="97.5454%" y="1829" width="0.0113%" height="15" fill="rgb(225,201,24)" fg:x="387975" fg:w="45"/><text x="97.7954%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (45 samples, 0.01%)</title><rect x="97.5454%" y="1813" width="0.0113%" height="15" fill="rgb(221,47,46)" fg:x="387975" fg:w="45"/><text x="97.7954%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (52 samples, 0.01%)</title><rect x="97.5567%" y="1765" width="0.0131%" height="15" fill="rgb(249,23,13)" fg:x="388020" fg:w="52"/><text x="97.8067%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (53 samples, 0.01%)</title><rect x="97.5567%" y="1829" width="0.0133%" height="15" fill="rgb(219,9,5)" fg:x="388020" fg:w="53"/><text x="97.8067%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (53 samples, 0.01%)</title><rect x="97.5567%" y="1813" width="0.0133%" height="15" fill="rgb(254,171,16)" fg:x="388020" fg:w="53"/><text x="97.8067%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (53 samples, 0.01%)</title><rect x="97.5567%" y="1797" width="0.0133%" height="15" fill="rgb(230,171,20)" fg:x="388020" fg:w="53"/><text x="97.8067%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (53 samples, 0.01%)</title><rect x="97.5567%" y="1781" width="0.0133%" height="15" fill="rgb(210,71,41)" fg:x="388020" fg:w="53"/><text x="97.8067%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (44 samples, 0.01%)</title><rect x="97.5700%" y="1781" width="0.0111%" height="15" fill="rgb(206,173,20)" fg:x="388073" fg:w="44"/><text x="97.8200%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="97.5700%" y="1765" width="0.0111%" height="15" fill="rgb(233,88,34)" fg:x="388073" fg:w="44"/><text x="97.8200%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (50 samples, 0.01%)</title><rect x="97.5811%" y="1765" width="0.0126%" height="15" fill="rgb(223,209,46)" fg:x="388117" fg:w="50"/><text x="97.8311%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (110 samples, 0.03%)</title><rect x="97.5700%" y="1797" width="0.0277%" height="15" fill="rgb(250,43,18)" fg:x="388073" fg:w="110"/><text x="97.8200%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (66 samples, 0.02%)</title><rect x="97.5811%" y="1781" width="0.0166%" height="15" fill="rgb(208,13,10)" fg:x="388117" fg:w="66"/><text x="97.8311%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (123 samples, 0.03%)</title><rect x="97.5700%" y="1829" width="0.0309%" height="15" fill="rgb(212,200,36)" fg:x="388073" fg:w="123"/><text x="97.8200%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (123 samples, 0.03%)</title><rect x="97.5700%" y="1813" width="0.0309%" height="15" fill="rgb(225,90,30)" fg:x="388073" fg:w="123"/><text x="97.8200%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (43 samples, 0.01%)</title><rect x="97.6009%" y="1813" width="0.0108%" height="15" fill="rgb(236,182,39)" fg:x="388196" fg:w="43"/><text x="97.8509%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (233 samples, 0.06%)</title><rect x="97.5567%" y="1845" width="0.0586%" height="15" fill="rgb(212,144,35)" fg:x="388020" fg:w="233"/><text x="97.8067%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (57 samples, 0.01%)</title><rect x="97.6009%" y="1829" width="0.0143%" height="15" fill="rgb(228,63,44)" fg:x="388196" fg:w="57"/><text x="97.8509%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (45 samples, 0.01%)</title><rect x="97.6153%" y="1845" width="0.0113%" height="15" fill="rgb(228,109,6)" fg:x="388253" fg:w="45"/><text x="97.8653%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (45 samples, 0.01%)</title><rect x="97.6153%" y="1829" width="0.0113%" height="15" fill="rgb(238,117,24)" fg:x="388253" fg:w="45"/><text x="97.8653%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (279 samples, 0.07%)</title><rect x="97.5567%" y="1877" width="0.0701%" height="15" fill="rgb(242,26,26)" fg:x="388020" fg:w="279"/><text x="97.8067%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (279 samples, 0.07%)</title><rect x="97.5567%" y="1861" width="0.0701%" height="15" fill="rgb(221,92,48)" fg:x="388020" fg:w="279"/><text x="97.8067%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (42 samples, 0.01%)</title><rect x="97.6268%" y="1845" width="0.0106%" height="15" fill="rgb(209,209,32)" fg:x="388299" fg:w="42"/><text x="97.8768%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (42 samples, 0.01%)</title><rect x="97.6268%" y="1829" width="0.0106%" height="15" fill="rgb(221,70,22)" fg:x="388299" fg:w="42"/><text x="97.8768%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (118 samples, 0.03%)</title><rect x="97.6268%" y="1861" width="0.0297%" height="15" fill="rgb(248,145,5)" fg:x="388299" fg:w="118"/><text x="97.8768%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (76 samples, 0.02%)</title><rect x="97.6374%" y="1845" width="0.0191%" height="15" fill="rgb(226,116,26)" fg:x="388341" fg:w="76"/><text x="97.8874%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (76 samples, 0.02%)</title><rect x="97.6374%" y="1829" width="0.0191%" height="15" fill="rgb(244,5,17)" fg:x="388341" fg:w="76"/><text x="97.8874%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (47 samples, 0.01%)</title><rect x="97.6447%" y="1813" width="0.0118%" height="15" fill="rgb(252,159,33)" fg:x="388370" fg:w="47"/><text x="97.8947%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (461 samples, 0.12%)</title><rect x="97.5444%" y="1957" width="0.1159%" height="15" fill="rgb(206,71,0)" fg:x="387971" fg:w="461"/><text x="97.7944%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (459 samples, 0.12%)</title><rect x="97.5449%" y="1941" width="0.1154%" height="15" fill="rgb(233,118,54)" fg:x="387973" fg:w="459"/><text x="97.7949%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (459 samples, 0.12%)</title><rect x="97.5449%" y="1925" width="0.1154%" height="15" fill="rgb(234,83,48)" fg:x="387973" fg:w="459"/><text x="97.7949%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (459 samples, 0.12%)</title><rect x="97.5449%" y="1909" width="0.1154%" height="15" fill="rgb(228,3,54)" fg:x="387973" fg:w="459"/><text x="97.7949%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (459 samples, 0.12%)</title><rect x="97.5449%" y="1893" width="0.1154%" height="15" fill="rgb(226,155,13)" fg:x="387973" fg:w="459"/><text x="97.7949%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (133 samples, 0.03%)</title><rect x="97.6268%" y="1877" width="0.0334%" height="15" fill="rgb(241,28,37)" fg:x="388299" fg:w="133"/><text x="97.8768%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (50 samples, 0.01%)</title><rect x="97.6731%" y="1765" width="0.0126%" height="15" fill="rgb(233,93,10)" fg:x="388483" fg:w="50"/><text x="97.9231%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (50 samples, 0.01%)</title><rect x="97.6731%" y="1749" width="0.0126%" height="15" fill="rgb(225,113,19)" fg:x="388483" fg:w="50"/><text x="97.9231%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (50 samples, 0.01%)</title><rect x="97.6731%" y="1733" width="0.0126%" height="15" fill="rgb(241,2,18)" fg:x="388483" fg:w="50"/><text x="97.9231%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (50 samples, 0.01%)</title><rect x="97.6731%" y="1717" width="0.0126%" height="15" fill="rgb(228,207,21)" fg:x="388483" fg:w="50"/><text x="97.9231%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (50 samples, 0.01%)</title><rect x="97.6731%" y="1701" width="0.0126%" height="15" fill="rgb(213,211,35)" fg:x="388483" fg:w="50"/><text x="97.9231%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (118 samples, 0.03%)</title><rect x="97.6603%" y="1909" width="0.0297%" height="15" fill="rgb(209,83,10)" fg:x="388432" fg:w="118"/><text x="97.9103%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (117 samples, 0.03%)</title><rect x="97.6605%" y="1893" width="0.0294%" height="15" fill="rgb(209,164,1)" fg:x="388433" fg:w="117"/><text x="97.9105%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (117 samples, 0.03%)</title><rect x="97.6605%" y="1877" width="0.0294%" height="15" fill="rgb(213,184,43)" fg:x="388433" fg:w="117"/><text x="97.9105%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (117 samples, 0.03%)</title><rect x="97.6605%" y="1861" width="0.0294%" height="15" fill="rgb(231,61,34)" fg:x="388433" fg:w="117"/><text x="97.9105%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (117 samples, 0.03%)</title><rect x="97.6605%" y="1845" width="0.0294%" height="15" fill="rgb(235,75,3)" fg:x="388433" fg:w="117"/><text x="97.9105%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (84 samples, 0.02%)</title><rect x="97.6688%" y="1829" width="0.0211%" height="15" fill="rgb(220,106,47)" fg:x="388466" fg:w="84"/><text x="97.9188%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (84 samples, 0.02%)</title><rect x="97.6688%" y="1813" width="0.0211%" height="15" fill="rgb(210,196,33)" fg:x="388466" fg:w="84"/><text x="97.9188%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (67 samples, 0.02%)</title><rect x="97.6731%" y="1797" width="0.0168%" height="15" fill="rgb(229,154,42)" fg:x="388483" fg:w="67"/><text x="97.9231%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (67 samples, 0.02%)</title><rect x="97.6731%" y="1781" width="0.0168%" height="15" fill="rgb(228,114,26)" fg:x="388483" fg:w="67"/><text x="97.9231%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (67 samples, 0.02%)</title><rect x="97.6904%" y="1781" width="0.0168%" height="15" fill="rgb(208,144,1)" fg:x="388552" fg:w="67"/><text x="97.9404%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (67 samples, 0.02%)</title><rect x="97.6904%" y="1765" width="0.0168%" height="15" fill="rgb(239,112,37)" fg:x="388552" fg:w="67"/><text x="97.9404%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (67 samples, 0.02%)</title><rect x="97.6904%" y="1749" width="0.0168%" height="15" fill="rgb(210,96,50)" fg:x="388552" fg:w="67"/><text x="97.9404%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (67 samples, 0.02%)</title><rect x="97.6904%" y="1733" width="0.0168%" height="15" fill="rgb(222,178,2)" fg:x="388552" fg:w="67"/><text x="97.9404%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (67 samples, 0.02%)</title><rect x="97.6904%" y="1717" width="0.0168%" height="15" fill="rgb(226,74,18)" fg:x="388552" fg:w="67"/><text x="97.9404%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (102 samples, 0.03%)</title><rect x="97.6899%" y="1861" width="0.0256%" height="15" fill="rgb(225,67,54)" fg:x="388550" fg:w="102"/><text x="97.9399%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (100 samples, 0.03%)</title><rect x="97.6904%" y="1845" width="0.0251%" height="15" fill="rgb(251,92,32)" fg:x="388552" fg:w="100"/><text x="97.9404%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (100 samples, 0.03%)</title><rect x="97.6904%" y="1829" width="0.0251%" height="15" fill="rgb(228,149,22)" fg:x="388552" fg:w="100"/><text x="97.9404%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (100 samples, 0.03%)</title><rect x="97.6904%" y="1813" width="0.0251%" height="15" fill="rgb(243,54,13)" fg:x="388552" fg:w="100"/><text x="97.9404%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (100 samples, 0.03%)</title><rect x="97.6904%" y="1797" width="0.0251%" height="15" fill="rgb(243,180,28)" fg:x="388552" fg:w="100"/><text x="97.9404%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (64 samples, 0.02%)</title><rect x="97.7156%" y="1765" width="0.0161%" height="15" fill="rgb(208,167,24)" fg:x="388652" fg:w="64"/><text x="97.9656%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (64 samples, 0.02%)</title><rect x="97.7156%" y="1749" width="0.0161%" height="15" fill="rgb(245,73,45)" fg:x="388652" fg:w="64"/><text x="97.9656%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (64 samples, 0.02%)</title><rect x="97.7156%" y="1733" width="0.0161%" height="15" fill="rgb(237,203,48)" fg:x="388652" fg:w="64"/><text x="97.9656%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (64 samples, 0.02%)</title><rect x="97.7156%" y="1717" width="0.0161%" height="15" fill="rgb(211,197,16)" fg:x="388652" fg:w="64"/><text x="97.9656%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (52 samples, 0.01%)</title><rect x="97.7186%" y="1701" width="0.0131%" height="15" fill="rgb(243,99,51)" fg:x="388664" fg:w="52"/><text x="97.9686%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (49 samples, 0.01%)</title><rect x="97.7194%" y="1685" width="0.0123%" height="15" fill="rgb(215,123,29)" fg:x="388667" fg:w="49"/><text x="97.9694%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (41 samples, 0.01%)</title><rect x="97.7214%" y="1669" width="0.0103%" height="15" fill="rgb(239,186,37)" fg:x="388675" fg:w="41"/><text x="97.9714%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (109 samples, 0.03%)</title><rect x="97.7156%" y="1781" width="0.0274%" height="15" fill="rgb(252,136,39)" fg:x="388652" fg:w="109"/><text x="97.9656%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (45 samples, 0.01%)</title><rect x="97.7317%" y="1765" width="0.0113%" height="15" fill="rgb(223,213,32)" fg:x="388716" fg:w="45"/><text x="97.9817%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (45 samples, 0.01%)</title><rect x="97.7317%" y="1749" width="0.0113%" height="15" fill="rgb(233,115,5)" fg:x="388716" fg:w="45"/><text x="97.9817%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (45 samples, 0.01%)</title><rect x="97.7317%" y="1733" width="0.0113%" height="15" fill="rgb(207,226,44)" fg:x="388716" fg:w="45"/><text x="97.9817%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (41 samples, 0.01%)</title><rect x="97.7327%" y="1717" width="0.0103%" height="15" fill="rgb(208,126,0)" fg:x="388720" fg:w="41"/><text x="97.9827%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (41 samples, 0.01%)</title><rect x="97.7327%" y="1701" width="0.0103%" height="15" fill="rgb(244,66,21)" fg:x="388720" fg:w="41"/><text x="97.9827%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (172 samples, 0.04%)</title><rect x="97.7156%" y="1813" width="0.0432%" height="15" fill="rgb(222,97,12)" fg:x="388652" fg:w="172"/><text x="97.9656%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (172 samples, 0.04%)</title><rect x="97.7156%" y="1797" width="0.0432%" height="15" fill="rgb(219,213,19)" fg:x="388652" fg:w="172"/><text x="97.9656%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (63 samples, 0.02%)</title><rect x="97.7430%" y="1781" width="0.0158%" height="15" fill="rgb(252,169,30)" fg:x="388761" fg:w="63"/><text x="97.9930%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (63 samples, 0.02%)</title><rect x="97.7430%" y="1765" width="0.0158%" height="15" fill="rgb(206,32,51)" fg:x="388761" fg:w="63"/><text x="97.9930%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (55 samples, 0.01%)</title><rect x="97.7450%" y="1749" width="0.0138%" height="15" fill="rgb(250,172,42)" fg:x="388769" fg:w="55"/><text x="97.9950%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (46 samples, 0.01%)</title><rect x="97.7473%" y="1733" width="0.0116%" height="15" fill="rgb(209,34,43)" fg:x="388778" fg:w="46"/><text x="97.9973%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (41 samples, 0.01%)</title><rect x="97.7485%" y="1717" width="0.0103%" height="15" fill="rgb(223,11,35)" fg:x="388783" fg:w="41"/><text x="97.9985%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (43 samples, 0.01%)</title><rect x="97.7588%" y="1781" width="0.0108%" height="15" fill="rgb(251,219,26)" fg:x="388824" fg:w="43"/><text x="98.0088%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (43 samples, 0.01%)</title><rect x="97.7588%" y="1765" width="0.0108%" height="15" fill="rgb(231,119,3)" fg:x="388824" fg:w="43"/><text x="98.0088%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (43 samples, 0.01%)</title><rect x="97.7588%" y="1749" width="0.0108%" height="15" fill="rgb(216,97,11)" fg:x="388824" fg:w="43"/><text x="98.0088%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (43 samples, 0.01%)</title><rect x="97.7588%" y="1733" width="0.0108%" height="15" fill="rgb(223,59,9)" fg:x="388824" fg:w="43"/><text x="98.0088%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (114 samples, 0.03%)</title><rect x="97.7588%" y="1797" width="0.0287%" height="15" fill="rgb(233,93,31)" fg:x="388824" fg:w="114"/><text x="98.0088%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (71 samples, 0.02%)</title><rect x="97.7696%" y="1781" width="0.0179%" height="15" fill="rgb(239,81,33)" fg:x="388867" fg:w="71"/><text x="98.0196%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (71 samples, 0.02%)</title><rect x="97.7696%" y="1765" width="0.0179%" height="15" fill="rgb(213,120,34)" fg:x="388867" fg:w="71"/><text x="98.0196%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (71 samples, 0.02%)</title><rect x="97.7696%" y="1749" width="0.0179%" height="15" fill="rgb(243,49,53)" fg:x="388867" fg:w="71"/><text x="98.0196%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (58 samples, 0.01%)</title><rect x="97.7729%" y="1733" width="0.0146%" height="15" fill="rgb(247,216,33)" fg:x="388880" fg:w="58"/><text x="98.0229%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (58 samples, 0.01%)</title><rect x="97.7729%" y="1717" width="0.0146%" height="15" fill="rgb(226,26,14)" fg:x="388880" fg:w="58"/><text x="98.0229%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (49 samples, 0.01%)</title><rect x="97.7752%" y="1701" width="0.0123%" height="15" fill="rgb(215,49,53)" fg:x="388889" fg:w="49"/><text x="98.0252%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (344 samples, 0.09%)</title><rect x="97.7156%" y="1829" width="0.0865%" height="15" fill="rgb(245,162,40)" fg:x="388652" fg:w="344"/><text x="97.9656%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (172 samples, 0.04%)</title><rect x="97.7588%" y="1813" width="0.0432%" height="15" fill="rgb(229,68,17)" fg:x="388824" fg:w="172"/><text x="98.0088%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (58 samples, 0.01%)</title><rect x="97.7875%" y="1797" width="0.0146%" height="15" fill="rgb(213,182,10)" fg:x="388938" fg:w="58"/><text x="98.0375%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (58 samples, 0.01%)</title><rect x="97.7875%" y="1781" width="0.0146%" height="15" fill="rgb(245,125,30)" fg:x="388938" fg:w="58"/><text x="98.0375%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (50 samples, 0.01%)</title><rect x="97.7895%" y="1765" width="0.0126%" height="15" fill="rgb(232,202,2)" fg:x="388946" fg:w="50"/><text x="98.0395%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (47 samples, 0.01%)</title><rect x="97.7903%" y="1749" width="0.0118%" height="15" fill="rgb(237,140,51)" fg:x="388949" fg:w="47"/><text x="98.0403%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (44 samples, 0.01%)</title><rect x="97.7910%" y="1733" width="0.0111%" height="15" fill="rgb(236,157,25)" fg:x="388952" fg:w="44"/><text x="98.0410%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (372 samples, 0.09%)</title><rect x="97.7156%" y="1861" width="0.0935%" height="15" fill="rgb(219,209,0)" fg:x="388652" fg:w="372"/><text x="97.9656%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (372 samples, 0.09%)</title><rect x="97.7156%" y="1845" width="0.0935%" height="15" fill="rgb(240,116,54)" fg:x="388652" fg:w="372"/><text x="97.9656%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (44 samples, 0.01%)</title><rect x="97.8091%" y="1781" width="0.0111%" height="15" fill="rgb(216,10,36)" fg:x="389024" fg:w="44"/><text x="98.0591%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="97.8091%" y="1765" width="0.0111%" height="15" fill="rgb(222,72,44)" fg:x="389024" fg:w="44"/><text x="98.0591%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (44 samples, 0.01%)</title><rect x="97.8091%" y="1749" width="0.0111%" height="15" fill="rgb(232,159,9)" fg:x="389024" fg:w="44"/><text x="98.0591%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (44 samples, 0.01%)</title><rect x="97.8091%" y="1733" width="0.0111%" height="15" fill="rgb(210,39,32)" fg:x="389024" fg:w="44"/><text x="98.0591%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (103 samples, 0.03%)</title><rect x="97.8091%" y="1797" width="0.0259%" height="15" fill="rgb(216,194,45)" fg:x="389024" fg:w="103"/><text x="98.0591%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (59 samples, 0.01%)</title><rect x="97.8202%" y="1781" width="0.0148%" height="15" fill="rgb(218,18,35)" fg:x="389068" fg:w="59"/><text x="98.0702%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (59 samples, 0.01%)</title><rect x="97.8202%" y="1765" width="0.0148%" height="15" fill="rgb(207,83,51)" fg:x="389068" fg:w="59"/><text x="98.0702%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (59 samples, 0.01%)</title><rect x="97.8202%" y="1749" width="0.0148%" height="15" fill="rgb(225,63,43)" fg:x="389068" fg:w="59"/><text x="98.0702%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (50 samples, 0.01%)</title><rect x="97.8224%" y="1733" width="0.0126%" height="15" fill="rgb(207,57,36)" fg:x="389077" fg:w="50"/><text x="98.0724%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (43 samples, 0.01%)</title><rect x="97.8242%" y="1717" width="0.0108%" height="15" fill="rgb(216,99,33)" fg:x="389084" fg:w="43"/><text x="98.0742%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (161 samples, 0.04%)</title><rect x="97.8091%" y="1829" width="0.0405%" height="15" fill="rgb(225,42,16)" fg:x="389024" fg:w="161"/><text x="98.0591%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (161 samples, 0.04%)</title><rect x="97.8091%" y="1813" width="0.0405%" height="15" fill="rgb(220,201,45)" fg:x="389024" fg:w="161"/><text x="98.0591%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (58 samples, 0.01%)</title><rect x="97.8350%" y="1797" width="0.0146%" height="15" fill="rgb(225,33,4)" fg:x="389127" fg:w="58"/><text x="98.0850%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (58 samples, 0.01%)</title><rect x="97.8350%" y="1781" width="0.0146%" height="15" fill="rgb(224,33,50)" fg:x="389127" fg:w="58"/><text x="98.0850%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (44 samples, 0.01%)</title><rect x="97.8385%" y="1765" width="0.0111%" height="15" fill="rgb(246,198,51)" fg:x="389141" fg:w="44"/><text x="98.0885%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (100 samples, 0.03%)</title><rect x="97.8496%" y="1797" width="0.0251%" height="15" fill="rgb(205,22,4)" fg:x="389185" fg:w="100"/><text x="98.0996%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (100 samples, 0.03%)</title><rect x="97.8496%" y="1781" width="0.0251%" height="15" fill="rgb(206,3,8)" fg:x="389185" fg:w="100"/><text x="98.0996%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (100 samples, 0.03%)</title><rect x="97.8496%" y="1765" width="0.0251%" height="15" fill="rgb(251,23,15)" fg:x="389185" fg:w="100"/><text x="98.0996%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (100 samples, 0.03%)</title><rect x="97.8496%" y="1749" width="0.0251%" height="15" fill="rgb(252,88,28)" fg:x="389185" fg:w="100"/><text x="98.0996%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (85 samples, 0.02%)</title><rect x="97.8534%" y="1733" width="0.0214%" height="15" fill="rgb(212,127,14)" fg:x="389200" fg:w="85"/><text x="98.1034%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (74 samples, 0.02%)</title><rect x="97.8561%" y="1717" width="0.0186%" height="15" fill="rgb(247,145,37)" fg:x="389211" fg:w="74"/><text x="98.1061%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (71 samples, 0.02%)</title><rect x="97.8569%" y="1701" width="0.0179%" height="15" fill="rgb(209,117,53)" fg:x="389214" fg:w="71"/><text x="98.1069%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (45 samples, 0.01%)</title><rect x="97.8634%" y="1685" width="0.0113%" height="15" fill="rgb(212,90,42)" fg:x="389240" fg:w="45"/><text x="98.1134%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (54 samples, 0.01%)</title><rect x="97.8943%" y="1701" width="0.0136%" height="15" fill="rgb(218,164,37)" fg:x="389363" fg:w="54"/><text x="98.1443%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (133 samples, 0.03%)</title><rect x="97.8747%" y="1765" width="0.0334%" height="15" fill="rgb(246,65,34)" fg:x="389285" fg:w="133"/><text x="98.1247%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (113 samples, 0.03%)</title><rect x="97.8798%" y="1749" width="0.0284%" height="15" fill="rgb(231,100,33)" fg:x="389305" fg:w="113"/><text x="98.1298%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (106 samples, 0.03%)</title><rect x="97.8815%" y="1733" width="0.0267%" height="15" fill="rgb(228,126,14)" fg:x="389312" fg:w="106"/><text x="98.1315%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (97 samples, 0.02%)</title><rect x="97.8838%" y="1717" width="0.0244%" height="15" fill="rgb(215,173,21)" fg:x="389321" fg:w="97"/><text x="98.1338%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (395 samples, 0.10%)</title><rect x="97.8091%" y="1845" width="0.0993%" height="15" fill="rgb(210,6,40)" fg:x="389024" fg:w="395"/><text x="98.0591%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (234 samples, 0.06%)</title><rect x="97.8496%" y="1829" width="0.0588%" height="15" fill="rgb(212,48,18)" fg:x="389185" fg:w="234"/><text x="98.0996%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (234 samples, 0.06%)</title><rect x="97.8496%" y="1813" width="0.0588%" height="15" fill="rgb(230,214,11)" fg:x="389185" fg:w="234"/><text x="98.0996%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (134 samples, 0.03%)</title><rect x="97.8747%" y="1797" width="0.0337%" height="15" fill="rgb(254,105,39)" fg:x="389285" fg:w="134"/><text x="98.1247%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (134 samples, 0.03%)</title><rect x="97.8747%" y="1781" width="0.0337%" height="15" fill="rgb(245,158,5)" fg:x="389285" fg:w="134"/><text x="98.1247%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (895 samples, 0.23%)</title><rect x="97.6899%" y="1877" width="0.2250%" height="15" fill="rgb(249,208,11)" fg:x="388550" fg:w="895"/><text x="97.9399%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (421 samples, 0.11%)</title><rect x="97.8091%" y="1861" width="0.1058%" height="15" fill="rgb(210,39,28)" fg:x="389024" fg:w="421"/><text x="98.0591%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (46 samples, 0.01%)</title><rect x="97.9150%" y="1877" width="0.0116%" height="15" fill="rgb(211,56,53)" fg:x="389445" fg:w="46"/><text x="98.1650%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (46 samples, 0.01%)</title><rect x="97.9150%" y="1861" width="0.0116%" height="15" fill="rgb(226,201,30)" fg:x="389445" fg:w="46"/><text x="98.1650%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (42 samples, 0.01%)</title><rect x="97.9160%" y="1845" width="0.0106%" height="15" fill="rgb(239,101,34)" fg:x="389449" fg:w="42"/><text x="98.1660%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (943 samples, 0.24%)</title><rect x="97.6899%" y="1909" width="0.2371%" height="15" fill="rgb(226,209,5)" fg:x="388550" fg:w="943"/><text x="97.9399%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (943 samples, 0.24%)</title><rect x="97.6899%" y="1893" width="0.2371%" height="15" fill="rgb(250,105,47)" fg:x="388550" fg:w="943"/><text x="97.9399%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (82 samples, 0.02%)</title><rect x="97.9270%" y="1829" width="0.0206%" height="15" fill="rgb(230,72,3)" fg:x="389493" fg:w="82"/><text x="98.1770%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (82 samples, 0.02%)</title><rect x="97.9270%" y="1813" width="0.0206%" height="15" fill="rgb(232,218,39)" fg:x="389493" fg:w="82"/><text x="98.1770%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (55 samples, 0.01%)</title><rect x="97.9338%" y="1797" width="0.0138%" height="15" fill="rgb(248,166,6)" fg:x="389520" fg:w="55"/><text x="98.1838%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (55 samples, 0.01%)</title><rect x="97.9338%" y="1781" width="0.0138%" height="15" fill="rgb(247,89,20)" fg:x="389520" fg:w="55"/><text x="98.1838%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (42 samples, 0.01%)</title><rect x="97.9371%" y="1765" width="0.0106%" height="15" fill="rgb(248,130,54)" fg:x="389533" fg:w="42"/><text x="98.1871%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (42 samples, 0.01%)</title><rect x="97.9371%" y="1749" width="0.0106%" height="15" fill="rgb(234,196,4)" fg:x="389533" fg:w="42"/><text x="98.1871%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (40 samples, 0.01%)</title><rect x="97.9476%" y="1813" width="0.0101%" height="15" fill="rgb(250,143,31)" fg:x="389575" fg:w="40"/><text x="98.1976%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (179 samples, 0.05%)</title><rect x="97.9270%" y="1845" width="0.0450%" height="15" fill="rgb(211,110,34)" fg:x="389493" fg:w="179"/><text x="98.1770%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (97 samples, 0.02%)</title><rect x="97.9476%" y="1829" width="0.0244%" height="15" fill="rgb(215,124,48)" fg:x="389575" fg:w="97"/><text x="98.1976%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (57 samples, 0.01%)</title><rect x="97.9577%" y="1813" width="0.0143%" height="15" fill="rgb(216,46,13)" fg:x="389615" fg:w="57"/><text x="98.2077%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (57 samples, 0.01%)</title><rect x="97.9577%" y="1797" width="0.0143%" height="15" fill="rgb(205,184,25)" fg:x="389615" fg:w="57"/><text x="98.2077%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (43 samples, 0.01%)</title><rect x="97.9612%" y="1781" width="0.0108%" height="15" fill="rgb(228,1,10)" fg:x="389629" fg:w="43"/><text x="98.2112%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (206 samples, 0.05%)</title><rect x="97.9270%" y="1877" width="0.0518%" height="15" fill="rgb(213,116,27)" fg:x="389493" fg:w="206"/><text x="98.1770%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (206 samples, 0.05%)</title><rect x="97.9270%" y="1861" width="0.0518%" height="15" fill="rgb(241,95,50)" fg:x="389493" fg:w="206"/><text x="98.1770%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (111 samples, 0.03%)</title><rect x="97.9788%" y="1845" width="0.0279%" height="15" fill="rgb(238,48,32)" fg:x="389699" fg:w="111"/><text x="98.2288%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (110 samples, 0.03%)</title><rect x="97.9791%" y="1829" width="0.0277%" height="15" fill="rgb(235,113,49)" fg:x="389700" fg:w="110"/><text x="98.2291%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (83 samples, 0.02%)</title><rect x="97.9859%" y="1813" width="0.0209%" height="15" fill="rgb(205,127,43)" fg:x="389727" fg:w="83"/><text x="98.2359%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (83 samples, 0.02%)</title><rect x="97.9859%" y="1797" width="0.0209%" height="15" fill="rgb(250,162,2)" fg:x="389727" fg:w="83"/><text x="98.2359%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (69 samples, 0.02%)</title><rect x="97.9894%" y="1781" width="0.0173%" height="15" fill="rgb(220,13,41)" fg:x="389741" fg:w="69"/><text x="98.2394%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (64 samples, 0.02%)</title><rect x="97.9906%" y="1765" width="0.0161%" height="15" fill="rgb(249,221,25)" fg:x="389746" fg:w="64"/><text x="98.2406%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (59 samples, 0.01%)</title><rect x="97.9919%" y="1749" width="0.0148%" height="15" fill="rgb(215,208,19)" fg:x="389751" fg:w="59"/><text x="98.2419%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (40 samples, 0.01%)</title><rect x="97.9967%" y="1733" width="0.0101%" height="15" fill="rgb(236,175,2)" fg:x="389770" fg:w="40"/><text x="98.2467%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (72 samples, 0.02%)</title><rect x="98.0067%" y="1813" width="0.0181%" height="15" fill="rgb(241,52,2)" fg:x="389810" fg:w="72"/><text x="98.2567%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (72 samples, 0.02%)</title><rect x="98.0067%" y="1797" width="0.0181%" height="15" fill="rgb(248,140,14)" fg:x="389810" fg:w="72"/><text x="98.2567%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (72 samples, 0.02%)</title><rect x="98.0067%" y="1781" width="0.0181%" height="15" fill="rgb(253,22,42)" fg:x="389810" fg:w="72"/><text x="98.2567%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (72 samples, 0.02%)</title><rect x="98.0067%" y="1765" width="0.0181%" height="15" fill="rgb(234,61,47)" fg:x="389810" fg:w="72"/><text x="98.2567%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (54 samples, 0.01%)</title><rect x="98.0113%" y="1749" width="0.0136%" height="15" fill="rgb(208,226,15)" fg:x="389828" fg:w="54"/><text x="98.2613%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (53 samples, 0.01%)</title><rect x="98.0115%" y="1733" width="0.0133%" height="15" fill="rgb(217,221,4)" fg:x="389829" fg:w="53"/><text x="98.2615%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (51 samples, 0.01%)</title><rect x="98.0120%" y="1717" width="0.0128%" height="15" fill="rgb(212,174,34)" fg:x="389831" fg:w="51"/><text x="98.2620%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (159 samples, 0.04%)</title><rect x="98.0067%" y="1829" width="0.0400%" height="15" fill="rgb(253,83,4)" fg:x="389810" fg:w="159"/><text x="98.2567%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (87 samples, 0.02%)</title><rect x="98.0248%" y="1813" width="0.0219%" height="15" fill="rgb(250,195,49)" fg:x="389882" fg:w="87"/><text x="98.2748%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (87 samples, 0.02%)</title><rect x="98.0248%" y="1797" width="0.0219%" height="15" fill="rgb(241,192,25)" fg:x="389882" fg:w="87"/><text x="98.2748%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (87 samples, 0.02%)</title><rect x="98.0248%" y="1781" width="0.0219%" height="15" fill="rgb(208,124,10)" fg:x="389882" fg:w="87"/><text x="98.2748%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (68 samples, 0.02%)</title><rect x="98.0296%" y="1765" width="0.0171%" height="15" fill="rgb(222,33,0)" fg:x="389901" fg:w="68"/><text x="98.2796%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (64 samples, 0.02%)</title><rect x="98.0306%" y="1749" width="0.0161%" height="15" fill="rgb(234,209,28)" fg:x="389905" fg:w="64"/><text x="98.2806%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (63 samples, 0.02%)</title><rect x="98.0309%" y="1733" width="0.0158%" height="15" fill="rgb(224,11,23)" fg:x="389906" fg:w="63"/><text x="98.2809%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (43 samples, 0.01%)</title><rect x="98.0359%" y="1717" width="0.0108%" height="15" fill="rgb(232,99,1)" fg:x="389926" fg:w="43"/><text x="98.2859%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (502 samples, 0.13%)</title><rect x="97.9270%" y="1893" width="0.1262%" height="15" fill="rgb(237,95,45)" fg:x="389493" fg:w="502"/><text x="98.1770%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (296 samples, 0.07%)</title><rect x="97.9788%" y="1877" width="0.0744%" height="15" fill="rgb(208,109,11)" fg:x="389699" fg:w="296"/><text x="98.2288%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (296 samples, 0.07%)</title><rect x="97.9788%" y="1861" width="0.0744%" height="15" fill="rgb(216,190,48)" fg:x="389699" fg:w="296"/><text x="98.2288%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (185 samples, 0.05%)</title><rect x="98.0067%" y="1845" width="0.0465%" height="15" fill="rgb(251,171,36)" fg:x="389810" fg:w="185"/><text x="98.2567%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (1,609 samples, 0.40%)</title><rect x="97.6603%" y="1925" width="0.4045%" height="15" fill="rgb(230,62,22)" fg:x="388432" fg:w="1609"/><text x="97.9103%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (548 samples, 0.14%)</title><rect x="97.9270%" y="1909" width="0.1378%" height="15" fill="rgb(225,114,35)" fg:x="389493" fg:w="548"/><text x="98.1770%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (46 samples, 0.01%)</title><rect x="98.0532%" y="1893" width="0.0116%" height="15" fill="rgb(215,118,42)" fg:x="389995" fg:w="46"/><text x="98.3032%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (46 samples, 0.01%)</title><rect x="98.0532%" y="1877" width="0.0116%" height="15" fill="rgb(243,119,21)" fg:x="389995" fg:w="46"/><text x="98.3032%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (43 samples, 0.01%)</title><rect x="98.0540%" y="1861" width="0.0108%" height="15" fill="rgb(252,177,53)" fg:x="389998" fg:w="43"/><text x="98.3040%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (76 samples, 0.02%)</title><rect x="98.0648%" y="1925" width="0.0191%" height="15" fill="rgb(237,209,29)" fg:x="390041" fg:w="76"/><text x="98.3148%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (76 samples, 0.02%)</title><rect x="98.0648%" y="1909" width="0.0191%" height="15" fill="rgb(212,65,23)" fg:x="390041" fg:w="76"/><text x="98.3148%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (64 samples, 0.02%)</title><rect x="98.0678%" y="1893" width="0.0161%" height="15" fill="rgb(230,222,46)" fg:x="390053" fg:w="64"/><text x="98.3178%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (60 samples, 0.02%)</title><rect x="98.0688%" y="1877" width="0.0151%" height="15" fill="rgb(215,135,32)" fg:x="390057" fg:w="60"/><text x="98.3188%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (57 samples, 0.01%)</title><rect x="98.0696%" y="1861" width="0.0143%" height="15" fill="rgb(246,101,22)" fg:x="390060" fg:w="57"/><text x="98.3196%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (1,686 samples, 0.42%)</title><rect x="97.6603%" y="1957" width="0.4239%" height="15" fill="rgb(206,107,13)" fg:x="388432" fg:w="1686"/><text x="97.9103%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (1,686 samples, 0.42%)</title><rect x="97.6603%" y="1941" width="0.4239%" height="15" fill="rgb(250,100,44)" fg:x="388432" fg:w="1686"/><text x="97.9103%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (68 samples, 0.02%)</title><rect x="98.0844%" y="1765" width="0.0171%" height="15" fill="rgb(231,147,38)" fg:x="390119" fg:w="68"/><text x="98.3344%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (41 samples, 0.01%)</title><rect x="98.0912%" y="1749" width="0.0103%" height="15" fill="rgb(229,8,40)" fg:x="390146" fg:w="41"/><text x="98.3412%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (41 samples, 0.01%)</title><rect x="98.0912%" y="1733" width="0.0103%" height="15" fill="rgb(221,135,30)" fg:x="390146" fg:w="41"/><text x="98.3412%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (69 samples, 0.02%)</title><rect x="98.0844%" y="1797" width="0.0173%" height="15" fill="rgb(249,193,18)" fg:x="390119" fg:w="69"/><text x="98.3344%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (69 samples, 0.02%)</title><rect x="98.0844%" y="1781" width="0.0173%" height="15" fill="rgb(209,133,39)" fg:x="390119" fg:w="69"/><text x="98.3344%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (45 samples, 0.01%)</title><rect x="98.1018%" y="1685" width="0.0113%" height="15" fill="rgb(232,100,14)" fg:x="390188" fg:w="45"/><text x="98.3518%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (45 samples, 0.01%)</title><rect x="98.1018%" y="1669" width="0.0113%" height="15" fill="rgb(224,185,1)" fg:x="390188" fg:w="45"/><text x="98.3518%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (45 samples, 0.01%)</title><rect x="98.1018%" y="1653" width="0.0113%" height="15" fill="rgb(223,139,8)" fg:x="390188" fg:w="45"/><text x="98.3518%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (45 samples, 0.01%)</title><rect x="98.1018%" y="1637" width="0.0113%" height="15" fill="rgb(232,213,38)" fg:x="390188" fg:w="45"/><text x="98.3518%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (73 samples, 0.02%)</title><rect x="98.1131%" y="1605" width="0.0184%" height="15" fill="rgb(207,94,22)" fg:x="390233" fg:w="73"/><text x="98.3631%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="98.1204%" y="1589" width="0.0111%" height="15" fill="rgb(219,183,54)" fg:x="390262" fg:w="44"/><text x="98.3704%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (44 samples, 0.01%)</title><rect x="98.1204%" y="1573" width="0.0111%" height="15" fill="rgb(216,185,54)" fg:x="390262" fg:w="44"/><text x="98.3704%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (74 samples, 0.02%)</title><rect x="98.1131%" y="1637" width="0.0186%" height="15" fill="rgb(254,217,39)" fg:x="390233" fg:w="74"/><text x="98.3631%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (74 samples, 0.02%)</title><rect x="98.1131%" y="1621" width="0.0186%" height="15" fill="rgb(240,178,23)" fg:x="390233" fg:w="74"/><text x="98.3631%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (194 samples, 0.05%)</title><rect x="98.1018%" y="1701" width="0.0488%" height="15" fill="rgb(218,11,47)" fg:x="390188" fg:w="194"/><text x="98.3518%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (149 samples, 0.04%)</title><rect x="98.1131%" y="1685" width="0.0375%" height="15" fill="rgb(218,51,51)" fg:x="390233" fg:w="149"/><text x="98.3631%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (149 samples, 0.04%)</title><rect x="98.1131%" y="1669" width="0.0375%" height="15" fill="rgb(238,126,27)" fg:x="390233" fg:w="149"/><text x="98.3631%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (149 samples, 0.04%)</title><rect x="98.1131%" y="1653" width="0.0375%" height="15" fill="rgb(249,202,22)" fg:x="390233" fg:w="149"/><text x="98.3631%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (75 samples, 0.02%)</title><rect x="98.1317%" y="1637" width="0.0189%" height="15" fill="rgb(254,195,49)" fg:x="390307" fg:w="75"/><text x="98.3817%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (75 samples, 0.02%)</title><rect x="98.1317%" y="1621" width="0.0189%" height="15" fill="rgb(208,123,14)" fg:x="390307" fg:w="75"/><text x="98.3817%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (46 samples, 0.01%)</title><rect x="98.1390%" y="1605" width="0.0116%" height="15" fill="rgb(224,200,8)" fg:x="390336" fg:w="46"/><text x="98.3890%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (46 samples, 0.01%)</title><rect x="98.1390%" y="1589" width="0.0116%" height="15" fill="rgb(217,61,36)" fg:x="390336" fg:w="46"/><text x="98.3890%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (195 samples, 0.05%)</title><rect x="98.1018%" y="1765" width="0.0490%" height="15" fill="rgb(206,35,45)" fg:x="390188" fg:w="195"/><text x="98.3518%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (195 samples, 0.05%)</title><rect x="98.1018%" y="1749" width="0.0490%" height="15" fill="rgb(217,65,33)" fg:x="390188" fg:w="195"/><text x="98.3518%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (195 samples, 0.05%)</title><rect x="98.1018%" y="1733" width="0.0490%" height="15" fill="rgb(222,158,48)" fg:x="390188" fg:w="195"/><text x="98.3518%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (195 samples, 0.05%)</title><rect x="98.1018%" y="1717" width="0.0490%" height="15" fill="rgb(254,2,54)" fg:x="390188" fg:w="195"/><text x="98.3518%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (290 samples, 0.07%)</title><rect x="98.0844%" y="1861" width="0.0729%" height="15" fill="rgb(250,143,38)" fg:x="390119" fg:w="290"/><text x="98.3344%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (290 samples, 0.07%)</title><rect x="98.0844%" y="1845" width="0.0729%" height="15" fill="rgb(248,25,0)" fg:x="390119" fg:w="290"/><text x="98.3344%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (290 samples, 0.07%)</title><rect x="98.0844%" y="1829" width="0.0729%" height="15" fill="rgb(206,152,27)" fg:x="390119" fg:w="290"/><text x="98.3344%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (290 samples, 0.07%)</title><rect x="98.0844%" y="1813" width="0.0729%" height="15" fill="rgb(240,77,30)" fg:x="390119" fg:w="290"/><text x="98.3344%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (221 samples, 0.06%)</title><rect x="98.1018%" y="1797" width="0.0556%" height="15" fill="rgb(231,5,3)" fg:x="390188" fg:w="221"/><text x="98.3518%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (221 samples, 0.06%)</title><rect x="98.1018%" y="1781" width="0.0556%" height="15" fill="rgb(207,226,32)" fg:x="390188" fg:w="221"/><text x="98.3518%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (304 samples, 0.08%)</title><rect x="98.0842%" y="1925" width="0.0764%" height="15" fill="rgb(222,207,47)" fg:x="390118" fg:w="304"/><text x="98.3342%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (303 samples, 0.08%)</title><rect x="98.0844%" y="1909" width="0.0762%" height="15" fill="rgb(229,115,45)" fg:x="390119" fg:w="303"/><text x="98.3344%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (303 samples, 0.08%)</title><rect x="98.0844%" y="1893" width="0.0762%" height="15" fill="rgb(224,191,6)" fg:x="390119" fg:w="303"/><text x="98.3344%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (303 samples, 0.08%)</title><rect x="98.0844%" y="1877" width="0.0762%" height="15" fill="rgb(230,227,24)" fg:x="390119" fg:w="303"/><text x="98.3344%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (44 samples, 0.01%)</title><rect x="98.1606%" y="1829" width="0.0111%" height="15" fill="rgb(228,80,19)" fg:x="390422" fg:w="44"/><text x="98.4106%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="98.1606%" y="1813" width="0.0111%" height="15" fill="rgb(247,229,0)" fg:x="390422" fg:w="44"/><text x="98.4106%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (44 samples, 0.01%)</title><rect x="98.1717%" y="1813" width="0.0111%" height="15" fill="rgb(237,194,15)" fg:x="390466" fg:w="44"/><text x="98.4217%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (103 samples, 0.03%)</title><rect x="98.1606%" y="1845" width="0.0259%" height="15" fill="rgb(219,203,20)" fg:x="390422" fg:w="103"/><text x="98.4106%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (59 samples, 0.01%)</title><rect x="98.1717%" y="1829" width="0.0148%" height="15" fill="rgb(234,128,8)" fg:x="390466" fg:w="59"/><text x="98.4217%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (131 samples, 0.03%)</title><rect x="98.1606%" y="1877" width="0.0329%" height="15" fill="rgb(248,202,8)" fg:x="390422" fg:w="131"/><text x="98.4106%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (131 samples, 0.03%)</title><rect x="98.1606%" y="1861" width="0.0329%" height="15" fill="rgb(206,104,37)" fg:x="390422" fg:w="131"/><text x="98.4106%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (44 samples, 0.01%)</title><rect x="98.1935%" y="1845" width="0.0111%" height="15" fill="rgb(223,8,27)" fg:x="390553" fg:w="44"/><text x="98.4435%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="98.1935%" y="1829" width="0.0111%" height="15" fill="rgb(216,217,28)" fg:x="390553" fg:w="44"/><text x="98.4435%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (91 samples, 0.02%)</title><rect x="98.1935%" y="1861" width="0.0229%" height="15" fill="rgb(249,199,1)" fg:x="390553" fg:w="91"/><text x="98.4435%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (47 samples, 0.01%)</title><rect x="98.2046%" y="1845" width="0.0118%" height="15" fill="rgb(240,85,17)" fg:x="390597" fg:w="47"/><text x="98.4546%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (47 samples, 0.01%)</title><rect x="98.2046%" y="1829" width="0.0118%" height="15" fill="rgb(206,108,45)" fg:x="390597" fg:w="47"/><text x="98.4546%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (248 samples, 0.06%)</title><rect x="98.1606%" y="1893" width="0.0624%" height="15" fill="rgb(245,210,41)" fg:x="390422" fg:w="248"/><text x="98.4106%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (117 samples, 0.03%)</title><rect x="98.1935%" y="1877" width="0.0294%" height="15" fill="rgb(206,13,37)" fg:x="390553" fg:w="117"/><text x="98.4435%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (292 samples, 0.07%)</title><rect x="98.1606%" y="1925" width="0.0734%" height="15" fill="rgb(250,61,18)" fg:x="390422" fg:w="292"/><text x="98.4106%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (292 samples, 0.07%)</title><rect x="98.1606%" y="1909" width="0.0734%" height="15" fill="rgb(235,172,48)" fg:x="390422" fg:w="292"/><text x="98.4106%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (44 samples, 0.01%)</title><rect x="98.2230%" y="1893" width="0.0111%" height="15" fill="rgb(249,201,17)" fg:x="390670" fg:w="44"/><text x="98.4730%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (44 samples, 0.01%)</title><rect x="98.2230%" y="1877" width="0.0111%" height="15" fill="rgb(219,208,6)" fg:x="390670" fg:w="44"/><text x="98.4730%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (58 samples, 0.01%)</title><rect x="98.2340%" y="1893" width="0.0146%" height="15" fill="rgb(248,31,23)" fg:x="390714" fg:w="58"/><text x="98.4840%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (58 samples, 0.01%)</title><rect x="98.2340%" y="1877" width="0.0146%" height="15" fill="rgb(245,15,42)" fg:x="390714" fg:w="58"/><text x="98.4840%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (58 samples, 0.01%)</title><rect x="98.2340%" y="1861" width="0.0146%" height="15" fill="rgb(222,217,39)" fg:x="390714" fg:w="58"/><text x="98.4840%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (58 samples, 0.01%)</title><rect x="98.2340%" y="1845" width="0.0146%" height="15" fill="rgb(210,219,27)" fg:x="390714" fg:w="58"/><text x="98.4840%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (50 samples, 0.01%)</title><rect x="98.2360%" y="1829" width="0.0126%" height="15" fill="rgb(252,166,36)" fg:x="390722" fg:w="50"/><text x="98.4860%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (724 samples, 0.18%)</title><rect x="98.0842%" y="1941" width="0.1820%" height="15" fill="rgb(245,132,34)" fg:x="390118" fg:w="724"/><text x="98.3342%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (128 samples, 0.03%)</title><rect x="98.2340%" y="1925" width="0.0322%" height="15" fill="rgb(236,54,3)" fg:x="390714" fg:w="128"/><text x="98.4840%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (128 samples, 0.03%)</title><rect x="98.2340%" y="1909" width="0.0322%" height="15" fill="rgb(241,173,43)" fg:x="390714" fg:w="128"/><text x="98.4840%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (70 samples, 0.02%)</title><rect x="98.2486%" y="1893" width="0.0176%" height="15" fill="rgb(215,190,9)" fg:x="390772" fg:w="70"/><text x="98.4986%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (44 samples, 0.01%)</title><rect x="98.2551%" y="1877" width="0.0111%" height="15" fill="rgb(242,101,16)" fg:x="390798" fg:w="44"/><text x="98.5051%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (44 samples, 0.01%)</title><rect x="98.2551%" y="1861" width="0.0111%" height="15" fill="rgb(223,190,21)" fg:x="390798" fg:w="44"/><text x="98.5051%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (2,946 samples, 0.74%)</title><rect x="97.5444%" y="1973" width="0.7407%" height="15" fill="rgb(215,228,25)" fg:x="387971" fg:w="2946"/><text x="97.7944%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (799 samples, 0.20%)</title><rect x="98.0842%" y="1957" width="0.2009%" height="15" fill="rgb(225,36,22)" fg:x="390118" fg:w="799"/><text x="98.3342%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (75 samples, 0.02%)</title><rect x="98.2662%" y="1941" width="0.0189%" height="15" fill="rgb(251,106,46)" fg:x="390842" fg:w="75"/><text x="98.5162%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (75 samples, 0.02%)</title><rect x="98.2662%" y="1925" width="0.0189%" height="15" fill="rgb(208,90,1)" fg:x="390842" fg:w="75"/><text x="98.5162%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (59 samples, 0.01%)</title><rect x="98.2702%" y="1909" width="0.0148%" height="15" fill="rgb(243,10,4)" fg:x="390858" fg:w="59"/><text x="98.5202%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (51 samples, 0.01%)</title><rect x="98.2722%" y="1893" width="0.0128%" height="15" fill="rgb(212,137,27)" fg:x="390866" fg:w="51"/><text x="98.5222%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (48 samples, 0.01%)</title><rect x="98.2730%" y="1877" width="0.0121%" height="15" fill="rgb(231,220,49)" fg:x="390869" fg:w="48"/><text x="98.5230%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (101 samples, 0.03%)</title><rect x="98.2851%" y="1973" width="0.0254%" height="15" fill="rgb(237,96,20)" fg:x="390917" fg:w="101"/><text x="98.5351%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (101 samples, 0.03%)</title><rect x="98.2851%" y="1957" width="0.0254%" height="15" fill="rgb(239,229,30)" fg:x="390917" fg:w="101"/><text x="98.5351%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (84 samples, 0.02%)</title><rect x="98.2893%" y="1941" width="0.0211%" height="15" fill="rgb(219,65,33)" fg:x="390934" fg:w="84"/><text x="98.5393%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (76 samples, 0.02%)</title><rect x="98.2913%" y="1925" width="0.0191%" height="15" fill="rgb(243,134,7)" fg:x="390942" fg:w="76"/><text x="98.5413%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (72 samples, 0.02%)</title><rect x="98.2923%" y="1909" width="0.0181%" height="15" fill="rgb(216,177,54)" fg:x="390946" fg:w="72"/><text x="98.5423%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (40 samples, 0.01%)</title><rect x="98.3004%" y="1893" width="0.0101%" height="15" fill="rgb(211,160,20)" fg:x="390978" fg:w="40"/><text x="98.5504%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (3,051 samples, 0.77%)</title><rect x="97.5444%" y="2005" width="0.7671%" height="15" fill="rgb(239,85,39)" fg:x="387971" fg:w="3051"/><text x="97.7944%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (3,051 samples, 0.77%)</title><rect x="97.5444%" y="1989" width="0.7671%" height="15" fill="rgb(232,125,22)" fg:x="387971" fg:w="3051"/><text x="97.7944%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (47 samples, 0.01%)</title><rect x="98.3192%" y="1541" width="0.0118%" height="15" fill="rgb(244,57,34)" fg:x="391053" fg:w="47"/><text x="98.5692%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (47 samples, 0.01%)</title><rect x="98.3192%" y="1525" width="0.0118%" height="15" fill="rgb(214,203,32)" fg:x="391053" fg:w="47"/><text x="98.5692%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (47 samples, 0.01%)</title><rect x="98.3192%" y="1509" width="0.0118%" height="15" fill="rgb(207,58,43)" fg:x="391053" fg:w="47"/><text x="98.5692%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (47 samples, 0.01%)</title><rect x="98.3192%" y="1493" width="0.0118%" height="15" fill="rgb(215,193,15)" fg:x="391053" fg:w="47"/><text x="98.5692%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (47 samples, 0.01%)</title><rect x="98.3192%" y="1477" width="0.0118%" height="15" fill="rgb(232,15,44)" fg:x="391053" fg:w="47"/><text x="98.5692%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (124 samples, 0.03%)</title><rect x="98.3190%" y="1621" width="0.0312%" height="15" fill="rgb(212,3,48)" fg:x="391052" fg:w="124"/><text x="98.5690%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (123 samples, 0.03%)</title><rect x="98.3192%" y="1605" width="0.0309%" height="15" fill="rgb(218,128,7)" fg:x="391053" fg:w="123"/><text x="98.5692%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (123 samples, 0.03%)</title><rect x="98.3192%" y="1589" width="0.0309%" height="15" fill="rgb(226,216,39)" fg:x="391053" fg:w="123"/><text x="98.5692%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (123 samples, 0.03%)</title><rect x="98.3192%" y="1573" width="0.0309%" height="15" fill="rgb(243,47,51)" fg:x="391053" fg:w="123"/><text x="98.5692%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (123 samples, 0.03%)</title><rect x="98.3192%" y="1557" width="0.0309%" height="15" fill="rgb(241,183,40)" fg:x="391053" fg:w="123"/><text x="98.5692%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (76 samples, 0.02%)</title><rect x="98.3311%" y="1541" width="0.0191%" height="15" fill="rgb(231,217,32)" fg:x="391100" fg:w="76"/><text x="98.5811%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (76 samples, 0.02%)</title><rect x="98.3311%" y="1525" width="0.0191%" height="15" fill="rgb(229,61,38)" fg:x="391100" fg:w="76"/><text x="98.5811%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (76 samples, 0.02%)</title><rect x="98.3311%" y="1509" width="0.0191%" height="15" fill="rgb(225,210,5)" fg:x="391100" fg:w="76"/><text x="98.5811%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (46 samples, 0.01%)</title><rect x="98.3386%" y="1493" width="0.0116%" height="15" fill="rgb(231,79,45)" fg:x="391130" fg:w="46"/><text x="98.5886%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (46 samples, 0.01%)</title><rect x="98.3386%" y="1477" width="0.0116%" height="15" fill="rgb(224,100,7)" fg:x="391130" fg:w="46"/><text x="98.5886%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (169 samples, 0.04%)</title><rect x="98.3115%" y="1669" width="0.0425%" height="15" fill="rgb(241,198,18)" fg:x="391022" fg:w="169"/><text x="98.5615%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (139 samples, 0.03%)</title><rect x="98.3190%" y="1653" width="0.0349%" height="15" fill="rgb(252,97,53)" fg:x="391052" fg:w="139"/><text x="98.5690%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (139 samples, 0.03%)</title><rect x="98.3190%" y="1637" width="0.0349%" height="15" fill="rgb(220,88,7)" fg:x="391052" fg:w="139"/><text x="98.5690%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (170 samples, 0.04%)</title><rect x="98.3115%" y="1733" width="0.0427%" height="15" fill="rgb(213,176,14)" fg:x="391022" fg:w="170"/><text x="98.5615%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (170 samples, 0.04%)</title><rect x="98.3115%" y="1717" width="0.0427%" height="15" fill="rgb(246,73,7)" fg:x="391022" fg:w="170"/><text x="98.5615%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (170 samples, 0.04%)</title><rect x="98.3115%" y="1701" width="0.0427%" height="15" fill="rgb(245,64,36)" fg:x="391022" fg:w="170"/><text x="98.5615%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (170 samples, 0.04%)</title><rect x="98.3115%" y="1685" width="0.0427%" height="15" fill="rgb(245,80,10)" fg:x="391022" fg:w="170"/><text x="98.5615%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (243 samples, 0.06%)</title><rect x="98.3115%" y="1813" width="0.0611%" height="15" fill="rgb(232,107,50)" fg:x="391022" fg:w="243"/><text x="98.5615%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (243 samples, 0.06%)</title><rect x="98.3115%" y="1797" width="0.0611%" height="15" fill="rgb(253,3,0)" fg:x="391022" fg:w="243"/><text x="98.5615%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (243 samples, 0.06%)</title><rect x="98.3115%" y="1781" width="0.0611%" height="15" fill="rgb(212,99,53)" fg:x="391022" fg:w="243"/><text x="98.5615%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (243 samples, 0.06%)</title><rect x="98.3115%" y="1765" width="0.0611%" height="15" fill="rgb(249,111,54)" fg:x="391022" fg:w="243"/><text x="98.5615%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (243 samples, 0.06%)</title><rect x="98.3115%" y="1749" width="0.0611%" height="15" fill="rgb(249,55,30)" fg:x="391022" fg:w="243"/><text x="98.5615%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (73 samples, 0.02%)</title><rect x="98.3542%" y="1733" width="0.0184%" height="15" fill="rgb(237,47,42)" fg:x="391192" fg:w="73"/><text x="98.6042%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (73 samples, 0.02%)</title><rect x="98.3542%" y="1717" width="0.0184%" height="15" fill="rgb(211,20,18)" fg:x="391192" fg:w="73"/><text x="98.6042%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (73 samples, 0.02%)</title><rect x="98.3542%" y="1701" width="0.0184%" height="15" fill="rgb(231,203,46)" fg:x="391192" fg:w="73"/><text x="98.6042%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="98.3615%" y="1685" width="0.0111%" height="15" fill="rgb(237,142,3)" fg:x="391221" fg:w="44"/><text x="98.6115%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (44 samples, 0.01%)</title><rect x="98.3615%" y="1669" width="0.0111%" height="15" fill="rgb(241,107,1)" fg:x="391221" fg:w="44"/><text x="98.6115%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (318 samples, 0.08%)</title><rect x="98.3115%" y="1893" width="0.0800%" height="15" fill="rgb(229,83,13)" fg:x="391022" fg:w="318"/><text x="98.5615%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (318 samples, 0.08%)</title><rect x="98.3115%" y="1877" width="0.0800%" height="15" fill="rgb(241,91,40)" fg:x="391022" fg:w="318"/><text x="98.5615%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (318 samples, 0.08%)</title><rect x="98.3115%" y="1861" width="0.0800%" height="15" fill="rgb(225,3,45)" fg:x="391022" fg:w="318"/><text x="98.5615%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (318 samples, 0.08%)</title><rect x="98.3115%" y="1845" width="0.0800%" height="15" fill="rgb(244,223,14)" fg:x="391022" fg:w="318"/><text x="98.5615%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (318 samples, 0.08%)</title><rect x="98.3115%" y="1829" width="0.0800%" height="15" fill="rgb(224,124,37)" fg:x="391022" fg:w="318"/><text x="98.5615%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (75 samples, 0.02%)</title><rect x="98.3725%" y="1813" width="0.0189%" height="15" fill="rgb(251,171,30)" fg:x="391265" fg:w="75"/><text x="98.6225%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (75 samples, 0.02%)</title><rect x="98.3725%" y="1797" width="0.0189%" height="15" fill="rgb(236,46,54)" fg:x="391265" fg:w="75"/><text x="98.6225%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (75 samples, 0.02%)</title><rect x="98.3725%" y="1781" width="0.0189%" height="15" fill="rgb(245,213,5)" fg:x="391265" fg:w="75"/><text x="98.6225%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="98.3803%" y="1765" width="0.0111%" height="15" fill="rgb(230,144,27)" fg:x="391296" fg:w="44"/><text x="98.6303%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (44 samples, 0.01%)</title><rect x="98.3803%" y="1749" width="0.0111%" height="15" fill="rgb(220,86,6)" fg:x="391296" fg:w="44"/><text x="98.6303%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (394 samples, 0.10%)</title><rect x="98.3115%" y="1973" width="0.0991%" height="15" fill="rgb(240,20,13)" fg:x="391022" fg:w="394"/><text x="98.5615%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (394 samples, 0.10%)</title><rect x="98.3115%" y="1957" width="0.0991%" height="15" fill="rgb(217,89,34)" fg:x="391022" fg:w="394"/><text x="98.5615%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (394 samples, 0.10%)</title><rect x="98.3115%" y="1941" width="0.0991%" height="15" fill="rgb(229,13,5)" fg:x="391022" fg:w="394"/><text x="98.5615%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (394 samples, 0.10%)</title><rect x="98.3115%" y="1925" width="0.0991%" height="15" fill="rgb(244,67,35)" fg:x="391022" fg:w="394"/><text x="98.5615%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (394 samples, 0.10%)</title><rect x="98.3115%" y="1909" width="0.0991%" height="15" fill="rgb(221,40,2)" fg:x="391022" fg:w="394"/><text x="98.5615%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (76 samples, 0.02%)</title><rect x="98.3914%" y="1893" width="0.0191%" height="15" fill="rgb(237,157,21)" fg:x="391340" fg:w="76"/><text x="98.6414%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (76 samples, 0.02%)</title><rect x="98.3914%" y="1877" width="0.0191%" height="15" fill="rgb(222,94,11)" fg:x="391340" fg:w="76"/><text x="98.6414%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (76 samples, 0.02%)</title><rect x="98.3914%" y="1861" width="0.0191%" height="15" fill="rgb(249,113,6)" fg:x="391340" fg:w="76"/><text x="98.6414%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (46 samples, 0.01%)</title><rect x="98.3989%" y="1845" width="0.0116%" height="15" fill="rgb(238,137,36)" fg:x="391370" fg:w="46"/><text x="98.6489%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (46 samples, 0.01%)</title><rect x="98.3989%" y="1829" width="0.0116%" height="15" fill="rgb(210,102,26)" fg:x="391370" fg:w="46"/><text x="98.6489%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (77 samples, 0.02%)</title><rect x="98.4246%" y="1893" width="0.0194%" height="15" fill="rgb(218,30,30)" fg:x="391472" fg:w="77"/><text x="98.6746%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (71 samples, 0.02%)</title><rect x="98.4261%" y="1877" width="0.0179%" height="15" fill="rgb(214,67,26)" fg:x="391478" fg:w="71"/><text x="98.6761%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (41 samples, 0.01%)</title><rect x="98.4336%" y="1861" width="0.0103%" height="15" fill="rgb(251,9,53)" fg:x="391508" fg:w="41"/><text x="98.6836%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (102 samples, 0.03%)</title><rect x="98.4186%" y="1941" width="0.0256%" height="15" fill="rgb(228,204,25)" fg:x="391448" fg:w="102"/><text x="98.6686%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (102 samples, 0.03%)</title><rect x="98.4186%" y="1925" width="0.0256%" height="15" fill="rgb(207,153,8)" fg:x="391448" fg:w="102"/><text x="98.6686%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (83 samples, 0.02%)</title><rect x="98.4233%" y="1909" width="0.0209%" height="15" fill="rgb(242,9,16)" fg:x="391467" fg:w="83"/><text x="98.6733%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (135 samples, 0.03%)</title><rect x="98.4105%" y="1973" width="0.0339%" height="15" fill="rgb(217,211,10)" fg:x="391416" fg:w="135"/><text x="98.6605%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (135 samples, 0.03%)</title><rect x="98.4105%" y="1957" width="0.0339%" height="15" fill="rgb(219,228,52)" fg:x="391416" fg:w="135"/><text x="98.6605%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (72 samples, 0.02%)</title><rect x="98.4445%" y="1941" width="0.0181%" height="15" fill="rgb(231,92,29)" fg:x="391551" fg:w="72"/><text x="98.6945%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (72 samples, 0.02%)</title><rect x="98.4445%" y="1925" width="0.0181%" height="15" fill="rgb(232,8,23)" fg:x="391551" fg:w="72"/><text x="98.6945%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (72 samples, 0.02%)</title><rect x="98.4445%" y="1909" width="0.0181%" height="15" fill="rgb(216,211,34)" fg:x="391551" fg:w="72"/><text x="98.6945%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (72 samples, 0.02%)</title><rect x="98.4445%" y="1893" width="0.0181%" height="15" fill="rgb(236,151,0)" fg:x="391551" fg:w="72"/><text x="98.6945%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (64 samples, 0.02%)</title><rect x="98.4465%" y="1877" width="0.0161%" height="15" fill="rgb(209,168,3)" fg:x="391559" fg:w="64"/><text x="98.6965%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (56 samples, 0.01%)</title><rect x="98.4485%" y="1861" width="0.0141%" height="15" fill="rgb(208,129,28)" fg:x="391567" fg:w="56"/><text x="98.6985%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (52 samples, 0.01%)</title><rect x="98.4495%" y="1845" width="0.0131%" height="15" fill="rgb(229,78,22)" fg:x="391571" fg:w="52"/><text x="98.6995%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (157 samples, 0.04%)</title><rect x="98.4445%" y="1957" width="0.0395%" height="15" fill="rgb(228,187,13)" fg:x="391551" fg:w="157"/><text x="98.6945%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (85 samples, 0.02%)</title><rect x="98.4626%" y="1941" width="0.0214%" height="15" fill="rgb(240,119,24)" fg:x="391623" fg:w="85"/><text x="98.7126%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (56 samples, 0.01%)</title><rect x="98.4698%" y="1925" width="0.0141%" height="15" fill="rgb(209,194,42)" fg:x="391652" fg:w="56"/><text x="98.7198%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (56 samples, 0.01%)</title><rect x="98.4698%" y="1909" width="0.0141%" height="15" fill="rgb(247,200,46)" fg:x="391652" fg:w="56"/><text x="98.7198%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (46 samples, 0.01%)</title><rect x="98.4724%" y="1893" width="0.0116%" height="15" fill="rgb(218,76,16)" fg:x="391662" fg:w="46"/><text x="98.7224%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (42 samples, 0.01%)</title><rect x="98.4734%" y="1877" width="0.0106%" height="15" fill="rgb(225,21,48)" fg:x="391666" fg:w="42"/><text x="98.7234%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (716 samples, 0.18%)</title><rect x="98.3115%" y="1989" width="0.1800%" height="15" fill="rgb(239,223,50)" fg:x="391022" fg:w="716"/><text x="98.5615%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (187 samples, 0.05%)</title><rect x="98.4445%" y="1973" width="0.0470%" height="15" fill="rgb(244,45,21)" fg:x="391551" fg:w="187"/><text x="98.6945%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (4,414 samples, 1.11%)</title><rect x="97.3895%" y="2021" width="1.1098%" height="15" fill="rgb(232,33,43)" fg:x="387355" fg:w="4414"/><text x="97.6395%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (747 samples, 0.19%)</title><rect x="98.3115%" y="2005" width="0.1878%" height="15" fill="rgb(209,8,3)" fg:x="391022" fg:w="747"/><text x="98.5615%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (44 samples, 0.01%)</title><rect x="98.4993%" y="2021" width="0.0111%" height="15" fill="rgb(214,25,53)" fg:x="391769" fg:w="44"/><text x="98.7493%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (44 samples, 0.01%)</title><rect x="98.4993%" y="2005" width="0.0111%" height="15" fill="rgb(254,186,54)" fg:x="391769" fg:w="44"/><text x="98.7493%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (4,472 samples, 1.12%)</title><rect x="97.3887%" y="2069" width="1.1244%" height="15" fill="rgb(208,174,49)" fg:x="387352" fg:w="4472"/><text x="97.6387%" y="2079.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (4,472 samples, 1.12%)</title><rect x="97.3887%" y="2053" width="1.1244%" height="15" fill="rgb(233,191,51)" fg:x="387352" fg:w="4472"/><text x="97.6387%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (4,472 samples, 1.12%)</title><rect x="97.3887%" y="2037" width="1.1244%" height="15" fill="rgb(222,134,10)" fg:x="387352" fg:w="4472"/><text x="97.6387%" y="2047.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (73 samples, 0.02%)</title><rect x="98.5138%" y="1573" width="0.0184%" height="15" fill="rgb(230,226,20)" fg:x="391827" fg:w="73"/><text x="98.7638%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (73 samples, 0.02%)</title><rect x="98.5138%" y="1557" width="0.0184%" height="15" fill="rgb(251,111,25)" fg:x="391827" fg:w="73"/><text x="98.7638%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (73 samples, 0.02%)</title><rect x="98.5138%" y="1541" width="0.0184%" height="15" fill="rgb(224,40,46)" fg:x="391827" fg:w="73"/><text x="98.7638%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (40 samples, 0.01%)</title><rect x="98.5322%" y="1573" width="0.0101%" height="15" fill="rgb(236,108,47)" fg:x="391900" fg:w="40"/><text x="98.7822%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (40 samples, 0.01%)</title><rect x="98.5322%" y="1557" width="0.0101%" height="15" fill="rgb(234,93,0)" fg:x="391900" fg:w="40"/><text x="98.7822%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (40 samples, 0.01%)</title><rect x="98.5322%" y="1541" width="0.0101%" height="15" fill="rgb(224,213,32)" fg:x="391900" fg:w="40"/><text x="98.7822%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (40 samples, 0.01%)</title><rect x="98.5322%" y="1525" width="0.0101%" height="15" fill="rgb(251,11,48)" fg:x="391900" fg:w="40"/><text x="98.7822%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (42 samples, 0.01%)</title><rect x="98.5423%" y="1525" width="0.0106%" height="15" fill="rgb(236,173,5)" fg:x="391940" fg:w="42"/><text x="98.7923%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (42 samples, 0.01%)</title><rect x="98.5423%" y="1509" width="0.0106%" height="15" fill="rgb(230,95,12)" fg:x="391940" fg:w="42"/><text x="98.7923%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (42 samples, 0.01%)</title><rect x="98.5423%" y="1493" width="0.0106%" height="15" fill="rgb(232,209,1)" fg:x="391940" fg:w="42"/><text x="98.7923%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (199 samples, 0.05%)</title><rect x="98.5138%" y="1637" width="0.0500%" height="15" fill="rgb(232,6,1)" fg:x="391827" fg:w="199"/><text x="98.7638%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (199 samples, 0.05%)</title><rect x="98.5138%" y="1621" width="0.0500%" height="15" fill="rgb(210,224,50)" fg:x="391827" fg:w="199"/><text x="98.7638%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (199 samples, 0.05%)</title><rect x="98.5138%" y="1605" width="0.0500%" height="15" fill="rgb(228,127,35)" fg:x="391827" fg:w="199"/><text x="98.7638%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (199 samples, 0.05%)</title><rect x="98.5138%" y="1589" width="0.0500%" height="15" fill="rgb(245,102,45)" fg:x="391827" fg:w="199"/><text x="98.7638%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (86 samples, 0.02%)</title><rect x="98.5423%" y="1573" width="0.0216%" height="15" fill="rgb(214,1,49)" fg:x="391940" fg:w="86"/><text x="98.7923%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (86 samples, 0.02%)</title><rect x="98.5423%" y="1557" width="0.0216%" height="15" fill="rgb(226,163,40)" fg:x="391940" fg:w="86"/><text x="98.7923%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (86 samples, 0.02%)</title><rect x="98.5423%" y="1541" width="0.0216%" height="15" fill="rgb(239,212,28)" fg:x="391940" fg:w="86"/><text x="98.7923%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (44 samples, 0.01%)</title><rect x="98.5528%" y="1525" width="0.0111%" height="15" fill="rgb(220,20,13)" fg:x="391982" fg:w="44"/><text x="98.8028%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (44 samples, 0.01%)</title><rect x="98.5528%" y="1509" width="0.0111%" height="15" fill="rgb(210,164,35)" fg:x="391982" fg:w="44"/><text x="98.8028%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (44 samples, 0.01%)</title><rect x="98.5528%" y="1493" width="0.0111%" height="15" fill="rgb(248,109,41)" fg:x="391982" fg:w="44"/><text x="98.8028%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (203 samples, 0.05%)</title><rect x="98.5138%" y="1685" width="0.0510%" height="15" fill="rgb(238,23,50)" fg:x="391827" fg:w="203"/><text x="98.7638%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (203 samples, 0.05%)</title><rect x="98.5138%" y="1669" width="0.0510%" height="15" fill="rgb(211,48,49)" fg:x="391827" fg:w="203"/><text x="98.7638%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (203 samples, 0.05%)</title><rect x="98.5138%" y="1653" width="0.0510%" height="15" fill="rgb(223,36,21)" fg:x="391827" fg:w="203"/><text x="98.7638%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (210 samples, 0.05%)</title><rect x="98.5138%" y="1845" width="0.0528%" height="15" fill="rgb(207,123,46)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (210 samples, 0.05%)</title><rect x="98.5138%" y="1829" width="0.0528%" height="15" fill="rgb(240,218,32)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (210 samples, 0.05%)</title><rect x="98.5138%" y="1813" width="0.0528%" height="15" fill="rgb(252,5,43)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (210 samples, 0.05%)</title><rect x="98.5138%" y="1797" width="0.0528%" height="15" fill="rgb(252,84,19)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (210 samples, 0.05%)</title><rect x="98.5138%" y="1781" width="0.0528%" height="15" fill="rgb(243,152,39)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (210 samples, 0.05%)</title><rect x="98.5138%" y="1765" width="0.0528%" height="15" fill="rgb(234,160,15)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (210 samples, 0.05%)</title><rect x="98.5138%" y="1749" width="0.0528%" height="15" fill="rgb(237,34,20)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (210 samples, 0.05%)</title><rect x="98.5138%" y="1733" width="0.0528%" height="15" fill="rgb(229,97,13)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (210 samples, 0.05%)</title><rect x="98.5138%" y="1717" width="0.0528%" height="15" fill="rgb(234,71,50)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (210 samples, 0.05%)</title><rect x="98.5138%" y="1701" width="0.0528%" height="15" fill="rgb(253,155,4)" fg:x="391827" fg:w="210"/><text x="98.7638%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (276 samples, 0.07%)</title><rect x="98.5138%" y="2005" width="0.0694%" height="15" fill="rgb(222,185,37)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (276 samples, 0.07%)</title><rect x="98.5138%" y="1989" width="0.0694%" height="15" fill="rgb(251,177,13)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (276 samples, 0.07%)</title><rect x="98.5138%" y="1973" width="0.0694%" height="15" fill="rgb(250,179,40)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (276 samples, 0.07%)</title><rect x="98.5138%" y="1957" width="0.0694%" height="15" fill="rgb(242,44,2)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (276 samples, 0.07%)</title><rect x="98.5138%" y="1941" width="0.0694%" height="15" fill="rgb(216,177,13)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (276 samples, 0.07%)</title><rect x="98.5138%" y="1925" width="0.0694%" height="15" fill="rgb(216,106,43)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (276 samples, 0.07%)</title><rect x="98.5138%" y="1909" width="0.0694%" height="15" fill="rgb(216,183,2)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (276 samples, 0.07%)</title><rect x="98.5138%" y="1893" width="0.0694%" height="15" fill="rgb(249,75,3)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (276 samples, 0.07%)</title><rect x="98.5138%" y="1877" width="0.0694%" height="15" fill="rgb(219,67,39)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (276 samples, 0.07%)</title><rect x="98.5138%" y="1861" width="0.0694%" height="15" fill="rgb(253,228,2)" fg:x="391827" fg:w="276"/><text x="98.7638%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (66 samples, 0.02%)</title><rect x="98.5666%" y="1845" width="0.0166%" height="15" fill="rgb(235,138,27)" fg:x="392037" fg:w="66"/><text x="98.8166%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (66 samples, 0.02%)</title><rect x="98.5666%" y="1829" width="0.0166%" height="15" fill="rgb(236,97,51)" fg:x="392037" fg:w="66"/><text x="98.8166%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (66 samples, 0.02%)</title><rect x="98.5666%" y="1813" width="0.0166%" height="15" fill="rgb(240,80,30)" fg:x="392037" fg:w="66"/><text x="98.8166%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17haf4aeb120f780c88E.llvm.15725695388440039465 (280 samples, 0.07%)</title><rect x="98.5131%" y="2069" width="0.0704%" height="15" fill="rgb(230,178,19)" fg:x="391824" fg:w="280"/><text x="98.7631%" y="2079.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN115_$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$9call_once17hdd394c074fdfb13eE (280 samples, 0.07%)</title><rect x="98.5131%" y="2053" width="0.0704%" height="15" fill="rgb(210,190,27)" fg:x="391824" fg:w="280"/><text x="98.7631%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (280 samples, 0.07%)</title><rect x="98.5131%" y="2037" width="0.0704%" height="15" fill="rgb(222,107,31)" fg:x="391824" fg:w="280"/><text x="98.7631%" y="2047.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (280 samples, 0.07%)</title><rect x="98.5131%" y="2021" width="0.0704%" height="15" fill="rgb(216,127,34)" fg:x="391824" fg:w="280"/><text x="98.7631%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (45 samples, 0.01%)</title><rect x="98.5915%" y="1877" width="0.0113%" height="15" fill="rgb(234,116,52)" fg:x="392136" fg:w="45"/><text x="98.8415%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="98.5915%" y="1861" width="0.0113%" height="15" fill="rgb(222,124,15)" fg:x="392136" fg:w="45"/><text x="98.8415%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="98.5915%" y="1845" width="0.0113%" height="15" fill="rgb(231,179,28)" fg:x="392136" fg:w="45"/><text x="98.8415%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (92 samples, 0.02%)</title><rect x="98.5915%" y="1925" width="0.0231%" height="15" fill="rgb(226,93,45)" fg:x="392136" fg:w="92"/><text x="98.8415%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (92 samples, 0.02%)</title><rect x="98.5915%" y="1909" width="0.0231%" height="15" fill="rgb(215,8,51)" fg:x="392136" fg:w="92"/><text x="98.8415%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (92 samples, 0.02%)</title><rect x="98.5915%" y="1893" width="0.0231%" height="15" fill="rgb(223,106,5)" fg:x="392136" fg:w="92"/><text x="98.8415%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (47 samples, 0.01%)</title><rect x="98.6028%" y="1877" width="0.0118%" height="15" fill="rgb(250,191,5)" fg:x="392181" fg:w="47"/><text x="98.8528%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (47 samples, 0.01%)</title><rect x="98.6028%" y="1861" width="0.0118%" height="15" fill="rgb(242,132,44)" fg:x="392181" fg:w="47"/><text x="98.8528%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (47 samples, 0.01%)</title><rect x="98.6028%" y="1845" width="0.0118%" height="15" fill="rgb(251,152,29)" fg:x="392181" fg:w="47"/><text x="98.8528%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (48 samples, 0.01%)</title><rect x="98.6147%" y="1877" width="0.0121%" height="15" fill="rgb(218,179,5)" fg:x="392228" fg:w="48"/><text x="98.8647%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (48 samples, 0.01%)</title><rect x="98.6147%" y="1861" width="0.0121%" height="15" fill="rgb(227,67,19)" fg:x="392228" fg:w="48"/><text x="98.8647%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="98.6152%" y="1845" width="0.0116%" height="15" fill="rgb(233,119,31)" fg:x="392230" fg:w="46"/><text x="98.8652%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (186 samples, 0.05%)</title><rect x="98.5915%" y="1973" width="0.0468%" height="15" fill="rgb(241,120,22)" fg:x="392136" fg:w="186"/><text x="98.8415%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (186 samples, 0.05%)</title><rect x="98.5915%" y="1957" width="0.0468%" height="15" fill="rgb(224,102,30)" fg:x="392136" fg:w="186"/><text x="98.8415%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (186 samples, 0.05%)</title><rect x="98.5915%" y="1941" width="0.0468%" height="15" fill="rgb(210,164,37)" fg:x="392136" fg:w="186"/><text x="98.8415%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (94 samples, 0.02%)</title><rect x="98.6147%" y="1925" width="0.0236%" height="15" fill="rgb(226,191,16)" fg:x="392228" fg:w="94"/><text x="98.8647%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (94 samples, 0.02%)</title><rect x="98.6147%" y="1909" width="0.0236%" height="15" fill="rgb(214,40,45)" fg:x="392228" fg:w="94"/><text x="98.8647%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (94 samples, 0.02%)</title><rect x="98.6147%" y="1893" width="0.0236%" height="15" fill="rgb(244,29,26)" fg:x="392228" fg:w="94"/><text x="98.8647%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (46 samples, 0.01%)</title><rect x="98.6267%" y="1877" width="0.0116%" height="15" fill="rgb(216,16,5)" fg:x="392276" fg:w="46"/><text x="98.8767%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="98.6267%" y="1861" width="0.0116%" height="15" fill="rgb(249,76,35)" fg:x="392276" fg:w="46"/><text x="98.8767%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="98.6267%" y="1845" width="0.0116%" height="15" fill="rgb(207,11,44)" fg:x="392276" fg:w="46"/><text x="98.8767%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (44 samples, 0.01%)</title><rect x="98.6463%" y="1797" width="0.0111%" height="15" fill="rgb(228,190,49)" fg:x="392354" fg:w="44"/><text x="98.8963%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="98.6463%" y="1781" width="0.0111%" height="15" fill="rgb(214,173,12)" fg:x="392354" fg:w="44"/><text x="98.8963%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="98.6463%" y="1765" width="0.0111%" height="15" fill="rgb(218,26,35)" fg:x="392354" fg:w="44"/><text x="98.8963%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (53 samples, 0.01%)</title><rect x="98.6650%" y="1269" width="0.0133%" height="15" fill="rgb(220,200,19)" fg:x="392428" fg:w="53"/><text x="98.9150%" y="1279.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (53 samples, 0.01%)</title><rect x="98.6650%" y="1253" width="0.0133%" height="15" fill="rgb(239,95,49)" fg:x="392428" fg:w="53"/><text x="98.9150%" y="1263.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (53 samples, 0.01%)</title><rect x="98.6650%" y="1237" width="0.0133%" height="15" fill="rgb(235,85,53)" fg:x="392428" fg:w="53"/><text x="98.9150%" y="1247.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (53 samples, 0.01%)</title><rect x="98.6650%" y="1221" width="0.0133%" height="15" fill="rgb(233,133,31)" fg:x="392428" fg:w="53"/><text x="98.9150%" y="1231.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (52 samples, 0.01%)</title><rect x="98.6652%" y="1205" width="0.0131%" height="15" fill="rgb(218,25,20)" fg:x="392429" fg:w="52"/><text x="98.9152%" y="1215.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (52 samples, 0.01%)</title><rect x="98.6652%" y="1189" width="0.0131%" height="15" fill="rgb(252,210,38)" fg:x="392429" fg:w="52"/><text x="98.9152%" y="1199.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (52 samples, 0.01%)</title><rect x="98.6652%" y="1173" width="0.0131%" height="15" fill="rgb(242,134,21)" fg:x="392429" fg:w="52"/><text x="98.9152%" y="1183.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (56 samples, 0.01%)</title><rect x="98.6644%" y="1365" width="0.0141%" height="15" fill="rgb(213,28,48)" fg:x="392426" fg:w="56"/><text x="98.9144%" y="1375.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (56 samples, 0.01%)</title><rect x="98.6644%" y="1349" width="0.0141%" height="15" fill="rgb(250,196,2)" fg:x="392426" fg:w="56"/><text x="98.9144%" y="1359.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (56 samples, 0.01%)</title><rect x="98.6644%" y="1333" width="0.0141%" height="15" fill="rgb(227,5,17)" fg:x="392426" fg:w="56"/><text x="98.9144%" y="1343.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (55 samples, 0.01%)</title><rect x="98.6647%" y="1317" width="0.0138%" height="15" fill="rgb(221,226,24)" fg:x="392427" fg:w="55"/><text x="98.9147%" y="1327.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (55 samples, 0.01%)</title><rect x="98.6647%" y="1301" width="0.0138%" height="15" fill="rgb(211,5,48)" fg:x="392427" fg:w="55"/><text x="98.9147%" y="1311.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (55 samples, 0.01%)</title><rect x="98.6647%" y="1285" width="0.0138%" height="15" fill="rgb(219,150,6)" fg:x="392427" fg:w="55"/><text x="98.9147%" y="1295.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (76 samples, 0.02%)</title><rect x="98.6609%" y="1461" width="0.0191%" height="15" fill="rgb(251,46,16)" fg:x="392412" fg:w="76"/><text x="98.9109%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (76 samples, 0.02%)</title><rect x="98.6609%" y="1445" width="0.0191%" height="15" fill="rgb(220,204,40)" fg:x="392412" fg:w="76"/><text x="98.9109%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (76 samples, 0.02%)</title><rect x="98.6609%" y="1429" width="0.0191%" height="15" fill="rgb(211,85,2)" fg:x="392412" fg:w="76"/><text x="98.9109%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (62 samples, 0.02%)</title><rect x="98.6644%" y="1413" width="0.0156%" height="15" fill="rgb(229,17,7)" fg:x="392426" fg:w="62"/><text x="98.9144%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (62 samples, 0.02%)</title><rect x="98.6644%" y="1397" width="0.0156%" height="15" fill="rgb(239,72,28)" fg:x="392426" fg:w="62"/><text x="98.9144%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (62 samples, 0.02%)</title><rect x="98.6644%" y="1381" width="0.0156%" height="15" fill="rgb(230,47,54)" fg:x="392426" fg:w="62"/><text x="98.9144%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (114 samples, 0.03%)</title><rect x="98.6607%" y="1525" width="0.0287%" height="15" fill="rgb(214,50,8)" fg:x="392411" fg:w="114"/><text x="98.9107%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (113 samples, 0.03%)</title><rect x="98.6609%" y="1509" width="0.0284%" height="15" fill="rgb(216,198,43)" fg:x="392412" fg:w="113"/><text x="98.9109%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (113 samples, 0.03%)</title><rect x="98.6609%" y="1493" width="0.0284%" height="15" fill="rgb(234,20,35)" fg:x="392412" fg:w="113"/><text x="98.9109%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (113 samples, 0.03%)</title><rect x="98.6609%" y="1477" width="0.0284%" height="15" fill="rgb(254,45,19)" fg:x="392412" fg:w="113"/><text x="98.9109%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (165 samples, 0.04%)</title><rect x="98.6604%" y="1589" width="0.0415%" height="15" fill="rgb(219,14,44)" fg:x="392410" fg:w="165"/><text x="98.9104%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (165 samples, 0.04%)</title><rect x="98.6604%" y="1573" width="0.0415%" height="15" fill="rgb(217,220,26)" fg:x="392410" fg:w="165"/><text x="98.9104%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (165 samples, 0.04%)</title><rect x="98.6604%" y="1557" width="0.0415%" height="15" fill="rgb(213,158,28)" fg:x="392410" fg:w="165"/><text x="98.9104%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (164 samples, 0.04%)</title><rect x="98.6607%" y="1541" width="0.0412%" height="15" fill="rgb(252,51,52)" fg:x="392411" fg:w="164"/><text x="98.9107%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (50 samples, 0.01%)</title><rect x="98.6893%" y="1525" width="0.0126%" height="15" fill="rgb(246,89,16)" fg:x="392525" fg:w="50"/><text x="98.9393%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (50 samples, 0.01%)</title><rect x="98.6893%" y="1509" width="0.0126%" height="15" fill="rgb(216,158,49)" fg:x="392525" fg:w="50"/><text x="98.9393%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (50 samples, 0.01%)</title><rect x="98.6893%" y="1493" width="0.0126%" height="15" fill="rgb(236,107,19)" fg:x="392525" fg:w="50"/><text x="98.9393%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (48 samples, 0.01%)</title><rect x="98.7019%" y="1541" width="0.0121%" height="15" fill="rgb(228,185,30)" fg:x="392575" fg:w="48"/><text x="98.9519%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (48 samples, 0.01%)</title><rect x="98.7019%" y="1525" width="0.0121%" height="15" fill="rgb(246,134,8)" fg:x="392575" fg:w="48"/><text x="98.9519%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (48 samples, 0.01%)</title><rect x="98.7019%" y="1509" width="0.0121%" height="15" fill="rgb(214,143,50)" fg:x="392575" fg:w="48"/><text x="98.9519%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (262 samples, 0.07%)</title><rect x="98.6604%" y="1701" width="0.0659%" height="15" fill="rgb(228,75,8)" fg:x="392410" fg:w="262"/><text x="98.9104%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (262 samples, 0.07%)</title><rect x="98.6604%" y="1685" width="0.0659%" height="15" fill="rgb(207,175,4)" fg:x="392410" fg:w="262"/><text x="98.9104%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (262 samples, 0.07%)</title><rect x="98.6604%" y="1669" width="0.0659%" height="15" fill="rgb(205,108,24)" fg:x="392410" fg:w="262"/><text x="98.9104%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (262 samples, 0.07%)</title><rect x="98.6604%" y="1653" width="0.0659%" height="15" fill="rgb(244,120,49)" fg:x="392410" fg:w="262"/><text x="98.9104%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (262 samples, 0.07%)</title><rect x="98.6604%" y="1637" width="0.0659%" height="15" fill="rgb(223,47,38)" fg:x="392410" fg:w="262"/><text x="98.9104%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (262 samples, 0.07%)</title><rect x="98.6604%" y="1621" width="0.0659%" height="15" fill="rgb(229,179,11)" fg:x="392410" fg:w="262"/><text x="98.9104%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (262 samples, 0.07%)</title><rect x="98.6604%" y="1605" width="0.0659%" height="15" fill="rgb(231,122,1)" fg:x="392410" fg:w="262"/><text x="98.9104%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (97 samples, 0.02%)</title><rect x="98.7019%" y="1589" width="0.0244%" height="15" fill="rgb(245,119,9)" fg:x="392575" fg:w="97"/><text x="98.9519%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (97 samples, 0.02%)</title><rect x="98.7019%" y="1573" width="0.0244%" height="15" fill="rgb(241,163,25)" fg:x="392575" fg:w="97"/><text x="98.9519%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (97 samples, 0.02%)</title><rect x="98.7019%" y="1557" width="0.0244%" height="15" fill="rgb(217,214,3)" fg:x="392575" fg:w="97"/><text x="98.9519%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (49 samples, 0.01%)</title><rect x="98.7140%" y="1541" width="0.0123%" height="15" fill="rgb(240,86,28)" fg:x="392623" fg:w="49"/><text x="98.9640%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (49 samples, 0.01%)</title><rect x="98.7140%" y="1525" width="0.0123%" height="15" fill="rgb(215,47,9)" fg:x="392623" fg:w="49"/><text x="98.9640%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (49 samples, 0.01%)</title><rect x="98.7140%" y="1509" width="0.0123%" height="15" fill="rgb(252,25,45)" fg:x="392623" fg:w="49"/><text x="98.9640%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (54 samples, 0.01%)</title><rect x="98.7265%" y="1653" width="0.0136%" height="15" fill="rgb(251,164,9)" fg:x="392673" fg:w="54"/><text x="98.9765%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (54 samples, 0.01%)</title><rect x="98.7265%" y="1637" width="0.0136%" height="15" fill="rgb(233,194,0)" fg:x="392673" fg:w="54"/><text x="98.9765%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (54 samples, 0.01%)</title><rect x="98.7265%" y="1621" width="0.0136%" height="15" fill="rgb(249,111,24)" fg:x="392673" fg:w="54"/><text x="98.9765%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (380 samples, 0.10%)</title><rect x="98.6577%" y="1749" width="0.0955%" height="15" fill="rgb(250,223,3)" fg:x="392399" fg:w="380"/><text x="98.9077%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (380 samples, 0.10%)</title><rect x="98.6577%" y="1733" width="0.0955%" height="15" fill="rgb(236,178,37)" fg:x="392399" fg:w="380"/><text x="98.9077%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (380 samples, 0.10%)</title><rect x="98.6577%" y="1717" width="0.0955%" height="15" fill="rgb(241,158,50)" fg:x="392399" fg:w="380"/><text x="98.9077%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (107 samples, 0.03%)</title><rect x="98.7263%" y="1701" width="0.0269%" height="15" fill="rgb(213,121,41)" fg:x="392672" fg:w="107"/><text x="98.9763%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (107 samples, 0.03%)</title><rect x="98.7263%" y="1685" width="0.0269%" height="15" fill="rgb(240,92,3)" fg:x="392672" fg:w="107"/><text x="98.9763%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (106 samples, 0.03%)</title><rect x="98.7265%" y="1669" width="0.0267%" height="15" fill="rgb(205,123,3)" fg:x="392673" fg:w="106"/><text x="98.9765%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (52 samples, 0.01%)</title><rect x="98.7401%" y="1653" width="0.0131%" height="15" fill="rgb(205,97,47)" fg:x="392727" fg:w="52"/><text x="98.9901%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (52 samples, 0.01%)</title><rect x="98.7401%" y="1637" width="0.0131%" height="15" fill="rgb(247,152,14)" fg:x="392727" fg:w="52"/><text x="98.9901%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (52 samples, 0.01%)</title><rect x="98.7401%" y="1621" width="0.0131%" height="15" fill="rgb(248,195,53)" fg:x="392727" fg:w="52"/><text x="98.9901%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (53 samples, 0.01%)</title><rect x="98.7535%" y="1653" width="0.0133%" height="15" fill="rgb(226,201,16)" fg:x="392780" fg:w="53"/><text x="99.0035%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (53 samples, 0.01%)</title><rect x="98.7535%" y="1637" width="0.0133%" height="15" fill="rgb(205,98,0)" fg:x="392780" fg:w="53"/><text x="99.0035%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (53 samples, 0.01%)</title><rect x="98.7535%" y="1621" width="0.0133%" height="15" fill="rgb(214,191,48)" fg:x="392780" fg:w="53"/><text x="99.0035%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (105 samples, 0.03%)</title><rect x="98.7535%" y="1701" width="0.0264%" height="15" fill="rgb(237,112,39)" fg:x="392780" fg:w="105"/><text x="99.0035%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (105 samples, 0.03%)</title><rect x="98.7535%" y="1685" width="0.0264%" height="15" fill="rgb(247,203,27)" fg:x="392780" fg:w="105"/><text x="99.0035%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (105 samples, 0.03%)</title><rect x="98.7535%" y="1669" width="0.0264%" height="15" fill="rgb(235,124,28)" fg:x="392780" fg:w="105"/><text x="99.0035%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (52 samples, 0.01%)</title><rect x="98.7668%" y="1653" width="0.0131%" height="15" fill="rgb(208,207,46)" fg:x="392833" fg:w="52"/><text x="99.0168%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (52 samples, 0.01%)</title><rect x="98.7668%" y="1637" width="0.0131%" height="15" fill="rgb(234,176,4)" fg:x="392833" fg:w="52"/><text x="99.0168%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (52 samples, 0.01%)</title><rect x="98.7668%" y="1621" width="0.0131%" height="15" fill="rgb(230,133,28)" fg:x="392833" fg:w="52"/><text x="99.0168%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (49 samples, 0.01%)</title><rect x="98.7799%" y="1653" width="0.0123%" height="15" fill="rgb(211,137,40)" fg:x="392885" fg:w="49"/><text x="99.0299%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (49 samples, 0.01%)</title><rect x="98.7799%" y="1637" width="0.0123%" height="15" fill="rgb(254,35,13)" fg:x="392885" fg:w="49"/><text x="99.0299%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (49 samples, 0.01%)</title><rect x="98.7799%" y="1621" width="0.0123%" height="15" fill="rgb(225,49,51)" fg:x="392885" fg:w="49"/><text x="99.0299%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (635 samples, 0.16%)</title><rect x="98.6446%" y="1909" width="0.1597%" height="15" fill="rgb(251,10,15)" fg:x="392347" fg:w="635"/><text x="98.8946%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (635 samples, 0.16%)</title><rect x="98.6446%" y="1893" width="0.1597%" height="15" fill="rgb(228,207,15)" fg:x="392347" fg:w="635"/><text x="98.8946%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (635 samples, 0.16%)</title><rect x="98.6446%" y="1877" width="0.1597%" height="15" fill="rgb(241,99,19)" fg:x="392347" fg:w="635"/><text x="98.8946%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (632 samples, 0.16%)</title><rect x="98.6453%" y="1861" width="0.1589%" height="15" fill="rgb(207,104,49)" fg:x="392350" fg:w="632"/><text x="98.8953%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (630 samples, 0.16%)</title><rect x="98.6458%" y="1845" width="0.1584%" height="15" fill="rgb(234,99,18)" fg:x="392352" fg:w="630"/><text x="98.8958%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (630 samples, 0.16%)</title><rect x="98.6458%" y="1829" width="0.1584%" height="15" fill="rgb(213,191,49)" fg:x="392352" fg:w="630"/><text x="98.8958%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (628 samples, 0.16%)</title><rect x="98.6463%" y="1813" width="0.1579%" height="15" fill="rgb(210,226,19)" fg:x="392354" fg:w="628"/><text x="98.8963%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (584 samples, 0.15%)</title><rect x="98.6574%" y="1797" width="0.1468%" height="15" fill="rgb(229,97,18)" fg:x="392398" fg:w="584"/><text x="98.9074%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (584 samples, 0.15%)</title><rect x="98.6574%" y="1781" width="0.1468%" height="15" fill="rgb(211,167,15)" fg:x="392398" fg:w="584"/><text x="98.9074%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (583 samples, 0.15%)</title><rect x="98.6577%" y="1765" width="0.1466%" height="15" fill="rgb(210,169,34)" fg:x="392399" fg:w="583"/><text x="98.9077%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (203 samples, 0.05%)</title><rect x="98.7532%" y="1749" width="0.0510%" height="15" fill="rgb(241,121,31)" fg:x="392779" fg:w="203"/><text x="99.0032%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (203 samples, 0.05%)</title><rect x="98.7532%" y="1733" width="0.0510%" height="15" fill="rgb(232,40,11)" fg:x="392779" fg:w="203"/><text x="99.0032%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (202 samples, 0.05%)</title><rect x="98.7535%" y="1717" width="0.0508%" height="15" fill="rgb(205,86,26)" fg:x="392780" fg:w="202"/><text x="99.0035%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (97 samples, 0.02%)</title><rect x="98.7799%" y="1701" width="0.0244%" height="15" fill="rgb(231,126,28)" fg:x="392885" fg:w="97"/><text x="99.0299%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (97 samples, 0.02%)</title><rect x="98.7799%" y="1685" width="0.0244%" height="15" fill="rgb(219,221,18)" fg:x="392885" fg:w="97"/><text x="99.0299%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (97 samples, 0.02%)</title><rect x="98.7799%" y="1669" width="0.0244%" height="15" fill="rgb(211,40,0)" fg:x="392885" fg:w="97"/><text x="99.0299%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (48 samples, 0.01%)</title><rect x="98.7922%" y="1653" width="0.0121%" height="15" fill="rgb(239,85,43)" fg:x="392934" fg:w="48"/><text x="99.0422%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (48 samples, 0.01%)</title><rect x="98.7922%" y="1637" width="0.0121%" height="15" fill="rgb(231,55,21)" fg:x="392934" fg:w="48"/><text x="99.0422%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (48 samples, 0.01%)</title><rect x="98.7922%" y="1621" width="0.0121%" height="15" fill="rgb(225,184,43)" fg:x="392934" fg:w="48"/><text x="99.0422%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (56 samples, 0.01%)</title><rect x="98.8075%" y="1685" width="0.0141%" height="15" fill="rgb(251,158,41)" fg:x="392995" fg:w="56"/><text x="99.0575%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (56 samples, 0.01%)</title><rect x="98.8075%" y="1669" width="0.0141%" height="15" fill="rgb(234,159,37)" fg:x="392995" fg:w="56"/><text x="99.0575%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (56 samples, 0.01%)</title><rect x="98.8075%" y="1653" width="0.0141%" height="15" fill="rgb(216,204,22)" fg:x="392995" fg:w="56"/><text x="99.0575%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (56 samples, 0.01%)</title><rect x="98.8075%" y="1637" width="0.0141%" height="15" fill="rgb(214,17,3)" fg:x="392995" fg:w="56"/><text x="99.0575%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (50 samples, 0.01%)</title><rect x="98.8090%" y="1621" width="0.0126%" height="15" fill="rgb(212,111,17)" fg:x="393001" fg:w="50"/><text x="99.0590%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (50 samples, 0.01%)</title><rect x="98.8090%" y="1605" width="0.0126%" height="15" fill="rgb(221,157,24)" fg:x="393001" fg:w="50"/><text x="99.0590%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (50 samples, 0.01%)</title><rect x="98.8090%" y="1589" width="0.0126%" height="15" fill="rgb(252,16,13)" fg:x="393001" fg:w="50"/><text x="99.0590%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (68 samples, 0.02%)</title><rect x="98.8075%" y="1749" width="0.0171%" height="15" fill="rgb(221,62,2)" fg:x="392995" fg:w="68"/><text x="99.0575%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (68 samples, 0.02%)</title><rect x="98.8075%" y="1733" width="0.0171%" height="15" fill="rgb(247,87,22)" fg:x="392995" fg:w="68"/><text x="99.0575%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (68 samples, 0.02%)</title><rect x="98.8075%" y="1717" width="0.0171%" height="15" fill="rgb(215,73,9)" fg:x="392995" fg:w="68"/><text x="99.0575%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (68 samples, 0.02%)</title><rect x="98.8075%" y="1701" width="0.0171%" height="15" fill="rgb(207,175,33)" fg:x="392995" fg:w="68"/><text x="99.0575%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (71 samples, 0.02%)</title><rect x="98.8075%" y="1813" width="0.0179%" height="15" fill="rgb(243,129,54)" fg:x="392995" fg:w="71"/><text x="99.0575%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (71 samples, 0.02%)</title><rect x="98.8075%" y="1797" width="0.0179%" height="15" fill="rgb(227,119,45)" fg:x="392995" fg:w="71"/><text x="99.0575%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (71 samples, 0.02%)</title><rect x="98.8075%" y="1781" width="0.0179%" height="15" fill="rgb(205,109,36)" fg:x="392995" fg:w="71"/><text x="99.0575%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (71 samples, 0.02%)</title><rect x="98.8075%" y="1765" width="0.0179%" height="15" fill="rgb(205,6,39)" fg:x="392995" fg:w="71"/><text x="99.0575%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (120 samples, 0.03%)</title><rect x="98.8045%" y="1861" width="0.0302%" height="15" fill="rgb(221,32,16)" fg:x="392983" fg:w="120"/><text x="99.0545%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (120 samples, 0.03%)</title><rect x="98.8045%" y="1845" width="0.0302%" height="15" fill="rgb(228,144,50)" fg:x="392983" fg:w="120"/><text x="99.0545%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (120 samples, 0.03%)</title><rect x="98.8045%" y="1829" width="0.0302%" height="15" fill="rgb(229,201,53)" fg:x="392983" fg:w="120"/><text x="99.0545%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (47 samples, 0.01%)</title><rect x="98.8347%" y="1813" width="0.0118%" height="15" fill="rgb(249,153,27)" fg:x="393103" fg:w="47"/><text x="99.0847%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (47 samples, 0.01%)</title><rect x="98.8347%" y="1797" width="0.0118%" height="15" fill="rgb(227,106,25)" fg:x="393103" fg:w="47"/><text x="99.0847%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (47 samples, 0.01%)</title><rect x="98.8347%" y="1781" width="0.0118%" height="15" fill="rgb(230,65,29)" fg:x="393103" fg:w="47"/><text x="99.0847%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (873 samples, 0.22%)</title><rect x="98.6383%" y="1973" width="0.2195%" height="15" fill="rgb(221,57,46)" fg:x="392322" fg:w="873"/><text x="98.8883%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (873 samples, 0.22%)</title><rect x="98.6383%" y="1957" width="0.2195%" height="15" fill="rgb(229,161,17)" fg:x="392322" fg:w="873"/><text x="98.8883%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (873 samples, 0.22%)</title><rect x="98.6383%" y="1941" width="0.2195%" height="15" fill="rgb(222,213,11)" fg:x="392322" fg:w="873"/><text x="98.8883%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (872 samples, 0.22%)</title><rect x="98.6386%" y="1925" width="0.2192%" height="15" fill="rgb(235,35,13)" fg:x="392323" fg:w="872"/><text x="98.8886%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (213 samples, 0.05%)</title><rect x="98.8042%" y="1909" width="0.0536%" height="15" fill="rgb(233,158,34)" fg:x="392982" fg:w="213"/><text x="99.0542%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (213 samples, 0.05%)</title><rect x="98.8042%" y="1893" width="0.0536%" height="15" fill="rgb(215,151,48)" fg:x="392982" fg:w="213"/><text x="99.0542%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (212 samples, 0.05%)</title><rect x="98.8045%" y="1877" width="0.0533%" height="15" fill="rgb(229,84,14)" fg:x="392983" fg:w="212"/><text x="99.0545%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (92 samples, 0.02%)</title><rect x="98.8347%" y="1861" width="0.0231%" height="15" fill="rgb(229,68,14)" fg:x="393103" fg:w="92"/><text x="99.0847%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (92 samples, 0.02%)</title><rect x="98.8347%" y="1845" width="0.0231%" height="15" fill="rgb(243,106,26)" fg:x="393103" fg:w="92"/><text x="99.0847%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (92 samples, 0.02%)</title><rect x="98.8347%" y="1829" width="0.0231%" height="15" fill="rgb(206,45,38)" fg:x="393103" fg:w="92"/><text x="99.0847%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (45 samples, 0.01%)</title><rect x="98.8465%" y="1813" width="0.0113%" height="15" fill="rgb(226,6,15)" fg:x="393150" fg:w="45"/><text x="99.0965%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="98.8465%" y="1797" width="0.0113%" height="15" fill="rgb(232,22,54)" fg:x="393150" fg:w="45"/><text x="99.0965%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="98.8465%" y="1781" width="0.0113%" height="15" fill="rgb(229,222,32)" fg:x="393150" fg:w="45"/><text x="99.0965%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (40 samples, 0.01%)</title><rect x="98.8580%" y="1829" width="0.0101%" height="15" fill="rgb(228,62,29)" fg:x="393196" fg:w="40"/><text x="99.1080%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (40 samples, 0.01%)</title><rect x="98.8580%" y="1813" width="0.0101%" height="15" fill="rgb(251,103,34)" fg:x="393196" fg:w="40"/><text x="99.1080%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (75 samples, 0.02%)</title><rect x="98.8580%" y="1877" width="0.0189%" height="15" fill="rgb(233,12,30)" fg:x="393196" fg:w="75"/><text x="99.1080%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (75 samples, 0.02%)</title><rect x="98.8580%" y="1861" width="0.0189%" height="15" fill="rgb(238,52,0)" fg:x="393196" fg:w="75"/><text x="99.1080%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (75 samples, 0.02%)</title><rect x="98.8580%" y="1845" width="0.0189%" height="15" fill="rgb(223,98,5)" fg:x="393196" fg:w="75"/><text x="99.1080%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (51 samples, 0.01%)</title><rect x="98.8772%" y="1829" width="0.0128%" height="15" fill="rgb(228,75,37)" fg:x="393272" fg:w="51"/><text x="99.1272%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="98.8772%" y="1813" width="0.0128%" height="15" fill="rgb(205,115,49)" fg:x="393272" fg:w="51"/><text x="99.1272%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (51 samples, 0.01%)</title><rect x="98.8772%" y="1797" width="0.0128%" height="15" fill="rgb(250,154,43)" fg:x="393272" fg:w="51"/><text x="99.1272%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (180 samples, 0.05%)</title><rect x="98.8580%" y="1925" width="0.0453%" height="15" fill="rgb(226,43,29)" fg:x="393196" fg:w="180"/><text x="99.1080%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (180 samples, 0.05%)</title><rect x="98.8580%" y="1909" width="0.0453%" height="15" fill="rgb(249,228,39)" fg:x="393196" fg:w="180"/><text x="99.1080%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (180 samples, 0.05%)</title><rect x="98.8580%" y="1893" width="0.0453%" height="15" fill="rgb(216,79,43)" fg:x="393196" fg:w="180"/><text x="99.1080%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (105 samples, 0.03%)</title><rect x="98.8769%" y="1877" width="0.0264%" height="15" fill="rgb(228,95,12)" fg:x="393271" fg:w="105"/><text x="99.1269%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (105 samples, 0.03%)</title><rect x="98.8769%" y="1861" width="0.0264%" height="15" fill="rgb(249,221,15)" fg:x="393271" fg:w="105"/><text x="99.1269%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (104 samples, 0.03%)</title><rect x="98.8772%" y="1845" width="0.0261%" height="15" fill="rgb(233,34,13)" fg:x="393272" fg:w="104"/><text x="99.1272%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (53 samples, 0.01%)</title><rect x="98.8900%" y="1829" width="0.0133%" height="15" fill="rgb(214,103,39)" fg:x="393323" fg:w="53"/><text x="99.1400%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (53 samples, 0.01%)</title><rect x="98.8900%" y="1813" width="0.0133%" height="15" fill="rgb(251,126,39)" fg:x="393323" fg:w="53"/><text x="99.1400%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (52 samples, 0.01%)</title><rect x="98.8902%" y="1797" width="0.0131%" height="15" fill="rgb(214,216,36)" fg:x="393324" fg:w="52"/><text x="99.1402%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (45 samples, 0.01%)</title><rect x="98.9033%" y="1829" width="0.0113%" height="15" fill="rgb(220,221,8)" fg:x="393376" fg:w="45"/><text x="99.1533%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="98.9033%" y="1813" width="0.0113%" height="15" fill="rgb(240,216,3)" fg:x="393376" fg:w="45"/><text x="99.1533%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="98.9033%" y="1797" width="0.0113%" height="15" fill="rgb(232,218,17)" fg:x="393376" fg:w="45"/><text x="99.1533%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (96 samples, 0.02%)</title><rect x="98.9033%" y="1877" width="0.0241%" height="15" fill="rgb(229,163,45)" fg:x="393376" fg:w="96"/><text x="99.1533%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (96 samples, 0.02%)</title><rect x="98.9033%" y="1861" width="0.0241%" height="15" fill="rgb(231,110,42)" fg:x="393376" fg:w="96"/><text x="99.1533%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (96 samples, 0.02%)</title><rect x="98.9033%" y="1845" width="0.0241%" height="15" fill="rgb(208,170,48)" fg:x="393376" fg:w="96"/><text x="99.1533%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (51 samples, 0.01%)</title><rect x="98.9146%" y="1829" width="0.0128%" height="15" fill="rgb(239,116,25)" fg:x="393421" fg:w="51"/><text x="99.1646%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="98.9146%" y="1813" width="0.0128%" height="15" fill="rgb(219,200,50)" fg:x="393421" fg:w="51"/><text x="99.1646%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (51 samples, 0.01%)</title><rect x="98.9146%" y="1797" width="0.0128%" height="15" fill="rgb(245,200,0)" fg:x="393421" fg:w="51"/><text x="99.1646%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (45 samples, 0.01%)</title><rect x="98.9274%" y="1829" width="0.0113%" height="15" fill="rgb(245,119,33)" fg:x="393472" fg:w="45"/><text x="99.1774%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="98.9274%" y="1813" width="0.0113%" height="15" fill="rgb(231,125,12)" fg:x="393472" fg:w="45"/><text x="99.1774%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="98.9274%" y="1797" width="0.0113%" height="15" fill="rgb(216,96,41)" fg:x="393472" fg:w="45"/><text x="99.1774%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (1,433 samples, 0.36%)</title><rect x="98.5908%" y="2021" width="0.3603%" height="15" fill="rgb(248,43,45)" fg:x="392133" fg:w="1433"/><text x="98.8408%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (1,433 samples, 0.36%)</title><rect x="98.5908%" y="2005" width="0.3603%" height="15" fill="rgb(217,222,7)" fg:x="392133" fg:w="1433"/><text x="98.8408%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (1,430 samples, 0.36%)</title><rect x="98.5915%" y="1989" width="0.3595%" height="15" fill="rgb(233,28,6)" fg:x="392136" fg:w="1430"/><text x="98.8415%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (371 samples, 0.09%)</title><rect x="98.8578%" y="1973" width="0.0933%" height="15" fill="rgb(231,218,15)" fg:x="393195" fg:w="371"/><text x="99.1078%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (371 samples, 0.09%)</title><rect x="98.8578%" y="1957" width="0.0933%" height="15" fill="rgb(226,171,48)" fg:x="393195" fg:w="371"/><text x="99.1078%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (370 samples, 0.09%)</title><rect x="98.8580%" y="1941" width="0.0930%" height="15" fill="rgb(235,201,9)" fg:x="393196" fg:w="370"/><text x="99.1080%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (190 samples, 0.05%)</title><rect x="98.9033%" y="1925" width="0.0478%" height="15" fill="rgb(217,80,15)" fg:x="393376" fg:w="190"/><text x="99.1533%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (190 samples, 0.05%)</title><rect x="98.9033%" y="1909" width="0.0478%" height="15" fill="rgb(219,152,8)" fg:x="393376" fg:w="190"/><text x="99.1533%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (190 samples, 0.05%)</title><rect x="98.9033%" y="1893" width="0.0478%" height="15" fill="rgb(243,107,38)" fg:x="393376" fg:w="190"/><text x="99.1533%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (94 samples, 0.02%)</title><rect x="98.9274%" y="1877" width="0.0236%" height="15" fill="rgb(231,17,5)" fg:x="393472" fg:w="94"/><text x="99.1774%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (94 samples, 0.02%)</title><rect x="98.9274%" y="1861" width="0.0236%" height="15" fill="rgb(209,25,54)" fg:x="393472" fg:w="94"/><text x="99.1774%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (94 samples, 0.02%)</title><rect x="98.9274%" y="1845" width="0.0236%" height="15" fill="rgb(219,0,2)" fg:x="393472" fg:w="94"/><text x="99.1774%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (49 samples, 0.01%)</title><rect x="98.9387%" y="1829" width="0.0123%" height="15" fill="rgb(246,9,5)" fg:x="393517" fg:w="49"/><text x="99.1887%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (49 samples, 0.01%)</title><rect x="98.9387%" y="1813" width="0.0123%" height="15" fill="rgb(226,159,4)" fg:x="393517" fg:w="49"/><text x="99.1887%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (49 samples, 0.01%)</title><rect x="98.9387%" y="1797" width="0.0123%" height="15" fill="rgb(219,175,34)" fg:x="393517" fg:w="49"/><text x="99.1887%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (43 samples, 0.01%)</title><rect x="98.9523%" y="1957" width="0.0108%" height="15" fill="rgb(236,10,46)" fg:x="393571" fg:w="43"/><text x="99.2023%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (43 samples, 0.01%)</title><rect x="98.9523%" y="1941" width="0.0108%" height="15" fill="rgb(240,211,16)" fg:x="393571" fg:w="43"/><text x="99.2023%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (43 samples, 0.01%)</title><rect x="98.9523%" y="1925" width="0.0108%" height="15" fill="rgb(205,3,43)" fg:x="393571" fg:w="43"/><text x="99.2023%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (45 samples, 0.01%)</title><rect x="98.9634%" y="1893" width="0.0113%" height="15" fill="rgb(245,7,22)" fg:x="393615" fg:w="45"/><text x="99.2134%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="98.9634%" y="1877" width="0.0113%" height="15" fill="rgb(239,132,32)" fg:x="393615" fg:w="45"/><text x="99.2134%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="98.9634%" y="1861" width="0.0113%" height="15" fill="rgb(228,202,34)" fg:x="393615" fg:w="45"/><text x="99.2134%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (105 samples, 0.03%)</title><rect x="98.9631%" y="1957" width="0.0264%" height="15" fill="rgb(254,200,22)" fg:x="393614" fg:w="105"/><text x="99.2131%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (104 samples, 0.03%)</title><rect x="98.9634%" y="1941" width="0.0261%" height="15" fill="rgb(219,10,39)" fg:x="393615" fg:w="104"/><text x="99.2134%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (104 samples, 0.03%)</title><rect x="98.9634%" y="1925" width="0.0261%" height="15" fill="rgb(226,210,39)" fg:x="393615" fg:w="104"/><text x="99.2134%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (104 samples, 0.03%)</title><rect x="98.9634%" y="1909" width="0.0261%" height="15" fill="rgb(208,219,16)" fg:x="393615" fg:w="104"/><text x="99.2134%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (50 samples, 0.01%)</title><rect x="98.9770%" y="1893" width="0.0126%" height="15" fill="rgb(216,158,51)" fg:x="393669" fg:w="50"/><text x="99.2270%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (50 samples, 0.01%)</title><rect x="98.9770%" y="1877" width="0.0126%" height="15" fill="rgb(233,14,44)" fg:x="393669" fg:w="50"/><text x="99.2270%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (50 samples, 0.01%)</title><rect x="98.9770%" y="1861" width="0.0126%" height="15" fill="rgb(237,97,39)" fg:x="393669" fg:w="50"/><text x="99.2270%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (76 samples, 0.02%)</title><rect x="98.9898%" y="1909" width="0.0191%" height="15" fill="rgb(218,198,43)" fg:x="393720" fg:w="76"/><text x="99.2398%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (76 samples, 0.02%)</title><rect x="98.9898%" y="1893" width="0.0191%" height="15" fill="rgb(231,104,20)" fg:x="393720" fg:w="76"/><text x="99.2398%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (76 samples, 0.02%)</title><rect x="98.9898%" y="1877" width="0.0191%" height="15" fill="rgb(254,36,13)" fg:x="393720" fg:w="76"/><text x="99.2398%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (46 samples, 0.01%)</title><rect x="99.0192%" y="1461" width="0.0116%" height="15" fill="rgb(248,14,50)" fg:x="393837" fg:w="46"/><text x="99.2692%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (46 samples, 0.01%)</title><rect x="99.0192%" y="1445" width="0.0116%" height="15" fill="rgb(217,107,29)" fg:x="393837" fg:w="46"/><text x="99.2692%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="99.0192%" y="1429" width="0.0116%" height="15" fill="rgb(251,169,33)" fg:x="393837" fg:w="46"/><text x="99.2692%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="99.0192%" y="1413" width="0.0116%" height="15" fill="rgb(217,108,32)" fg:x="393837" fg:w="46"/><text x="99.2692%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (43 samples, 0.01%)</title><rect x="99.0200%" y="1397" width="0.0108%" height="15" fill="rgb(219,66,42)" fg:x="393840" fg:w="43"/><text x="99.2700%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (43 samples, 0.01%)</title><rect x="99.0200%" y="1381" width="0.0108%" height="15" fill="rgb(206,180,7)" fg:x="393840" fg:w="43"/><text x="99.2700%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (43 samples, 0.01%)</title><rect x="99.0200%" y="1365" width="0.0108%" height="15" fill="rgb(208,226,31)" fg:x="393840" fg:w="43"/><text x="99.2700%" y="1375.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (59 samples, 0.01%)</title><rect x="99.0192%" y="1573" width="0.0148%" height="15" fill="rgb(218,26,49)" fg:x="393837" fg:w="59"/><text x="99.2692%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (59 samples, 0.01%)</title><rect x="99.0192%" y="1557" width="0.0148%" height="15" fill="rgb(233,197,48)" fg:x="393837" fg:w="59"/><text x="99.2692%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (59 samples, 0.01%)</title><rect x="99.0192%" y="1541" width="0.0148%" height="15" fill="rgb(252,181,51)" fg:x="393837" fg:w="59"/><text x="99.2692%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (59 samples, 0.01%)</title><rect x="99.0192%" y="1525" width="0.0148%" height="15" fill="rgb(253,90,19)" fg:x="393837" fg:w="59"/><text x="99.2692%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (59 samples, 0.01%)</title><rect x="99.0192%" y="1509" width="0.0148%" height="15" fill="rgb(215,171,30)" fg:x="393837" fg:w="59"/><text x="99.2692%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (59 samples, 0.01%)</title><rect x="99.0192%" y="1493" width="0.0148%" height="15" fill="rgb(214,222,9)" fg:x="393837" fg:w="59"/><text x="99.2692%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (59 samples, 0.01%)</title><rect x="99.0192%" y="1477" width="0.0148%" height="15" fill="rgb(223,3,22)" fg:x="393837" fg:w="59"/><text x="99.2692%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (62 samples, 0.02%)</title><rect x="99.0192%" y="1621" width="0.0156%" height="15" fill="rgb(225,196,46)" fg:x="393837" fg:w="62"/><text x="99.2692%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (62 samples, 0.02%)</title><rect x="99.0192%" y="1605" width="0.0156%" height="15" fill="rgb(209,110,37)" fg:x="393837" fg:w="62"/><text x="99.2692%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (62 samples, 0.02%)</title><rect x="99.0192%" y="1589" width="0.0156%" height="15" fill="rgb(249,89,12)" fg:x="393837" fg:w="62"/><text x="99.2692%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (69 samples, 0.02%)</title><rect x="99.0192%" y="1669" width="0.0173%" height="15" fill="rgb(226,27,33)" fg:x="393837" fg:w="69"/><text x="99.2692%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (69 samples, 0.02%)</title><rect x="99.0192%" y="1653" width="0.0173%" height="15" fill="rgb(213,82,22)" fg:x="393837" fg:w="69"/><text x="99.2692%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (69 samples, 0.02%)</title><rect x="99.0192%" y="1637" width="0.0173%" height="15" fill="rgb(248,140,0)" fg:x="393837" fg:w="69"/><text x="99.2692%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (82 samples, 0.02%)</title><rect x="99.0192%" y="1733" width="0.0206%" height="15" fill="rgb(228,106,3)" fg:x="393837" fg:w="82"/><text x="99.2692%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (82 samples, 0.02%)</title><rect x="99.0192%" y="1717" width="0.0206%" height="15" fill="rgb(209,23,37)" fg:x="393837" fg:w="82"/><text x="99.2692%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (82 samples, 0.02%)</title><rect x="99.0192%" y="1701" width="0.0206%" height="15" fill="rgb(241,93,50)" fg:x="393837" fg:w="82"/><text x="99.2692%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (82 samples, 0.02%)</title><rect x="99.0192%" y="1685" width="0.0206%" height="15" fill="rgb(253,46,43)" fg:x="393837" fg:w="82"/><text x="99.2692%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (133 samples, 0.03%)</title><rect x="99.0190%" y="1797" width="0.0334%" height="15" fill="rgb(226,206,43)" fg:x="393836" fg:w="133"/><text x="99.2690%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (132 samples, 0.03%)</title><rect x="99.0192%" y="1781" width="0.0332%" height="15" fill="rgb(217,54,7)" fg:x="393837" fg:w="132"/><text x="99.2692%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (132 samples, 0.03%)</title><rect x="99.0192%" y="1765" width="0.0332%" height="15" fill="rgb(223,5,52)" fg:x="393837" fg:w="132"/><text x="99.2692%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (132 samples, 0.03%)</title><rect x="99.0192%" y="1749" width="0.0332%" height="15" fill="rgb(206,52,46)" fg:x="393837" fg:w="132"/><text x="99.2692%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (50 samples, 0.01%)</title><rect x="99.0398%" y="1733" width="0.0126%" height="15" fill="rgb(253,136,11)" fg:x="393919" fg:w="50"/><text x="99.2898%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (50 samples, 0.01%)</title><rect x="99.0398%" y="1717" width="0.0126%" height="15" fill="rgb(208,106,33)" fg:x="393919" fg:w="50"/><text x="99.2898%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (50 samples, 0.01%)</title><rect x="99.0398%" y="1701" width="0.0126%" height="15" fill="rgb(206,54,4)" fg:x="393919" fg:w="50"/><text x="99.2898%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (44 samples, 0.01%)</title><rect x="99.0524%" y="1701" width="0.0111%" height="15" fill="rgb(213,3,15)" fg:x="393969" fg:w="44"/><text x="99.3024%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="99.0524%" y="1685" width="0.0111%" height="15" fill="rgb(252,211,39)" fg:x="393969" fg:w="44"/><text x="99.3024%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="99.0524%" y="1669" width="0.0111%" height="15" fill="rgb(223,6,36)" fg:x="393969" fg:w="44"/><text x="99.3024%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (88 samples, 0.02%)</title><rect x="99.0524%" y="1749" width="0.0221%" height="15" fill="rgb(252,169,45)" fg:x="393969" fg:w="88"/><text x="99.3024%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (88 samples, 0.02%)</title><rect x="99.0524%" y="1733" width="0.0221%" height="15" fill="rgb(212,48,26)" fg:x="393969" fg:w="88"/><text x="99.3024%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (88 samples, 0.02%)</title><rect x="99.0524%" y="1717" width="0.0221%" height="15" fill="rgb(251,102,48)" fg:x="393969" fg:w="88"/><text x="99.3024%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (44 samples, 0.01%)</title><rect x="99.0635%" y="1701" width="0.0111%" height="15" fill="rgb(243,208,16)" fg:x="394013" fg:w="44"/><text x="99.3135%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="99.0635%" y="1685" width="0.0111%" height="15" fill="rgb(219,96,24)" fg:x="394013" fg:w="44"/><text x="99.3135%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="99.0635%" y="1669" width="0.0111%" height="15" fill="rgb(219,33,29)" fg:x="394013" fg:w="44"/><text x="99.3135%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (43 samples, 0.01%)</title><rect x="99.0745%" y="1701" width="0.0108%" height="15" fill="rgb(223,176,5)" fg:x="394057" fg:w="43"/><text x="99.3245%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (43 samples, 0.01%)</title><rect x="99.0745%" y="1685" width="0.0108%" height="15" fill="rgb(228,140,14)" fg:x="394057" fg:w="43"/><text x="99.3245%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (43 samples, 0.01%)</title><rect x="99.0745%" y="1669" width="0.0108%" height="15" fill="rgb(217,179,31)" fg:x="394057" fg:w="43"/><text x="99.3245%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (308 samples, 0.08%)</title><rect x="99.0190%" y="1861" width="0.0774%" height="15" fill="rgb(230,9,30)" fg:x="393836" fg:w="308"/><text x="99.2690%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (308 samples, 0.08%)</title><rect x="99.0190%" y="1845" width="0.0774%" height="15" fill="rgb(230,136,20)" fg:x="393836" fg:w="308"/><text x="99.2690%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (308 samples, 0.08%)</title><rect x="99.0190%" y="1829" width="0.0774%" height="15" fill="rgb(215,210,22)" fg:x="393836" fg:w="308"/><text x="99.2690%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (308 samples, 0.08%)</title><rect x="99.0190%" y="1813" width="0.0774%" height="15" fill="rgb(218,43,5)" fg:x="393836" fg:w="308"/><text x="99.2690%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (175 samples, 0.04%)</title><rect x="99.0524%" y="1797" width="0.0440%" height="15" fill="rgb(216,11,5)" fg:x="393969" fg:w="175"/><text x="99.3024%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (175 samples, 0.04%)</title><rect x="99.0524%" y="1781" width="0.0440%" height="15" fill="rgb(209,82,29)" fg:x="393969" fg:w="175"/><text x="99.3024%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (175 samples, 0.04%)</title><rect x="99.0524%" y="1765" width="0.0440%" height="15" fill="rgb(244,115,12)" fg:x="393969" fg:w="175"/><text x="99.3024%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (87 samples, 0.02%)</title><rect x="99.0745%" y="1749" width="0.0219%" height="15" fill="rgb(222,82,18)" fg:x="394057" fg:w="87"/><text x="99.3245%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (87 samples, 0.02%)</title><rect x="99.0745%" y="1733" width="0.0219%" height="15" fill="rgb(249,227,8)" fg:x="394057" fg:w="87"/><text x="99.3245%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (87 samples, 0.02%)</title><rect x="99.0745%" y="1717" width="0.0219%" height="15" fill="rgb(253,141,45)" fg:x="394057" fg:w="87"/><text x="99.3245%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (44 samples, 0.01%)</title><rect x="99.0853%" y="1701" width="0.0111%" height="15" fill="rgb(234,184,4)" fg:x="394100" fg:w="44"/><text x="99.3353%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="99.0853%" y="1685" width="0.0111%" height="15" fill="rgb(218,194,23)" fg:x="394100" fg:w="44"/><text x="99.3353%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="99.0853%" y="1669" width="0.0111%" height="15" fill="rgb(235,66,41)" fg:x="394100" fg:w="44"/><text x="99.3353%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (627 samples, 0.16%)</title><rect x="98.9511%" y="2021" width="0.1576%" height="15" fill="rgb(245,217,1)" fg:x="393566" fg:w="627"/><text x="99.2011%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (623 samples, 0.16%)</title><rect x="98.9521%" y="2005" width="0.1566%" height="15" fill="rgb(229,91,1)" fg:x="393570" fg:w="623"/><text x="99.2021%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (623 samples, 0.16%)</title><rect x="98.9521%" y="1989" width="0.1566%" height="15" fill="rgb(207,101,30)" fg:x="393570" fg:w="623"/><text x="99.2021%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (622 samples, 0.16%)</title><rect x="98.9523%" y="1973" width="0.1564%" height="15" fill="rgb(223,82,49)" fg:x="393571" fg:w="622"/><text x="99.2023%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (474 samples, 0.12%)</title><rect x="98.9895%" y="1957" width="0.1192%" height="15" fill="rgb(218,167,17)" fg:x="393719" fg:w="474"/><text x="99.2395%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (474 samples, 0.12%)</title><rect x="98.9895%" y="1941" width="0.1192%" height="15" fill="rgb(208,103,14)" fg:x="393719" fg:w="474"/><text x="99.2395%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (473 samples, 0.12%)</title><rect x="98.9898%" y="1925" width="0.1189%" height="15" fill="rgb(238,20,8)" fg:x="393720" fg:w="473"/><text x="99.2398%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (397 samples, 0.10%)</title><rect x="99.0089%" y="1909" width="0.0998%" height="15" fill="rgb(218,80,54)" fg:x="393796" fg:w="397"/><text x="99.2589%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (397 samples, 0.10%)</title><rect x="99.0089%" y="1893" width="0.0998%" height="15" fill="rgb(240,144,17)" fg:x="393796" fg:w="397"/><text x="99.2589%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (396 samples, 0.10%)</title><rect x="99.0091%" y="1877" width="0.0996%" height="15" fill="rgb(245,27,50)" fg:x="393797" fg:w="396"/><text x="99.2591%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (49 samples, 0.01%)</title><rect x="99.0964%" y="1861" width="0.0123%" height="15" fill="rgb(251,51,7)" fg:x="394144" fg:w="49"/><text x="99.3464%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (49 samples, 0.01%)</title><rect x="99.0964%" y="1845" width="0.0123%" height="15" fill="rgb(245,217,29)" fg:x="394144" fg:w="49"/><text x="99.3464%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (49 samples, 0.01%)</title><rect x="99.0964%" y="1829" width="0.0123%" height="15" fill="rgb(221,176,29)" fg:x="394144" fg:w="49"/><text x="99.3464%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (68 samples, 0.02%)</title><rect x="99.1122%" y="1829" width="0.0171%" height="15" fill="rgb(212,180,24)" fg:x="394207" fg:w="68"/><text x="99.3622%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (68 samples, 0.02%)</title><rect x="99.1122%" y="1813" width="0.0171%" height="15" fill="rgb(254,24,2)" fg:x="394207" fg:w="68"/><text x="99.3622%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (67 samples, 0.02%)</title><rect x="99.1125%" y="1797" width="0.0168%" height="15" fill="rgb(230,100,2)" fg:x="394208" fg:w="67"/><text x="99.3625%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (132 samples, 0.03%)</title><rect x="99.1122%" y="1877" width="0.0332%" height="15" fill="rgb(219,142,25)" fg:x="394207" fg:w="132"/><text x="99.3622%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (132 samples, 0.03%)</title><rect x="99.1122%" y="1861" width="0.0332%" height="15" fill="rgb(240,73,43)" fg:x="394207" fg:w="132"/><text x="99.3622%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (132 samples, 0.03%)</title><rect x="99.1122%" y="1845" width="0.0332%" height="15" fill="rgb(214,114,15)" fg:x="394207" fg:w="132"/><text x="99.3622%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (64 samples, 0.02%)</title><rect x="99.1293%" y="1829" width="0.0161%" height="15" fill="rgb(207,130,4)" fg:x="394275" fg:w="64"/><text x="99.3793%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (64 samples, 0.02%)</title><rect x="99.1293%" y="1813" width="0.0161%" height="15" fill="rgb(221,25,40)" fg:x="394275" fg:w="64"/><text x="99.3793%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (64 samples, 0.02%)</title><rect x="99.1293%" y="1797" width="0.0161%" height="15" fill="rgb(241,184,7)" fg:x="394275" fg:w="64"/><text x="99.3793%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (76 samples, 0.02%)</title><rect x="99.1454%" y="1717" width="0.0191%" height="15" fill="rgb(235,159,4)" fg:x="394339" fg:w="76"/><text x="99.3954%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (76 samples, 0.02%)</title><rect x="99.1454%" y="1701" width="0.0191%" height="15" fill="rgb(214,87,48)" fg:x="394339" fg:w="76"/><text x="99.3954%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (76 samples, 0.02%)</title><rect x="99.1454%" y="1685" width="0.0191%" height="15" fill="rgb(246,198,24)" fg:x="394339" fg:w="76"/><text x="99.3954%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (75 samples, 0.02%)</title><rect x="99.1457%" y="1669" width="0.0189%" height="15" fill="rgb(209,66,40)" fg:x="394340" fg:w="75"/><text x="99.3957%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (51 samples, 0.01%)</title><rect x="99.1517%" y="1653" width="0.0128%" height="15" fill="rgb(233,147,39)" fg:x="394364" fg:w="51"/><text x="99.4017%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="99.1517%" y="1637" width="0.0128%" height="15" fill="rgb(231,145,52)" fg:x="394364" fg:w="51"/><text x="99.4017%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (51 samples, 0.01%)</title><rect x="99.1517%" y="1621" width="0.0128%" height="15" fill="rgb(206,20,26)" fg:x="394364" fg:w="51"/><text x="99.4017%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (79 samples, 0.02%)</title><rect x="99.1454%" y="1765" width="0.0199%" height="15" fill="rgb(238,220,4)" fg:x="394339" fg:w="79"/><text x="99.3954%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (79 samples, 0.02%)</title><rect x="99.1454%" y="1749" width="0.0199%" height="15" fill="rgb(252,195,42)" fg:x="394339" fg:w="79"/><text x="99.3954%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (79 samples, 0.02%)</title><rect x="99.1454%" y="1733" width="0.0199%" height="15" fill="rgb(209,10,6)" fg:x="394339" fg:w="79"/><text x="99.3954%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (86 samples, 0.02%)</title><rect x="99.1454%" y="1877" width="0.0216%" height="15" fill="rgb(229,3,52)" fg:x="394339" fg:w="86"/><text x="99.3954%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (86 samples, 0.02%)</title><rect x="99.1454%" y="1861" width="0.0216%" height="15" fill="rgb(253,49,37)" fg:x="394339" fg:w="86"/><text x="99.3954%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (86 samples, 0.02%)</title><rect x="99.1454%" y="1845" width="0.0216%" height="15" fill="rgb(240,103,49)" fg:x="394339" fg:w="86"/><text x="99.3954%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (86 samples, 0.02%)</title><rect x="99.1454%" y="1829" width="0.0216%" height="15" fill="rgb(250,182,30)" fg:x="394339" fg:w="86"/><text x="99.3954%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (86 samples, 0.02%)</title><rect x="99.1454%" y="1813" width="0.0216%" height="15" fill="rgb(248,8,30)" fg:x="394339" fg:w="86"/><text x="99.3954%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (86 samples, 0.02%)</title><rect x="99.1454%" y="1797" width="0.0216%" height="15" fill="rgb(237,120,30)" fg:x="394339" fg:w="86"/><text x="99.3954%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (86 samples, 0.02%)</title><rect x="99.1454%" y="1781" width="0.0216%" height="15" fill="rgb(221,146,34)" fg:x="394339" fg:w="86"/><text x="99.3954%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (71 samples, 0.02%)</title><rect x="99.1675%" y="1829" width="0.0179%" height="15" fill="rgb(242,55,13)" fg:x="394427" fg:w="71"/><text x="99.4175%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (71 samples, 0.02%)</title><rect x="99.1675%" y="1813" width="0.0179%" height="15" fill="rgb(242,112,31)" fg:x="394427" fg:w="71"/><text x="99.4175%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (71 samples, 0.02%)</title><rect x="99.1675%" y="1797" width="0.0179%" height="15" fill="rgb(249,192,27)" fg:x="394427" fg:w="71"/><text x="99.4175%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (365 samples, 0.09%)</title><rect x="99.1122%" y="1925" width="0.0918%" height="15" fill="rgb(208,204,44)" fg:x="394207" fg:w="365"/><text x="99.3622%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (365 samples, 0.09%)</title><rect x="99.1122%" y="1909" width="0.0918%" height="15" fill="rgb(208,93,54)" fg:x="394207" fg:w="365"/><text x="99.3622%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (365 samples, 0.09%)</title><rect x="99.1122%" y="1893" width="0.0918%" height="15" fill="rgb(242,1,31)" fg:x="394207" fg:w="365"/><text x="99.3622%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (147 samples, 0.04%)</title><rect x="99.1670%" y="1877" width="0.0370%" height="15" fill="rgb(241,83,25)" fg:x="394425" fg:w="147"/><text x="99.4170%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (147 samples, 0.04%)</title><rect x="99.1670%" y="1861" width="0.0370%" height="15" fill="rgb(205,169,50)" fg:x="394425" fg:w="147"/><text x="99.4170%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (145 samples, 0.04%)</title><rect x="99.1675%" y="1845" width="0.0365%" height="15" fill="rgb(239,186,37)" fg:x="394427" fg:w="145"/><text x="99.4175%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (74 samples, 0.02%)</title><rect x="99.1854%" y="1829" width="0.0186%" height="15" fill="rgb(205,221,10)" fg:x="394498" fg:w="74"/><text x="99.4354%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (74 samples, 0.02%)</title><rect x="99.1854%" y="1813" width="0.0186%" height="15" fill="rgb(218,196,15)" fg:x="394498" fg:w="74"/><text x="99.4354%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (74 samples, 0.02%)</title><rect x="99.1854%" y="1797" width="0.0186%" height="15" fill="rgb(218,196,35)" fg:x="394498" fg:w="74"/><text x="99.4354%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (45 samples, 0.01%)</title><rect x="99.2216%" y="1237" width="0.0113%" height="15" fill="rgb(233,63,24)" fg:x="394642" fg:w="45"/><text x="99.4716%" y="1247.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (45 samples, 0.01%)</title><rect x="99.2216%" y="1221" width="0.0113%" height="15" fill="rgb(225,8,4)" fg:x="394642" fg:w="45"/><text x="99.4716%" y="1231.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="99.2216%" y="1205" width="0.0113%" height="15" fill="rgb(234,105,35)" fg:x="394642" fg:w="45"/><text x="99.4716%" y="1215.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="99.2216%" y="1189" width="0.0113%" height="15" fill="rgb(236,21,32)" fg:x="394642" fg:w="45"/><text x="99.4716%" y="1199.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (45 samples, 0.01%)</title><rect x="99.2216%" y="1173" width="0.0113%" height="15" fill="rgb(228,109,6)" fg:x="394642" fg:w="45"/><text x="99.4716%" y="1183.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="99.2216%" y="1157" width="0.0113%" height="15" fill="rgb(229,215,31)" fg:x="394642" fg:w="45"/><text x="99.4716%" y="1167.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="99.2216%" y="1141" width="0.0113%" height="15" fill="rgb(221,52,54)" fg:x="394642" fg:w="45"/><text x="99.4716%" y="1151.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (44 samples, 0.01%)</title><rect x="99.2218%" y="1125" width="0.0111%" height="15" fill="rgb(252,129,43)" fg:x="394643" fg:w="44"/><text x="99.4718%" y="1135.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="99.2218%" y="1109" width="0.0111%" height="15" fill="rgb(248,183,27)" fg:x="394643" fg:w="44"/><text x="99.4718%" y="1119.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="99.2218%" y="1093" width="0.0111%" height="15" fill="rgb(250,0,22)" fg:x="394643" fg:w="44"/><text x="99.4718%" y="1103.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (52 samples, 0.01%)</title><rect x="99.2213%" y="1397" width="0.0131%" height="15" fill="rgb(213,166,10)" fg:x="394641" fg:w="52"/><text x="99.4713%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (52 samples, 0.01%)</title><rect x="99.2213%" y="1381" width="0.0131%" height="15" fill="rgb(207,163,36)" fg:x="394641" fg:w="52"/><text x="99.4713%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (52 samples, 0.01%)</title><rect x="99.2213%" y="1365" width="0.0131%" height="15" fill="rgb(208,122,22)" fg:x="394641" fg:w="52"/><text x="99.4713%" y="1375.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (52 samples, 0.01%)</title><rect x="99.2213%" y="1349" width="0.0131%" height="15" fill="rgb(207,104,49)" fg:x="394641" fg:w="52"/><text x="99.4713%" y="1359.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (51 samples, 0.01%)</title><rect x="99.2216%" y="1333" width="0.0128%" height="15" fill="rgb(248,211,50)" fg:x="394642" fg:w="51"/><text x="99.4716%" y="1343.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="99.2216%" y="1317" width="0.0128%" height="15" fill="rgb(217,13,45)" fg:x="394642" fg:w="51"/><text x="99.4716%" y="1327.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (51 samples, 0.01%)</title><rect x="99.2216%" y="1301" width="0.0128%" height="15" fill="rgb(211,216,49)" fg:x="394642" fg:w="51"/><text x="99.4716%" y="1311.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (51 samples, 0.01%)</title><rect x="99.2216%" y="1285" width="0.0128%" height="15" fill="rgb(221,58,53)" fg:x="394642" fg:w="51"/><text x="99.4716%" y="1295.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="99.2216%" y="1269" width="0.0128%" height="15" fill="rgb(220,112,41)" fg:x="394642" fg:w="51"/><text x="99.4716%" y="1279.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (51 samples, 0.01%)</title><rect x="99.2216%" y="1253" width="0.0128%" height="15" fill="rgb(236,38,28)" fg:x="394642" fg:w="51"/><text x="99.4716%" y="1263.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (68 samples, 0.02%)</title><rect x="99.2208%" y="1461" width="0.0171%" height="15" fill="rgb(227,195,22)" fg:x="394639" fg:w="68"/><text x="99.4708%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (68 samples, 0.02%)</title><rect x="99.2208%" y="1445" width="0.0171%" height="15" fill="rgb(214,55,33)" fg:x="394639" fg:w="68"/><text x="99.4708%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (68 samples, 0.02%)</title><rect x="99.2208%" y="1429" width="0.0171%" height="15" fill="rgb(248,80,13)" fg:x="394639" fg:w="68"/><text x="99.4708%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (68 samples, 0.02%)</title><rect x="99.2208%" y="1413" width="0.0171%" height="15" fill="rgb(238,52,6)" fg:x="394639" fg:w="68"/><text x="99.4708%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (74 samples, 0.02%)</title><rect x="99.2208%" y="1509" width="0.0186%" height="15" fill="rgb(224,198,47)" fg:x="394639" fg:w="74"/><text x="99.4708%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (74 samples, 0.02%)</title><rect x="99.2208%" y="1493" width="0.0186%" height="15" fill="rgb(233,171,20)" fg:x="394639" fg:w="74"/><text x="99.4708%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (74 samples, 0.02%)</title><rect x="99.2208%" y="1477" width="0.0186%" height="15" fill="rgb(241,30,25)" fg:x="394639" fg:w="74"/><text x="99.4708%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (84 samples, 0.02%)</title><rect x="99.2208%" y="1557" width="0.0211%" height="15" fill="rgb(207,171,38)" fg:x="394639" fg:w="84"/><text x="99.4708%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (84 samples, 0.02%)</title><rect x="99.2208%" y="1541" width="0.0211%" height="15" fill="rgb(234,70,1)" fg:x="394639" fg:w="84"/><text x="99.4708%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (84 samples, 0.02%)</title><rect x="99.2208%" y="1525" width="0.0211%" height="15" fill="rgb(232,178,18)" fg:x="394639" fg:w="84"/><text x="99.4708%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (111 samples, 0.03%)</title><rect x="99.2198%" y="1765" width="0.0279%" height="15" fill="rgb(241,78,40)" fg:x="394635" fg:w="111"/><text x="99.4698%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (111 samples, 0.03%)</title><rect x="99.2198%" y="1749" width="0.0279%" height="15" fill="rgb(222,35,25)" fg:x="394635" fg:w="111"/><text x="99.4698%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (111 samples, 0.03%)</title><rect x="99.2198%" y="1733" width="0.0279%" height="15" fill="rgb(207,92,16)" fg:x="394635" fg:w="111"/><text x="99.4698%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (111 samples, 0.03%)</title><rect x="99.2198%" y="1717" width="0.0279%" height="15" fill="rgb(216,59,51)" fg:x="394635" fg:w="111"/><text x="99.4698%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (110 samples, 0.03%)</title><rect x="99.2201%" y="1701" width="0.0277%" height="15" fill="rgb(213,80,28)" fg:x="394636" fg:w="110"/><text x="99.4701%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (110 samples, 0.03%)</title><rect x="99.2201%" y="1685" width="0.0277%" height="15" fill="rgb(220,93,7)" fg:x="394636" fg:w="110"/><text x="99.4701%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (110 samples, 0.03%)</title><rect x="99.2201%" y="1669" width="0.0277%" height="15" fill="rgb(225,24,44)" fg:x="394636" fg:w="110"/><text x="99.4701%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (109 samples, 0.03%)</title><rect x="99.2203%" y="1653" width="0.0274%" height="15" fill="rgb(243,74,40)" fg:x="394637" fg:w="109"/><text x="99.4703%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (109 samples, 0.03%)</title><rect x="99.2203%" y="1637" width="0.0274%" height="15" fill="rgb(228,39,7)" fg:x="394637" fg:w="109"/><text x="99.4703%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (109 samples, 0.03%)</title><rect x="99.2203%" y="1621" width="0.0274%" height="15" fill="rgb(227,79,8)" fg:x="394637" fg:w="109"/><text x="99.4703%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (107 samples, 0.03%)</title><rect x="99.2208%" y="1605" width="0.0269%" height="15" fill="rgb(236,58,11)" fg:x="394639" fg:w="107"/><text x="99.4708%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (107 samples, 0.03%)</title><rect x="99.2208%" y="1589" width="0.0269%" height="15" fill="rgb(249,63,35)" fg:x="394639" fg:w="107"/><text x="99.4708%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (107 samples, 0.03%)</title><rect x="99.2208%" y="1573" width="0.0269%" height="15" fill="rgb(252,114,16)" fg:x="394639" fg:w="107"/><text x="99.4708%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (189 samples, 0.05%)</title><rect x="99.2040%" y="1925" width="0.0475%" height="15" fill="rgb(254,151,24)" fg:x="394572" fg:w="189"/><text x="99.4540%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (189 samples, 0.05%)</title><rect x="99.2040%" y="1909" width="0.0475%" height="15" fill="rgb(253,54,39)" fg:x="394572" fg:w="189"/><text x="99.4540%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (189 samples, 0.05%)</title><rect x="99.2040%" y="1893" width="0.0475%" height="15" fill="rgb(243,25,45)" fg:x="394572" fg:w="189"/><text x="99.4540%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (188 samples, 0.05%)</title><rect x="99.2043%" y="1877" width="0.0473%" height="15" fill="rgb(234,134,9)" fg:x="394573" fg:w="188"/><text x="99.4543%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (153 samples, 0.04%)</title><rect x="99.2130%" y="1861" width="0.0385%" height="15" fill="rgb(227,166,31)" fg:x="394608" fg:w="153"/><text x="99.4630%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (153 samples, 0.04%)</title><rect x="99.2130%" y="1845" width="0.0385%" height="15" fill="rgb(245,143,41)" fg:x="394608" fg:w="153"/><text x="99.4630%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (153 samples, 0.04%)</title><rect x="99.2130%" y="1829" width="0.0385%" height="15" fill="rgb(238,181,32)" fg:x="394608" fg:w="153"/><text x="99.4630%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (135 samples, 0.03%)</title><rect x="99.2176%" y="1813" width="0.0339%" height="15" fill="rgb(224,113,18)" fg:x="394626" fg:w="135"/><text x="99.4676%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (135 samples, 0.03%)</title><rect x="99.2176%" y="1797" width="0.0339%" height="15" fill="rgb(240,229,28)" fg:x="394626" fg:w="135"/><text x="99.4676%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (134 samples, 0.03%)</title><rect x="99.2178%" y="1781" width="0.0337%" height="15" fill="rgb(250,185,3)" fg:x="394627" fg:w="134"/><text x="99.4678%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (50 samples, 0.01%)</title><rect x="99.2515%" y="1781" width="0.0126%" height="15" fill="rgb(212,59,25)" fg:x="394761" fg:w="50"/><text x="99.5015%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (50 samples, 0.01%)</title><rect x="99.2515%" y="1765" width="0.0126%" height="15" fill="rgb(221,87,20)" fg:x="394761" fg:w="50"/><text x="99.5015%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (50 samples, 0.01%)</title><rect x="99.2515%" y="1749" width="0.0126%" height="15" fill="rgb(213,74,28)" fg:x="394761" fg:w="50"/><text x="99.5015%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (50 samples, 0.01%)</title><rect x="99.2515%" y="1733" width="0.0126%" height="15" fill="rgb(224,132,34)" fg:x="394761" fg:w="50"/><text x="99.5015%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (50 samples, 0.01%)</title><rect x="99.2515%" y="1717" width="0.0126%" height="15" fill="rgb(222,101,24)" fg:x="394761" fg:w="50"/><text x="99.5015%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (43 samples, 0.01%)</title><rect x="99.2533%" y="1701" width="0.0108%" height="15" fill="rgb(254,142,4)" fg:x="394768" fg:w="43"/><text x="99.5033%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (95 samples, 0.02%)</title><rect x="99.2515%" y="1829" width="0.0239%" height="15" fill="rgb(230,229,49)" fg:x="394761" fg:w="95"/><text x="99.5015%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (95 samples, 0.02%)</title><rect x="99.2515%" y="1813" width="0.0239%" height="15" fill="rgb(238,70,47)" fg:x="394761" fg:w="95"/><text x="99.5015%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (95 samples, 0.02%)</title><rect x="99.2515%" y="1797" width="0.0239%" height="15" fill="rgb(231,160,17)" fg:x="394761" fg:w="95"/><text x="99.5015%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (45 samples, 0.01%)</title><rect x="99.2641%" y="1781" width="0.0113%" height="15" fill="rgb(218,68,53)" fg:x="394811" fg:w="45"/><text x="99.5141%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="99.2641%" y="1765" width="0.0113%" height="15" fill="rgb(236,111,10)" fg:x="394811" fg:w="45"/><text x="99.5141%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (45 samples, 0.01%)</title><rect x="99.2641%" y="1749" width="0.0113%" height="15" fill="rgb(224,34,41)" fg:x="394811" fg:w="45"/><text x="99.5141%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (45 samples, 0.01%)</title><rect x="99.2641%" y="1733" width="0.0113%" height="15" fill="rgb(241,118,19)" fg:x="394811" fg:w="45"/><text x="99.5141%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (45 samples, 0.01%)</title><rect x="99.2641%" y="1717" width="0.0113%" height="15" fill="rgb(238,129,25)" fg:x="394811" fg:w="45"/><text x="99.5141%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (46 samples, 0.01%)</title><rect x="99.2757%" y="1781" width="0.0116%" height="15" fill="rgb(238,22,31)" fg:x="394857" fg:w="46"/><text x="99.5257%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="99.2757%" y="1765" width="0.0116%" height="15" fill="rgb(222,174,48)" fg:x="394857" fg:w="46"/><text x="99.5257%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (46 samples, 0.01%)</title><rect x="99.2757%" y="1749" width="0.0116%" height="15" fill="rgb(206,152,40)" fg:x="394857" fg:w="46"/><text x="99.5257%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (46 samples, 0.01%)</title><rect x="99.2757%" y="1733" width="0.0116%" height="15" fill="rgb(218,99,54)" fg:x="394857" fg:w="46"/><text x="99.5257%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (46 samples, 0.01%)</title><rect x="99.2757%" y="1717" width="0.0116%" height="15" fill="rgb(220,174,26)" fg:x="394857" fg:w="46"/><text x="99.5257%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (41 samples, 0.01%)</title><rect x="99.2769%" y="1701" width="0.0103%" height="15" fill="rgb(245,116,9)" fg:x="394862" fg:w="41"/><text x="99.5269%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (189 samples, 0.05%)</title><rect x="99.2515%" y="1877" width="0.0475%" height="15" fill="rgb(209,72,35)" fg:x="394761" fg:w="189"/><text x="99.5015%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (189 samples, 0.05%)</title><rect x="99.2515%" y="1861" width="0.0475%" height="15" fill="rgb(226,126,21)" fg:x="394761" fg:w="189"/><text x="99.5015%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (189 samples, 0.05%)</title><rect x="99.2515%" y="1845" width="0.0475%" height="15" fill="rgb(227,192,1)" fg:x="394761" fg:w="189"/><text x="99.5015%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (94 samples, 0.02%)</title><rect x="99.2754%" y="1829" width="0.0236%" height="15" fill="rgb(237,180,29)" fg:x="394856" fg:w="94"/><text x="99.5254%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (94 samples, 0.02%)</title><rect x="99.2754%" y="1813" width="0.0236%" height="15" fill="rgb(230,197,35)" fg:x="394856" fg:w="94"/><text x="99.5254%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (93 samples, 0.02%)</title><rect x="99.2757%" y="1797" width="0.0234%" height="15" fill="rgb(246,193,31)" fg:x="394857" fg:w="93"/><text x="99.5257%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (46 samples, 0.01%)</title><rect x="99.2875%" y="1781" width="0.0116%" height="15" fill="rgb(241,36,4)" fg:x="394904" fg:w="46"/><text x="99.5375%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="99.2875%" y="1765" width="0.0116%" height="15" fill="rgb(241,130,17)" fg:x="394904" fg:w="46"/><text x="99.5375%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (46 samples, 0.01%)</title><rect x="99.2875%" y="1749" width="0.0116%" height="15" fill="rgb(206,137,32)" fg:x="394904" fg:w="46"/><text x="99.5375%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (46 samples, 0.01%)</title><rect x="99.2875%" y="1733" width="0.0116%" height="15" fill="rgb(237,228,51)" fg:x="394904" fg:w="46"/><text x="99.5375%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (46 samples, 0.01%)</title><rect x="99.2875%" y="1717" width="0.0116%" height="15" fill="rgb(243,6,42)" fg:x="394904" fg:w="46"/><text x="99.5375%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (41 samples, 0.01%)</title><rect x="99.2887%" y="1701" width="0.0103%" height="15" fill="rgb(251,74,28)" fg:x="394909" fg:w="41"/><text x="99.5387%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (44 samples, 0.01%)</title><rect x="99.2993%" y="1781" width="0.0111%" height="15" fill="rgb(218,20,49)" fg:x="394951" fg:w="44"/><text x="99.5493%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="99.2993%" y="1765" width="0.0111%" height="15" fill="rgb(238,28,14)" fg:x="394951" fg:w="44"/><text x="99.5493%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (44 samples, 0.01%)</title><rect x="99.2993%" y="1749" width="0.0111%" height="15" fill="rgb(229,40,46)" fg:x="394951" fg:w="44"/><text x="99.5493%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (44 samples, 0.01%)</title><rect x="99.2993%" y="1733" width="0.0111%" height="15" fill="rgb(244,195,20)" fg:x="394951" fg:w="44"/><text x="99.5493%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (44 samples, 0.01%)</title><rect x="99.2993%" y="1717" width="0.0111%" height="15" fill="rgb(253,56,35)" fg:x="394951" fg:w="44"/><text x="99.5493%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (90 samples, 0.02%)</title><rect x="99.2993%" y="1829" width="0.0226%" height="15" fill="rgb(210,149,44)" fg:x="394951" fg:w="90"/><text x="99.5493%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (90 samples, 0.02%)</title><rect x="99.2993%" y="1813" width="0.0226%" height="15" fill="rgb(240,135,12)" fg:x="394951" fg:w="90"/><text x="99.5493%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (90 samples, 0.02%)</title><rect x="99.2993%" y="1797" width="0.0226%" height="15" fill="rgb(251,24,50)" fg:x="394951" fg:w="90"/><text x="99.5493%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (46 samples, 0.01%)</title><rect x="99.3104%" y="1781" width="0.0116%" height="15" fill="rgb(243,200,47)" fg:x="394995" fg:w="46"/><text x="99.5604%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="99.3104%" y="1765" width="0.0116%" height="15" fill="rgb(224,166,26)" fg:x="394995" fg:w="46"/><text x="99.5604%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (46 samples, 0.01%)</title><rect x="99.3104%" y="1749" width="0.0116%" height="15" fill="rgb(233,0,47)" fg:x="394995" fg:w="46"/><text x="99.5604%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (46 samples, 0.01%)</title><rect x="99.3104%" y="1733" width="0.0116%" height="15" fill="rgb(253,80,5)" fg:x="394995" fg:w="46"/><text x="99.5604%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (46 samples, 0.01%)</title><rect x="99.3104%" y="1717" width="0.0116%" height="15" fill="rgb(214,133,25)" fg:x="394995" fg:w="46"/><text x="99.5604%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (51 samples, 0.01%)</title><rect x="99.3219%" y="1781" width="0.0128%" height="15" fill="rgb(209,27,14)" fg:x="395041" fg:w="51"/><text x="99.5719%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="99.3219%" y="1765" width="0.0128%" height="15" fill="rgb(219,102,51)" fg:x="395041" fg:w="51"/><text x="99.5719%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (51 samples, 0.01%)</title><rect x="99.3219%" y="1749" width="0.0128%" height="15" fill="rgb(237,18,16)" fg:x="395041" fg:w="51"/><text x="99.5719%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (51 samples, 0.01%)</title><rect x="99.3219%" y="1733" width="0.0128%" height="15" fill="rgb(241,85,17)" fg:x="395041" fg:w="51"/><text x="99.5719%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (51 samples, 0.01%)</title><rect x="99.3219%" y="1717" width="0.0128%" height="15" fill="rgb(236,90,42)" fg:x="395041" fg:w="51"/><text x="99.5719%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (44 samples, 0.01%)</title><rect x="99.3237%" y="1701" width="0.0111%" height="15" fill="rgb(249,57,21)" fg:x="395048" fg:w="44"/><text x="99.5737%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (929 samples, 0.23%)</title><rect x="99.1122%" y="1973" width="0.2336%" height="15" fill="rgb(243,12,36)" fg:x="394207" fg:w="929"/><text x="99.3622%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (929 samples, 0.23%)</title><rect x="99.1122%" y="1957" width="0.2336%" height="15" fill="rgb(253,128,47)" fg:x="394207" fg:w="929"/><text x="99.3622%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (929 samples, 0.23%)</title><rect x="99.1122%" y="1941" width="0.2336%" height="15" fill="rgb(207,33,20)" fg:x="394207" fg:w="929"/><text x="99.3622%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (375 samples, 0.09%)</title><rect x="99.2515%" y="1925" width="0.0943%" height="15" fill="rgb(233,215,35)" fg:x="394761" fg:w="375"/><text x="99.5015%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (375 samples, 0.09%)</title><rect x="99.2515%" y="1909" width="0.0943%" height="15" fill="rgb(249,188,52)" fg:x="394761" fg:w="375"/><text x="99.5015%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (375 samples, 0.09%)</title><rect x="99.2515%" y="1893" width="0.0943%" height="15" fill="rgb(225,12,32)" fg:x="394761" fg:w="375"/><text x="99.5015%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (186 samples, 0.05%)</title><rect x="99.2990%" y="1877" width="0.0468%" height="15" fill="rgb(247,98,14)" fg:x="394950" fg:w="186"/><text x="99.5490%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (186 samples, 0.05%)</title><rect x="99.2990%" y="1861" width="0.0468%" height="15" fill="rgb(247,219,48)" fg:x="394950" fg:w="186"/><text x="99.5490%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (185 samples, 0.05%)</title><rect x="99.2993%" y="1845" width="0.0465%" height="15" fill="rgb(253,60,48)" fg:x="394951" fg:w="185"/><text x="99.5493%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (95 samples, 0.02%)</title><rect x="99.3219%" y="1829" width="0.0239%" height="15" fill="rgb(245,15,52)" fg:x="395041" fg:w="95"/><text x="99.5719%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (95 samples, 0.02%)</title><rect x="99.3219%" y="1813" width="0.0239%" height="15" fill="rgb(220,133,28)" fg:x="395041" fg:w="95"/><text x="99.5719%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (95 samples, 0.02%)</title><rect x="99.3219%" y="1797" width="0.0239%" height="15" fill="rgb(217,180,4)" fg:x="395041" fg:w="95"/><text x="99.5719%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (44 samples, 0.01%)</title><rect x="99.3347%" y="1781" width="0.0111%" height="15" fill="rgb(251,24,1)" fg:x="395092" fg:w="44"/><text x="99.5847%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="99.3347%" y="1765" width="0.0111%" height="15" fill="rgb(212,185,49)" fg:x="395092" fg:w="44"/><text x="99.5847%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (44 samples, 0.01%)</title><rect x="99.3347%" y="1749" width="0.0111%" height="15" fill="rgb(215,175,22)" fg:x="395092" fg:w="44"/><text x="99.5847%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (44 samples, 0.01%)</title><rect x="99.3347%" y="1733" width="0.0111%" height="15" fill="rgb(250,205,14)" fg:x="395092" fg:w="44"/><text x="99.5847%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (44 samples, 0.01%)</title><rect x="99.3347%" y="1717" width="0.0111%" height="15" fill="rgb(225,211,22)" fg:x="395092" fg:w="44"/><text x="99.5847%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (53 samples, 0.01%)</title><rect x="99.3461%" y="1909" width="0.0133%" height="15" fill="rgb(251,179,42)" fg:x="395137" fg:w="53"/><text x="99.5961%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (53 samples, 0.01%)</title><rect x="99.3461%" y="1893" width="0.0133%" height="15" fill="rgb(208,216,51)" fg:x="395137" fg:w="53"/><text x="99.5961%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (53 samples, 0.01%)</title><rect x="99.3461%" y="1877" width="0.0133%" height="15" fill="rgb(235,36,11)" fg:x="395137" fg:w="53"/><text x="99.5961%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (41 samples, 0.01%)</title><rect x="99.3596%" y="1701" width="0.0103%" height="15" fill="rgb(213,189,28)" fg:x="395191" fg:w="41"/><text x="99.6096%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (41 samples, 0.01%)</title><rect x="99.3596%" y="1685" width="0.0103%" height="15" fill="rgb(227,203,42)" fg:x="395191" fg:w="41"/><text x="99.6096%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (41 samples, 0.01%)</title><rect x="99.3596%" y="1669" width="0.0103%" height="15" fill="rgb(244,72,36)" fg:x="395191" fg:w="41"/><text x="99.6096%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (49 samples, 0.01%)</title><rect x="99.3596%" y="1749" width="0.0123%" height="15" fill="rgb(213,53,17)" fg:x="395191" fg:w="49"/><text x="99.6096%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (49 samples, 0.01%)</title><rect x="99.3596%" y="1733" width="0.0123%" height="15" fill="rgb(207,167,3)" fg:x="395191" fg:w="49"/><text x="99.6096%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (49 samples, 0.01%)</title><rect x="99.3596%" y="1717" width="0.0123%" height="15" fill="rgb(216,98,30)" fg:x="395191" fg:w="49"/><text x="99.6096%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (65 samples, 0.02%)</title><rect x="99.3596%" y="1797" width="0.0163%" height="15" fill="rgb(236,123,15)" fg:x="395191" fg:w="65"/><text x="99.6096%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (65 samples, 0.02%)</title><rect x="99.3596%" y="1781" width="0.0163%" height="15" fill="rgb(248,81,50)" fg:x="395191" fg:w="65"/><text x="99.6096%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (65 samples, 0.02%)</title><rect x="99.3596%" y="1765" width="0.0163%" height="15" fill="rgb(214,120,4)" fg:x="395191" fg:w="65"/><text x="99.6096%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (119 samples, 0.03%)</title><rect x="99.3596%" y="1845" width="0.0299%" height="15" fill="rgb(208,179,34)" fg:x="395191" fg:w="119"/><text x="99.6096%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (119 samples, 0.03%)</title><rect x="99.3596%" y="1829" width="0.0299%" height="15" fill="rgb(227,140,7)" fg:x="395191" fg:w="119"/><text x="99.6096%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (119 samples, 0.03%)</title><rect x="99.3596%" y="1813" width="0.0299%" height="15" fill="rgb(214,22,6)" fg:x="395191" fg:w="119"/><text x="99.6096%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (64 samples, 0.02%)</title><rect x="99.3895%" y="1845" width="0.0161%" height="15" fill="rgb(207,137,27)" fg:x="395310" fg:w="64"/><text x="99.6395%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (64 samples, 0.02%)</title><rect x="99.3895%" y="1829" width="0.0161%" height="15" fill="rgb(210,8,46)" fg:x="395310" fg:w="64"/><text x="99.6395%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (64 samples, 0.02%)</title><rect x="99.3895%" y="1813" width="0.0161%" height="15" fill="rgb(240,16,54)" fg:x="395310" fg:w="64"/><text x="99.6395%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (63 samples, 0.02%)</title><rect x="99.3898%" y="1797" width="0.0158%" height="15" fill="rgb(211,209,29)" fg:x="395311" fg:w="63"/><text x="99.6398%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (55 samples, 0.01%)</title><rect x="99.4056%" y="1797" width="0.0138%" height="15" fill="rgb(226,228,24)" fg:x="395374" fg:w="55"/><text x="99.6556%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (55 samples, 0.01%)</title><rect x="99.4056%" y="1781" width="0.0138%" height="15" fill="rgb(222,84,9)" fg:x="395374" fg:w="55"/><text x="99.6556%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (55 samples, 0.01%)</title><rect x="99.4056%" y="1765" width="0.0138%" height="15" fill="rgb(234,203,30)" fg:x="395374" fg:w="55"/><text x="99.6556%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (295 samples, 0.07%)</title><rect x="99.3594%" y="1909" width="0.0742%" height="15" fill="rgb(238,109,14)" fg:x="395190" fg:w="295"/><text x="99.6094%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (294 samples, 0.07%)</title><rect x="99.3596%" y="1893" width="0.0739%" height="15" fill="rgb(233,206,34)" fg:x="395191" fg:w="294"/><text x="99.6096%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (294 samples, 0.07%)</title><rect x="99.3596%" y="1877" width="0.0739%" height="15" fill="rgb(220,167,47)" fg:x="395191" fg:w="294"/><text x="99.6096%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (294 samples, 0.07%)</title><rect x="99.3596%" y="1861" width="0.0739%" height="15" fill="rgb(238,105,10)" fg:x="395191" fg:w="294"/><text x="99.6096%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (111 samples, 0.03%)</title><rect x="99.4056%" y="1845" width="0.0279%" height="15" fill="rgb(213,227,17)" fg:x="395374" fg:w="111"/><text x="99.6556%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (111 samples, 0.03%)</title><rect x="99.4056%" y="1829" width="0.0279%" height="15" fill="rgb(217,132,38)" fg:x="395374" fg:w="111"/><text x="99.6556%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (111 samples, 0.03%)</title><rect x="99.4056%" y="1813" width="0.0279%" height="15" fill="rgb(242,146,4)" fg:x="395374" fg:w="111"/><text x="99.6556%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (56 samples, 0.01%)</title><rect x="99.4195%" y="1797" width="0.0141%" height="15" fill="rgb(212,61,9)" fg:x="395429" fg:w="56"/><text x="99.6695%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (56 samples, 0.01%)</title><rect x="99.4195%" y="1781" width="0.0141%" height="15" fill="rgb(247,126,22)" fg:x="395429" fg:w="56"/><text x="99.6695%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (56 samples, 0.01%)</title><rect x="99.4195%" y="1765" width="0.0141%" height="15" fill="rgb(220,196,2)" fg:x="395429" fg:w="56"/><text x="99.6695%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (51 samples, 0.01%)</title><rect x="99.4335%" y="1813" width="0.0128%" height="15" fill="rgb(208,46,4)" fg:x="395485" fg:w="51"/><text x="99.6835%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="99.4335%" y="1797" width="0.0128%" height="15" fill="rgb(252,104,46)" fg:x="395485" fg:w="51"/><text x="99.6835%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (51 samples, 0.01%)</title><rect x="99.4335%" y="1781" width="0.0128%" height="15" fill="rgb(237,152,48)" fg:x="395485" fg:w="51"/><text x="99.6835%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (99 samples, 0.02%)</title><rect x="99.4335%" y="1861" width="0.0249%" height="15" fill="rgb(221,59,37)" fg:x="395485" fg:w="99"/><text x="99.6835%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (99 samples, 0.02%)</title><rect x="99.4335%" y="1845" width="0.0249%" height="15" fill="rgb(209,202,51)" fg:x="395485" fg:w="99"/><text x="99.6835%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (99 samples, 0.02%)</title><rect x="99.4335%" y="1829" width="0.0249%" height="15" fill="rgb(228,81,30)" fg:x="395485" fg:w="99"/><text x="99.6835%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (48 samples, 0.01%)</title><rect x="99.4464%" y="1813" width="0.0121%" height="15" fill="rgb(227,42,39)" fg:x="395536" fg:w="48"/><text x="99.6964%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (48 samples, 0.01%)</title><rect x="99.4464%" y="1797" width="0.0121%" height="15" fill="rgb(221,26,2)" fg:x="395536" fg:w="48"/><text x="99.6964%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (48 samples, 0.01%)</title><rect x="99.4464%" y="1781" width="0.0121%" height="15" fill="rgb(254,61,31)" fg:x="395536" fg:w="48"/><text x="99.6964%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (46 samples, 0.01%)</title><rect x="99.4584%" y="1813" width="0.0116%" height="15" fill="rgb(222,173,38)" fg:x="395584" fg:w="46"/><text x="99.7084%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="99.4584%" y="1797" width="0.0116%" height="15" fill="rgb(218,50,12)" fg:x="395584" fg:w="46"/><text x="99.7084%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="99.4584%" y="1781" width="0.0116%" height="15" fill="rgb(223,88,40)" fg:x="395584" fg:w="46"/><text x="99.7084%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (539 samples, 0.14%)</title><rect x="99.3458%" y="1973" width="0.1355%" height="15" fill="rgb(237,54,19)" fg:x="395136" fg:w="539"/><text x="99.5958%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (538 samples, 0.14%)</title><rect x="99.3461%" y="1957" width="0.1353%" height="15" fill="rgb(251,129,25)" fg:x="395137" fg:w="538"/><text x="99.5961%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (538 samples, 0.14%)</title><rect x="99.3461%" y="1941" width="0.1353%" height="15" fill="rgb(238,97,19)" fg:x="395137" fg:w="538"/><text x="99.5961%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (538 samples, 0.14%)</title><rect x="99.3461%" y="1925" width="0.1353%" height="15" fill="rgb(240,169,18)" fg:x="395137" fg:w="538"/><text x="99.5961%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (190 samples, 0.05%)</title><rect x="99.4335%" y="1909" width="0.0478%" height="15" fill="rgb(230,187,49)" fg:x="395485" fg:w="190"/><text x="99.6835%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (190 samples, 0.05%)</title><rect x="99.4335%" y="1893" width="0.0478%" height="15" fill="rgb(209,44,26)" fg:x="395485" fg:w="190"/><text x="99.6835%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (190 samples, 0.05%)</title><rect x="99.4335%" y="1877" width="0.0478%" height="15" fill="rgb(244,0,6)" fg:x="395485" fg:w="190"/><text x="99.6835%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (91 samples, 0.02%)</title><rect x="99.4584%" y="1861" width="0.0229%" height="15" fill="rgb(248,18,21)" fg:x="395584" fg:w="91"/><text x="99.7084%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (91 samples, 0.02%)</title><rect x="99.4584%" y="1845" width="0.0229%" height="15" fill="rgb(245,180,19)" fg:x="395584" fg:w="91"/><text x="99.7084%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (91 samples, 0.02%)</title><rect x="99.4584%" y="1829" width="0.0229%" height="15" fill="rgb(252,118,36)" fg:x="395584" fg:w="91"/><text x="99.7084%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (45 samples, 0.01%)</title><rect x="99.4700%" y="1813" width="0.0113%" height="15" fill="rgb(210,224,19)" fg:x="395630" fg:w="45"/><text x="99.7200%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="99.4700%" y="1797" width="0.0113%" height="15" fill="rgb(218,30,24)" fg:x="395630" fg:w="45"/><text x="99.7200%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="99.4700%" y="1781" width="0.0113%" height="15" fill="rgb(219,75,50)" fg:x="395630" fg:w="45"/><text x="99.7200%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (64 samples, 0.02%)</title><rect x="99.4846%" y="1781" width="0.0161%" height="15" fill="rgb(234,72,50)" fg:x="395688" fg:w="64"/><text x="99.7346%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (64 samples, 0.02%)</title><rect x="99.4846%" y="1765" width="0.0161%" height="15" fill="rgb(219,100,48)" fg:x="395688" fg:w="64"/><text x="99.7346%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (63 samples, 0.02%)</title><rect x="99.4848%" y="1749" width="0.0158%" height="15" fill="rgb(253,5,41)" fg:x="395689" fg:w="63"/><text x="99.7348%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (63 samples, 0.02%)</title><rect x="99.4848%" y="1733" width="0.0158%" height="15" fill="rgb(247,181,11)" fg:x="395689" fg:w="63"/><text x="99.7348%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (63 samples, 0.02%)</title><rect x="99.4848%" y="1717" width="0.0158%" height="15" fill="rgb(222,223,25)" fg:x="395689" fg:w="63"/><text x="99.7348%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (53 samples, 0.01%)</title><rect x="99.4874%" y="1701" width="0.0133%" height="15" fill="rgb(214,198,28)" fg:x="395699" fg:w="53"/><text x="99.7374%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (150 samples, 0.04%)</title><rect x="99.4843%" y="1829" width="0.0377%" height="15" fill="rgb(230,46,43)" fg:x="395687" fg:w="150"/><text x="99.7343%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (150 samples, 0.04%)</title><rect x="99.4843%" y="1813" width="0.0377%" height="15" fill="rgb(233,65,53)" fg:x="395687" fg:w="150"/><text x="99.7343%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (149 samples, 0.04%)</title><rect x="99.4846%" y="1797" width="0.0375%" height="15" fill="rgb(221,121,27)" fg:x="395688" fg:w="149"/><text x="99.7346%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (71 samples, 0.02%)</title><rect x="99.5042%" y="1781" width="0.0179%" height="15" fill="rgb(247,70,47)" fg:x="395766" fg:w="71"/><text x="99.7542%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (71 samples, 0.02%)</title><rect x="99.5042%" y="1765" width="0.0179%" height="15" fill="rgb(228,85,35)" fg:x="395766" fg:w="71"/><text x="99.7542%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (71 samples, 0.02%)</title><rect x="99.5042%" y="1749" width="0.0179%" height="15" fill="rgb(209,50,18)" fg:x="395766" fg:w="71"/><text x="99.7542%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (71 samples, 0.02%)</title><rect x="99.5042%" y="1733" width="0.0179%" height="15" fill="rgb(250,19,35)" fg:x="395766" fg:w="71"/><text x="99.7542%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (71 samples, 0.02%)</title><rect x="99.5042%" y="1717" width="0.0179%" height="15" fill="rgb(253,107,29)" fg:x="395766" fg:w="71"/><text x="99.7542%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (62 samples, 0.02%)</title><rect x="99.5065%" y="1701" width="0.0156%" height="15" fill="rgb(252,179,29)" fg:x="395775" fg:w="62"/><text x="99.7565%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (74 samples, 0.02%)</title><rect x="99.5220%" y="1781" width="0.0186%" height="15" fill="rgb(238,194,6)" fg:x="395837" fg:w="74"/><text x="99.7720%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (74 samples, 0.02%)</title><rect x="99.5220%" y="1765" width="0.0186%" height="15" fill="rgb(238,164,29)" fg:x="395837" fg:w="74"/><text x="99.7720%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (73 samples, 0.02%)</title><rect x="99.5223%" y="1749" width="0.0184%" height="15" fill="rgb(224,25,9)" fg:x="395838" fg:w="73"/><text x="99.7723%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (73 samples, 0.02%)</title><rect x="99.5223%" y="1733" width="0.0184%" height="15" fill="rgb(244,153,23)" fg:x="395838" fg:w="73"/><text x="99.7723%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (73 samples, 0.02%)</title><rect x="99.5223%" y="1717" width="0.0184%" height="15" fill="rgb(212,203,14)" fg:x="395838" fg:w="73"/><text x="99.7723%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (68 samples, 0.02%)</title><rect x="99.5236%" y="1701" width="0.0171%" height="15" fill="rgb(220,164,20)" fg:x="395843" fg:w="68"/><text x="99.7736%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (299 samples, 0.08%)</title><rect x="99.4841%" y="1877" width="0.0752%" height="15" fill="rgb(222,203,48)" fg:x="395686" fg:w="299"/><text x="99.7341%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (299 samples, 0.08%)</title><rect x="99.4841%" y="1861" width="0.0752%" height="15" fill="rgb(215,159,22)" fg:x="395686" fg:w="299"/><text x="99.7341%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (299 samples, 0.08%)</title><rect x="99.4841%" y="1845" width="0.0752%" height="15" fill="rgb(216,183,47)" fg:x="395686" fg:w="299"/><text x="99.7341%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (148 samples, 0.04%)</title><rect x="99.5220%" y="1829" width="0.0372%" height="15" fill="rgb(229,195,25)" fg:x="395837" fg:w="148"/><text x="99.7720%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (148 samples, 0.04%)</title><rect x="99.5220%" y="1813" width="0.0372%" height="15" fill="rgb(224,132,51)" fg:x="395837" fg:w="148"/><text x="99.7720%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (148 samples, 0.04%)</title><rect x="99.5220%" y="1797" width="0.0372%" height="15" fill="rgb(240,63,7)" fg:x="395837" fg:w="148"/><text x="99.7720%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (74 samples, 0.02%)</title><rect x="99.5407%" y="1781" width="0.0186%" height="15" fill="rgb(249,182,41)" fg:x="395911" fg:w="74"/><text x="99.7907%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (74 samples, 0.02%)</title><rect x="99.5407%" y="1765" width="0.0186%" height="15" fill="rgb(243,47,26)" fg:x="395911" fg:w="74"/><text x="99.7907%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (74 samples, 0.02%)</title><rect x="99.5407%" y="1749" width="0.0186%" height="15" fill="rgb(233,48,2)" fg:x="395911" fg:w="74"/><text x="99.7907%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (74 samples, 0.02%)</title><rect x="99.5407%" y="1733" width="0.0186%" height="15" fill="rgb(244,165,34)" fg:x="395911" fg:w="74"/><text x="99.7907%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (74 samples, 0.02%)</title><rect x="99.5407%" y="1717" width="0.0186%" height="15" fill="rgb(207,89,7)" fg:x="395911" fg:w="74"/><text x="99.7907%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (67 samples, 0.02%)</title><rect x="99.5424%" y="1701" width="0.0168%" height="15" fill="rgb(244,117,36)" fg:x="395918" fg:w="67"/><text x="99.7924%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (76 samples, 0.02%)</title><rect x="99.5593%" y="1781" width="0.0191%" height="15" fill="rgb(226,144,34)" fg:x="395985" fg:w="76"/><text x="99.8093%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (76 samples, 0.02%)</title><rect x="99.5593%" y="1765" width="0.0191%" height="15" fill="rgb(213,23,19)" fg:x="395985" fg:w="76"/><text x="99.8093%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (75 samples, 0.02%)</title><rect x="99.5595%" y="1749" width="0.0189%" height="15" fill="rgb(217,75,12)" fg:x="395986" fg:w="75"/><text x="99.8095%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (75 samples, 0.02%)</title><rect x="99.5595%" y="1733" width="0.0189%" height="15" fill="rgb(224,159,17)" fg:x="395986" fg:w="75"/><text x="99.8095%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (75 samples, 0.02%)</title><rect x="99.5595%" y="1717" width="0.0189%" height="15" fill="rgb(217,118,1)" fg:x="395986" fg:w="75"/><text x="99.8095%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (65 samples, 0.02%)</title><rect x="99.5620%" y="1701" width="0.0163%" height="15" fill="rgb(232,180,48)" fg:x="395996" fg:w="65"/><text x="99.8120%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (146 samples, 0.04%)</title><rect x="99.5593%" y="1829" width="0.0367%" height="15" fill="rgb(230,27,33)" fg:x="395985" fg:w="146"/><text x="99.8093%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (146 samples, 0.04%)</title><rect x="99.5593%" y="1813" width="0.0367%" height="15" fill="rgb(205,31,21)" fg:x="395985" fg:w="146"/><text x="99.8093%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (146 samples, 0.04%)</title><rect x="99.5593%" y="1797" width="0.0367%" height="15" fill="rgb(253,59,4)" fg:x="395985" fg:w="146"/><text x="99.8093%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (70 samples, 0.02%)</title><rect x="99.5784%" y="1781" width="0.0176%" height="15" fill="rgb(224,201,9)" fg:x="396061" fg:w="70"/><text x="99.8284%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (70 samples, 0.02%)</title><rect x="99.5784%" y="1765" width="0.0176%" height="15" fill="rgb(229,206,30)" fg:x="396061" fg:w="70"/><text x="99.8284%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (70 samples, 0.02%)</title><rect x="99.5784%" y="1749" width="0.0176%" height="15" fill="rgb(212,67,47)" fg:x="396061" fg:w="70"/><text x="99.8284%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (70 samples, 0.02%)</title><rect x="99.5784%" y="1733" width="0.0176%" height="15" fill="rgb(211,96,50)" fg:x="396061" fg:w="70"/><text x="99.8284%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (70 samples, 0.02%)</title><rect x="99.5784%" y="1717" width="0.0176%" height="15" fill="rgb(252,114,18)" fg:x="396061" fg:w="70"/><text x="99.8284%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (60 samples, 0.02%)</title><rect x="99.5809%" y="1701" width="0.0151%" height="15" fill="rgb(223,58,37)" fg:x="396071" fg:w="60"/><text x="99.8309%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (79 samples, 0.02%)</title><rect x="99.5960%" y="1781" width="0.0199%" height="15" fill="rgb(237,70,4)" fg:x="396131" fg:w="79"/><text x="99.8460%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (79 samples, 0.02%)</title><rect x="99.5960%" y="1765" width="0.0199%" height="15" fill="rgb(244,85,46)" fg:x="396131" fg:w="79"/><text x="99.8460%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (78 samples, 0.02%)</title><rect x="99.5962%" y="1749" width="0.0196%" height="15" fill="rgb(223,39,52)" fg:x="396132" fg:w="78"/><text x="99.8462%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (78 samples, 0.02%)</title><rect x="99.5962%" y="1733" width="0.0196%" height="15" fill="rgb(218,200,14)" fg:x="396132" fg:w="78"/><text x="99.8462%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (78 samples, 0.02%)</title><rect x="99.5962%" y="1717" width="0.0196%" height="15" fill="rgb(208,171,16)" fg:x="396132" fg:w="78"/><text x="99.8462%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (71 samples, 0.02%)</title><rect x="99.5980%" y="1701" width="0.0179%" height="15" fill="rgb(234,200,18)" fg:x="396139" fg:w="71"/><text x="99.8480%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (597 samples, 0.15%)</title><rect x="99.4833%" y="1925" width="0.1501%" height="15" fill="rgb(228,45,11)" fg:x="395683" fg:w="597"/><text x="99.7333%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (597 samples, 0.15%)</title><rect x="99.4833%" y="1909" width="0.1501%" height="15" fill="rgb(237,182,11)" fg:x="395683" fg:w="597"/><text x="99.7333%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (594 samples, 0.15%)</title><rect x="99.4841%" y="1893" width="0.1493%" height="15" fill="rgb(241,175,49)" fg:x="395686" fg:w="594"/><text x="99.7341%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (295 samples, 0.07%)</title><rect x="99.5593%" y="1877" width="0.0742%" height="15" fill="rgb(247,38,35)" fg:x="395985" fg:w="295"/><text x="99.8093%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (295 samples, 0.07%)</title><rect x="99.5593%" y="1861" width="0.0742%" height="15" fill="rgb(228,39,49)" fg:x="395985" fg:w="295"/><text x="99.8093%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (295 samples, 0.07%)</title><rect x="99.5593%" y="1845" width="0.0742%" height="15" fill="rgb(226,101,26)" fg:x="395985" fg:w="295"/><text x="99.8093%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (149 samples, 0.04%)</title><rect x="99.5960%" y="1829" width="0.0375%" height="15" fill="rgb(206,141,19)" fg:x="396131" fg:w="149"/><text x="99.8460%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (149 samples, 0.04%)</title><rect x="99.5960%" y="1813" width="0.0375%" height="15" fill="rgb(211,200,13)" fg:x="396131" fg:w="149"/><text x="99.8460%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (149 samples, 0.04%)</title><rect x="99.5960%" y="1797" width="0.0375%" height="15" fill="rgb(241,121,6)" fg:x="396131" fg:w="149"/><text x="99.8460%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (70 samples, 0.02%)</title><rect x="99.6158%" y="1781" width="0.0176%" height="15" fill="rgb(234,221,29)" fg:x="396210" fg:w="70"/><text x="99.8658%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (70 samples, 0.02%)</title><rect x="99.6158%" y="1765" width="0.0176%" height="15" fill="rgb(229,136,5)" fg:x="396210" fg:w="70"/><text x="99.8658%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (70 samples, 0.02%)</title><rect x="99.6158%" y="1749" width="0.0176%" height="15" fill="rgb(238,36,11)" fg:x="396210" fg:w="70"/><text x="99.8658%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (70 samples, 0.02%)</title><rect x="99.6158%" y="1733" width="0.0176%" height="15" fill="rgb(251,55,41)" fg:x="396210" fg:w="70"/><text x="99.8658%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (70 samples, 0.02%)</title><rect x="99.6158%" y="1717" width="0.0176%" height="15" fill="rgb(242,34,40)" fg:x="396210" fg:w="70"/><text x="99.8658%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (61 samples, 0.02%)</title><rect x="99.6181%" y="1701" width="0.0153%" height="15" fill="rgb(215,42,17)" fg:x="396219" fg:w="61"/><text x="99.8681%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (68 samples, 0.02%)</title><rect x="99.6447%" y="1813" width="0.0171%" height="15" fill="rgb(207,44,46)" fg:x="396325" fg:w="68"/><text x="99.8947%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (68 samples, 0.02%)</title><rect x="99.6447%" y="1797" width="0.0171%" height="15" fill="rgb(211,206,28)" fg:x="396325" fg:w="68"/><text x="99.8947%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (68 samples, 0.02%)</title><rect x="99.6447%" y="1781" width="0.0171%" height="15" fill="rgb(237,167,16)" fg:x="396325" fg:w="68"/><text x="99.8947%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (184 samples, 0.05%)</title><rect x="99.6334%" y="1925" width="0.0463%" height="15" fill="rgb(233,66,6)" fg:x="396280" fg:w="184"/><text x="99.8834%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (184 samples, 0.05%)</title><rect x="99.6334%" y="1909" width="0.0463%" height="15" fill="rgb(246,123,29)" fg:x="396280" fg:w="184"/><text x="99.8834%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (184 samples, 0.05%)</title><rect x="99.6334%" y="1893" width="0.0463%" height="15" fill="rgb(209,62,40)" fg:x="396280" fg:w="184"/><text x="99.8834%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (184 samples, 0.05%)</title><rect x="99.6334%" y="1877" width="0.0463%" height="15" fill="rgb(218,4,25)" fg:x="396280" fg:w="184"/><text x="99.8834%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (139 samples, 0.03%)</title><rect x="99.6447%" y="1861" width="0.0349%" height="15" fill="rgb(253,91,49)" fg:x="396325" fg:w="139"/><text x="99.8947%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (139 samples, 0.03%)</title><rect x="99.6447%" y="1845" width="0.0349%" height="15" fill="rgb(228,155,29)" fg:x="396325" fg:w="139"/><text x="99.8947%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (139 samples, 0.03%)</title><rect x="99.6447%" y="1829" width="0.0349%" height="15" fill="rgb(243,57,37)" fg:x="396325" fg:w="139"/><text x="99.8947%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (71 samples, 0.02%)</title><rect x="99.6618%" y="1813" width="0.0179%" height="15" fill="rgb(244,167,17)" fg:x="396393" fg:w="71"/><text x="99.9118%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (71 samples, 0.02%)</title><rect x="99.6618%" y="1797" width="0.0179%" height="15" fill="rgb(207,181,38)" fg:x="396393" fg:w="71"/><text x="99.9118%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (71 samples, 0.02%)</title><rect x="99.6618%" y="1781" width="0.0179%" height="15" fill="rgb(211,8,23)" fg:x="396393" fg:w="71"/><text x="99.9118%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (88 samples, 0.02%)</title><rect x="99.6809%" y="1781" width="0.0221%" height="15" fill="rgb(235,11,44)" fg:x="396469" fg:w="88"/><text x="99.9309%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (88 samples, 0.02%)</title><rect x="99.6809%" y="1765" width="0.0221%" height="15" fill="rgb(248,18,52)" fg:x="396469" fg:w="88"/><text x="99.9309%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (88 samples, 0.02%)</title><rect x="99.6809%" y="1749" width="0.0221%" height="15" fill="rgb(208,4,7)" fg:x="396469" fg:w="88"/><text x="99.9309%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (88 samples, 0.02%)</title><rect x="99.6809%" y="1733" width="0.0221%" height="15" fill="rgb(240,17,39)" fg:x="396469" fg:w="88"/><text x="99.9309%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (88 samples, 0.02%)</title><rect x="99.6809%" y="1717" width="0.0221%" height="15" fill="rgb(207,170,3)" fg:x="396469" fg:w="88"/><text x="99.9309%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (77 samples, 0.02%)</title><rect x="99.6837%" y="1701" width="0.0194%" height="15" fill="rgb(236,100,52)" fg:x="396480" fg:w="77"/><text x="99.9337%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (172 samples, 0.04%)</title><rect x="99.6807%" y="1829" width="0.0432%" height="15" fill="rgb(246,78,51)" fg:x="396468" fg:w="172"/><text x="99.9307%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (171 samples, 0.04%)</title><rect x="99.6809%" y="1813" width="0.0430%" height="15" fill="rgb(211,17,15)" fg:x="396469" fg:w="171"/><text x="99.9309%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (171 samples, 0.04%)</title><rect x="99.6809%" y="1797" width="0.0430%" height="15" fill="rgb(209,59,46)" fg:x="396469" fg:w="171"/><text x="99.9309%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (83 samples, 0.02%)</title><rect x="99.7031%" y="1781" width="0.0209%" height="15" fill="rgb(210,92,25)" fg:x="396557" fg:w="83"/><text x="99.9531%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (83 samples, 0.02%)</title><rect x="99.7031%" y="1765" width="0.0209%" height="15" fill="rgb(238,174,52)" fg:x="396557" fg:w="83"/><text x="99.9531%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (83 samples, 0.02%)</title><rect x="99.7031%" y="1749" width="0.0209%" height="15" fill="rgb(230,73,7)" fg:x="396557" fg:w="83"/><text x="99.9531%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (83 samples, 0.02%)</title><rect x="99.7031%" y="1733" width="0.0209%" height="15" fill="rgb(243,124,40)" fg:x="396557" fg:w="83"/><text x="99.9531%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (83 samples, 0.02%)</title><rect x="99.7031%" y="1717" width="0.0209%" height="15" fill="rgb(244,170,11)" fg:x="396557" fg:w="83"/><text x="99.9531%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (78 samples, 0.02%)</title><rect x="99.7043%" y="1701" width="0.0196%" height="15" fill="rgb(207,114,54)" fg:x="396562" fg:w="78"/><text x="99.9543%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (44 samples, 0.01%)</title><rect x="99.7129%" y="1685" width="0.0111%" height="15" fill="rgb(205,42,20)" fg:x="396596" fg:w="44"/><text x="99.9629%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (41 samples, 0.01%)</title><rect x="99.7244%" y="1717" width="0.0103%" height="15" fill="rgb(230,30,28)" fg:x="396642" fg:w="41"/><text x="99.9744%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (41 samples, 0.01%)</title><rect x="99.7244%" y="1701" width="0.0103%" height="15" fill="rgb(205,73,54)" fg:x="396642" fg:w="41"/><text x="99.9744%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (41 samples, 0.01%)</title><rect x="99.7244%" y="1685" width="0.0103%" height="15" fill="rgb(254,227,23)" fg:x="396642" fg:w="41"/><text x="99.9744%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (41 samples, 0.01%)</title><rect x="99.7244%" y="1669" width="0.0103%" height="15" fill="rgb(228,202,34)" fg:x="396642" fg:w="41"/><text x="99.9744%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (46 samples, 0.01%)</title><rect x="99.7348%" y="1669" width="0.0116%" height="15" fill="rgb(222,225,37)" fg:x="396683" fg:w="46"/><text x="99.9848%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="99.7348%" y="1653" width="0.0116%" height="15" fill="rgb(221,14,54)" fg:x="396683" fg:w="46"/><text x="99.9848%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="99.7348%" y="1637" width="0.0116%" height="15" fill="rgb(254,102,2)" fg:x="396683" fg:w="46"/><text x="99.9848%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (135 samples, 0.03%)</title><rect x="99.7239%" y="1829" width="0.0339%" height="15" fill="rgb(232,104,17)" fg:x="396640" fg:w="135"/><text x="99.9739%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (135 samples, 0.03%)</title><rect x="99.7239%" y="1813" width="0.0339%" height="15" fill="rgb(250,220,14)" fg:x="396640" fg:w="135"/><text x="99.9739%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (135 samples, 0.03%)</title><rect x="99.7239%" y="1797" width="0.0339%" height="15" fill="rgb(241,158,9)" fg:x="396640" fg:w="135"/><text x="99.9739%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (134 samples, 0.03%)</title><rect x="99.7242%" y="1781" width="0.0337%" height="15" fill="rgb(246,9,43)" fg:x="396641" fg:w="134"/><text x="99.9742%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (134 samples, 0.03%)</title><rect x="99.7242%" y="1765" width="0.0337%" height="15" fill="rgb(206,73,33)" fg:x="396641" fg:w="134"/><text x="99.9742%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (134 samples, 0.03%)</title><rect x="99.7242%" y="1749" width="0.0337%" height="15" fill="rgb(222,79,8)" fg:x="396641" fg:w="134"/><text x="99.9742%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (133 samples, 0.03%)</title><rect x="99.7244%" y="1733" width="0.0334%" height="15" fill="rgb(234,8,54)" fg:x="396642" fg:w="133"/><text x="99.9744%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (92 samples, 0.02%)</title><rect x="99.7348%" y="1717" width="0.0231%" height="15" fill="rgb(209,134,38)" fg:x="396683" fg:w="92"/><text x="99.9848%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (92 samples, 0.02%)</title><rect x="99.7348%" y="1701" width="0.0231%" height="15" fill="rgb(230,127,29)" fg:x="396683" fg:w="92"/><text x="99.9848%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (92 samples, 0.02%)</title><rect x="99.7348%" y="1685" width="0.0231%" height="15" fill="rgb(242,44,41)" fg:x="396683" fg:w="92"/><text x="99.9848%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (46 samples, 0.01%)</title><rect x="99.7463%" y="1669" width="0.0116%" height="15" fill="rgb(222,56,43)" fg:x="396729" fg:w="46"/><text x="99.9963%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="99.7463%" y="1653" width="0.0116%" height="15" fill="rgb(238,39,47)" fg:x="396729" fg:w="46"/><text x="99.9963%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="99.7463%" y="1637" width="0.0116%" height="15" fill="rgb(226,79,43)" fg:x="396729" fg:w="46"/><text x="99.9963%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (43 samples, 0.01%)</title><rect x="99.7730%" y="1669" width="0.0108%" height="15" fill="rgb(242,105,53)" fg:x="396835" fg:w="43"/><text x="100.0230%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (102 samples, 0.03%)</title><rect x="99.7584%" y="1781" width="0.0256%" height="15" fill="rgb(251,132,46)" fg:x="396777" fg:w="102"/><text x="100.0084%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (102 samples, 0.03%)</title><rect x="99.7584%" y="1765" width="0.0256%" height="15" fill="rgb(231,77,14)" fg:x="396777" fg:w="102"/><text x="100.0084%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (102 samples, 0.03%)</title><rect x="99.7584%" y="1749" width="0.0256%" height="15" fill="rgb(240,135,9)" fg:x="396777" fg:w="102"/><text x="100.0084%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (102 samples, 0.03%)</title><rect x="99.7584%" y="1733" width="0.0256%" height="15" fill="rgb(248,109,14)" fg:x="396777" fg:w="102"/><text x="100.0084%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (102 samples, 0.03%)</title><rect x="99.7584%" y="1717" width="0.0256%" height="15" fill="rgb(227,146,52)" fg:x="396777" fg:w="102"/><text x="100.0084%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (92 samples, 0.02%)</title><rect x="99.7609%" y="1701" width="0.0231%" height="15" fill="rgb(232,54,3)" fg:x="396787" fg:w="92"/><text x="100.0109%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (52 samples, 0.01%)</title><rect x="99.7710%" y="1685" width="0.0131%" height="15" fill="rgb(229,201,43)" fg:x="396827" fg:w="52"/><text x="100.0210%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (41 samples, 0.01%)</title><rect x="99.8014%" y="1669" width="0.0103%" height="15" fill="rgb(252,161,33)" fg:x="396948" fg:w="41"/><text x="100.0514%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (522 samples, 0.13%)</title><rect x="99.6807%" y="1877" width="0.1312%" height="15" fill="rgb(226,146,40)" fg:x="396468" fg:w="522"/><text x="99.9307%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (522 samples, 0.13%)</title><rect x="99.6807%" y="1861" width="0.1312%" height="15" fill="rgb(219,47,25)" fg:x="396468" fg:w="522"/><text x="99.9307%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (522 samples, 0.13%)</title><rect x="99.6807%" y="1845" width="0.1312%" height="15" fill="rgb(250,135,13)" fg:x="396468" fg:w="522"/><text x="99.9307%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (215 samples, 0.05%)</title><rect x="99.7579%" y="1829" width="0.0541%" height="15" fill="rgb(219,229,18)" fg:x="396775" fg:w="215"/><text x="100.0079%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (215 samples, 0.05%)</title><rect x="99.7579%" y="1813" width="0.0541%" height="15" fill="rgb(217,152,27)" fg:x="396775" fg:w="215"/><text x="100.0079%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (213 samples, 0.05%)</title><rect x="99.7584%" y="1797" width="0.0536%" height="15" fill="rgb(225,71,47)" fg:x="396777" fg:w="213"/><text x="100.0084%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (111 samples, 0.03%)</title><rect x="99.7840%" y="1781" width="0.0279%" height="15" fill="rgb(220,139,14)" fg:x="396879" fg:w="111"/><text x="100.0340%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (111 samples, 0.03%)</title><rect x="99.7840%" y="1765" width="0.0279%" height="15" fill="rgb(247,54,32)" fg:x="396879" fg:w="111"/><text x="100.0340%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (110 samples, 0.03%)</title><rect x="99.7843%" y="1749" width="0.0277%" height="15" fill="rgb(252,131,39)" fg:x="396880" fg:w="110"/><text x="100.0343%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (110 samples, 0.03%)</title><rect x="99.7843%" y="1733" width="0.0277%" height="15" fill="rgb(210,108,39)" fg:x="396880" fg:w="110"/><text x="100.0343%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (110 samples, 0.03%)</title><rect x="99.7843%" y="1717" width="0.0277%" height="15" fill="rgb(205,23,29)" fg:x="396880" fg:w="110"/><text x="100.0343%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (94 samples, 0.02%)</title><rect x="99.7883%" y="1701" width="0.0236%" height="15" fill="rgb(246,139,46)" fg:x="396896" fg:w="94"/><text x="100.0383%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (53 samples, 0.01%)</title><rect x="99.7986%" y="1685" width="0.0133%" height="15" fill="rgb(250,81,26)" fg:x="396937" fg:w="53"/><text x="100.0486%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (60 samples, 0.02%)</title><rect x="99.8119%" y="1813" width="0.0151%" height="15" fill="rgb(214,104,7)" fg:x="396990" fg:w="60"/><text x="100.0619%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (60 samples, 0.02%)</title><rect x="99.8119%" y="1797" width="0.0151%" height="15" fill="rgb(233,189,8)" fg:x="396990" fg:w="60"/><text x="100.0619%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (60 samples, 0.02%)</title><rect x="99.8119%" y="1781" width="0.0151%" height="15" fill="rgb(228,141,17)" fg:x="396990" fg:w="60"/><text x="100.0619%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (107 samples, 0.03%)</title><rect x="99.8119%" y="1877" width="0.0269%" height="15" fill="rgb(247,157,1)" fg:x="396990" fg:w="107"/><text x="100.0619%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (107 samples, 0.03%)</title><rect x="99.8119%" y="1861" width="0.0269%" height="15" fill="rgb(249,225,5)" fg:x="396990" fg:w="107"/><text x="100.0619%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (107 samples, 0.03%)</title><rect x="99.8119%" y="1845" width="0.0269%" height="15" fill="rgb(242,55,13)" fg:x="396990" fg:w="107"/><text x="100.0619%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (107 samples, 0.03%)</title><rect x="99.8119%" y="1829" width="0.0269%" height="15" fill="rgb(230,49,50)" fg:x="396990" fg:w="107"/><text x="100.0619%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (47 samples, 0.01%)</title><rect x="99.8270%" y="1813" width="0.0118%" height="15" fill="rgb(241,111,38)" fg:x="397050" fg:w="47"/><text x="100.0770%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (47 samples, 0.01%)</title><rect x="99.8270%" y="1797" width="0.0118%" height="15" fill="rgb(252,155,4)" fg:x="397050" fg:w="47"/><text x="100.0770%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (47 samples, 0.01%)</title><rect x="99.8270%" y="1781" width="0.0118%" height="15" fill="rgb(212,69,32)" fg:x="397050" fg:w="47"/><text x="100.0770%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (54 samples, 0.01%)</title><rect x="99.8464%" y="1685" width="0.0136%" height="15" fill="rgb(243,107,47)" fg:x="397127" fg:w="54"/><text x="100.0964%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (49 samples, 0.01%)</title><rect x="99.8476%" y="1669" width="0.0123%" height="15" fill="rgb(247,130,12)" fg:x="397132" fg:w="49"/><text x="100.0976%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (150 samples, 0.04%)</title><rect x="99.8396%" y="1781" width="0.0377%" height="15" fill="rgb(233,74,16)" fg:x="397100" fg:w="150"/><text x="100.0896%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (150 samples, 0.04%)</title><rect x="99.8396%" y="1765" width="0.0377%" height="15" fill="rgb(208,58,18)" fg:x="397100" fg:w="150"/><text x="100.0896%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (150 samples, 0.04%)</title><rect x="99.8396%" y="1749" width="0.0377%" height="15" fill="rgb(242,225,1)" fg:x="397100" fg:w="150"/><text x="100.0896%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (150 samples, 0.04%)</title><rect x="99.8396%" y="1733" width="0.0377%" height="15" fill="rgb(249,39,40)" fg:x="397100" fg:w="150"/><text x="100.0896%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (150 samples, 0.04%)</title><rect x="99.8396%" y="1717" width="0.0377%" height="15" fill="rgb(207,72,44)" fg:x="397100" fg:w="150"/><text x="100.0896%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (131 samples, 0.03%)</title><rect x="99.8444%" y="1701" width="0.0329%" height="15" fill="rgb(215,193,12)" fg:x="397119" fg:w="131"/><text x="100.0944%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (69 samples, 0.02%)</title><rect x="99.8600%" y="1685" width="0.0173%" height="15" fill="rgb(248,41,39)" fg:x="397181" fg:w="69"/><text x="100.1100%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (52 samples, 0.01%)</title><rect x="99.8642%" y="1669" width="0.0131%" height="15" fill="rgb(253,85,4)" fg:x="397198" fg:w="52"/><text x="100.1142%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (53 samples, 0.01%)</title><rect x="99.8856%" y="1685" width="0.0133%" height="15" fill="rgb(243,70,31)" fg:x="397283" fg:w="53"/><text x="100.1356%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (49 samples, 0.01%)</title><rect x="99.8866%" y="1669" width="0.0123%" height="15" fill="rgb(253,195,26)" fg:x="397287" fg:w="49"/><text x="100.1366%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (51 samples, 0.01%)</title><rect x="99.9035%" y="1669" width="0.0128%" height="15" fill="rgb(243,42,11)" fg:x="397354" fg:w="51"/><text x="100.1535%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (307 samples, 0.08%)</title><rect x="99.8393%" y="1829" width="0.0772%" height="15" fill="rgb(239,66,17)" fg:x="397099" fg:w="307"/><text x="100.0893%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (307 samples, 0.08%)</title><rect x="99.8393%" y="1813" width="0.0772%" height="15" fill="rgb(217,132,21)" fg:x="397099" fg:w="307"/><text x="100.0893%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (306 samples, 0.08%)</title><rect x="99.8396%" y="1797" width="0.0769%" height="15" fill="rgb(252,202,21)" fg:x="397100" fg:w="306"/><text x="100.0896%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (156 samples, 0.04%)</title><rect x="99.8773%" y="1781" width="0.0392%" height="15" fill="rgb(233,98,36)" fg:x="397250" fg:w="156"/><text x="100.1273%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (156 samples, 0.04%)</title><rect x="99.8773%" y="1765" width="0.0392%" height="15" fill="rgb(216,153,54)" fg:x="397250" fg:w="156"/><text x="100.1273%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (155 samples, 0.04%)</title><rect x="99.8776%" y="1749" width="0.0390%" height="15" fill="rgb(250,99,7)" fg:x="397251" fg:w="155"/><text x="100.1276%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (155 samples, 0.04%)</title><rect x="99.8776%" y="1733" width="0.0390%" height="15" fill="rgb(207,56,50)" fg:x="397251" fg:w="155"/><text x="100.1276%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (155 samples, 0.04%)</title><rect x="99.8776%" y="1717" width="0.0390%" height="15" fill="rgb(244,61,34)" fg:x="397251" fg:w="155"/><text x="100.1276%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (128 samples, 0.03%)</title><rect x="99.8843%" y="1701" width="0.0322%" height="15" fill="rgb(241,50,38)" fg:x="397278" fg:w="128"/><text x="100.1343%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (70 samples, 0.02%)</title><rect x="99.8989%" y="1685" width="0.0176%" height="15" fill="rgb(212,166,30)" fg:x="397336" fg:w="70"/><text x="100.1489%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (56 samples, 0.01%)</title><rect x="99.9256%" y="1669" width="0.0141%" height="15" fill="rgb(249,127,32)" fg:x="397442" fg:w="56"/><text x="100.1756%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (63 samples, 0.02%)</title><rect x="99.9241%" y="1685" width="0.0158%" height="15" fill="rgb(209,103,0)" fg:x="397436" fg:w="63"/><text x="100.1741%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (69 samples, 0.02%)</title><rect x="99.9399%" y="1685" width="0.0173%" height="15" fill="rgb(238,209,51)" fg:x="397499" fg:w="69"/><text x="100.1899%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (55 samples, 0.01%)</title><rect x="99.9434%" y="1669" width="0.0138%" height="15" fill="rgb(237,56,23)" fg:x="397513" fg:w="55"/><text x="100.1934%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (163 samples, 0.04%)</title><rect x="99.9168%" y="1781" width="0.0410%" height="15" fill="rgb(215,153,46)" fg:x="397407" fg:w="163"/><text x="100.1668%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (163 samples, 0.04%)</title><rect x="99.9168%" y="1765" width="0.0410%" height="15" fill="rgb(224,49,31)" fg:x="397407" fg:w="163"/><text x="100.1668%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (162 samples, 0.04%)</title><rect x="99.9170%" y="1749" width="0.0407%" height="15" fill="rgb(250,18,42)" fg:x="397408" fg:w="162"/><text x="100.1670%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (162 samples, 0.04%)</title><rect x="99.9170%" y="1733" width="0.0407%" height="15" fill="rgb(215,176,39)" fg:x="397408" fg:w="162"/><text x="100.1670%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (162 samples, 0.04%)</title><rect x="99.9170%" y="1717" width="0.0407%" height="15" fill="rgb(223,77,29)" fg:x="397408" fg:w="162"/><text x="100.1670%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (140 samples, 0.04%)</title><rect x="99.9226%" y="1701" width="0.0352%" height="15" fill="rgb(234,94,52)" fg:x="397430" fg:w="140"/><text x="100.1726%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (45 samples, 0.01%)</title><rect x="99.9661%" y="1685" width="0.0113%" height="15" fill="rgb(220,154,50)" fg:x="397603" fg:w="45"/><text x="100.2161%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (41 samples, 0.01%)</title><rect x="99.9671%" y="1669" width="0.0103%" height="15" fill="rgb(212,11,10)" fg:x="397607" fg:w="41"/><text x="100.2171%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (167 samples, 0.04%)</title><rect x="99.9578%" y="1749" width="0.0420%" height="15" fill="rgb(205,166,19)" fg:x="397570" fg:w="167"/><text x="100.2078%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (167 samples, 0.04%)</title><rect x="99.9578%" y="1733" width="0.0420%" height="15" fill="rgb(244,198,16)" fg:x="397570" fg:w="167"/><text x="100.2078%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (167 samples, 0.04%)</title><rect x="99.9578%" y="1717" width="0.0420%" height="15" fill="rgb(219,69,12)" fg:x="397570" fg:w="167"/><text x="100.2078%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (142 samples, 0.04%)</title><rect x="99.9640%" y="1701" width="0.0357%" height="15" fill="rgb(245,30,7)" fg:x="397595" fg:w="142"/><text x="100.2140%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (89 samples, 0.02%)</title><rect x="99.9774%" y="1685" width="0.0224%" height="15" fill="rgb(218,221,48)" fg:x="397648" fg:w="89"/><text x="100.2274%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (73 samples, 0.02%)</title><rect x="99.9814%" y="1669" width="0.0184%" height="15" fill="rgb(216,66,15)" fg:x="397664" fg:w="73"/><text x="100.2314%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (47 samples, 0.01%)</title><rect x="99.9879%" y="1653" width="0.0118%" height="15" fill="rgb(226,122,50)" fg:x="397690" fg:w="47"/><text x="100.2379%" y="1663.50"></text></g><g><title>all (397,738 samples, 100%)</title><rect x="0.0000%" y="2197" width="100.0000%" height="15" fill="rgb(239,156,16)" fg:x="0" fg:w="397738"/><text x="0.2500%" y="2207.50"></text></g><g><title>ntdll`RtlUserThreadStart (397,620 samples, 99.97%)</title><rect x="0.0297%" y="2181" width="99.9703%" height="15" fill="rgb(224,27,38)" fg:x="118" fg:w="397620"/><text x="0.2797%" y="2191.50">ntdll`RtlUserThreadStart</text></g><g><title>KERNEL32`BaseThreadInitThunk (397,612 samples, 99.97%)</title><rect x="0.0317%" y="2165" width="99.9683%" height="15" fill="rgb(224,39,27)" fg:x="126" fg:w="397612"/><text x="0.2817%" y="2175.50">KERNEL32`BaseThreadInitThunk</text></g><g><title>search-10075cbc4ecf36f7`std::sys::windows::thread::impl$0::new::thread_start (13,269 samples, 3.34%)</title><rect x="96.6639%" y="2149" width="3.3361%" height="15" fill="rgb(215,92,29)" fg:x="384469" fg:w="13269"/><text x="96.9139%" y="2159.50">sea..</text></g><g><title>search-10075cbc4ecf36f7`ZN3std6thread7Builder5spawn17h9c8cb5fe0e08261bE (13,267 samples, 3.34%)</title><rect x="96.6644%" y="2133" width="3.3356%" height="15" fill="rgb(207,159,16)" fg:x="384471" fg:w="13267"/><text x="96.9144%" y="2143.50">sea..</text></g><g><title>search-10075cbc4ecf36f7`ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h5c8c81ede621b3ceE (13,267 samples, 3.34%)</title><rect x="96.6644%" y="2117" width="3.3356%" height="15" fill="rgb(238,163,47)" fg:x="384471" fg:w="13267"/><text x="96.9144%" y="2127.50">sea..</text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry13ThreadBuilder3run17h9478b9e5fc7ee8f4E (13,267 samples, 3.34%)</title><rect x="96.6644%" y="2101" width="3.3356%" height="15" fill="rgb(219,91,49)" fg:x="384471" fg:w="13267"/><text x="96.9144%" y="2111.50">sea..</text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (13,267 samples, 3.34%)</title><rect x="96.6644%" y="2085" width="3.3356%" height="15" fill="rgb(227,167,31)" fg:x="384471" fg:w="13267"/><text x="96.9144%" y="2095.50">sea..</text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (5,634 samples, 1.42%)</title><rect x="98.5835%" y="2069" width="1.4165%" height="15" fill="rgb(234,80,54)" fg:x="392104" fg:w="5634"/><text x="98.8335%" y="2079.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (5,634 samples, 1.42%)</title><rect x="98.5835%" y="2053" width="1.4165%" height="15" fill="rgb(212,114,2)" fg:x="392104" fg:w="5634"/><text x="98.8335%" y="2063.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (5,605 samples, 1.41%)</title><rect x="98.5908%" y="2037" width="1.4092%" height="15" fill="rgb(234,50,24)" fg:x="392133" fg:w="5605"/><text x="98.8408%" y="2047.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (3,544 samples, 0.89%)</title><rect x="99.1090%" y="2021" width="0.8910%" height="15" fill="rgb(221,68,8)" fg:x="394194" fg:w="3544"/><text x="99.3590%" y="2031.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (3,544 samples, 0.89%)</title><rect x="99.1090%" y="2005" width="0.8910%" height="15" fill="rgb(254,180,31)" fg:x="394194" fg:w="3544"/><text x="99.3590%" y="2015.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (3,531 samples, 0.89%)</title><rect x="99.1122%" y="1989" width="0.8878%" height="15" fill="rgb(247,130,50)" fg:x="394207" fg:w="3531"/><text x="99.3622%" y="1999.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (2,063 samples, 0.52%)</title><rect x="99.4813%" y="1973" width="0.5187%" height="15" fill="rgb(211,109,4)" fg:x="395675" fg:w="2063"/><text x="99.7313%" y="1983.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (2,063 samples, 0.52%)</title><rect x="99.4813%" y="1957" width="0.5187%" height="15" fill="rgb(238,50,21)" fg:x="395675" fg:w="2063"/><text x="99.7313%" y="1967.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (2,055 samples, 0.52%)</title><rect x="99.4833%" y="1941" width="0.5167%" height="15" fill="rgb(225,57,45)" fg:x="395683" fg:w="2055"/><text x="99.7333%" y="1951.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (1,274 samples, 0.32%)</title><rect x="99.6797%" y="1925" width="0.3203%" height="15" fill="rgb(209,196,50)" fg:x="396464" fg:w="1274"/><text x="99.9297%" y="1935.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (1,274 samples, 0.32%)</title><rect x="99.6797%" y="1909" width="0.3203%" height="15" fill="rgb(242,140,13)" fg:x="396464" fg:w="1274"/><text x="99.9297%" y="1919.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (1,270 samples, 0.32%)</title><rect x="99.6807%" y="1893" width="0.3193%" height="15" fill="rgb(217,111,7)" fg:x="396468" fg:w="1270"/><text x="99.9307%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (641 samples, 0.16%)</title><rect x="99.8388%" y="1877" width="0.1612%" height="15" fill="rgb(253,193,51)" fg:x="397097" fg:w="641"/><text x="100.0888%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (640 samples, 0.16%)</title><rect x="99.8391%" y="1861" width="0.1609%" height="15" fill="rgb(252,70,29)" fg:x="397098" fg:w="640"/><text x="100.0891%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (639 samples, 0.16%)</title><rect x="99.8393%" y="1845" width="0.1607%" height="15" fill="rgb(232,127,12)" fg:x="397099" fg:w="639"/><text x="100.0893%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (332 samples, 0.08%)</title><rect x="99.9165%" y="1829" width="0.0835%" height="15" fill="rgb(211,180,21)" fg:x="397406" fg:w="332"/><text x="100.1665%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (332 samples, 0.08%)</title><rect x="99.9165%" y="1813" width="0.0835%" height="15" fill="rgb(229,72,13)" fg:x="397406" fg:w="332"/><text x="100.1665%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (332 samples, 0.08%)</title><rect x="99.9165%" y="1797" width="0.0835%" height="15" fill="rgb(240,211,49)" fg:x="397406" fg:w="332"/><text x="100.1665%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (168 samples, 0.04%)</title><rect x="99.9578%" y="1781" width="0.0422%" height="15" fill="rgb(219,149,40)" fg:x="397570" fg:w="168"/><text x="100.2078%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (168 samples, 0.04%)</title><rect x="99.9578%" y="1765" width="0.0422%" height="15" fill="rgb(210,127,46)" fg:x="397570" fg:w="168"/><text x="100.2078%" y="1775.50"></text></g></svg></svg>